Show More
@@ -1,2793 +1,2795 | |||||
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 |
|
41 | |||
42 | from mercurial.i18n import _ |
|
42 | from mercurial.i18n import _ | |
43 | from mercurial.node import bin, hex, short, nullid, nullrev |
|
43 | from mercurial.node import bin, hex, short, nullid, nullrev | |
44 | from mercurial.lock import release |
|
44 | from mercurial.lock import release | |
45 | from mercurial import commands, cmdutil, hg, patch, util |
|
45 | from mercurial import commands, cmdutil, hg, patch, util | |
46 | from mercurial import repair, extensions, url, error |
|
46 | from mercurial import repair, extensions, url, error | |
47 | import os, sys, re, errno |
|
47 | import os, sys, re, errno | |
48 |
|
48 | |||
49 | commands.norepo += " qclone" |
|
49 | commands.norepo += " qclone" | |
50 |
|
50 | |||
51 | # Patch names looks like unix-file names. |
|
51 | # Patch names looks like unix-file names. | |
52 | # They must be joinable with queue directory and result in the patch path. |
|
52 | # They must be joinable with queue directory and result in the patch path. | |
53 | normname = util.normpath |
|
53 | normname = util.normpath | |
54 |
|
54 | |||
55 | class statusentry(object): |
|
55 | class statusentry(object): | |
56 | def __init__(self, node, name): |
|
56 | def __init__(self, node, name): | |
57 | self.node, self.name = node, name |
|
57 | self.node, self.name = node, name | |
58 |
|
58 | |||
59 | def __str__(self): |
|
59 | def __str__(self): | |
60 | return hex(self.node) + ':' + self.name |
|
60 | return hex(self.node) + ':' + self.name | |
61 |
|
61 | |||
62 | class patchheader(object): |
|
62 | class patchheader(object): | |
63 | def __init__(self, pf, plainmode=False): |
|
63 | def __init__(self, pf, plainmode=False): | |
64 | def eatdiff(lines): |
|
64 | def eatdiff(lines): | |
65 | while lines: |
|
65 | while lines: | |
66 | l = lines[-1] |
|
66 | l = lines[-1] | |
67 | if (l.startswith("diff -") or |
|
67 | if (l.startswith("diff -") or | |
68 | l.startswith("Index:") or |
|
68 | l.startswith("Index:") or | |
69 | l.startswith("===========")): |
|
69 | l.startswith("===========")): | |
70 | del lines[-1] |
|
70 | del lines[-1] | |
71 | else: |
|
71 | else: | |
72 | break |
|
72 | break | |
73 | def eatempty(lines): |
|
73 | def eatempty(lines): | |
74 | while lines: |
|
74 | while lines: | |
75 | if not lines[-1].strip(): |
|
75 | if not lines[-1].strip(): | |
76 | del lines[-1] |
|
76 | del lines[-1] | |
77 | else: |
|
77 | else: | |
78 | break |
|
78 | break | |
79 |
|
79 | |||
80 | message = [] |
|
80 | message = [] | |
81 | comments = [] |
|
81 | comments = [] | |
82 | user = None |
|
82 | user = None | |
83 | date = None |
|
83 | date = None | |
84 | parent = None |
|
84 | parent = None | |
85 | format = None |
|
85 | format = None | |
86 | subject = None |
|
86 | subject = None | |
87 | diffstart = 0 |
|
87 | diffstart = 0 | |
88 |
|
88 | |||
89 | for line in file(pf): |
|
89 | for line in file(pf): | |
90 | line = line.rstrip() |
|
90 | line = line.rstrip() | |
91 | if (line.startswith('diff --git') |
|
91 | if (line.startswith('diff --git') | |
92 | or (diffstart and line.startswith('+++ '))): |
|
92 | or (diffstart and line.startswith('+++ '))): | |
93 | diffstart = 2 |
|
93 | diffstart = 2 | |
94 | break |
|
94 | break | |
95 | diffstart = 0 # reset |
|
95 | diffstart = 0 # reset | |
96 | if line.startswith("--- "): |
|
96 | if line.startswith("--- "): | |
97 | diffstart = 1 |
|
97 | diffstart = 1 | |
98 | continue |
|
98 | continue | |
99 | elif format == "hgpatch": |
|
99 | elif format == "hgpatch": | |
100 | # parse values when importing the result of an hg export |
|
100 | # parse values when importing the result of an hg export | |
101 | if line.startswith("# User "): |
|
101 | if line.startswith("# User "): | |
102 | user = line[7:] |
|
102 | user = line[7:] | |
103 | elif line.startswith("# Date "): |
|
103 | elif line.startswith("# Date "): | |
104 | date = line[7:] |
|
104 | date = line[7:] | |
105 | elif line.startswith("# Parent "): |
|
105 | elif line.startswith("# Parent "): | |
106 | parent = line[9:] |
|
106 | parent = line[9:] | |
107 | elif not line.startswith("# ") and line: |
|
107 | elif not line.startswith("# ") and line: | |
108 | message.append(line) |
|
108 | message.append(line) | |
109 | format = None |
|
109 | format = None | |
110 | elif line == '# HG changeset patch': |
|
110 | elif line == '# HG changeset patch': | |
111 | message = [] |
|
111 | message = [] | |
112 | format = "hgpatch" |
|
112 | format = "hgpatch" | |
113 | elif (format != "tagdone" and (line.startswith("Subject: ") or |
|
113 | elif (format != "tagdone" and (line.startswith("Subject: ") or | |
114 | line.startswith("subject: "))): |
|
114 | line.startswith("subject: "))): | |
115 | subject = line[9:] |
|
115 | subject = line[9:] | |
116 | format = "tag" |
|
116 | format = "tag" | |
117 | elif (format != "tagdone" and (line.startswith("From: ") or |
|
117 | elif (format != "tagdone" and (line.startswith("From: ") or | |
118 | line.startswith("from: "))): |
|
118 | line.startswith("from: "))): | |
119 | user = line[6:] |
|
119 | user = line[6:] | |
120 | format = "tag" |
|
120 | format = "tag" | |
121 | elif (format != "tagdone" and (line.startswith("Date: ") or |
|
121 | elif (format != "tagdone" and (line.startswith("Date: ") or | |
122 | line.startswith("date: "))): |
|
122 | line.startswith("date: "))): | |
123 | date = line[6:] |
|
123 | date = line[6:] | |
124 | format = "tag" |
|
124 | format = "tag" | |
125 | elif format == "tag" and line == "": |
|
125 | elif format == "tag" and line == "": | |
126 | # when looking for tags (subject: from: etc) they |
|
126 | # when looking for tags (subject: from: etc) they | |
127 | # end once you find a blank line in the source |
|
127 | # end once you find a blank line in the source | |
128 | format = "tagdone" |
|
128 | format = "tagdone" | |
129 | elif message or line: |
|
129 | elif message or line: | |
130 | message.append(line) |
|
130 | message.append(line) | |
131 | comments.append(line) |
|
131 | comments.append(line) | |
132 |
|
132 | |||
133 | eatdiff(message) |
|
133 | eatdiff(message) | |
134 | eatdiff(comments) |
|
134 | eatdiff(comments) | |
135 | eatempty(message) |
|
135 | eatempty(message) | |
136 | eatempty(comments) |
|
136 | eatempty(comments) | |
137 |
|
137 | |||
138 | # make sure message isn't empty |
|
138 | # make sure message isn't empty | |
139 | if format and format.startswith("tag") and subject: |
|
139 | if format and format.startswith("tag") and subject: | |
140 | message.insert(0, "") |
|
140 | message.insert(0, "") | |
141 | message.insert(0, subject) |
|
141 | message.insert(0, subject) | |
142 |
|
142 | |||
143 | self.message = message |
|
143 | self.message = message | |
144 | self.comments = comments |
|
144 | self.comments = comments | |
145 | self.user = user |
|
145 | self.user = user | |
146 | self.date = date |
|
146 | self.date = date | |
147 | self.parent = parent |
|
147 | self.parent = parent | |
148 | self.haspatch = diffstart > 1 |
|
148 | self.haspatch = diffstart > 1 | |
149 | self.plainmode = plainmode |
|
149 | self.plainmode = plainmode | |
150 |
|
150 | |||
151 | def setuser(self, user): |
|
151 | def setuser(self, user): | |
152 | if not self.updateheader(['From: ', '# User '], user): |
|
152 | if not self.updateheader(['From: ', '# User '], user): | |
153 | try: |
|
153 | try: | |
154 | patchheaderat = self.comments.index('# HG changeset patch') |
|
154 | patchheaderat = self.comments.index('# HG changeset patch') | |
155 | self.comments.insert(patchheaderat + 1, '# User ' + user) |
|
155 | self.comments.insert(patchheaderat + 1, '# User ' + user) | |
156 | except ValueError: |
|
156 | except ValueError: | |
157 | if self.plainmode or self._hasheader(['Date: ']): |
|
157 | if self.plainmode or self._hasheader(['Date: ']): | |
158 | self.comments = ['From: ' + user] + self.comments |
|
158 | self.comments = ['From: ' + user] + self.comments | |
159 | else: |
|
159 | else: | |
160 | tmp = ['# HG changeset patch', '# User ' + user, ''] |
|
160 | tmp = ['# HG changeset patch', '# User ' + user, ''] | |
161 | self.comments = tmp + self.comments |
|
161 | self.comments = tmp + self.comments | |
162 | self.user = user |
|
162 | self.user = user | |
163 |
|
163 | |||
164 | def setdate(self, date): |
|
164 | def setdate(self, date): | |
165 | if not self.updateheader(['Date: ', '# Date '], date): |
|
165 | if not self.updateheader(['Date: ', '# Date '], date): | |
166 | try: |
|
166 | try: | |
167 | patchheaderat = self.comments.index('# HG changeset patch') |
|
167 | patchheaderat = self.comments.index('# HG changeset patch') | |
168 | self.comments.insert(patchheaderat + 1, '# Date ' + date) |
|
168 | self.comments.insert(patchheaderat + 1, '# Date ' + date) | |
169 | except ValueError: |
|
169 | except ValueError: | |
170 | if self.plainmode or self._hasheader(['From: ']): |
|
170 | if self.plainmode or self._hasheader(['From: ']): | |
171 | self.comments = ['Date: ' + date] + self.comments |
|
171 | self.comments = ['Date: ' + date] + self.comments | |
172 | else: |
|
172 | else: | |
173 | tmp = ['# HG changeset patch', '# Date ' + date, ''] |
|
173 | tmp = ['# HG changeset patch', '# Date ' + date, ''] | |
174 | self.comments = tmp + self.comments |
|
174 | self.comments = tmp + self.comments | |
175 | self.date = date |
|
175 | self.date = date | |
176 |
|
176 | |||
177 | def setparent(self, parent): |
|
177 | def setparent(self, parent): | |
178 | if not self.updateheader(['# Parent '], parent): |
|
178 | if not self.updateheader(['# Parent '], parent): | |
179 | try: |
|
179 | try: | |
180 | patchheaderat = self.comments.index('# HG changeset patch') |
|
180 | patchheaderat = self.comments.index('# HG changeset patch') | |
181 | self.comments.insert(patchheaderat + 1, '# Parent ' + parent) |
|
181 | self.comments.insert(patchheaderat + 1, '# Parent ' + parent) | |
182 | except ValueError: |
|
182 | except ValueError: | |
183 | pass |
|
183 | pass | |
184 | self.parent = parent |
|
184 | self.parent = parent | |
185 |
|
185 | |||
186 | def setmessage(self, message): |
|
186 | def setmessage(self, message): | |
187 | if self.comments: |
|
187 | if self.comments: | |
188 | self._delmsg() |
|
188 | self._delmsg() | |
189 | self.message = [message] |
|
189 | self.message = [message] | |
190 | self.comments += self.message |
|
190 | self.comments += self.message | |
191 |
|
191 | |||
192 | def updateheader(self, prefixes, new): |
|
192 | def updateheader(self, prefixes, new): | |
193 | '''Update all references to a field in the patch header. |
|
193 | '''Update all references to a field in the patch header. | |
194 | Return whether the field is present.''' |
|
194 | Return whether the field is present.''' | |
195 | res = False |
|
195 | res = False | |
196 | for prefix in prefixes: |
|
196 | for prefix in prefixes: | |
197 | for i in xrange(len(self.comments)): |
|
197 | for i in xrange(len(self.comments)): | |
198 | if self.comments[i].startswith(prefix): |
|
198 | if self.comments[i].startswith(prefix): | |
199 | self.comments[i] = prefix + new |
|
199 | self.comments[i] = prefix + new | |
200 | res = True |
|
200 | res = True | |
201 | break |
|
201 | break | |
202 | return res |
|
202 | return res | |
203 |
|
203 | |||
204 | def _hasheader(self, prefixes): |
|
204 | def _hasheader(self, prefixes): | |
205 | '''Check if a header starts with any of the given prefixes.''' |
|
205 | '''Check if a header starts with any of the given prefixes.''' | |
206 | for prefix in prefixes: |
|
206 | for prefix in prefixes: | |
207 | for comment in self.comments: |
|
207 | for comment in self.comments: | |
208 | if comment.startswith(prefix): |
|
208 | if comment.startswith(prefix): | |
209 | return True |
|
209 | return True | |
210 | return False |
|
210 | return False | |
211 |
|
211 | |||
212 | def __str__(self): |
|
212 | def __str__(self): | |
213 | if not self.comments: |
|
213 | if not self.comments: | |
214 | return '' |
|
214 | return '' | |
215 | return '\n'.join(self.comments) + '\n\n' |
|
215 | return '\n'.join(self.comments) + '\n\n' | |
216 |
|
216 | |||
217 | def _delmsg(self): |
|
217 | def _delmsg(self): | |
218 | '''Remove existing message, keeping the rest of the comments fields. |
|
218 | '''Remove existing message, keeping the rest of the comments fields. | |
219 | If comments contains 'subject: ', message will prepend |
|
219 | If comments contains 'subject: ', message will prepend | |
220 | the field and a blank line.''' |
|
220 | the field and a blank line.''' | |
221 | if self.message: |
|
221 | if self.message: | |
222 | subj = 'subject: ' + self.message[0].lower() |
|
222 | subj = 'subject: ' + self.message[0].lower() | |
223 | for i in xrange(len(self.comments)): |
|
223 | for i in xrange(len(self.comments)): | |
224 | if subj == self.comments[i].lower(): |
|
224 | if subj == self.comments[i].lower(): | |
225 | del self.comments[i] |
|
225 | del self.comments[i] | |
226 | self.message = self.message[2:] |
|
226 | self.message = self.message[2:] | |
227 | break |
|
227 | break | |
228 | ci = 0 |
|
228 | ci = 0 | |
229 | for mi in self.message: |
|
229 | for mi in self.message: | |
230 | while mi != self.comments[ci]: |
|
230 | while mi != self.comments[ci]: | |
231 | ci += 1 |
|
231 | ci += 1 | |
232 | del self.comments[ci] |
|
232 | del self.comments[ci] | |
233 |
|
233 | |||
234 | class queue(object): |
|
234 | class queue(object): | |
235 | def __init__(self, ui, path, patchdir=None): |
|
235 | def __init__(self, ui, path, patchdir=None): | |
236 | self.basepath = path |
|
236 | self.basepath = path | |
237 | self.path = patchdir or os.path.join(path, "patches") |
|
237 | self.path = patchdir or os.path.join(path, "patches") | |
238 | self.opener = util.opener(self.path) |
|
238 | self.opener = util.opener(self.path) | |
239 | self.ui = ui |
|
239 | self.ui = ui | |
240 | self.applied_dirty = 0 |
|
240 | self.applied_dirty = 0 | |
241 | self.series_dirty = 0 |
|
241 | self.series_dirty = 0 | |
242 | self.series_path = "series" |
|
242 | self.series_path = "series" | |
243 | self.status_path = "status" |
|
243 | self.status_path = "status" | |
244 | self.guards_path = "guards" |
|
244 | self.guards_path = "guards" | |
245 | self.active_guards = None |
|
245 | self.active_guards = None | |
246 | self.guards_dirty = False |
|
246 | self.guards_dirty = False | |
247 | # Handle mq.git as a bool with extended values |
|
247 | # Handle mq.git as a bool with extended values | |
248 | try: |
|
248 | try: | |
249 | gitmode = ui.configbool('mq', 'git', None) |
|
249 | gitmode = ui.configbool('mq', 'git', None) | |
250 | if gitmode is None: |
|
250 | if gitmode is None: | |
251 | raise error.ConfigError() |
|
251 | raise error.ConfigError() | |
252 | self.gitmode = gitmode and 'yes' or 'no' |
|
252 | self.gitmode = gitmode and 'yes' or 'no' | |
253 | except error.ConfigError: |
|
253 | except error.ConfigError: | |
254 | self.gitmode = ui.config('mq', 'git', 'auto').lower() |
|
254 | self.gitmode = ui.config('mq', 'git', 'auto').lower() | |
255 | self.plainmode = ui.configbool('mq', 'plain', False) |
|
255 | self.plainmode = ui.configbool('mq', 'plain', False) | |
256 |
|
256 | |||
257 | @util.propertycache |
|
257 | @util.propertycache | |
258 | def applied(self): |
|
258 | def applied(self): | |
259 | if os.path.exists(self.join(self.status_path)): |
|
259 | if os.path.exists(self.join(self.status_path)): | |
260 | def parse(l): |
|
260 | def parse(l): | |
261 | n, name = l.split(':', 1) |
|
261 | n, name = l.split(':', 1) | |
262 | return statusentry(bin(n), name) |
|
262 | return statusentry(bin(n), name) | |
263 | lines = self.opener(self.status_path).read().splitlines() |
|
263 | lines = self.opener(self.status_path).read().splitlines() | |
264 | return [parse(l) for l in lines] |
|
264 | return [parse(l) for l in lines] | |
265 | return [] |
|
265 | return [] | |
266 |
|
266 | |||
267 | @util.propertycache |
|
267 | @util.propertycache | |
268 | def full_series(self): |
|
268 | def full_series(self): | |
269 | if os.path.exists(self.join(self.series_path)): |
|
269 | if os.path.exists(self.join(self.series_path)): | |
270 | return self.opener(self.series_path).read().splitlines() |
|
270 | return self.opener(self.series_path).read().splitlines() | |
271 | return [] |
|
271 | return [] | |
272 |
|
272 | |||
273 | @util.propertycache |
|
273 | @util.propertycache | |
274 | def series(self): |
|
274 | def series(self): | |
275 | self.parse_series() |
|
275 | self.parse_series() | |
276 | return self.series |
|
276 | return self.series | |
277 |
|
277 | |||
278 | @util.propertycache |
|
278 | @util.propertycache | |
279 | def series_guards(self): |
|
279 | def series_guards(self): | |
280 | self.parse_series() |
|
280 | self.parse_series() | |
281 | return self.series_guards |
|
281 | return self.series_guards | |
282 |
|
282 | |||
283 | def invalidate(self): |
|
283 | def invalidate(self): | |
284 | for a in 'applied full_series series series_guards'.split(): |
|
284 | for a in 'applied full_series series series_guards'.split(): | |
285 | if a in self.__dict__: |
|
285 | if a in self.__dict__: | |
286 | delattr(self, a) |
|
286 | delattr(self, a) | |
287 | self.applied_dirty = 0 |
|
287 | self.applied_dirty = 0 | |
288 | self.series_dirty = 0 |
|
288 | self.series_dirty = 0 | |
289 | self.guards_dirty = False |
|
289 | self.guards_dirty = False | |
290 | self.active_guards = None |
|
290 | self.active_guards = None | |
291 |
|
291 | |||
292 | def diffopts(self, opts={}, patchfn=None): |
|
292 | def diffopts(self, opts={}, patchfn=None): | |
293 | diffopts = patch.diffopts(self.ui, opts) |
|
293 | diffopts = patch.diffopts(self.ui, opts) | |
294 | if self.gitmode == 'auto': |
|
294 | if self.gitmode == 'auto': | |
295 | diffopts.upgrade = True |
|
295 | diffopts.upgrade = True | |
296 | elif self.gitmode == 'keep': |
|
296 | elif self.gitmode == 'keep': | |
297 | pass |
|
297 | pass | |
298 | elif self.gitmode in ('yes', 'no'): |
|
298 | elif self.gitmode in ('yes', 'no'): | |
299 | diffopts.git = self.gitmode == 'yes' |
|
299 | diffopts.git = self.gitmode == 'yes' | |
300 | else: |
|
300 | else: | |
301 | raise util.Abort(_('mq.git option can be auto/keep/yes/no' |
|
301 | raise util.Abort(_('mq.git option can be auto/keep/yes/no' | |
302 | ' got %s') % self.gitmode) |
|
302 | ' got %s') % self.gitmode) | |
303 | if patchfn: |
|
303 | if patchfn: | |
304 | diffopts = self.patchopts(diffopts, patchfn) |
|
304 | diffopts = self.patchopts(diffopts, patchfn) | |
305 | return diffopts |
|
305 | return diffopts | |
306 |
|
306 | |||
307 | def patchopts(self, diffopts, *patches): |
|
307 | def patchopts(self, diffopts, *patches): | |
308 | """Return a copy of input diff options with git set to true if |
|
308 | """Return a copy of input diff options with git set to true if | |
309 | referenced patch is a git patch and should be preserved as such. |
|
309 | referenced patch is a git patch and should be preserved as such. | |
310 | """ |
|
310 | """ | |
311 | diffopts = diffopts.copy() |
|
311 | diffopts = diffopts.copy() | |
312 | if not diffopts.git and self.gitmode == 'keep': |
|
312 | if not diffopts.git and self.gitmode == 'keep': | |
313 | for patchfn in patches: |
|
313 | for patchfn in patches: | |
314 | patchf = self.opener(patchfn, 'r') |
|
314 | patchf = self.opener(patchfn, 'r') | |
315 | # if the patch was a git patch, refresh it as a git patch |
|
315 | # if the patch was a git patch, refresh it as a git patch | |
316 | for line in patchf: |
|
316 | for line in patchf: | |
317 | if line.startswith('diff --git'): |
|
317 | if line.startswith('diff --git'): | |
318 | diffopts.git = True |
|
318 | diffopts.git = True | |
319 | break |
|
319 | break | |
320 | patchf.close() |
|
320 | patchf.close() | |
321 | return diffopts |
|
321 | return diffopts | |
322 |
|
322 | |||
323 | def join(self, *p): |
|
323 | def join(self, *p): | |
324 | return os.path.join(self.path, *p) |
|
324 | return os.path.join(self.path, *p) | |
325 |
|
325 | |||
326 | def find_series(self, patch): |
|
326 | def find_series(self, patch): | |
327 | def matchpatch(l): |
|
327 | def matchpatch(l): | |
328 | l = l.split('#', 1)[0] |
|
328 | l = l.split('#', 1)[0] | |
329 | return l.strip() == patch |
|
329 | return l.strip() == patch | |
330 | for index, l in enumerate(self.full_series): |
|
330 | for index, l in enumerate(self.full_series): | |
331 | if matchpatch(l): |
|
331 | if matchpatch(l): | |
332 | return index |
|
332 | return index | |
333 | return None |
|
333 | return None | |
334 |
|
334 | |||
335 | guard_re = re.compile(r'\s?#([-+][^-+# \t\r\n\f][^# \t\r\n\f]*)') |
|
335 | guard_re = re.compile(r'\s?#([-+][^-+# \t\r\n\f][^# \t\r\n\f]*)') | |
336 |
|
336 | |||
337 | def parse_series(self): |
|
337 | def parse_series(self): | |
338 | self.series = [] |
|
338 | self.series = [] | |
339 | self.series_guards = [] |
|
339 | self.series_guards = [] | |
340 | for l in self.full_series: |
|
340 | for l in self.full_series: | |
341 | h = l.find('#') |
|
341 | h = l.find('#') | |
342 | if h == -1: |
|
342 | if h == -1: | |
343 | patch = l |
|
343 | patch = l | |
344 | comment = '' |
|
344 | comment = '' | |
345 | elif h == 0: |
|
345 | elif h == 0: | |
346 | continue |
|
346 | continue | |
347 | else: |
|
347 | else: | |
348 | patch = l[:h] |
|
348 | patch = l[:h] | |
349 | comment = l[h:] |
|
349 | comment = l[h:] | |
350 | patch = patch.strip() |
|
350 | patch = patch.strip() | |
351 | if patch: |
|
351 | if patch: | |
352 | if patch in self.series: |
|
352 | if patch in self.series: | |
353 | raise util.Abort(_('%s appears more than once in %s') % |
|
353 | raise util.Abort(_('%s appears more than once in %s') % | |
354 | (patch, self.join(self.series_path))) |
|
354 | (patch, self.join(self.series_path))) | |
355 | self.series.append(patch) |
|
355 | self.series.append(patch) | |
356 | self.series_guards.append(self.guard_re.findall(comment)) |
|
356 | self.series_guards.append(self.guard_re.findall(comment)) | |
357 |
|
357 | |||
358 | def check_guard(self, guard): |
|
358 | def check_guard(self, guard): | |
359 | if not guard: |
|
359 | if not guard: | |
360 | return _('guard cannot be an empty string') |
|
360 | return _('guard cannot be an empty string') | |
361 | bad_chars = '# \t\r\n\f' |
|
361 | bad_chars = '# \t\r\n\f' | |
362 | first = guard[0] |
|
362 | first = guard[0] | |
363 | if first in '-+': |
|
363 | if first in '-+': | |
364 | return (_('guard %r starts with invalid character: %r') % |
|
364 | return (_('guard %r starts with invalid character: %r') % | |
365 | (guard, first)) |
|
365 | (guard, first)) | |
366 | for c in bad_chars: |
|
366 | for c in bad_chars: | |
367 | if c in guard: |
|
367 | if c in guard: | |
368 | return _('invalid character in guard %r: %r') % (guard, c) |
|
368 | return _('invalid character in guard %r: %r') % (guard, c) | |
369 |
|
369 | |||
370 | def set_active(self, guards): |
|
370 | def set_active(self, guards): | |
371 | for guard in guards: |
|
371 | for guard in guards: | |
372 | bad = self.check_guard(guard) |
|
372 | bad = self.check_guard(guard) | |
373 | if bad: |
|
373 | if bad: | |
374 | raise util.Abort(bad) |
|
374 | raise util.Abort(bad) | |
375 | guards = sorted(set(guards)) |
|
375 | guards = sorted(set(guards)) | |
376 | self.ui.debug('active guards: %s\n' % ' '.join(guards)) |
|
376 | self.ui.debug('active guards: %s\n' % ' '.join(guards)) | |
377 | self.active_guards = guards |
|
377 | self.active_guards = guards | |
378 | self.guards_dirty = True |
|
378 | self.guards_dirty = True | |
379 |
|
379 | |||
380 | def active(self): |
|
380 | def active(self): | |
381 | if self.active_guards is None: |
|
381 | if self.active_guards is None: | |
382 | self.active_guards = [] |
|
382 | self.active_guards = [] | |
383 | try: |
|
383 | try: | |
384 | guards = self.opener(self.guards_path).read().split() |
|
384 | guards = self.opener(self.guards_path).read().split() | |
385 | except IOError, err: |
|
385 | except IOError, err: | |
386 | if err.errno != errno.ENOENT: |
|
386 | if err.errno != errno.ENOENT: | |
387 | raise |
|
387 | raise | |
388 | guards = [] |
|
388 | guards = [] | |
389 | for i, guard in enumerate(guards): |
|
389 | for i, guard in enumerate(guards): | |
390 | bad = self.check_guard(guard) |
|
390 | bad = self.check_guard(guard) | |
391 | if bad: |
|
391 | if bad: | |
392 | self.ui.warn('%s:%d: %s\n' % |
|
392 | self.ui.warn('%s:%d: %s\n' % | |
393 | (self.join(self.guards_path), i + 1, bad)) |
|
393 | (self.join(self.guards_path), i + 1, bad)) | |
394 | else: |
|
394 | else: | |
395 | self.active_guards.append(guard) |
|
395 | self.active_guards.append(guard) | |
396 | return self.active_guards |
|
396 | return self.active_guards | |
397 |
|
397 | |||
398 | def set_guards(self, idx, guards): |
|
398 | def set_guards(self, idx, guards): | |
399 | for g in guards: |
|
399 | for g in guards: | |
400 | if len(g) < 2: |
|
400 | if len(g) < 2: | |
401 | raise util.Abort(_('guard %r too short') % g) |
|
401 | raise util.Abort(_('guard %r too short') % g) | |
402 | if g[0] not in '-+': |
|
402 | if g[0] not in '-+': | |
403 | raise util.Abort(_('guard %r starts with invalid char') % g) |
|
403 | raise util.Abort(_('guard %r starts with invalid char') % g) | |
404 | bad = self.check_guard(g[1:]) |
|
404 | bad = self.check_guard(g[1:]) | |
405 | if bad: |
|
405 | if bad: | |
406 | raise util.Abort(bad) |
|
406 | raise util.Abort(bad) | |
407 | drop = self.guard_re.sub('', self.full_series[idx]) |
|
407 | drop = self.guard_re.sub('', self.full_series[idx]) | |
408 | self.full_series[idx] = drop + ''.join([' #' + g for g in guards]) |
|
408 | self.full_series[idx] = drop + ''.join([' #' + g for g in guards]) | |
409 | self.parse_series() |
|
409 | self.parse_series() | |
410 | self.series_dirty = True |
|
410 | self.series_dirty = True | |
411 |
|
411 | |||
412 | def pushable(self, idx): |
|
412 | def pushable(self, idx): | |
413 | if isinstance(idx, str): |
|
413 | if isinstance(idx, str): | |
414 | idx = self.series.index(idx) |
|
414 | idx = self.series.index(idx) | |
415 | patchguards = self.series_guards[idx] |
|
415 | patchguards = self.series_guards[idx] | |
416 | if not patchguards: |
|
416 | if not patchguards: | |
417 | return True, None |
|
417 | return True, None | |
418 | guards = self.active() |
|
418 | guards = self.active() | |
419 | exactneg = [g for g in patchguards if g[0] == '-' and g[1:] in guards] |
|
419 | exactneg = [g for g in patchguards if g[0] == '-' and g[1:] in guards] | |
420 | if exactneg: |
|
420 | if exactneg: | |
421 | return False, exactneg[0] |
|
421 | return False, exactneg[0] | |
422 | pos = [g for g in patchguards if g[0] == '+'] |
|
422 | pos = [g for g in patchguards if g[0] == '+'] | |
423 | exactpos = [g for g in pos if g[1:] in guards] |
|
423 | exactpos = [g for g in pos if g[1:] in guards] | |
424 | if pos: |
|
424 | if pos: | |
425 | if exactpos: |
|
425 | if exactpos: | |
426 | return True, exactpos[0] |
|
426 | return True, exactpos[0] | |
427 | return False, pos |
|
427 | return False, pos | |
428 | return True, '' |
|
428 | return True, '' | |
429 |
|
429 | |||
430 | def explain_pushable(self, idx, all_patches=False): |
|
430 | def explain_pushable(self, idx, all_patches=False): | |
431 | write = all_patches and self.ui.write or self.ui.warn |
|
431 | write = all_patches and self.ui.write or self.ui.warn | |
432 | if all_patches or self.ui.verbose: |
|
432 | if all_patches or self.ui.verbose: | |
433 | if isinstance(idx, str): |
|
433 | if isinstance(idx, str): | |
434 | idx = self.series.index(idx) |
|
434 | idx = self.series.index(idx) | |
435 | pushable, why = self.pushable(idx) |
|
435 | pushable, why = self.pushable(idx) | |
436 | if all_patches and pushable: |
|
436 | if all_patches and pushable: | |
437 | if why is None: |
|
437 | if why is None: | |
438 | write(_('allowing %s - no guards in effect\n') % |
|
438 | write(_('allowing %s - no guards in effect\n') % | |
439 | self.series[idx]) |
|
439 | self.series[idx]) | |
440 | else: |
|
440 | else: | |
441 | if not why: |
|
441 | if not why: | |
442 | write(_('allowing %s - no matching negative guards\n') % |
|
442 | write(_('allowing %s - no matching negative guards\n') % | |
443 | self.series[idx]) |
|
443 | self.series[idx]) | |
444 | else: |
|
444 | else: | |
445 | write(_('allowing %s - guarded by %r\n') % |
|
445 | write(_('allowing %s - guarded by %r\n') % | |
446 | (self.series[idx], why)) |
|
446 | (self.series[idx], why)) | |
447 | if not pushable: |
|
447 | if not pushable: | |
448 | if why: |
|
448 | if why: | |
449 | write(_('skipping %s - guarded by %r\n') % |
|
449 | write(_('skipping %s - guarded by %r\n') % | |
450 | (self.series[idx], why)) |
|
450 | (self.series[idx], why)) | |
451 | else: |
|
451 | else: | |
452 | write(_('skipping %s - no matching guards\n') % |
|
452 | write(_('skipping %s - no matching guards\n') % | |
453 | self.series[idx]) |
|
453 | self.series[idx]) | |
454 |
|
454 | |||
455 | def save_dirty(self): |
|
455 | def save_dirty(self): | |
456 | def write_list(items, path): |
|
456 | def write_list(items, path): | |
457 | fp = self.opener(path, 'w') |
|
457 | fp = self.opener(path, 'w') | |
458 | for i in items: |
|
458 | for i in items: | |
459 | fp.write("%s\n" % i) |
|
459 | fp.write("%s\n" % i) | |
460 | fp.close() |
|
460 | fp.close() | |
461 | if self.applied_dirty: |
|
461 | if self.applied_dirty: | |
462 | write_list(map(str, self.applied), self.status_path) |
|
462 | write_list(map(str, self.applied), self.status_path) | |
463 | if self.series_dirty: |
|
463 | if self.series_dirty: | |
464 | write_list(self.full_series, self.series_path) |
|
464 | write_list(self.full_series, self.series_path) | |
465 | if self.guards_dirty: |
|
465 | if self.guards_dirty: | |
466 | write_list(self.active_guards, self.guards_path) |
|
466 | write_list(self.active_guards, self.guards_path) | |
467 |
|
467 | |||
468 | def removeundo(self, repo): |
|
468 | def removeundo(self, repo): | |
469 | undo = repo.sjoin('undo') |
|
469 | undo = repo.sjoin('undo') | |
470 | if not os.path.exists(undo): |
|
470 | if not os.path.exists(undo): | |
471 | return |
|
471 | return | |
472 | try: |
|
472 | try: | |
473 | os.unlink(undo) |
|
473 | os.unlink(undo) | |
474 | except OSError, inst: |
|
474 | except OSError, inst: | |
475 | self.ui.warn(_('error removing undo: %s\n') % str(inst)) |
|
475 | self.ui.warn(_('error removing undo: %s\n') % str(inst)) | |
476 |
|
476 | |||
477 | def printdiff(self, repo, diffopts, node1, node2=None, files=None, |
|
477 | def printdiff(self, repo, diffopts, node1, node2=None, files=None, | |
478 | fp=None, changes=None, opts={}): |
|
478 | fp=None, changes=None, opts={}): | |
479 | stat = opts.get('stat') |
|
479 | stat = opts.get('stat') | |
480 | if stat: |
|
480 | if stat: | |
481 | opts['unified'] = '0' |
|
481 | opts['unified'] = '0' | |
482 |
|
482 | |||
483 | m = cmdutil.match(repo, files, opts) |
|
483 | m = cmdutil.match(repo, files, opts) | |
484 | chunks = patch.diff(repo, node1, node2, m, changes, diffopts) |
|
484 | chunks = patch.diff(repo, node1, node2, m, changes, diffopts) | |
485 | write = fp is None and repo.ui.write or fp.write |
|
485 | write = fp is None and repo.ui.write or fp.write | |
486 | if stat: |
|
486 | if stat: | |
487 | width = self.ui.interactive() and util.termwidth() or 80 |
|
487 | width = self.ui.interactive() and util.termwidth() or 80 | |
488 | write(patch.diffstat(util.iterlines(chunks), width=width, |
|
488 | write(patch.diffstat(util.iterlines(chunks), width=width, | |
489 | git=diffopts.git)) |
|
489 | git=diffopts.git)) | |
490 | else: |
|
490 | else: | |
491 | for chunk in chunks: |
|
491 | for chunk in chunks: | |
492 | write(chunk) |
|
492 | write(chunk) | |
493 |
|
493 | |||
494 | def mergeone(self, repo, mergeq, head, patch, rev, diffopts): |
|
494 | def mergeone(self, repo, mergeq, head, patch, rev, diffopts): | |
495 | # first try just applying the patch |
|
495 | # first try just applying the patch | |
496 | (err, n) = self.apply(repo, [patch], update_status=False, |
|
496 | (err, n) = self.apply(repo, [patch], update_status=False, | |
497 | strict=True, merge=rev) |
|
497 | strict=True, merge=rev) | |
498 |
|
498 | |||
499 | if err == 0: |
|
499 | if err == 0: | |
500 | return (err, n) |
|
500 | return (err, n) | |
501 |
|
501 | |||
502 | if n is None: |
|
502 | if n is None: | |
503 | raise util.Abort(_("apply failed for patch %s") % patch) |
|
503 | raise util.Abort(_("apply failed for patch %s") % patch) | |
504 |
|
504 | |||
505 | self.ui.warn(_("patch didn't work out, merging %s\n") % patch) |
|
505 | self.ui.warn(_("patch didn't work out, merging %s\n") % patch) | |
506 |
|
506 | |||
507 | # apply failed, strip away that rev and merge. |
|
507 | # apply failed, strip away that rev and merge. | |
508 | hg.clean(repo, head) |
|
508 | hg.clean(repo, head) | |
509 | self.strip(repo, n, update=False, backup='strip') |
|
509 | self.strip(repo, n, update=False, backup='strip') | |
510 |
|
510 | |||
511 | ctx = repo[rev] |
|
511 | ctx = repo[rev] | |
512 | ret = hg.merge(repo, rev) |
|
512 | ret = hg.merge(repo, rev) | |
513 | if ret: |
|
513 | if ret: | |
514 | raise util.Abort(_("update returned %d") % ret) |
|
514 | raise util.Abort(_("update returned %d") % ret) | |
515 | n = repo.commit(ctx.description(), ctx.user(), force=True) |
|
515 | n = repo.commit(ctx.description(), ctx.user(), force=True) | |
516 | if n is None: |
|
516 | if n is None: | |
517 | raise util.Abort(_("repo commit failed")) |
|
517 | raise util.Abort(_("repo commit failed")) | |
518 | try: |
|
518 | try: | |
519 | ph = patchheader(mergeq.join(patch), self.plainmode) |
|
519 | ph = patchheader(mergeq.join(patch), self.plainmode) | |
520 | except: |
|
520 | except: | |
521 | raise util.Abort(_("unable to read %s") % patch) |
|
521 | raise util.Abort(_("unable to read %s") % patch) | |
522 |
|
522 | |||
523 | diffopts = self.patchopts(diffopts, patch) |
|
523 | diffopts = self.patchopts(diffopts, patch) | |
524 | patchf = self.opener(patch, "w") |
|
524 | patchf = self.opener(patch, "w") | |
525 | comments = str(ph) |
|
525 | comments = str(ph) | |
526 | if comments: |
|
526 | if comments: | |
527 | patchf.write(comments) |
|
527 | patchf.write(comments) | |
528 | self.printdiff(repo, diffopts, head, n, fp=patchf) |
|
528 | self.printdiff(repo, diffopts, head, n, fp=patchf) | |
529 | patchf.close() |
|
529 | patchf.close() | |
530 | self.removeundo(repo) |
|
530 | self.removeundo(repo) | |
531 | return (0, n) |
|
531 | return (0, n) | |
532 |
|
532 | |||
533 | def qparents(self, repo, rev=None): |
|
533 | def qparents(self, repo, rev=None): | |
534 | if rev is None: |
|
534 | if rev is None: | |
535 | (p1, p2) = repo.dirstate.parents() |
|
535 | (p1, p2) = repo.dirstate.parents() | |
536 | if p2 == nullid: |
|
536 | if p2 == nullid: | |
537 | return p1 |
|
537 | return p1 | |
538 | if not self.applied: |
|
538 | if not self.applied: | |
539 | return None |
|
539 | return None | |
540 | return self.applied[-1].node |
|
540 | return self.applied[-1].node | |
541 | p1, p2 = repo.changelog.parents(rev) |
|
541 | p1, p2 = repo.changelog.parents(rev) | |
542 | if p2 != nullid and p2 in [x.node for x in self.applied]: |
|
542 | if p2 != nullid and p2 in [x.node for x in self.applied]: | |
543 | return p2 |
|
543 | return p2 | |
544 | return p1 |
|
544 | return p1 | |
545 |
|
545 | |||
546 | def mergepatch(self, repo, mergeq, series, diffopts): |
|
546 | def mergepatch(self, repo, mergeq, series, diffopts): | |
547 | if not self.applied: |
|
547 | if not self.applied: | |
548 | # each of the patches merged in will have two parents. This |
|
548 | # each of the patches merged in will have two parents. This | |
549 | # can confuse the qrefresh, qdiff, and strip code because it |
|
549 | # can confuse the qrefresh, qdiff, and strip code because it | |
550 | # needs to know which parent is actually in the patch queue. |
|
550 | # needs to know which parent is actually in the patch queue. | |
551 | # so, we insert a merge marker with only one parent. This way |
|
551 | # so, we insert a merge marker with only one parent. This way | |
552 | # the first patch in the queue is never a merge patch |
|
552 | # the first patch in the queue is never a merge patch | |
553 | # |
|
553 | # | |
554 | pname = ".hg.patches.merge.marker" |
|
554 | pname = ".hg.patches.merge.marker" | |
555 | n = repo.commit('[mq]: merge marker', force=True) |
|
555 | n = repo.commit('[mq]: merge marker', force=True) | |
556 | self.removeundo(repo) |
|
556 | self.removeundo(repo) | |
557 | self.applied.append(statusentry(n, pname)) |
|
557 | self.applied.append(statusentry(n, pname)) | |
558 | self.applied_dirty = 1 |
|
558 | self.applied_dirty = 1 | |
559 |
|
559 | |||
560 | head = self.qparents(repo) |
|
560 | head = self.qparents(repo) | |
561 |
|
561 | |||
562 | for patch in series: |
|
562 | for patch in series: | |
563 | patch = mergeq.lookup(patch, strict=True) |
|
563 | patch = mergeq.lookup(patch, strict=True) | |
564 | if not patch: |
|
564 | if not patch: | |
565 | self.ui.warn(_("patch %s does not exist\n") % patch) |
|
565 | self.ui.warn(_("patch %s does not exist\n") % patch) | |
566 | return (1, None) |
|
566 | return (1, None) | |
567 | pushable, reason = self.pushable(patch) |
|
567 | pushable, reason = self.pushable(patch) | |
568 | if not pushable: |
|
568 | if not pushable: | |
569 | self.explain_pushable(patch, all_patches=True) |
|
569 | self.explain_pushable(patch, all_patches=True) | |
570 | continue |
|
570 | continue | |
571 | info = mergeq.isapplied(patch) |
|
571 | info = mergeq.isapplied(patch) | |
572 | if not info: |
|
572 | if not info: | |
573 | self.ui.warn(_("patch %s is not applied\n") % patch) |
|
573 | self.ui.warn(_("patch %s is not applied\n") % patch) | |
574 | return (1, None) |
|
574 | return (1, None) | |
575 | rev = info[1] |
|
575 | rev = info[1] | |
576 | err, head = self.mergeone(repo, mergeq, head, patch, rev, diffopts) |
|
576 | err, head = self.mergeone(repo, mergeq, head, patch, rev, diffopts) | |
577 | if head: |
|
577 | if head: | |
578 | self.applied.append(statusentry(head, patch)) |
|
578 | self.applied.append(statusentry(head, patch)) | |
579 | self.applied_dirty = 1 |
|
579 | self.applied_dirty = 1 | |
580 | if err: |
|
580 | if err: | |
581 | return (err, head) |
|
581 | return (err, head) | |
582 | self.save_dirty() |
|
582 | self.save_dirty() | |
583 | return (0, head) |
|
583 | return (0, head) | |
584 |
|
584 | |||
585 | def patch(self, repo, patchfile): |
|
585 | def patch(self, repo, patchfile): | |
586 | '''Apply patchfile to the working directory. |
|
586 | '''Apply patchfile to the working directory. | |
587 | patchfile: name of patch file''' |
|
587 | patchfile: name of patch file''' | |
588 | files = {} |
|
588 | files = {} | |
589 | try: |
|
589 | try: | |
590 | fuzz = patch.patch(patchfile, self.ui, strip=1, cwd=repo.root, |
|
590 | fuzz = patch.patch(patchfile, self.ui, strip=1, cwd=repo.root, | |
591 | files=files, eolmode=None) |
|
591 | files=files, eolmode=None) | |
592 | except Exception, inst: |
|
592 | except Exception, inst: | |
593 | self.ui.note(str(inst) + '\n') |
|
593 | self.ui.note(str(inst) + '\n') | |
594 | if not self.ui.verbose: |
|
594 | if not self.ui.verbose: | |
595 | self.ui.warn(_("patch failed, unable to continue (try -v)\n")) |
|
595 | self.ui.warn(_("patch failed, unable to continue (try -v)\n")) | |
596 | return (False, files, False) |
|
596 | return (False, files, False) | |
597 |
|
597 | |||
598 | return (True, files, fuzz) |
|
598 | return (True, files, fuzz) | |
599 |
|
599 | |||
600 | def apply(self, repo, series, list=False, update_status=True, |
|
600 | def apply(self, repo, series, list=False, update_status=True, | |
601 | strict=False, patchdir=None, merge=None, all_files=None): |
|
601 | strict=False, patchdir=None, merge=None, all_files=None): | |
602 | wlock = lock = tr = None |
|
602 | wlock = lock = tr = None | |
603 | try: |
|
603 | try: | |
604 | wlock = repo.wlock() |
|
604 | wlock = repo.wlock() | |
605 | lock = repo.lock() |
|
605 | lock = repo.lock() | |
606 | tr = repo.transaction() |
|
606 | tr = repo.transaction() | |
607 | try: |
|
607 | try: | |
608 | ret = self._apply(repo, series, list, update_status, |
|
608 | ret = self._apply(repo, series, list, update_status, | |
609 | strict, patchdir, merge, all_files=all_files) |
|
609 | strict, patchdir, merge, all_files=all_files) | |
610 | tr.close() |
|
610 | tr.close() | |
611 | self.save_dirty() |
|
611 | self.save_dirty() | |
612 | return ret |
|
612 | return ret | |
613 | except: |
|
613 | except: | |
614 | try: |
|
614 | try: | |
615 | tr.abort() |
|
615 | tr.abort() | |
616 | finally: |
|
616 | finally: | |
617 | repo.invalidate() |
|
617 | repo.invalidate() | |
618 | repo.dirstate.invalidate() |
|
618 | repo.dirstate.invalidate() | |
619 | raise |
|
619 | raise | |
620 | finally: |
|
620 | finally: | |
621 | del tr |
|
621 | del tr | |
622 | release(lock, wlock) |
|
622 | release(lock, wlock) | |
623 | self.removeundo(repo) |
|
623 | self.removeundo(repo) | |
624 |
|
624 | |||
625 | def _apply(self, repo, series, list=False, update_status=True, |
|
625 | def _apply(self, repo, series, list=False, update_status=True, | |
626 | strict=False, patchdir=None, merge=None, all_files=None): |
|
626 | strict=False, patchdir=None, merge=None, all_files=None): | |
627 | '''returns (error, hash) |
|
627 | '''returns (error, hash) | |
628 | error = 1 for unable to read, 2 for patch failed, 3 for patch fuzz''' |
|
628 | error = 1 for unable to read, 2 for patch failed, 3 for patch fuzz''' | |
629 | # TODO unify with commands.py |
|
629 | # TODO unify with commands.py | |
630 | if not patchdir: |
|
630 | if not patchdir: | |
631 | patchdir = self.path |
|
631 | patchdir = self.path | |
632 | err = 0 |
|
632 | err = 0 | |
633 | n = None |
|
633 | n = None | |
634 | for patchname in series: |
|
634 | for patchname in series: | |
635 | pushable, reason = self.pushable(patchname) |
|
635 | pushable, reason = self.pushable(patchname) | |
636 | if not pushable: |
|
636 | if not pushable: | |
637 | self.explain_pushable(patchname, all_patches=True) |
|
637 | self.explain_pushable(patchname, all_patches=True) | |
638 | continue |
|
638 | continue | |
639 | self.ui.status(_("applying %s\n") % patchname) |
|
639 | self.ui.status(_("applying %s\n") % patchname) | |
640 | pf = os.path.join(patchdir, patchname) |
|
640 | pf = os.path.join(patchdir, patchname) | |
641 |
|
641 | |||
642 | try: |
|
642 | try: | |
643 | ph = patchheader(self.join(patchname), self.plainmode) |
|
643 | ph = patchheader(self.join(patchname), self.plainmode) | |
644 | except: |
|
644 | except: | |
645 | self.ui.warn(_("unable to read %s\n") % patchname) |
|
645 | self.ui.warn(_("unable to read %s\n") % patchname) | |
646 | err = 1 |
|
646 | err = 1 | |
647 | break |
|
647 | break | |
648 |
|
648 | |||
649 | message = ph.message |
|
649 | message = ph.message | |
650 | if not message: |
|
650 | if not message: | |
651 | message = "imported patch %s\n" % patchname |
|
651 | message = "imported patch %s\n" % patchname | |
652 | else: |
|
652 | else: | |
653 | if list: |
|
653 | if list: | |
654 | message.append("\nimported patch %s" % patchname) |
|
654 | message.append("\nimported patch %s" % patchname) | |
655 | message = '\n'.join(message) |
|
655 | message = '\n'.join(message) | |
656 |
|
656 | |||
657 | if ph.haspatch: |
|
657 | if ph.haspatch: | |
658 | (patcherr, files, fuzz) = self.patch(repo, pf) |
|
658 | (patcherr, files, fuzz) = self.patch(repo, pf) | |
659 | if all_files is not None: |
|
659 | if all_files is not None: | |
660 | all_files.update(files) |
|
660 | all_files.update(files) | |
661 | patcherr = not patcherr |
|
661 | patcherr = not patcherr | |
662 | else: |
|
662 | else: | |
663 | self.ui.warn(_("patch %s is empty\n") % patchname) |
|
663 | self.ui.warn(_("patch %s is empty\n") % patchname) | |
664 | patcherr, files, fuzz = 0, [], 0 |
|
664 | patcherr, files, fuzz = 0, [], 0 | |
665 |
|
665 | |||
666 | if merge and files: |
|
666 | if merge and files: | |
667 | # Mark as removed/merged and update dirstate parent info |
|
667 | # Mark as removed/merged and update dirstate parent info | |
668 | removed = [] |
|
668 | removed = [] | |
669 | merged = [] |
|
669 | merged = [] | |
670 | for f in files: |
|
670 | for f in files: | |
671 | if os.path.exists(repo.wjoin(f)): |
|
671 | if os.path.exists(repo.wjoin(f)): | |
672 | merged.append(f) |
|
672 | merged.append(f) | |
673 | else: |
|
673 | else: | |
674 | removed.append(f) |
|
674 | removed.append(f) | |
675 | for f in removed: |
|
675 | for f in removed: | |
676 | repo.dirstate.remove(f) |
|
676 | repo.dirstate.remove(f) | |
677 | for f in merged: |
|
677 | for f in merged: | |
678 | repo.dirstate.merge(f) |
|
678 | repo.dirstate.merge(f) | |
679 | p1, p2 = repo.dirstate.parents() |
|
679 | p1, p2 = repo.dirstate.parents() | |
680 | repo.dirstate.setparents(p1, merge) |
|
680 | repo.dirstate.setparents(p1, merge) | |
681 |
|
681 | |||
682 | files = patch.updatedir(self.ui, repo, files) |
|
682 | files = patch.updatedir(self.ui, repo, files) | |
683 | match = cmdutil.matchfiles(repo, files or []) |
|
683 | match = cmdutil.matchfiles(repo, files or []) | |
684 | n = repo.commit(message, ph.user, ph.date, match=match, force=True) |
|
684 | n = repo.commit(message, ph.user, ph.date, match=match, force=True) | |
685 |
|
685 | |||
686 | if n is None: |
|
686 | if n is None: | |
687 | raise util.Abort(_("repo commit failed")) |
|
687 | raise util.Abort(_("repo commit failed")) | |
688 |
|
688 | |||
689 | if update_status: |
|
689 | if update_status: | |
690 | self.applied.append(statusentry(n, patchname)) |
|
690 | self.applied.append(statusentry(n, patchname)) | |
691 |
|
691 | |||
692 | if patcherr: |
|
692 | if patcherr: | |
693 | self.ui.warn(_("patch failed, rejects left in working dir\n")) |
|
693 | self.ui.warn(_("patch failed, rejects left in working dir\n")) | |
694 | err = 2 |
|
694 | err = 2 | |
695 | break |
|
695 | break | |
696 |
|
696 | |||
697 | if fuzz and strict: |
|
697 | if fuzz and strict: | |
698 | self.ui.warn(_("fuzz found when applying patch, stopping\n")) |
|
698 | self.ui.warn(_("fuzz found when applying patch, stopping\n")) | |
699 | err = 3 |
|
699 | err = 3 | |
700 | break |
|
700 | break | |
701 | return (err, n) |
|
701 | return (err, n) | |
702 |
|
702 | |||
703 | def _cleanup(self, patches, numrevs, keep=False): |
|
703 | def _cleanup(self, patches, numrevs, keep=False): | |
704 | if not keep: |
|
704 | if not keep: | |
705 | r = self.qrepo() |
|
705 | r = self.qrepo() | |
706 | if r: |
|
706 | if r: | |
707 | r.remove(patches, True) |
|
707 | r.remove(patches, True) | |
708 | else: |
|
708 | else: | |
709 | for p in patches: |
|
709 | for p in patches: | |
710 | os.unlink(self.join(p)) |
|
710 | os.unlink(self.join(p)) | |
711 |
|
711 | |||
712 | if numrevs: |
|
712 | if numrevs: | |
713 | del self.applied[:numrevs] |
|
713 | del self.applied[:numrevs] | |
714 | self.applied_dirty = 1 |
|
714 | self.applied_dirty = 1 | |
715 |
|
715 | |||
716 | for i in sorted([self.find_series(p) for p in patches], reverse=True): |
|
716 | for i in sorted([self.find_series(p) for p in patches], reverse=True): | |
717 | del self.full_series[i] |
|
717 | del self.full_series[i] | |
718 | self.parse_series() |
|
718 | self.parse_series() | |
719 | self.series_dirty = 1 |
|
719 | self.series_dirty = 1 | |
720 |
|
720 | |||
721 | def _revpatches(self, repo, revs): |
|
721 | def _revpatches(self, repo, revs): | |
722 | firstrev = repo[self.applied[0].node].rev() |
|
722 | firstrev = repo[self.applied[0].node].rev() | |
723 | patches = [] |
|
723 | patches = [] | |
724 | for i, rev in enumerate(revs): |
|
724 | for i, rev in enumerate(revs): | |
725 |
|
725 | |||
726 | if rev < firstrev: |
|
726 | if rev < firstrev: | |
727 | raise util.Abort(_('revision %d is not managed') % rev) |
|
727 | raise util.Abort(_('revision %d is not managed') % rev) | |
728 |
|
728 | |||
729 | ctx = repo[rev] |
|
729 | ctx = repo[rev] | |
730 | base = self.applied[i].node |
|
730 | base = self.applied[i].node | |
731 | if ctx.node() != base: |
|
731 | if ctx.node() != base: | |
732 | msg = _('cannot delete revision %d above applied patches') |
|
732 | msg = _('cannot delete revision %d above applied patches') | |
733 | raise util.Abort(msg % rev) |
|
733 | raise util.Abort(msg % rev) | |
734 |
|
734 | |||
735 | patch = self.applied[i].name |
|
735 | patch = self.applied[i].name | |
736 | for fmt in ('[mq]: %s', 'imported patch %s'): |
|
736 | for fmt in ('[mq]: %s', 'imported patch %s'): | |
737 | if ctx.description() == fmt % patch: |
|
737 | if ctx.description() == fmt % patch: | |
738 | msg = _('patch %s finalized without changeset message\n') |
|
738 | msg = _('patch %s finalized without changeset message\n') | |
739 | repo.ui.status(msg % patch) |
|
739 | repo.ui.status(msg % patch) | |
740 | break |
|
740 | break | |
741 |
|
741 | |||
742 | patches.append(patch) |
|
742 | patches.append(patch) | |
743 | return patches |
|
743 | return patches | |
744 |
|
744 | |||
745 | def finish(self, repo, revs): |
|
745 | def finish(self, repo, revs): | |
746 | patches = self._revpatches(repo, sorted(revs)) |
|
746 | patches = self._revpatches(repo, sorted(revs)) | |
747 | self._cleanup(patches, len(patches)) |
|
747 | self._cleanup(patches, len(patches)) | |
748 |
|
748 | |||
749 | def delete(self, repo, patches, opts): |
|
749 | def delete(self, repo, patches, opts): | |
750 | if not patches and not opts.get('rev'): |
|
750 | if not patches and not opts.get('rev'): | |
751 | raise util.Abort(_('qdelete requires at least one revision or ' |
|
751 | raise util.Abort(_('qdelete requires at least one revision or ' | |
752 | 'patch name')) |
|
752 | 'patch name')) | |
753 |
|
753 | |||
754 | realpatches = [] |
|
754 | realpatches = [] | |
755 | for patch in patches: |
|
755 | for patch in patches: | |
756 | patch = self.lookup(patch, strict=True) |
|
756 | patch = self.lookup(patch, strict=True) | |
757 | info = self.isapplied(patch) |
|
757 | info = self.isapplied(patch) | |
758 | if info: |
|
758 | if info: | |
759 | raise util.Abort(_("cannot delete applied patch %s") % patch) |
|
759 | raise util.Abort(_("cannot delete applied patch %s") % patch) | |
760 | if patch not in self.series: |
|
760 | if patch not in self.series: | |
761 | raise util.Abort(_("patch %s not in series file") % patch) |
|
761 | raise util.Abort(_("patch %s not in series file") % patch) | |
762 | realpatches.append(patch) |
|
762 | realpatches.append(patch) | |
763 |
|
763 | |||
764 | numrevs = 0 |
|
764 | numrevs = 0 | |
765 | if opts.get('rev'): |
|
765 | if opts.get('rev'): | |
766 | if not self.applied: |
|
766 | if not self.applied: | |
767 | raise util.Abort(_('no patches applied')) |
|
767 | raise util.Abort(_('no patches applied')) | |
768 | revs = cmdutil.revrange(repo, opts['rev']) |
|
768 | revs = cmdutil.revrange(repo, opts['rev']) | |
769 | if len(revs) > 1 and revs[0] > revs[1]: |
|
769 | if len(revs) > 1 and revs[0] > revs[1]: | |
770 | revs.reverse() |
|
770 | revs.reverse() | |
771 | revpatches = self._revpatches(repo, revs) |
|
771 | revpatches = self._revpatches(repo, revs) | |
772 | realpatches += revpatches |
|
772 | realpatches += revpatches | |
773 | numrevs = len(revpatches) |
|
773 | numrevs = len(revpatches) | |
774 |
|
774 | |||
775 | self._cleanup(realpatches, numrevs, opts.get('keep')) |
|
775 | self._cleanup(realpatches, numrevs, opts.get('keep')) | |
776 |
|
776 | |||
777 | def check_toppatch(self, repo): |
|
777 | def check_toppatch(self, repo): | |
778 | if self.applied: |
|
778 | if self.applied: | |
779 | top = self.applied[-1].node |
|
779 | top = self.applied[-1].node | |
780 | patch = self.applied[-1].name |
|
780 | patch = self.applied[-1].name | |
781 | pp = repo.dirstate.parents() |
|
781 | pp = repo.dirstate.parents() | |
782 | if top not in pp: |
|
782 | if top not in pp: | |
783 | raise util.Abort(_("working directory revision is not qtip")) |
|
783 | raise util.Abort(_("working directory revision is not qtip")) | |
784 | return top, patch |
|
784 | return top, patch | |
785 | return None, None |
|
785 | return None, None | |
786 |
|
786 | |||
787 | def check_localchanges(self, repo, force=False, refresh=True): |
|
787 | def check_localchanges(self, repo, force=False, refresh=True): | |
788 | m, a, r, d = repo.status()[:4] |
|
788 | m, a, r, d = repo.status()[:4] | |
789 | if (m or a or r or d) and not force: |
|
789 | if (m or a or r or d) and not force: | |
790 | if refresh: |
|
790 | if refresh: | |
791 | raise util.Abort(_("local changes found, refresh first")) |
|
791 | raise util.Abort(_("local changes found, refresh first")) | |
792 | else: |
|
792 | else: | |
793 | raise util.Abort(_("local changes found")) |
|
793 | raise util.Abort(_("local changes found")) | |
794 | return m, a, r, d |
|
794 | return m, a, r, d | |
795 |
|
795 | |||
796 | _reserved = ('series', 'status', 'guards') |
|
796 | _reserved = ('series', 'status', 'guards') | |
797 | def check_reserved_name(self, name): |
|
797 | def check_reserved_name(self, name): | |
798 | if (name in self._reserved or name.startswith('.hg') |
|
798 | if (name in self._reserved or name.startswith('.hg') | |
799 | or name.startswith('.mq') or '#' in name or ':' in name): |
|
799 | or name.startswith('.mq') or '#' in name or ':' in name): | |
800 | raise util.Abort(_('"%s" cannot be used as the name of a patch') |
|
800 | raise util.Abort(_('"%s" cannot be used as the name of a patch') | |
801 | % name) |
|
801 | % name) | |
802 |
|
802 | |||
803 | def new(self, repo, patchfn, *pats, **opts): |
|
803 | def new(self, repo, patchfn, *pats, **opts): | |
804 | """options: |
|
804 | """options: | |
805 | msg: a string or a no-argument function returning a string |
|
805 | msg: a string or a no-argument function returning a string | |
806 | """ |
|
806 | """ | |
807 | msg = opts.get('msg') |
|
807 | msg = opts.get('msg') | |
808 | user = opts.get('user') |
|
808 | user = opts.get('user') | |
809 | date = opts.get('date') |
|
809 | date = opts.get('date') | |
810 | if date: |
|
810 | if date: | |
811 | date = util.parsedate(date) |
|
811 | date = util.parsedate(date) | |
812 | diffopts = self.diffopts({'git': opts.get('git')}) |
|
812 | diffopts = self.diffopts({'git': opts.get('git')}) | |
813 | self.check_reserved_name(patchfn) |
|
813 | self.check_reserved_name(patchfn) | |
814 | if os.path.exists(self.join(patchfn)): |
|
814 | if os.path.exists(self.join(patchfn)): | |
815 | raise util.Abort(_('patch "%s" already exists') % patchfn) |
|
815 | raise util.Abort(_('patch "%s" already exists') % patchfn) | |
816 | if opts.get('include') or opts.get('exclude') or pats: |
|
816 | if opts.get('include') or opts.get('exclude') or pats: | |
817 | match = cmdutil.match(repo, pats, opts) |
|
817 | match = cmdutil.match(repo, pats, opts) | |
818 | # detect missing files in pats |
|
818 | # detect missing files in pats | |
819 | def badfn(f, msg): |
|
819 | def badfn(f, msg): | |
820 | raise util.Abort('%s: %s' % (f, msg)) |
|
820 | raise util.Abort('%s: %s' % (f, msg)) | |
821 | match.bad = badfn |
|
821 | match.bad = badfn | |
822 | m, a, r, d = repo.status(match=match)[:4] |
|
822 | m, a, r, d = repo.status(match=match)[:4] | |
823 | else: |
|
823 | else: | |
824 | m, a, r, d = self.check_localchanges(repo, force=True) |
|
824 | m, a, r, d = self.check_localchanges(repo, force=True) | |
825 | match = cmdutil.matchfiles(repo, m + a + r) |
|
825 | match = cmdutil.matchfiles(repo, m + a + r) | |
826 | if len(repo[None].parents()) > 1: |
|
826 | if len(repo[None].parents()) > 1: | |
827 | raise util.Abort(_('cannot manage merge changesets')) |
|
827 | raise util.Abort(_('cannot manage merge changesets')) | |
828 | commitfiles = m + a + r |
|
828 | commitfiles = m + a + r | |
829 | self.check_toppatch(repo) |
|
829 | self.check_toppatch(repo) | |
830 | insert = self.full_series_end() |
|
830 | insert = self.full_series_end() | |
831 | wlock = repo.wlock() |
|
831 | wlock = repo.wlock() | |
832 | try: |
|
832 | try: | |
833 | # if patch file write fails, abort early |
|
833 | # if patch file write fails, abort early | |
834 | p = self.opener(patchfn, "w") |
|
834 | p = self.opener(patchfn, "w") | |
835 | try: |
|
835 | try: | |
836 | if self.plainmode: |
|
836 | if self.plainmode: | |
837 | if user: |
|
837 | if user: | |
838 | p.write("From: " + user + "\n") |
|
838 | p.write("From: " + user + "\n") | |
839 | if not date: |
|
839 | if not date: | |
840 | p.write("\n") |
|
840 | p.write("\n") | |
841 | if date: |
|
841 | if date: | |
842 | p.write("Date: %d %d\n\n" % date) |
|
842 | p.write("Date: %d %d\n\n" % date) | |
843 | else: |
|
843 | else: | |
844 | p.write("# HG changeset patch\n") |
|
844 | p.write("# HG changeset patch\n") | |
845 | p.write("# Parent " |
|
845 | p.write("# Parent " | |
846 | + hex(repo[None].parents()[0].node()) + "\n") |
|
846 | + hex(repo[None].parents()[0].node()) + "\n") | |
847 | if user: |
|
847 | if user: | |
848 | p.write("# User " + user + "\n") |
|
848 | p.write("# User " + user + "\n") | |
849 | if date: |
|
849 | if date: | |
850 | p.write("# Date %s %s\n\n" % date) |
|
850 | p.write("# Date %s %s\n\n" % date) | |
851 | if hasattr(msg, '__call__'): |
|
851 | if hasattr(msg, '__call__'): | |
852 | msg = msg() |
|
852 | msg = msg() | |
853 | commitmsg = msg and msg or ("[mq]: %s" % patchfn) |
|
853 | commitmsg = msg and msg or ("[mq]: %s" % patchfn) | |
854 | n = repo.commit(commitmsg, user, date, match=match, force=True) |
|
854 | n = repo.commit(commitmsg, user, date, match=match, force=True) | |
855 | if n is None: |
|
855 | if n is None: | |
856 | raise util.Abort(_("repo commit failed")) |
|
856 | raise util.Abort(_("repo commit failed")) | |
857 | try: |
|
857 | try: | |
858 | self.full_series[insert:insert] = [patchfn] |
|
858 | self.full_series[insert:insert] = [patchfn] | |
859 | self.applied.append(statusentry(n, patchfn)) |
|
859 | self.applied.append(statusentry(n, patchfn)) | |
860 | self.parse_series() |
|
860 | self.parse_series() | |
861 | self.series_dirty = 1 |
|
861 | self.series_dirty = 1 | |
862 | self.applied_dirty = 1 |
|
862 | self.applied_dirty = 1 | |
863 | if msg: |
|
863 | if msg: | |
864 | msg = msg + "\n\n" |
|
864 | msg = msg + "\n\n" | |
865 | p.write(msg) |
|
865 | p.write(msg) | |
866 | if commitfiles: |
|
866 | if commitfiles: | |
867 | parent = self.qparents(repo, n) |
|
867 | parent = self.qparents(repo, n) | |
868 | chunks = patch.diff(repo, node1=parent, node2=n, |
|
868 | chunks = patch.diff(repo, node1=parent, node2=n, | |
869 | match=match, opts=diffopts) |
|
869 | match=match, opts=diffopts) | |
870 | for chunk in chunks: |
|
870 | for chunk in chunks: | |
871 | p.write(chunk) |
|
871 | p.write(chunk) | |
872 | p.close() |
|
872 | p.close() | |
873 | wlock.release() |
|
873 | wlock.release() | |
874 | wlock = None |
|
874 | wlock = None | |
875 | r = self.qrepo() |
|
875 | r = self.qrepo() | |
876 | if r: |
|
876 | if r: | |
877 | r.add([patchfn]) |
|
877 | r.add([patchfn]) | |
878 | except: |
|
878 | except: | |
879 | repo.rollback() |
|
879 | repo.rollback() | |
880 | raise |
|
880 | raise | |
881 | except Exception: |
|
881 | except Exception: | |
882 | patchpath = self.join(patchfn) |
|
882 | patchpath = self.join(patchfn) | |
883 | try: |
|
883 | try: | |
884 | os.unlink(patchpath) |
|
884 | os.unlink(patchpath) | |
885 | except: |
|
885 | except: | |
886 | self.ui.warn(_('error unlinking %s\n') % patchpath) |
|
886 | self.ui.warn(_('error unlinking %s\n') % patchpath) | |
887 | raise |
|
887 | raise | |
888 | self.removeundo(repo) |
|
888 | self.removeundo(repo) | |
889 | finally: |
|
889 | finally: | |
890 | release(wlock) |
|
890 | release(wlock) | |
891 |
|
891 | |||
892 | def strip(self, repo, rev, update=True, backup="all", force=None): |
|
892 | def strip(self, repo, rev, update=True, backup="all", force=None): | |
893 | wlock = lock = None |
|
893 | wlock = lock = None | |
894 | try: |
|
894 | try: | |
895 | wlock = repo.wlock() |
|
895 | wlock = repo.wlock() | |
896 | lock = repo.lock() |
|
896 | lock = repo.lock() | |
897 |
|
897 | |||
898 | if update: |
|
898 | if update: | |
899 | self.check_localchanges(repo, force=force, refresh=False) |
|
899 | self.check_localchanges(repo, force=force, refresh=False) | |
900 | urev = self.qparents(repo, rev) |
|
900 | urev = self.qparents(repo, rev) | |
901 | hg.clean(repo, urev) |
|
901 | hg.clean(repo, urev) | |
902 | repo.dirstate.write() |
|
902 | repo.dirstate.write() | |
903 |
|
903 | |||
904 | self.removeundo(repo) |
|
904 | self.removeundo(repo) | |
905 | repair.strip(self.ui, repo, rev, backup) |
|
905 | repair.strip(self.ui, repo, rev, backup) | |
906 | # strip may have unbundled a set of backed up revisions after |
|
906 | # strip may have unbundled a set of backed up revisions after | |
907 | # the actual strip |
|
907 | # the actual strip | |
908 | self.removeundo(repo) |
|
908 | self.removeundo(repo) | |
909 | finally: |
|
909 | finally: | |
910 | release(lock, wlock) |
|
910 | release(lock, wlock) | |
911 |
|
911 | |||
912 | def isapplied(self, patch): |
|
912 | def isapplied(self, patch): | |
913 | """returns (index, rev, patch)""" |
|
913 | """returns (index, rev, patch)""" | |
914 | for i, a in enumerate(self.applied): |
|
914 | for i, a in enumerate(self.applied): | |
915 | if a.name == patch: |
|
915 | if a.name == patch: | |
916 | return (i, a.node, a.name) |
|
916 | return (i, a.node, a.name) | |
917 | return None |
|
917 | return None | |
918 |
|
918 | |||
919 | # if the exact patch name does not exist, we try a few |
|
919 | # if the exact patch name does not exist, we try a few | |
920 | # variations. If strict is passed, we try only #1 |
|
920 | # variations. If strict is passed, we try only #1 | |
921 | # |
|
921 | # | |
922 | # 1) a number to indicate an offset in the series file |
|
922 | # 1) a number to indicate an offset in the series file | |
923 | # 2) a unique substring of the patch name was given |
|
923 | # 2) a unique substring of the patch name was given | |
924 | # 3) patchname[-+]num to indicate an offset in the series file |
|
924 | # 3) patchname[-+]num to indicate an offset in the series file | |
925 | def lookup(self, patch, strict=False): |
|
925 | def lookup(self, patch, strict=False): | |
926 | patch = patch and str(patch) |
|
926 | patch = patch and str(patch) | |
927 |
|
927 | |||
928 | def partial_name(s): |
|
928 | def partial_name(s): | |
929 | if s in self.series: |
|
929 | if s in self.series: | |
930 | return s |
|
930 | return s | |
931 | matches = [x for x in self.series if s in x] |
|
931 | matches = [x for x in self.series if s in x] | |
932 | if len(matches) > 1: |
|
932 | if len(matches) > 1: | |
933 | self.ui.warn(_('patch name "%s" is ambiguous:\n') % s) |
|
933 | self.ui.warn(_('patch name "%s" is ambiguous:\n') % s) | |
934 | for m in matches: |
|
934 | for m in matches: | |
935 | self.ui.warn(' %s\n' % m) |
|
935 | self.ui.warn(' %s\n' % m) | |
936 | return None |
|
936 | return None | |
937 | if matches: |
|
937 | if matches: | |
938 | return matches[0] |
|
938 | return matches[0] | |
939 | if self.series and self.applied: |
|
939 | if self.series and self.applied: | |
940 | if s == 'qtip': |
|
940 | if s == 'qtip': | |
941 | return self.series[self.series_end(True)-1] |
|
941 | return self.series[self.series_end(True)-1] | |
942 | if s == 'qbase': |
|
942 | if s == 'qbase': | |
943 | return self.series[0] |
|
943 | return self.series[0] | |
944 | return None |
|
944 | return None | |
945 |
|
945 | |||
946 | if patch is None: |
|
946 | if patch is None: | |
947 | return None |
|
947 | return None | |
948 | if patch in self.series: |
|
948 | if patch in self.series: | |
949 | return patch |
|
949 | return patch | |
950 |
|
950 | |||
951 | if not os.path.isfile(self.join(patch)): |
|
951 | if not os.path.isfile(self.join(patch)): | |
952 | try: |
|
952 | try: | |
953 | sno = int(patch) |
|
953 | sno = int(patch) | |
954 | except (ValueError, OverflowError): |
|
954 | except (ValueError, OverflowError): | |
955 | pass |
|
955 | pass | |
956 | else: |
|
956 | else: | |
957 | if -len(self.series) <= sno < len(self.series): |
|
957 | if -len(self.series) <= sno < len(self.series): | |
958 | return self.series[sno] |
|
958 | return self.series[sno] | |
959 |
|
959 | |||
960 | if not strict: |
|
960 | if not strict: | |
961 | res = partial_name(patch) |
|
961 | res = partial_name(patch) | |
962 | if res: |
|
962 | if res: | |
963 | return res |
|
963 | return res | |
964 | minus = patch.rfind('-') |
|
964 | minus = patch.rfind('-') | |
965 | if minus >= 0: |
|
965 | if minus >= 0: | |
966 | res = partial_name(patch[:minus]) |
|
966 | res = partial_name(patch[:minus]) | |
967 | if res: |
|
967 | if res: | |
968 | i = self.series.index(res) |
|
968 | i = self.series.index(res) | |
969 | try: |
|
969 | try: | |
970 | off = int(patch[minus + 1:] or 1) |
|
970 | off = int(patch[minus + 1:] or 1) | |
971 | except (ValueError, OverflowError): |
|
971 | except (ValueError, OverflowError): | |
972 | pass |
|
972 | pass | |
973 | else: |
|
973 | else: | |
974 | if i - off >= 0: |
|
974 | if i - off >= 0: | |
975 | return self.series[i - off] |
|
975 | return self.series[i - off] | |
976 | plus = patch.rfind('+') |
|
976 | plus = patch.rfind('+') | |
977 | if plus >= 0: |
|
977 | if plus >= 0: | |
978 | res = partial_name(patch[:plus]) |
|
978 | res = partial_name(patch[:plus]) | |
979 | if res: |
|
979 | if res: | |
980 | i = self.series.index(res) |
|
980 | i = self.series.index(res) | |
981 | try: |
|
981 | try: | |
982 | off = int(patch[plus + 1:] or 1) |
|
982 | off = int(patch[plus + 1:] or 1) | |
983 | except (ValueError, OverflowError): |
|
983 | except (ValueError, OverflowError): | |
984 | pass |
|
984 | pass | |
985 | else: |
|
985 | else: | |
986 | if i + off < len(self.series): |
|
986 | if i + off < len(self.series): | |
987 | return self.series[i + off] |
|
987 | return self.series[i + off] | |
988 | raise util.Abort(_("patch %s not in series") % patch) |
|
988 | raise util.Abort(_("patch %s not in series") % patch) | |
989 |
|
989 | |||
990 | def push(self, repo, patch=None, force=False, list=False, |
|
990 | def push(self, repo, patch=None, force=False, list=False, | |
991 | mergeq=None, all=False): |
|
991 | mergeq=None, all=False): | |
992 | diffopts = self.diffopts() |
|
992 | diffopts = self.diffopts() | |
993 | wlock = repo.wlock() |
|
993 | wlock = repo.wlock() | |
994 | try: |
|
994 | try: | |
995 | heads = [] |
|
995 | heads = [] | |
996 | for b, ls in repo.branchmap().iteritems(): |
|
996 | for b, ls in repo.branchmap().iteritems(): | |
997 | heads += ls |
|
997 | heads += ls | |
998 | if not heads: |
|
998 | if not heads: | |
999 | heads = [nullid] |
|
999 | heads = [nullid] | |
1000 | if repo.dirstate.parents()[0] not in heads: |
|
1000 | if repo.dirstate.parents()[0] not in heads: | |
1001 | self.ui.status(_("(working directory not at a head)\n")) |
|
1001 | self.ui.status(_("(working directory not at a head)\n")) | |
1002 |
|
1002 | |||
1003 | if not self.series: |
|
1003 | if not self.series: | |
1004 | self.ui.warn(_('no patches in series\n')) |
|
1004 | self.ui.warn(_('no patches in series\n')) | |
1005 | return 0 |
|
1005 | return 0 | |
1006 |
|
1006 | |||
1007 | patch = self.lookup(patch) |
|
1007 | patch = self.lookup(patch) | |
1008 | # Suppose our series file is: A B C and the current 'top' |
|
1008 | # Suppose our series file is: A B C and the current 'top' | |
1009 | # patch is B. qpush C should be performed (moving forward) |
|
1009 | # patch is B. qpush C should be performed (moving forward) | |
1010 | # qpush B is a NOP (no change) qpush A is an error (can't |
|
1010 | # qpush B is a NOP (no change) qpush A is an error (can't | |
1011 | # go backwards with qpush) |
|
1011 | # go backwards with qpush) | |
1012 | if patch: |
|
1012 | if patch: | |
1013 | info = self.isapplied(patch) |
|
1013 | info = self.isapplied(patch) | |
1014 | if info: |
|
1014 | if info: | |
1015 | if info[0] < len(self.applied) - 1: |
|
1015 | if info[0] < len(self.applied) - 1: | |
1016 | raise util.Abort( |
|
1016 | raise util.Abort( | |
1017 | _("cannot push to a previous patch: %s") % patch) |
|
1017 | _("cannot push to a previous patch: %s") % patch) | |
1018 | self.ui.warn( |
|
1018 | self.ui.warn( | |
1019 | _('qpush: %s is already at the top\n') % patch) |
|
1019 | _('qpush: %s is already at the top\n') % patch) | |
1020 | return |
|
1020 | return | |
1021 | pushable, reason = self.pushable(patch) |
|
1021 | pushable, reason = self.pushable(patch) | |
1022 | if not pushable: |
|
1022 | if not pushable: | |
1023 | if reason: |
|
1023 | if reason: | |
1024 | reason = _('guarded by %r') % reason |
|
1024 | reason = _('guarded by %r') % reason | |
1025 | else: |
|
1025 | else: | |
1026 | reason = _('no matching guards') |
|
1026 | reason = _('no matching guards') | |
1027 | self.ui.warn(_("cannot push '%s' - %s\n") % (patch, reason)) |
|
1027 | self.ui.warn(_("cannot push '%s' - %s\n") % (patch, reason)) | |
1028 | return 1 |
|
1028 | return 1 | |
1029 | elif all: |
|
1029 | elif all: | |
1030 | patch = self.series[-1] |
|
1030 | patch = self.series[-1] | |
1031 | if self.isapplied(patch): |
|
1031 | if self.isapplied(patch): | |
1032 | self.ui.warn(_('all patches are currently applied\n')) |
|
1032 | self.ui.warn(_('all patches are currently applied\n')) | |
1033 | return 0 |
|
1033 | return 0 | |
1034 |
|
1034 | |||
1035 | # Following the above example, starting at 'top' of B: |
|
1035 | # Following the above example, starting at 'top' of B: | |
1036 | # qpush should be performed (pushes C), but a subsequent |
|
1036 | # qpush should be performed (pushes C), but a subsequent | |
1037 | # qpush without an argument is an error (nothing to |
|
1037 | # qpush without an argument is an error (nothing to | |
1038 | # apply). This allows a loop of "...while hg qpush..." to |
|
1038 | # apply). This allows a loop of "...while hg qpush..." to | |
1039 | # work as it detects an error when done |
|
1039 | # work as it detects an error when done | |
1040 | start = self.series_end() |
|
1040 | start = self.series_end() | |
1041 | if start == len(self.series): |
|
1041 | if start == len(self.series): | |
1042 | self.ui.warn(_('patch series already fully applied\n')) |
|
1042 | self.ui.warn(_('patch series already fully applied\n')) | |
1043 | return 1 |
|
1043 | return 1 | |
1044 | if not force: |
|
1044 | if not force: | |
1045 | self.check_localchanges(repo) |
|
1045 | self.check_localchanges(repo) | |
1046 |
|
1046 | |||
1047 | self.applied_dirty = 1 |
|
1047 | self.applied_dirty = 1 | |
1048 | if start > 0: |
|
1048 | if start > 0: | |
1049 | self.check_toppatch(repo) |
|
1049 | self.check_toppatch(repo) | |
1050 | if not patch: |
|
1050 | if not patch: | |
1051 | patch = self.series[start] |
|
1051 | patch = self.series[start] | |
1052 | end = start + 1 |
|
1052 | end = start + 1 | |
1053 | else: |
|
1053 | else: | |
1054 | end = self.series.index(patch, start) + 1 |
|
1054 | end = self.series.index(patch, start) + 1 | |
1055 |
|
1055 | |||
1056 | s = self.series[start:end] |
|
1056 | s = self.series[start:end] | |
1057 | all_files = set() |
|
1057 | all_files = set() | |
1058 | try: |
|
1058 | try: | |
1059 | if mergeq: |
|
1059 | if mergeq: | |
1060 | ret = self.mergepatch(repo, mergeq, s, diffopts) |
|
1060 | ret = self.mergepatch(repo, mergeq, s, diffopts) | |
1061 | else: |
|
1061 | else: | |
1062 | ret = self.apply(repo, s, list, all_files=all_files) |
|
1062 | ret = self.apply(repo, s, list, all_files=all_files) | |
1063 | except: |
|
1063 | except: | |
1064 | self.ui.warn(_('cleaning up working directory...')) |
|
1064 | self.ui.warn(_('cleaning up working directory...')) | |
1065 | node = repo.dirstate.parents()[0] |
|
1065 | node = repo.dirstate.parents()[0] | |
1066 | hg.revert(repo, node, None) |
|
1066 | hg.revert(repo, node, None) | |
1067 | # only remove unknown files that we know we touched or |
|
1067 | # only remove unknown files that we know we touched or | |
1068 | # created while patching |
|
1068 | # created while patching | |
1069 | for f in all_files: |
|
1069 | for f in all_files: | |
1070 | if f not in repo.dirstate: |
|
1070 | if f not in repo.dirstate: | |
1071 | try: |
|
1071 | try: | |
1072 | util.unlink(repo.wjoin(f)) |
|
1072 | util.unlink(repo.wjoin(f)) | |
1073 | except OSError, inst: |
|
1073 | except OSError, inst: | |
1074 | if inst.errno != errno.ENOENT: |
|
1074 | if inst.errno != errno.ENOENT: | |
1075 | raise |
|
1075 | raise | |
1076 | self.ui.warn(_('done\n')) |
|
1076 | self.ui.warn(_('done\n')) | |
1077 | raise |
|
1077 | raise | |
1078 |
|
1078 | |||
1079 | if not self.applied: |
|
1079 | if not self.applied: | |
1080 | return ret[0] |
|
1080 | return ret[0] | |
1081 | top = self.applied[-1].name |
|
1081 | top = self.applied[-1].name | |
1082 | if ret[0] and ret[0] > 1: |
|
1082 | if ret[0] and ret[0] > 1: | |
1083 | msg = _("errors during apply, please fix and refresh %s\n") |
|
1083 | msg = _("errors during apply, please fix and refresh %s\n") | |
1084 | self.ui.write(msg % top) |
|
1084 | self.ui.write(msg % top) | |
1085 | else: |
|
1085 | else: | |
1086 | self.ui.write(_("now at: %s\n") % top) |
|
1086 | self.ui.write(_("now at: %s\n") % top) | |
1087 | return ret[0] |
|
1087 | return ret[0] | |
1088 |
|
1088 | |||
1089 | finally: |
|
1089 | finally: | |
1090 | wlock.release() |
|
1090 | wlock.release() | |
1091 |
|
1091 | |||
1092 | def pop(self, repo, patch=None, force=False, update=True, all=False): |
|
1092 | def pop(self, repo, patch=None, force=False, update=True, all=False): | |
1093 | wlock = repo.wlock() |
|
1093 | wlock = repo.wlock() | |
1094 | try: |
|
1094 | try: | |
1095 | if patch: |
|
1095 | if patch: | |
1096 | # index, rev, patch |
|
1096 | # index, rev, patch | |
1097 | info = self.isapplied(patch) |
|
1097 | info = self.isapplied(patch) | |
1098 | if not info: |
|
1098 | if not info: | |
1099 | patch = self.lookup(patch) |
|
1099 | patch = self.lookup(patch) | |
1100 | info = self.isapplied(patch) |
|
1100 | info = self.isapplied(patch) | |
1101 | if not info: |
|
1101 | if not info: | |
1102 | raise util.Abort(_("patch %s is not applied") % patch) |
|
1102 | raise util.Abort(_("patch %s is not applied") % patch) | |
1103 |
|
1103 | |||
1104 | if not self.applied: |
|
1104 | if not self.applied: | |
1105 | # Allow qpop -a to work repeatedly, |
|
1105 | # Allow qpop -a to work repeatedly, | |
1106 | # but not qpop without an argument |
|
1106 | # but not qpop without an argument | |
1107 | self.ui.warn(_("no patches applied\n")) |
|
1107 | self.ui.warn(_("no patches applied\n")) | |
1108 | return not all |
|
1108 | return not all | |
1109 |
|
1109 | |||
1110 | if all: |
|
1110 | if all: | |
1111 | start = 0 |
|
1111 | start = 0 | |
1112 | elif patch: |
|
1112 | elif patch: | |
1113 | start = info[0] + 1 |
|
1113 | start = info[0] + 1 | |
1114 | else: |
|
1114 | else: | |
1115 | start = len(self.applied) - 1 |
|
1115 | start = len(self.applied) - 1 | |
1116 |
|
1116 | |||
1117 | if start >= len(self.applied): |
|
1117 | if start >= len(self.applied): | |
1118 | self.ui.warn(_("qpop: %s is already at the top\n") % patch) |
|
1118 | self.ui.warn(_("qpop: %s is already at the top\n") % patch) | |
1119 | return |
|
1119 | return | |
1120 |
|
1120 | |||
1121 | if not update: |
|
1121 | if not update: | |
1122 | parents = repo.dirstate.parents() |
|
1122 | parents = repo.dirstate.parents() | |
1123 | rr = [x.node for x in self.applied] |
|
1123 | rr = [x.node for x in self.applied] | |
1124 | for p in parents: |
|
1124 | for p in parents: | |
1125 | if p in rr: |
|
1125 | if p in rr: | |
1126 | self.ui.warn(_("qpop: forcing dirstate update\n")) |
|
1126 | self.ui.warn(_("qpop: forcing dirstate update\n")) | |
1127 | update = True |
|
1127 | update = True | |
1128 | else: |
|
1128 | else: | |
1129 | parents = [p.node() for p in repo[None].parents()] |
|
1129 | parents = [p.node() for p in repo[None].parents()] | |
1130 | needupdate = False |
|
1130 | needupdate = False | |
1131 | for entry in self.applied[start:]: |
|
1131 | for entry in self.applied[start:]: | |
1132 | if entry.node in parents: |
|
1132 | if entry.node in parents: | |
1133 | needupdate = True |
|
1133 | needupdate = True | |
1134 | break |
|
1134 | break | |
1135 | update = needupdate |
|
1135 | update = needupdate | |
1136 |
|
1136 | |||
1137 | if not force and update: |
|
1137 | if not force and update: | |
1138 | self.check_localchanges(repo) |
|
1138 | self.check_localchanges(repo) | |
1139 |
|
1139 | |||
1140 | self.applied_dirty = 1 |
|
1140 | self.applied_dirty = 1 | |
1141 | end = len(self.applied) |
|
1141 | end = len(self.applied) | |
1142 | rev = self.applied[start].node |
|
1142 | rev = self.applied[start].node | |
1143 | if update: |
|
1143 | if update: | |
1144 | top = self.check_toppatch(repo)[0] |
|
1144 | top = self.check_toppatch(repo)[0] | |
1145 |
|
1145 | |||
1146 | try: |
|
1146 | try: | |
1147 | heads = repo.changelog.heads(rev) |
|
1147 | heads = repo.changelog.heads(rev) | |
1148 | except error.LookupError: |
|
1148 | except error.LookupError: | |
1149 | node = short(rev) |
|
1149 | node = short(rev) | |
1150 | raise util.Abort(_('trying to pop unknown node %s') % node) |
|
1150 | raise util.Abort(_('trying to pop unknown node %s') % node) | |
1151 |
|
1151 | |||
1152 | if heads != [self.applied[-1].node]: |
|
1152 | if heads != [self.applied[-1].node]: | |
1153 | raise util.Abort(_("popping would remove a revision not " |
|
1153 | raise util.Abort(_("popping would remove a revision not " | |
1154 | "managed by this patch queue")) |
|
1154 | "managed by this patch queue")) | |
1155 |
|
1155 | |||
1156 | # we know there are no local changes, so we can make a simplified |
|
1156 | # we know there are no local changes, so we can make a simplified | |
1157 | # form of hg.update. |
|
1157 | # form of hg.update. | |
1158 | if update: |
|
1158 | if update: | |
1159 | qp = self.qparents(repo, rev) |
|
1159 | qp = self.qparents(repo, rev) | |
1160 | ctx = repo[qp] |
|
1160 | ctx = repo[qp] | |
1161 | m, a, r, d = repo.status(qp, top)[:4] |
|
1161 | m, a, r, d = repo.status(qp, top)[:4] | |
1162 | if d: |
|
1162 | if d: | |
1163 | raise util.Abort(_("deletions found between repo revs")) |
|
1163 | raise util.Abort(_("deletions found between repo revs")) | |
1164 | for f in a: |
|
1164 | for f in a: | |
1165 | try: |
|
1165 | try: | |
1166 | os.unlink(repo.wjoin(f)) |
|
1166 | os.unlink(repo.wjoin(f)) | |
1167 | except OSError, e: |
|
1167 | except OSError, e: | |
1168 | if e.errno != errno.ENOENT: |
|
1168 | if e.errno != errno.ENOENT: | |
1169 | raise |
|
1169 | raise | |
1170 | try: os.removedirs(os.path.dirname(repo.wjoin(f))) |
|
1170 | try: os.removedirs(os.path.dirname(repo.wjoin(f))) | |
1171 | except: pass |
|
1171 | except: pass | |
1172 | repo.dirstate.forget(f) |
|
1172 | repo.dirstate.forget(f) | |
1173 | for f in m + r: |
|
1173 | for f in m + r: | |
1174 | fctx = ctx[f] |
|
1174 | fctx = ctx[f] | |
1175 | repo.wwrite(f, fctx.data(), fctx.flags()) |
|
1175 | repo.wwrite(f, fctx.data(), fctx.flags()) | |
1176 | repo.dirstate.normal(f) |
|
1176 | repo.dirstate.normal(f) | |
1177 | repo.dirstate.setparents(qp, nullid) |
|
1177 | repo.dirstate.setparents(qp, nullid) | |
1178 | for patch in reversed(self.applied[start:end]): |
|
1178 | for patch in reversed(self.applied[start:end]): | |
1179 | self.ui.status(_("popping %s\n") % patch.name) |
|
1179 | self.ui.status(_("popping %s\n") % patch.name) | |
1180 | del self.applied[start:end] |
|
1180 | del self.applied[start:end] | |
1181 | self.strip(repo, rev, update=False, backup='strip') |
|
1181 | self.strip(repo, rev, update=False, backup='strip') | |
1182 | if self.applied: |
|
1182 | if self.applied: | |
1183 | self.ui.write(_("now at: %s\n") % self.applied[-1].name) |
|
1183 | self.ui.write(_("now at: %s\n") % self.applied[-1].name) | |
1184 | else: |
|
1184 | else: | |
1185 | self.ui.write(_("patch queue now empty\n")) |
|
1185 | self.ui.write(_("patch queue now empty\n")) | |
1186 | finally: |
|
1186 | finally: | |
1187 | wlock.release() |
|
1187 | wlock.release() | |
1188 |
|
1188 | |||
1189 | def diff(self, repo, pats, opts): |
|
1189 | def diff(self, repo, pats, opts): | |
1190 | top, patch = self.check_toppatch(repo) |
|
1190 | top, patch = self.check_toppatch(repo) | |
1191 | if not top: |
|
1191 | if not top: | |
1192 | self.ui.write(_("no patches applied\n")) |
|
1192 | self.ui.write(_("no patches applied\n")) | |
1193 | return |
|
1193 | return | |
1194 | qp = self.qparents(repo, top) |
|
1194 | qp = self.qparents(repo, top) | |
1195 | if opts.get('reverse'): |
|
1195 | if opts.get('reverse'): | |
1196 | node1, node2 = None, qp |
|
1196 | node1, node2 = None, qp | |
1197 | else: |
|
1197 | else: | |
1198 | node1, node2 = qp, None |
|
1198 | node1, node2 = qp, None | |
1199 | diffopts = self.diffopts(opts, patch) |
|
1199 | diffopts = self.diffopts(opts, patch) | |
1200 | self.printdiff(repo, diffopts, node1, node2, files=pats, opts=opts) |
|
1200 | self.printdiff(repo, diffopts, node1, node2, files=pats, opts=opts) | |
1201 |
|
1201 | |||
1202 | def refresh(self, repo, pats=None, **opts): |
|
1202 | def refresh(self, repo, pats=None, **opts): | |
1203 | if not self.applied: |
|
1203 | if not self.applied: | |
1204 | self.ui.write(_("no patches applied\n")) |
|
1204 | self.ui.write(_("no patches applied\n")) | |
1205 | return 1 |
|
1205 | return 1 | |
1206 | msg = opts.get('msg', '').rstrip() |
|
1206 | msg = opts.get('msg', '').rstrip() | |
1207 | newuser = opts.get('user') |
|
1207 | newuser = opts.get('user') | |
1208 | newdate = opts.get('date') |
|
1208 | newdate = opts.get('date') | |
1209 | if newdate: |
|
1209 | if newdate: | |
1210 | newdate = '%d %d' % util.parsedate(newdate) |
|
1210 | newdate = '%d %d' % util.parsedate(newdate) | |
1211 | wlock = repo.wlock() |
|
1211 | wlock = repo.wlock() | |
1212 |
|
1212 | |||
1213 | try: |
|
1213 | try: | |
1214 | self.check_toppatch(repo) |
|
1214 | self.check_toppatch(repo) | |
1215 | (top, patchfn) = (self.applied[-1].node, self.applied[-1].name) |
|
1215 | (top, patchfn) = (self.applied[-1].node, self.applied[-1].name) | |
1216 | if repo.changelog.heads(top) != [top]: |
|
1216 | if repo.changelog.heads(top) != [top]: | |
1217 | raise util.Abort(_("cannot refresh a revision with children")) |
|
1217 | raise util.Abort(_("cannot refresh a revision with children")) | |
1218 |
|
1218 | |||
1219 | cparents = repo.changelog.parents(top) |
|
1219 | cparents = repo.changelog.parents(top) | |
1220 | patchparent = self.qparents(repo, top) |
|
1220 | patchparent = self.qparents(repo, top) | |
1221 | ph = patchheader(self.join(patchfn), self.plainmode) |
|
1221 | ph = patchheader(self.join(patchfn), self.plainmode) | |
1222 | diffopts = self.diffopts({'git': opts.get('git')}, patchfn) |
|
1222 | diffopts = self.diffopts({'git': opts.get('git')}, patchfn) | |
1223 | if msg: |
|
1223 | if msg: | |
1224 | ph.setmessage(msg) |
|
1224 | ph.setmessage(msg) | |
1225 | if newuser: |
|
1225 | if newuser: | |
1226 | ph.setuser(newuser) |
|
1226 | ph.setuser(newuser) | |
1227 | if newdate: |
|
1227 | if newdate: | |
1228 | ph.setdate(newdate) |
|
1228 | ph.setdate(newdate) | |
1229 | ph.setparent(hex(patchparent)) |
|
1229 | ph.setparent(hex(patchparent)) | |
1230 |
|
1230 | |||
1231 | # only commit new patch when write is complete |
|
1231 | # only commit new patch when write is complete | |
1232 | patchf = self.opener(patchfn, 'w', atomictemp=True) |
|
1232 | patchf = self.opener(patchfn, 'w', atomictemp=True) | |
1233 |
|
1233 | |||
1234 | comments = str(ph) |
|
1234 | comments = str(ph) | |
1235 | if comments: |
|
1235 | if comments: | |
1236 | patchf.write(comments) |
|
1236 | patchf.write(comments) | |
1237 |
|
1237 | |||
1238 | # update the dirstate in place, strip off the qtip commit |
|
1238 | # update the dirstate in place, strip off the qtip commit | |
1239 | # and then commit. |
|
1239 | # and then commit. | |
1240 | # |
|
1240 | # | |
1241 | # this should really read: |
|
1241 | # this should really read: | |
1242 | # mm, dd, aa, aa2 = repo.status(tip, patchparent)[:4] |
|
1242 | # mm, dd, aa, aa2 = repo.status(tip, patchparent)[:4] | |
1243 | # but we do it backwards to take advantage of manifest/chlog |
|
1243 | # but we do it backwards to take advantage of manifest/chlog | |
1244 | # caching against the next repo.status call |
|
1244 | # caching against the next repo.status call | |
1245 | mm, aa, dd, aa2 = repo.status(patchparent, top)[:4] |
|
1245 | mm, aa, dd, aa2 = repo.status(patchparent, top)[:4] | |
1246 | changes = repo.changelog.read(top) |
|
1246 | changes = repo.changelog.read(top) | |
1247 | man = repo.manifest.read(changes[0]) |
|
1247 | man = repo.manifest.read(changes[0]) | |
1248 | aaa = aa[:] |
|
1248 | aaa = aa[:] | |
1249 | matchfn = cmdutil.match(repo, pats, opts) |
|
1249 | matchfn = cmdutil.match(repo, pats, opts) | |
1250 | # in short mode, we only diff the files included in the |
|
1250 | # in short mode, we only diff the files included in the | |
1251 | # patch already plus specified files |
|
1251 | # patch already plus specified files | |
1252 | if opts.get('short'): |
|
1252 | if opts.get('short'): | |
1253 | # if amending a patch, we start with existing |
|
1253 | # if amending a patch, we start with existing | |
1254 | # files plus specified files - unfiltered |
|
1254 | # files plus specified files - unfiltered | |
1255 | match = cmdutil.matchfiles(repo, mm + aa + dd + matchfn.files()) |
|
1255 | match = cmdutil.matchfiles(repo, mm + aa + dd + matchfn.files()) | |
1256 | # filter with inc/exl options |
|
1256 | # filter with inc/exl options | |
1257 | matchfn = cmdutil.match(repo, opts=opts) |
|
1257 | matchfn = cmdutil.match(repo, opts=opts) | |
1258 | else: |
|
1258 | else: | |
1259 | match = cmdutil.matchall(repo) |
|
1259 | match = cmdutil.matchall(repo) | |
1260 | m, a, r, d = repo.status(match=match)[:4] |
|
1260 | m, a, r, d = repo.status(match=match)[:4] | |
1261 |
|
1261 | |||
1262 | # we might end up with files that were added between |
|
1262 | # we might end up with files that were added between | |
1263 | # qtip and the dirstate parent, but then changed in the |
|
1263 | # qtip and the dirstate parent, but then changed in the | |
1264 | # local dirstate. in this case, we want them to only |
|
1264 | # local dirstate. in this case, we want them to only | |
1265 | # show up in the added section |
|
1265 | # show up in the added section | |
1266 | for x in m: |
|
1266 | for x in m: | |
1267 | if x not in aa: |
|
1267 | if x not in aa: | |
1268 | mm.append(x) |
|
1268 | mm.append(x) | |
1269 | # we might end up with files added by the local dirstate that |
|
1269 | # we might end up with files added by the local dirstate that | |
1270 | # were deleted by the patch. In this case, they should only |
|
1270 | # were deleted by the patch. In this case, they should only | |
1271 | # show up in the changed section. |
|
1271 | # show up in the changed section. | |
1272 | for x in a: |
|
1272 | for x in a: | |
1273 | if x in dd: |
|
1273 | if x in dd: | |
1274 | del dd[dd.index(x)] |
|
1274 | del dd[dd.index(x)] | |
1275 | mm.append(x) |
|
1275 | mm.append(x) | |
1276 | else: |
|
1276 | else: | |
1277 | aa.append(x) |
|
1277 | aa.append(x) | |
1278 | # make sure any files deleted in the local dirstate |
|
1278 | # make sure any files deleted in the local dirstate | |
1279 | # are not in the add or change column of the patch |
|
1279 | # are not in the add or change column of the patch | |
1280 | forget = [] |
|
1280 | forget = [] | |
1281 | for x in d + r: |
|
1281 | for x in d + r: | |
1282 | if x in aa: |
|
1282 | if x in aa: | |
1283 | del aa[aa.index(x)] |
|
1283 | del aa[aa.index(x)] | |
1284 | forget.append(x) |
|
1284 | forget.append(x) | |
1285 | continue |
|
1285 | continue | |
1286 | elif x in mm: |
|
1286 | elif x in mm: | |
1287 | del mm[mm.index(x)] |
|
1287 | del mm[mm.index(x)] | |
1288 | dd.append(x) |
|
1288 | dd.append(x) | |
1289 |
|
1289 | |||
1290 | m = list(set(mm)) |
|
1290 | m = list(set(mm)) | |
1291 | r = list(set(dd)) |
|
1291 | r = list(set(dd)) | |
1292 | a = list(set(aa)) |
|
1292 | a = list(set(aa)) | |
1293 | c = [filter(matchfn, l) for l in (m, a, r)] |
|
1293 | c = [filter(matchfn, l) for l in (m, a, r)] | |
1294 | match = cmdutil.matchfiles(repo, set(c[0] + c[1] + c[2])) |
|
1294 | match = cmdutil.matchfiles(repo, set(c[0] + c[1] + c[2])) | |
1295 | chunks = patch.diff(repo, patchparent, match=match, |
|
1295 | chunks = patch.diff(repo, patchparent, match=match, | |
1296 | changes=c, opts=diffopts) |
|
1296 | changes=c, opts=diffopts) | |
1297 | for chunk in chunks: |
|
1297 | for chunk in chunks: | |
1298 | patchf.write(chunk) |
|
1298 | patchf.write(chunk) | |
1299 |
|
1299 | |||
1300 | try: |
|
1300 | try: | |
1301 | if diffopts.git or diffopts.upgrade: |
|
1301 | if diffopts.git or diffopts.upgrade: | |
1302 | copies = {} |
|
1302 | copies = {} | |
1303 | for dst in a: |
|
1303 | for dst in a: | |
1304 | src = repo.dirstate.copied(dst) |
|
1304 | src = repo.dirstate.copied(dst) | |
1305 | # during qfold, the source file for copies may |
|
1305 | # during qfold, the source file for copies may | |
1306 | # be removed. Treat this as a simple add. |
|
1306 | # be removed. Treat this as a simple add. | |
1307 | if src is not None and src in repo.dirstate: |
|
1307 | if src is not None and src in repo.dirstate: | |
1308 | copies.setdefault(src, []).append(dst) |
|
1308 | copies.setdefault(src, []).append(dst) | |
1309 | repo.dirstate.add(dst) |
|
1309 | repo.dirstate.add(dst) | |
1310 | # remember the copies between patchparent and qtip |
|
1310 | # remember the copies between patchparent and qtip | |
1311 | for dst in aaa: |
|
1311 | for dst in aaa: | |
1312 | f = repo.file(dst) |
|
1312 | f = repo.file(dst) | |
1313 | src = f.renamed(man[dst]) |
|
1313 | src = f.renamed(man[dst]) | |
1314 | if src: |
|
1314 | if src: | |
1315 | copies.setdefault(src[0], []).extend( |
|
1315 | copies.setdefault(src[0], []).extend( | |
1316 | copies.get(dst, [])) |
|
1316 | copies.get(dst, [])) | |
1317 | if dst in a: |
|
1317 | if dst in a: | |
1318 | copies[src[0]].append(dst) |
|
1318 | copies[src[0]].append(dst) | |
1319 | # we can't copy a file created by the patch itself |
|
1319 | # we can't copy a file created by the patch itself | |
1320 | if dst in copies: |
|
1320 | if dst in copies: | |
1321 | del copies[dst] |
|
1321 | del copies[dst] | |
1322 | for src, dsts in copies.iteritems(): |
|
1322 | for src, dsts in copies.iteritems(): | |
1323 | for dst in dsts: |
|
1323 | for dst in dsts: | |
1324 | repo.dirstate.copy(src, dst) |
|
1324 | repo.dirstate.copy(src, dst) | |
1325 | else: |
|
1325 | else: | |
1326 | for dst in a: |
|
1326 | for dst in a: | |
1327 | repo.dirstate.add(dst) |
|
1327 | repo.dirstate.add(dst) | |
1328 | # Drop useless copy information |
|
1328 | # Drop useless copy information | |
1329 | for f in list(repo.dirstate.copies()): |
|
1329 | for f in list(repo.dirstate.copies()): | |
1330 | repo.dirstate.copy(None, f) |
|
1330 | repo.dirstate.copy(None, f) | |
1331 | for f in r: |
|
1331 | for f in r: | |
1332 | repo.dirstate.remove(f) |
|
1332 | repo.dirstate.remove(f) | |
1333 | # if the patch excludes a modified file, mark that |
|
1333 | # if the patch excludes a modified file, mark that | |
1334 | # file with mtime=0 so status can see it. |
|
1334 | # file with mtime=0 so status can see it. | |
1335 | mm = [] |
|
1335 | mm = [] | |
1336 | for i in xrange(len(m)-1, -1, -1): |
|
1336 | for i in xrange(len(m)-1, -1, -1): | |
1337 | if not matchfn(m[i]): |
|
1337 | if not matchfn(m[i]): | |
1338 | mm.append(m[i]) |
|
1338 | mm.append(m[i]) | |
1339 | del m[i] |
|
1339 | del m[i] | |
1340 | for f in m: |
|
1340 | for f in m: | |
1341 | repo.dirstate.normal(f) |
|
1341 | repo.dirstate.normal(f) | |
1342 | for f in mm: |
|
1342 | for f in mm: | |
1343 | repo.dirstate.normallookup(f) |
|
1343 | repo.dirstate.normallookup(f) | |
1344 | for f in forget: |
|
1344 | for f in forget: | |
1345 | repo.dirstate.forget(f) |
|
1345 | repo.dirstate.forget(f) | |
1346 |
|
1346 | |||
1347 | if not msg: |
|
1347 | if not msg: | |
1348 | if not ph.message: |
|
1348 | if not ph.message: | |
1349 | message = "[mq]: %s\n" % patchfn |
|
1349 | message = "[mq]: %s\n" % patchfn | |
1350 | else: |
|
1350 | else: | |
1351 | message = "\n".join(ph.message) |
|
1351 | message = "\n".join(ph.message) | |
1352 | else: |
|
1352 | else: | |
1353 | message = msg |
|
1353 | message = msg | |
1354 |
|
1354 | |||
1355 | user = ph.user or changes[1] |
|
1355 | user = ph.user or changes[1] | |
1356 |
|
1356 | |||
1357 | # assumes strip can roll itself back if interrupted |
|
1357 | # assumes strip can roll itself back if interrupted | |
1358 | repo.dirstate.setparents(*cparents) |
|
1358 | repo.dirstate.setparents(*cparents) | |
1359 | self.applied.pop() |
|
1359 | self.applied.pop() | |
1360 | self.applied_dirty = 1 |
|
1360 | self.applied_dirty = 1 | |
1361 | self.strip(repo, top, update=False, |
|
1361 | self.strip(repo, top, update=False, | |
1362 | backup='strip') |
|
1362 | backup='strip') | |
1363 | except: |
|
1363 | except: | |
1364 | repo.dirstate.invalidate() |
|
1364 | repo.dirstate.invalidate() | |
1365 | raise |
|
1365 | raise | |
1366 |
|
1366 | |||
1367 | try: |
|
1367 | try: | |
1368 | # might be nice to attempt to roll back strip after this |
|
1368 | # might be nice to attempt to roll back strip after this | |
1369 | patchf.rename() |
|
1369 | patchf.rename() | |
1370 | n = repo.commit(message, user, ph.date, match=match, |
|
1370 | n = repo.commit(message, user, ph.date, match=match, | |
1371 | force=True) |
|
1371 | force=True) | |
1372 | self.applied.append(statusentry(n, patchfn)) |
|
1372 | self.applied.append(statusentry(n, patchfn)) | |
1373 | except: |
|
1373 | except: | |
1374 | ctx = repo[cparents[0]] |
|
1374 | ctx = repo[cparents[0]] | |
1375 | repo.dirstate.rebuild(ctx.node(), ctx.manifest()) |
|
1375 | repo.dirstate.rebuild(ctx.node(), ctx.manifest()) | |
1376 | self.save_dirty() |
|
1376 | self.save_dirty() | |
1377 | self.ui.warn(_('refresh interrupted while patch was popped! ' |
|
1377 | self.ui.warn(_('refresh interrupted while patch was popped! ' | |
1378 | '(revert --all, qpush to recover)\n')) |
|
1378 | '(revert --all, qpush to recover)\n')) | |
1379 | raise |
|
1379 | raise | |
1380 | finally: |
|
1380 | finally: | |
1381 | wlock.release() |
|
1381 | wlock.release() | |
1382 | self.removeundo(repo) |
|
1382 | self.removeundo(repo) | |
1383 |
|
1383 | |||
1384 | def init(self, repo, create=False): |
|
1384 | def init(self, repo, create=False): | |
1385 | if not create and os.path.isdir(self.path): |
|
1385 | if not create and os.path.isdir(self.path): | |
1386 | raise util.Abort(_("patch queue directory already exists")) |
|
1386 | raise util.Abort(_("patch queue directory already exists")) | |
1387 | try: |
|
1387 | try: | |
1388 | os.mkdir(self.path) |
|
1388 | os.mkdir(self.path) | |
1389 | except OSError, inst: |
|
1389 | except OSError, inst: | |
1390 | if inst.errno != errno.EEXIST or not create: |
|
1390 | if inst.errno != errno.EEXIST or not create: | |
1391 | raise |
|
1391 | raise | |
1392 | if create: |
|
1392 | if create: | |
1393 | return self.qrepo(create=True) |
|
1393 | return self.qrepo(create=True) | |
1394 |
|
1394 | |||
1395 | def unapplied(self, repo, patch=None): |
|
1395 | def unapplied(self, repo, patch=None): | |
1396 | if patch and patch not in self.series: |
|
1396 | if patch and patch not in self.series: | |
1397 | raise util.Abort(_("patch %s is not in series file") % patch) |
|
1397 | raise util.Abort(_("patch %s is not in series file") % patch) | |
1398 | if not patch: |
|
1398 | if not patch: | |
1399 | start = self.series_end() |
|
1399 | start = self.series_end() | |
1400 | else: |
|
1400 | else: | |
1401 | start = self.series.index(patch) + 1 |
|
1401 | start = self.series.index(patch) + 1 | |
1402 | unapplied = [] |
|
1402 | unapplied = [] | |
1403 | for i in xrange(start, len(self.series)): |
|
1403 | for i in xrange(start, len(self.series)): | |
1404 | pushable, reason = self.pushable(i) |
|
1404 | pushable, reason = self.pushable(i) | |
1405 | if pushable: |
|
1405 | if pushable: | |
1406 | unapplied.append((i, self.series[i])) |
|
1406 | unapplied.append((i, self.series[i])) | |
1407 | self.explain_pushable(i) |
|
1407 | self.explain_pushable(i) | |
1408 | return unapplied |
|
1408 | return unapplied | |
1409 |
|
1409 | |||
1410 | def qseries(self, repo, missing=None, start=0, length=None, status=None, |
|
1410 | def qseries(self, repo, missing=None, start=0, length=None, status=None, | |
1411 | summary=False): |
|
1411 | summary=False): | |
1412 | def displayname(pfx, patchname): |
|
1412 | def displayname(pfx, patchname): | |
1413 | if summary: |
|
1413 | if summary: | |
1414 | ph = patchheader(self.join(patchname), self.plainmode) |
|
1414 | ph = patchheader(self.join(patchname), self.plainmode) | |
1415 | msg = ph.message and ph.message[0] or '' |
|
1415 | msg = ph.message and ph.message[0] or '' | |
1416 | if self.ui.interactive(): |
|
1416 | if self.ui.interactive(): | |
1417 | width = util.termwidth() - len(pfx) - len(patchname) - 2 |
|
1417 | width = util.termwidth() - len(pfx) - len(patchname) - 2 | |
1418 | if width > 0: |
|
1418 | if width > 0: | |
1419 | msg = util.ellipsis(msg, width) |
|
1419 | msg = util.ellipsis(msg, width) | |
1420 | else: |
|
1420 | else: | |
1421 | msg = '' |
|
1421 | msg = '' | |
1422 | msg = "%s%s: %s" % (pfx, patchname, msg) |
|
1422 | msg = "%s%s: %s" % (pfx, patchname, msg) | |
1423 | else: |
|
1423 | else: | |
1424 | msg = pfx + patchname |
|
1424 | msg = pfx + patchname | |
1425 | self.ui.write(msg + '\n') |
|
1425 | self.ui.write(msg + '\n') | |
1426 |
|
1426 | |||
1427 | applied = set([p.name for p in self.applied]) |
|
1427 | applied = set([p.name for p in self.applied]) | |
1428 | if length is None: |
|
1428 | if length is None: | |
1429 | length = len(self.series) - start |
|
1429 | length = len(self.series) - start | |
1430 | if not missing: |
|
1430 | if not missing: | |
1431 | if self.ui.verbose: |
|
1431 | if self.ui.verbose: | |
1432 | idxwidth = len(str(start + length - 1)) |
|
1432 | idxwidth = len(str(start + length - 1)) | |
1433 | for i in xrange(start, start + length): |
|
1433 | for i in xrange(start, start + length): | |
1434 | patch = self.series[i] |
|
1434 | patch = self.series[i] | |
1435 | if patch in applied: |
|
1435 | if patch in applied: | |
1436 | stat = 'A' |
|
1436 | stat = 'A' | |
1437 | elif self.pushable(i)[0]: |
|
1437 | elif self.pushable(i)[0]: | |
1438 | stat = 'U' |
|
1438 | stat = 'U' | |
1439 | else: |
|
1439 | else: | |
1440 | stat = 'G' |
|
1440 | stat = 'G' | |
1441 | pfx = '' |
|
1441 | pfx = '' | |
1442 | if self.ui.verbose: |
|
1442 | if self.ui.verbose: | |
1443 | pfx = '%*d %s ' % (idxwidth, i, stat) |
|
1443 | pfx = '%*d %s ' % (idxwidth, i, stat) | |
1444 | elif status and status != stat: |
|
1444 | elif status and status != stat: | |
1445 | continue |
|
1445 | continue | |
1446 | displayname(pfx, patch) |
|
1446 | displayname(pfx, patch) | |
1447 | else: |
|
1447 | else: | |
1448 | msng_list = [] |
|
1448 | msng_list = [] | |
1449 | for root, dirs, files in os.walk(self.path): |
|
1449 | for root, dirs, files in os.walk(self.path): | |
1450 | d = root[len(self.path) + 1:] |
|
1450 | d = root[len(self.path) + 1:] | |
1451 | for f in files: |
|
1451 | for f in files: | |
1452 | fl = os.path.join(d, f) |
|
1452 | fl = os.path.join(d, f) | |
1453 | if (fl not in self.series and |
|
1453 | if (fl not in self.series and | |
1454 | fl not in (self.status_path, self.series_path, |
|
1454 | fl not in (self.status_path, self.series_path, | |
1455 | self.guards_path) |
|
1455 | self.guards_path) | |
1456 | and not fl.startswith('.')): |
|
1456 | and not fl.startswith('.')): | |
1457 | msng_list.append(fl) |
|
1457 | msng_list.append(fl) | |
1458 | for x in sorted(msng_list): |
|
1458 | for x in sorted(msng_list): | |
1459 | pfx = self.ui.verbose and ('D ') or '' |
|
1459 | pfx = self.ui.verbose and ('D ') or '' | |
1460 | displayname(pfx, x) |
|
1460 | displayname(pfx, x) | |
1461 |
|
1461 | |||
1462 | def issaveline(self, l): |
|
1462 | def issaveline(self, l): | |
1463 | if l.name == '.hg.patches.save.line': |
|
1463 | if l.name == '.hg.patches.save.line': | |
1464 | return True |
|
1464 | return True | |
1465 |
|
1465 | |||
1466 | def qrepo(self, create=False): |
|
1466 | def qrepo(self, create=False): | |
1467 | if create or os.path.isdir(self.join(".hg")): |
|
1467 | if create or os.path.isdir(self.join(".hg")): | |
1468 | return hg.repository(self.ui, path=self.path, create=create) |
|
1468 | return hg.repository(self.ui, path=self.path, create=create) | |
1469 |
|
1469 | |||
1470 | def restore(self, repo, rev, delete=None, qupdate=None): |
|
1470 | def restore(self, repo, rev, delete=None, qupdate=None): | |
1471 | desc = repo[rev].description().strip() |
|
1471 | desc = repo[rev].description().strip() | |
1472 | lines = desc.splitlines() |
|
1472 | lines = desc.splitlines() | |
1473 | i = 0 |
|
1473 | i = 0 | |
1474 | datastart = None |
|
1474 | datastart = None | |
1475 | series = [] |
|
1475 | series = [] | |
1476 | applied = [] |
|
1476 | applied = [] | |
1477 | qpp = None |
|
1477 | qpp = None | |
1478 | for i, line in enumerate(lines): |
|
1478 | for i, line in enumerate(lines): | |
1479 | if line == 'Patch Data:': |
|
1479 | if line == 'Patch Data:': | |
1480 | datastart = i + 1 |
|
1480 | datastart = i + 1 | |
1481 | elif line.startswith('Dirstate:'): |
|
1481 | elif line.startswith('Dirstate:'): | |
1482 | l = line.rstrip() |
|
1482 | l = line.rstrip() | |
1483 | l = l[10:].split(' ') |
|
1483 | l = l[10:].split(' ') | |
1484 | qpp = [bin(x) for x in l] |
|
1484 | qpp = [bin(x) for x in l] | |
1485 | elif datastart != None: |
|
1485 | elif datastart != None: | |
1486 | l = line.rstrip() |
|
1486 | l = line.rstrip() | |
1487 | n, name = l.split(':', 1) |
|
1487 | n, name = l.split(':', 1) | |
1488 | if n: |
|
1488 | if n: | |
1489 | applied.append(statusentry(bin(n), name)) |
|
1489 | applied.append(statusentry(bin(n), name)) | |
1490 | else: |
|
1490 | else: | |
1491 | series.append(l) |
|
1491 | series.append(l) | |
1492 | if datastart is None: |
|
1492 | if datastart is None: | |
1493 | self.ui.warn(_("No saved patch data found\n")) |
|
1493 | self.ui.warn(_("No saved patch data found\n")) | |
1494 | return 1 |
|
1494 | return 1 | |
1495 | self.ui.warn(_("restoring status: %s\n") % lines[0]) |
|
1495 | self.ui.warn(_("restoring status: %s\n") % lines[0]) | |
1496 | self.full_series = series |
|
1496 | self.full_series = series | |
1497 | self.applied = applied |
|
1497 | self.applied = applied | |
1498 | self.parse_series() |
|
1498 | self.parse_series() | |
1499 | self.series_dirty = 1 |
|
1499 | self.series_dirty = 1 | |
1500 | self.applied_dirty = 1 |
|
1500 | self.applied_dirty = 1 | |
1501 | heads = repo.changelog.heads() |
|
1501 | heads = repo.changelog.heads() | |
1502 | if delete: |
|
1502 | if delete: | |
1503 | if rev not in heads: |
|
1503 | if rev not in heads: | |
1504 | self.ui.warn(_("save entry has children, leaving it alone\n")) |
|
1504 | self.ui.warn(_("save entry has children, leaving it alone\n")) | |
1505 | else: |
|
1505 | else: | |
1506 | self.ui.warn(_("removing save entry %s\n") % short(rev)) |
|
1506 | self.ui.warn(_("removing save entry %s\n") % short(rev)) | |
1507 | pp = repo.dirstate.parents() |
|
1507 | pp = repo.dirstate.parents() | |
1508 | if rev in pp: |
|
1508 | if rev in pp: | |
1509 | update = True |
|
1509 | update = True | |
1510 | else: |
|
1510 | else: | |
1511 | update = False |
|
1511 | update = False | |
1512 | self.strip(repo, rev, update=update, backup='strip') |
|
1512 | self.strip(repo, rev, update=update, backup='strip') | |
1513 | if qpp: |
|
1513 | if qpp: | |
1514 | self.ui.warn(_("saved queue repository parents: %s %s\n") % |
|
1514 | self.ui.warn(_("saved queue repository parents: %s %s\n") % | |
1515 | (short(qpp[0]), short(qpp[1]))) |
|
1515 | (short(qpp[0]), short(qpp[1]))) | |
1516 | if qupdate: |
|
1516 | if qupdate: | |
1517 | self.ui.status(_("queue directory updating\n")) |
|
1517 | self.ui.status(_("queue directory updating\n")) | |
1518 | r = self.qrepo() |
|
1518 | r = self.qrepo() | |
1519 | if not r: |
|
1519 | if not r: | |
1520 | self.ui.warn(_("Unable to load queue repository\n")) |
|
1520 | self.ui.warn(_("Unable to load queue repository\n")) | |
1521 | return 1 |
|
1521 | return 1 | |
1522 | hg.clean(r, qpp[0]) |
|
1522 | hg.clean(r, qpp[0]) | |
1523 |
|
1523 | |||
1524 | def save(self, repo, msg=None): |
|
1524 | def save(self, repo, msg=None): | |
1525 | if not self.applied: |
|
1525 | if not self.applied: | |
1526 | self.ui.warn(_("save: no patches applied, exiting\n")) |
|
1526 | self.ui.warn(_("save: no patches applied, exiting\n")) | |
1527 | return 1 |
|
1527 | return 1 | |
1528 | if self.issaveline(self.applied[-1]): |
|
1528 | if self.issaveline(self.applied[-1]): | |
1529 | self.ui.warn(_("status is already saved\n")) |
|
1529 | self.ui.warn(_("status is already saved\n")) | |
1530 | return 1 |
|
1530 | return 1 | |
1531 |
|
1531 | |||
1532 | if not msg: |
|
1532 | if not msg: | |
1533 | msg = _("hg patches saved state") |
|
1533 | msg = _("hg patches saved state") | |
1534 | else: |
|
1534 | else: | |
1535 | msg = "hg patches: " + msg.rstrip('\r\n') |
|
1535 | msg = "hg patches: " + msg.rstrip('\r\n') | |
1536 | r = self.qrepo() |
|
1536 | r = self.qrepo() | |
1537 | if r: |
|
1537 | if r: | |
1538 | pp = r.dirstate.parents() |
|
1538 | pp = r.dirstate.parents() | |
1539 | msg += "\nDirstate: %s %s" % (hex(pp[0]), hex(pp[1])) |
|
1539 | msg += "\nDirstate: %s %s" % (hex(pp[0]), hex(pp[1])) | |
1540 | msg += "\n\nPatch Data:\n" |
|
1540 | msg += "\n\nPatch Data:\n" | |
1541 | msg += ''.join('%s\n' % x for x in self.applied) |
|
1541 | msg += ''.join('%s\n' % x for x in self.applied) | |
1542 | msg += ''.join(':%s\n' % x for x in self.full_series) |
|
1542 | msg += ''.join(':%s\n' % x for x in self.full_series) | |
1543 | n = repo.commit(msg, force=True) |
|
1543 | n = repo.commit(msg, force=True) | |
1544 | if not n: |
|
1544 | if not n: | |
1545 | self.ui.warn(_("repo commit failed\n")) |
|
1545 | self.ui.warn(_("repo commit failed\n")) | |
1546 | return 1 |
|
1546 | return 1 | |
1547 | self.applied.append(statusentry(n, '.hg.patches.save.line')) |
|
1547 | self.applied.append(statusentry(n, '.hg.patches.save.line')) | |
1548 | self.applied_dirty = 1 |
|
1548 | self.applied_dirty = 1 | |
1549 | self.removeundo(repo) |
|
1549 | self.removeundo(repo) | |
1550 |
|
1550 | |||
1551 | def full_series_end(self): |
|
1551 | def full_series_end(self): | |
1552 | if self.applied: |
|
1552 | if self.applied: | |
1553 | p = self.applied[-1].name |
|
1553 | p = self.applied[-1].name | |
1554 | end = self.find_series(p) |
|
1554 | end = self.find_series(p) | |
1555 | if end is None: |
|
1555 | if end is None: | |
1556 | return len(self.full_series) |
|
1556 | return len(self.full_series) | |
1557 | return end + 1 |
|
1557 | return end + 1 | |
1558 | return 0 |
|
1558 | return 0 | |
1559 |
|
1559 | |||
1560 | def series_end(self, all_patches=False): |
|
1560 | def series_end(self, all_patches=False): | |
1561 | """If all_patches is False, return the index of the next pushable patch |
|
1561 | """If all_patches is False, return the index of the next pushable patch | |
1562 | in the series, or the series length. If all_patches is True, return the |
|
1562 | in the series, or the series length. If all_patches is True, return the | |
1563 | index of the first patch past the last applied one. |
|
1563 | index of the first patch past the last applied one. | |
1564 | """ |
|
1564 | """ | |
1565 | end = 0 |
|
1565 | end = 0 | |
1566 | def next(start): |
|
1566 | def next(start): | |
1567 | if all_patches or start >= len(self.series): |
|
1567 | if all_patches or start >= len(self.series): | |
1568 | return start |
|
1568 | return start | |
1569 | for i in xrange(start, len(self.series)): |
|
1569 | for i in xrange(start, len(self.series)): | |
1570 | p, reason = self.pushable(i) |
|
1570 | p, reason = self.pushable(i) | |
1571 | if p: |
|
1571 | if p: | |
1572 | break |
|
1572 | break | |
1573 | self.explain_pushable(i) |
|
1573 | self.explain_pushable(i) | |
1574 | return i |
|
1574 | return i | |
1575 | if self.applied: |
|
1575 | if self.applied: | |
1576 | p = self.applied[-1].name |
|
1576 | p = self.applied[-1].name | |
1577 | try: |
|
1577 | try: | |
1578 | end = self.series.index(p) |
|
1578 | end = self.series.index(p) | |
1579 | except ValueError: |
|
1579 | except ValueError: | |
1580 | return 0 |
|
1580 | return 0 | |
1581 | return next(end + 1) |
|
1581 | return next(end + 1) | |
1582 | return next(end) |
|
1582 | return next(end) | |
1583 |
|
1583 | |||
1584 | def appliedname(self, index): |
|
1584 | def appliedname(self, index): | |
1585 | pname = self.applied[index].name |
|
1585 | pname = self.applied[index].name | |
1586 | if not self.ui.verbose: |
|
1586 | if not self.ui.verbose: | |
1587 | p = pname |
|
1587 | p = pname | |
1588 | else: |
|
1588 | else: | |
1589 | p = str(self.series.index(pname)) + " " + pname |
|
1589 | p = str(self.series.index(pname)) + " " + pname | |
1590 | return p |
|
1590 | return p | |
1591 |
|
1591 | |||
1592 | def qimport(self, repo, files, patchname=None, rev=None, existing=None, |
|
1592 | def qimport(self, repo, files, patchname=None, rev=None, existing=None, | |
1593 | force=None, git=False): |
|
1593 | force=None, git=False): | |
1594 | def checkseries(patchname): |
|
1594 | def checkseries(patchname): | |
1595 | if patchname in self.series: |
|
1595 | if patchname in self.series: | |
1596 | raise util.Abort(_('patch %s is already in the series file') |
|
1596 | raise util.Abort(_('patch %s is already in the series file') | |
1597 | % patchname) |
|
1597 | % patchname) | |
1598 | def checkfile(patchname): |
|
1598 | def checkfile(patchname): | |
1599 | if not force and os.path.exists(self.join(patchname)): |
|
1599 | if not force and os.path.exists(self.join(patchname)): | |
1600 | raise util.Abort(_('patch "%s" already exists') |
|
1600 | raise util.Abort(_('patch "%s" already exists') | |
1601 | % patchname) |
|
1601 | % patchname) | |
1602 |
|
1602 | |||
1603 | if rev: |
|
1603 | if rev: | |
1604 | if files: |
|
1604 | if files: | |
1605 | raise util.Abort(_('option "-r" not valid when importing ' |
|
1605 | raise util.Abort(_('option "-r" not valid when importing ' | |
1606 | 'files')) |
|
1606 | 'files')) | |
1607 | rev = cmdutil.revrange(repo, rev) |
|
1607 | rev = cmdutil.revrange(repo, rev) | |
1608 | rev.sort(reverse=True) |
|
1608 | rev.sort(reverse=True) | |
1609 | if (len(files) > 1 or len(rev) > 1) and patchname: |
|
1609 | if (len(files) > 1 or len(rev) > 1) and patchname: | |
1610 | raise util.Abort(_('option "-n" not valid when importing multiple ' |
|
1610 | raise util.Abort(_('option "-n" not valid when importing multiple ' | |
1611 | 'patches')) |
|
1611 | 'patches')) | |
1612 | added = [] |
|
1612 | added = [] | |
1613 | if rev: |
|
1613 | if rev: | |
1614 | # If mq patches are applied, we can only import revisions |
|
1614 | # If mq patches are applied, we can only import revisions | |
1615 | # that form a linear path to qbase. |
|
1615 | # that form a linear path to qbase. | |
1616 | # Otherwise, they should form a linear path to a head. |
|
1616 | # Otherwise, they should form a linear path to a head. | |
1617 | heads = repo.changelog.heads(repo.changelog.node(rev[-1])) |
|
1617 | heads = repo.changelog.heads(repo.changelog.node(rev[-1])) | |
1618 | if len(heads) > 1: |
|
1618 | if len(heads) > 1: | |
1619 | raise util.Abort(_('revision %d is the root of more than one ' |
|
1619 | raise util.Abort(_('revision %d is the root of more than one ' | |
1620 | 'branch') % rev[-1]) |
|
1620 | 'branch') % rev[-1]) | |
1621 | if self.applied: |
|
1621 | if self.applied: | |
1622 | base = repo.changelog.node(rev[0]) |
|
1622 | base = repo.changelog.node(rev[0]) | |
1623 | if base in [n.node for n in self.applied]: |
|
1623 | if base in [n.node for n in self.applied]: | |
1624 | raise util.Abort(_('revision %d is already managed') |
|
1624 | raise util.Abort(_('revision %d is already managed') | |
1625 | % rev[0]) |
|
1625 | % rev[0]) | |
1626 | if heads != [self.applied[-1].node]: |
|
1626 | if heads != [self.applied[-1].node]: | |
1627 | raise util.Abort(_('revision %d is not the parent of ' |
|
1627 | raise util.Abort(_('revision %d is not the parent of ' | |
1628 | 'the queue') % rev[0]) |
|
1628 | 'the queue') % rev[0]) | |
1629 | base = repo.changelog.rev(self.applied[0].node) |
|
1629 | base = repo.changelog.rev(self.applied[0].node) | |
1630 | lastparent = repo.changelog.parentrevs(base)[0] |
|
1630 | lastparent = repo.changelog.parentrevs(base)[0] | |
1631 | else: |
|
1631 | else: | |
1632 | if heads != [repo.changelog.node(rev[0])]: |
|
1632 | if heads != [repo.changelog.node(rev[0])]: | |
1633 | raise util.Abort(_('revision %d has unmanaged children') |
|
1633 | raise util.Abort(_('revision %d has unmanaged children') | |
1634 | % rev[0]) |
|
1634 | % rev[0]) | |
1635 | lastparent = None |
|
1635 | lastparent = None | |
1636 |
|
1636 | |||
1637 | diffopts = self.diffopts({'git': git}) |
|
1637 | diffopts = self.diffopts({'git': git}) | |
1638 | for r in rev: |
|
1638 | for r in rev: | |
1639 | p1, p2 = repo.changelog.parentrevs(r) |
|
1639 | p1, p2 = repo.changelog.parentrevs(r) | |
1640 | n = repo.changelog.node(r) |
|
1640 | n = repo.changelog.node(r) | |
1641 | if p2 != nullrev: |
|
1641 | if p2 != nullrev: | |
1642 | raise util.Abort(_('cannot import merge revision %d') % r) |
|
1642 | raise util.Abort(_('cannot import merge revision %d') % r) | |
1643 | if lastparent and lastparent != r: |
|
1643 | if lastparent and lastparent != r: | |
1644 | raise util.Abort(_('revision %d is not the parent of %d') |
|
1644 | raise util.Abort(_('revision %d is not the parent of %d') | |
1645 | % (r, lastparent)) |
|
1645 | % (r, lastparent)) | |
1646 | lastparent = p1 |
|
1646 | lastparent = p1 | |
1647 |
|
1647 | |||
1648 | if not patchname: |
|
1648 | if not patchname: | |
1649 | patchname = normname('%d.diff' % r) |
|
1649 | patchname = normname('%d.diff' % r) | |
1650 | self.check_reserved_name(patchname) |
|
1650 | self.check_reserved_name(patchname) | |
1651 | checkseries(patchname) |
|
1651 | checkseries(patchname) | |
1652 | checkfile(patchname) |
|
1652 | checkfile(patchname) | |
1653 | self.full_series.insert(0, patchname) |
|
1653 | self.full_series.insert(0, patchname) | |
1654 |
|
1654 | |||
1655 | patchf = self.opener(patchname, "w") |
|
1655 | patchf = self.opener(patchname, "w") | |
1656 | cmdutil.export(repo, [n], fp=patchf, opts=diffopts) |
|
1656 | cmdutil.export(repo, [n], fp=patchf, opts=diffopts) | |
1657 | patchf.close() |
|
1657 | patchf.close() | |
1658 |
|
1658 | |||
1659 | se = statusentry(n, patchname) |
|
1659 | se = statusentry(n, patchname) | |
1660 | self.applied.insert(0, se) |
|
1660 | self.applied.insert(0, se) | |
1661 |
|
1661 | |||
1662 | added.append(patchname) |
|
1662 | added.append(patchname) | |
1663 | patchname = None |
|
1663 | patchname = None | |
1664 | self.parse_series() |
|
1664 | self.parse_series() | |
1665 | self.applied_dirty = 1 |
|
1665 | self.applied_dirty = 1 | |
1666 |
|
1666 | |||
1667 | for i, filename in enumerate(files): |
|
1667 | for i, filename in enumerate(files): | |
1668 | if existing: |
|
1668 | if existing: | |
1669 | if filename == '-': |
|
1669 | if filename == '-': | |
1670 | raise util.Abort(_('-e is incompatible with import from -')) |
|
1670 | raise util.Abort(_('-e is incompatible with import from -')) | |
1671 | if not patchname: |
|
1671 | if not patchname: | |
1672 | patchname = normname(filename) |
|
1672 | patchname = normname(filename) | |
1673 | self.check_reserved_name(patchname) |
|
1673 | self.check_reserved_name(patchname) | |
1674 | if not os.path.isfile(self.join(patchname)): |
|
1674 | if not os.path.isfile(self.join(patchname)): | |
1675 | raise util.Abort(_("patch %s does not exist") % patchname) |
|
1675 | raise util.Abort(_("patch %s does not exist") % patchname) | |
1676 | else: |
|
1676 | else: | |
1677 | try: |
|
1677 | try: | |
1678 | if filename == '-': |
|
1678 | if filename == '-': | |
1679 | if not patchname: |
|
1679 | if not patchname: | |
1680 | raise util.Abort( |
|
1680 | raise util.Abort( | |
1681 | _('need --name to import a patch from -')) |
|
1681 | _('need --name to import a patch from -')) | |
1682 | text = sys.stdin.read() |
|
1682 | text = sys.stdin.read() | |
1683 | else: |
|
1683 | else: | |
1684 | text = url.open(self.ui, filename).read() |
|
1684 | text = url.open(self.ui, filename).read() | |
1685 | except (OSError, IOError): |
|
1685 | except (OSError, IOError): | |
1686 | raise util.Abort(_("unable to read %s") % filename) |
|
1686 | raise util.Abort(_("unable to read %s") % filename) | |
1687 | if not patchname: |
|
1687 | if not patchname: | |
1688 | patchname = normname(os.path.basename(filename)) |
|
1688 | patchname = normname(os.path.basename(filename)) | |
1689 | self.check_reserved_name(patchname) |
|
1689 | self.check_reserved_name(patchname) | |
1690 | checkfile(patchname) |
|
1690 | checkfile(patchname) | |
1691 | patchf = self.opener(patchname, "w") |
|
1691 | patchf = self.opener(patchname, "w") | |
1692 | patchf.write(text) |
|
1692 | patchf.write(text) | |
1693 | if not force: |
|
1693 | if not force: | |
1694 | checkseries(patchname) |
|
1694 | checkseries(patchname) | |
1695 | if patchname not in self.series: |
|
1695 | if patchname not in self.series: | |
1696 | index = self.full_series_end() + i |
|
1696 | index = self.full_series_end() + i | |
1697 | self.full_series[index:index] = [patchname] |
|
1697 | self.full_series[index:index] = [patchname] | |
1698 | self.parse_series() |
|
1698 | self.parse_series() | |
1699 | self.ui.warn(_("adding %s to series file\n") % patchname) |
|
1699 | self.ui.warn(_("adding %s to series file\n") % patchname) | |
1700 | added.append(patchname) |
|
1700 | added.append(patchname) | |
1701 | patchname = None |
|
1701 | patchname = None | |
1702 | self.series_dirty = 1 |
|
1702 | self.series_dirty = 1 | |
1703 | qrepo = self.qrepo() |
|
1703 | qrepo = self.qrepo() | |
1704 | if qrepo: |
|
1704 | if qrepo: | |
1705 | qrepo.add(added) |
|
1705 | qrepo.add(added) | |
1706 |
|
1706 | |||
1707 | def delete(ui, repo, *patches, **opts): |
|
1707 | def delete(ui, repo, *patches, **opts): | |
1708 | """remove patches from queue |
|
1708 | """remove patches from queue | |
1709 |
|
1709 | |||
1710 | The patches must not be applied, and at least one patch is required. With |
|
1710 | The patches must not be applied, and at least one patch is required. With | |
1711 | -k/--keep, the patch files are preserved in the patch directory. |
|
1711 | -k/--keep, the patch files are preserved in the patch directory. | |
1712 |
|
1712 | |||
1713 | To stop managing a patch and move it into permanent history, |
|
1713 | To stop managing a patch and move it into permanent history, | |
1714 | use the qfinish command.""" |
|
1714 | use the qfinish command.""" | |
1715 | q = repo.mq |
|
1715 | q = repo.mq | |
1716 | q.delete(repo, patches, opts) |
|
1716 | q.delete(repo, patches, opts) | |
1717 | q.save_dirty() |
|
1717 | q.save_dirty() | |
1718 | return 0 |
|
1718 | return 0 | |
1719 |
|
1719 | |||
1720 | def applied(ui, repo, patch=None, **opts): |
|
1720 | def applied(ui, repo, patch=None, **opts): | |
1721 | """print the patches already applied""" |
|
1721 | """print the patches already applied""" | |
1722 |
|
1722 | |||
1723 | q = repo.mq |
|
1723 | q = repo.mq | |
1724 | l = len(q.applied) |
|
1724 | l = len(q.applied) | |
1725 |
|
1725 | |||
1726 | if patch: |
|
1726 | if patch: | |
1727 | if patch not in q.series: |
|
1727 | if patch not in q.series: | |
1728 | raise util.Abort(_("patch %s is not in series file") % patch) |
|
1728 | raise util.Abort(_("patch %s is not in series file") % patch) | |
1729 | end = q.series.index(patch) + 1 |
|
1729 | end = q.series.index(patch) + 1 | |
1730 | else: |
|
1730 | else: | |
1731 | end = q.series_end(True) |
|
1731 | end = q.series_end(True) | |
1732 |
|
1732 | |||
1733 | if opts.get('last') and not end: |
|
1733 | if opts.get('last') and not end: | |
1734 | ui.write(_("no patches applied\n")) |
|
1734 | ui.write(_("no patches applied\n")) | |
1735 | return 1 |
|
1735 | return 1 | |
1736 | elif opts.get('last') and end == 1: |
|
1736 | elif opts.get('last') and end == 1: | |
1737 | ui.write(_("only one patch applied\n")) |
|
1737 | ui.write(_("only one patch applied\n")) | |
1738 | return 1 |
|
1738 | return 1 | |
1739 | elif opts.get('last'): |
|
1739 | elif opts.get('last'): | |
1740 | start = end - 2 |
|
1740 | start = end - 2 | |
1741 | end = 1 |
|
1741 | end = 1 | |
1742 | else: |
|
1742 | else: | |
1743 | start = 0 |
|
1743 | start = 0 | |
1744 |
|
1744 | |||
1745 | return q.qseries(repo, length=end, start=start, status='A', |
|
1745 | return q.qseries(repo, length=end, start=start, status='A', | |
1746 | summary=opts.get('summary')) |
|
1746 | summary=opts.get('summary')) | |
1747 |
|
1747 | |||
1748 | def unapplied(ui, repo, patch=None, **opts): |
|
1748 | def unapplied(ui, repo, patch=None, **opts): | |
1749 | """print the patches not yet applied""" |
|
1749 | """print the patches not yet applied""" | |
1750 |
|
1750 | |||
1751 | q = repo.mq |
|
1751 | q = repo.mq | |
1752 | if patch: |
|
1752 | if patch: | |
1753 | if patch not in q.series: |
|
1753 | if patch not in q.series: | |
1754 | raise util.Abort(_("patch %s is not in series file") % patch) |
|
1754 | raise util.Abort(_("patch %s is not in series file") % patch) | |
1755 | start = q.series.index(patch) + 1 |
|
1755 | start = q.series.index(patch) + 1 | |
1756 | else: |
|
1756 | else: | |
1757 | start = q.series_end(True) |
|
1757 | start = q.series_end(True) | |
1758 |
|
1758 | |||
1759 | if start == len(q.series) and opts.get('first'): |
|
1759 | if start == len(q.series) and opts.get('first'): | |
1760 | ui.write(_("all patches applied\n")) |
|
1760 | ui.write(_("all patches applied\n")) | |
1761 | return 1 |
|
1761 | return 1 | |
1762 |
|
1762 | |||
1763 | length = opts.get('first') and 1 or None |
|
1763 | length = opts.get('first') and 1 or None | |
1764 | return q.qseries(repo, start=start, length=length, status='U', |
|
1764 | return q.qseries(repo, start=start, length=length, status='U', | |
1765 | summary=opts.get('summary')) |
|
1765 | summary=opts.get('summary')) | |
1766 |
|
1766 | |||
1767 | def qimport(ui, repo, *filename, **opts): |
|
1767 | def qimport(ui, repo, *filename, **opts): | |
1768 | """import a patch |
|
1768 | """import a patch | |
1769 |
|
1769 | |||
1770 | The patch is inserted into the series after the last applied |
|
1770 | The patch is inserted into the series after the last applied | |
1771 | patch. If no patches have been applied, qimport prepends the patch |
|
1771 | patch. If no patches have been applied, qimport prepends the patch | |
1772 | to the series. |
|
1772 | to the series. | |
1773 |
|
1773 | |||
1774 | The patch will have the same name as its source file unless you |
|
1774 | The patch will have the same name as its source file unless you | |
1775 | give it a new one with -n/--name. |
|
1775 | give it a new one with -n/--name. | |
1776 |
|
1776 | |||
1777 | You can register an existing patch inside the patch directory with |
|
1777 | You can register an existing patch inside the patch directory with | |
1778 | the -e/--existing flag. |
|
1778 | the -e/--existing flag. | |
1779 |
|
1779 | |||
1780 | With -f/--force, an existing patch of the same name will be |
|
1780 | With -f/--force, an existing patch of the same name will be | |
1781 | overwritten. |
|
1781 | overwritten. | |
1782 |
|
1782 | |||
1783 | An existing changeset may be placed under mq control with -r/--rev |
|
1783 | An existing changeset may be placed under mq control with -r/--rev | |
1784 | (e.g. qimport --rev tip -n patch will place tip under mq control). |
|
1784 | (e.g. qimport --rev tip -n patch will place tip under mq control). | |
1785 | With -g/--git, patches imported with --rev will use the git diff |
|
1785 | With -g/--git, patches imported with --rev will use the git diff | |
1786 | format. See the diffs help topic for information on why this is |
|
1786 | format. See the diffs help topic for information on why this is | |
1787 | important for preserving rename/copy information and permission |
|
1787 | important for preserving rename/copy information and permission | |
1788 | changes. |
|
1788 | changes. | |
1789 |
|
1789 | |||
1790 | To import a patch from standard input, pass - as the patch file. |
|
1790 | To import a patch from standard input, pass - as the patch file. | |
1791 | When importing from standard input, a patch name must be specified |
|
1791 | When importing from standard input, a patch name must be specified | |
1792 | using the --name flag. |
|
1792 | using the --name flag. | |
1793 | """ |
|
1793 | """ | |
1794 | q = repo.mq |
|
1794 | q = repo.mq | |
1795 | q.qimport(repo, filename, patchname=opts['name'], |
|
1795 | q.qimport(repo, filename, patchname=opts['name'], | |
1796 | existing=opts['existing'], force=opts['force'], rev=opts['rev'], |
|
1796 | existing=opts['existing'], force=opts['force'], rev=opts['rev'], | |
1797 | git=opts['git']) |
|
1797 | git=opts['git']) | |
1798 | q.save_dirty() |
|
1798 | q.save_dirty() | |
1799 |
|
1799 | |||
1800 | if opts.get('push') and not opts.get('rev'): |
|
1800 | if opts.get('push') and not opts.get('rev'): | |
1801 | return q.push(repo, None) |
|
1801 | return q.push(repo, None) | |
1802 | return 0 |
|
1802 | return 0 | |
1803 |
|
1803 | |||
1804 | def qinit(ui, repo, create): |
|
1804 | def qinit(ui, repo, create): | |
1805 | """initialize a new queue repository |
|
1805 | """initialize a new queue repository | |
1806 |
|
1806 | |||
1807 | This command also creates a series file for ordering patches, and |
|
1807 | This command also creates a series file for ordering patches, and | |
1808 | an mq-specific .hgignore file in the queue repository, to exclude |
|
1808 | an mq-specific .hgignore file in the queue repository, to exclude | |
1809 | the status and guards files (these contain mostly transient state).""" |
|
1809 | the status and guards files (these contain mostly transient state).""" | |
1810 | q = repo.mq |
|
1810 | q = repo.mq | |
1811 | r = q.init(repo, create) |
|
1811 | r = q.init(repo, create) | |
1812 | q.save_dirty() |
|
1812 | q.save_dirty() | |
1813 | if r: |
|
1813 | if r: | |
1814 | if not os.path.exists(r.wjoin('.hgignore')): |
|
1814 | if not os.path.exists(r.wjoin('.hgignore')): | |
1815 | fp = r.wopener('.hgignore', 'w') |
|
1815 | fp = r.wopener('.hgignore', 'w') | |
1816 | fp.write('^\\.hg\n') |
|
1816 | fp.write('^\\.hg\n') | |
1817 | fp.write('^\\.mq\n') |
|
1817 | fp.write('^\\.mq\n') | |
1818 | fp.write('syntax: glob\n') |
|
1818 | fp.write('syntax: glob\n') | |
1819 | fp.write('status\n') |
|
1819 | fp.write('status\n') | |
1820 | fp.write('guards\n') |
|
1820 | fp.write('guards\n') | |
1821 | fp.close() |
|
1821 | fp.close() | |
1822 | if not os.path.exists(r.wjoin('series')): |
|
1822 | if not os.path.exists(r.wjoin('series')): | |
1823 | r.wopener('series', 'w').close() |
|
1823 | r.wopener('series', 'w').close() | |
1824 | r.add(['.hgignore', 'series']) |
|
1824 | r.add(['.hgignore', 'series']) | |
1825 | commands.add(ui, r) |
|
1825 | commands.add(ui, r) | |
1826 | return 0 |
|
1826 | return 0 | |
1827 |
|
1827 | |||
1828 | def init(ui, repo, **opts): |
|
1828 | def init(ui, repo, **opts): | |
1829 | """init a new queue repository (DEPRECATED) |
|
1829 | """init a new queue repository (DEPRECATED) | |
1830 |
|
1830 | |||
1831 | The queue repository is unversioned by default. If |
|
1831 | The queue repository is unversioned by default. If | |
1832 | -c/--create-repo is specified, qinit will create a separate nested |
|
1832 | -c/--create-repo is specified, qinit will create a separate nested | |
1833 | repository for patches (qinit -c may also be run later to convert |
|
1833 | repository for patches (qinit -c may also be run later to convert | |
1834 | an unversioned patch repository into a versioned one). You can use |
|
1834 | an unversioned patch repository into a versioned one). You can use | |
1835 | qcommit to commit changes to this queue repository. |
|
1835 | qcommit to commit changes to this queue repository. | |
1836 |
|
1836 | |||
1837 | This command is deprecated. Without -c, it's implied by other relevant |
|
1837 | This command is deprecated. Without -c, it's implied by other relevant | |
1838 | commands. With -c, use hg init --mq instead.""" |
|
1838 | commands. With -c, use hg init --mq instead.""" | |
1839 | return qinit(ui, repo, create=opts['create_repo']) |
|
1839 | return qinit(ui, repo, create=opts['create_repo']) | |
1840 |
|
1840 | |||
1841 | def clone(ui, source, dest=None, **opts): |
|
1841 | def clone(ui, source, dest=None, **opts): | |
1842 | '''clone main and patch repository at same time |
|
1842 | '''clone main and patch repository at same time | |
1843 |
|
1843 | |||
1844 | If source is local, destination will have no patches applied. If |
|
1844 | If source is local, destination will have no patches applied. If | |
1845 | source is remote, this command can not check if patches are |
|
1845 | source is remote, this command can not check if patches are | |
1846 | applied in source, so cannot guarantee that patches are not |
|
1846 | applied in source, so cannot guarantee that patches are not | |
1847 | applied in destination. If you clone remote repository, be sure |
|
1847 | applied in destination. If you clone remote repository, be sure | |
1848 | before that it has no patches applied. |
|
1848 | before that it has no patches applied. | |
1849 |
|
1849 | |||
1850 | Source patch repository is looked for in <src>/.hg/patches by |
|
1850 | Source patch repository is looked for in <src>/.hg/patches by | |
1851 | default. Use -p <url> to change. |
|
1851 | default. Use -p <url> to change. | |
1852 |
|
1852 | |||
1853 | The patch directory must be a nested Mercurial repository, as |
|
1853 | The patch directory must be a nested Mercurial repository, as | |
1854 | would be created by init --mq. |
|
1854 | would be created by init --mq. | |
1855 | ''' |
|
1855 | ''' | |
1856 | def patchdir(repo): |
|
1856 | def patchdir(repo): | |
1857 | url = repo.url() |
|
1857 | url = repo.url() | |
1858 | if url.endswith('/'): |
|
1858 | if url.endswith('/'): | |
1859 | url = url[:-1] |
|
1859 | url = url[:-1] | |
1860 | return url + '/.hg/patches' |
|
1860 | return url + '/.hg/patches' | |
1861 | if dest is None: |
|
1861 | if dest is None: | |
1862 | dest = hg.defaultdest(source) |
|
1862 | dest = hg.defaultdest(source) | |
1863 | sr = hg.repository(cmdutil.remoteui(ui, opts), ui.expandpath(source)) |
|
1863 | sr = hg.repository(cmdutil.remoteui(ui, opts), ui.expandpath(source)) | |
1864 | if opts['patches']: |
|
1864 | if opts['patches']: | |
1865 | patchespath = ui.expandpath(opts['patches']) |
|
1865 | patchespath = ui.expandpath(opts['patches']) | |
1866 | else: |
|
1866 | else: | |
1867 | patchespath = patchdir(sr) |
|
1867 | patchespath = patchdir(sr) | |
1868 | try: |
|
1868 | try: | |
1869 | hg.repository(ui, patchespath) |
|
1869 | hg.repository(ui, patchespath) | |
1870 | except error.RepoError: |
|
1870 | except error.RepoError: | |
1871 | raise util.Abort(_('versioned patch repository not found' |
|
1871 | raise util.Abort(_('versioned patch repository not found' | |
1872 | ' (see init --mq)')) |
|
1872 | ' (see init --mq)')) | |
1873 | qbase, destrev = None, None |
|
1873 | qbase, destrev = None, None | |
1874 | if sr.local(): |
|
1874 | if sr.local(): | |
1875 | if sr.mq.applied: |
|
1875 | if sr.mq.applied: | |
1876 | qbase = sr.mq.applied[0].node |
|
1876 | qbase = sr.mq.applied[0].node | |
1877 | if not hg.islocal(dest): |
|
1877 | if not hg.islocal(dest): | |
1878 | heads = set(sr.heads()) |
|
1878 | heads = set(sr.heads()) | |
1879 | destrev = list(heads.difference(sr.heads(qbase))) |
|
1879 | destrev = list(heads.difference(sr.heads(qbase))) | |
1880 | destrev.append(sr.changelog.parents(qbase)[0]) |
|
1880 | destrev.append(sr.changelog.parents(qbase)[0]) | |
1881 | elif sr.capable('lookup'): |
|
1881 | elif sr.capable('lookup'): | |
1882 | try: |
|
1882 | try: | |
1883 | qbase = sr.lookup('qbase') |
|
1883 | qbase = sr.lookup('qbase') | |
1884 | except error.RepoError: |
|
1884 | except error.RepoError: | |
1885 | pass |
|
1885 | pass | |
1886 | ui.note(_('cloning main repository\n')) |
|
1886 | ui.note(_('cloning main repository\n')) | |
1887 | sr, dr = hg.clone(ui, sr.url(), dest, |
|
1887 | sr, dr = hg.clone(ui, sr.url(), dest, | |
1888 | pull=opts['pull'], |
|
1888 | pull=opts['pull'], | |
1889 | rev=destrev, |
|
1889 | rev=destrev, | |
1890 | update=False, |
|
1890 | update=False, | |
1891 | stream=opts['uncompressed']) |
|
1891 | stream=opts['uncompressed']) | |
1892 | ui.note(_('cloning patch repository\n')) |
|
1892 | ui.note(_('cloning patch repository\n')) | |
1893 | hg.clone(ui, opts['patches'] or patchdir(sr), patchdir(dr), |
|
1893 | hg.clone(ui, opts['patches'] or patchdir(sr), patchdir(dr), | |
1894 | pull=opts['pull'], update=not opts['noupdate'], |
|
1894 | pull=opts['pull'], update=not opts['noupdate'], | |
1895 | stream=opts['uncompressed']) |
|
1895 | stream=opts['uncompressed']) | |
1896 | if dr.local(): |
|
1896 | if dr.local(): | |
1897 | if qbase: |
|
1897 | if qbase: | |
1898 | ui.note(_('stripping applied patches from destination ' |
|
1898 | ui.note(_('stripping applied patches from destination ' | |
1899 | 'repository\n')) |
|
1899 | 'repository\n')) | |
1900 | dr.mq.strip(dr, qbase, update=False, backup=None) |
|
1900 | dr.mq.strip(dr, qbase, update=False, backup=None) | |
1901 | if not opts['noupdate']: |
|
1901 | if not opts['noupdate']: | |
1902 | ui.note(_('updating destination repository\n')) |
|
1902 | ui.note(_('updating destination repository\n')) | |
1903 | hg.update(dr, dr.changelog.tip()) |
|
1903 | hg.update(dr, dr.changelog.tip()) | |
1904 |
|
1904 | |||
1905 | def commit(ui, repo, *pats, **opts): |
|
1905 | def commit(ui, repo, *pats, **opts): | |
1906 | """commit changes in the queue repository (DEPRECATED) |
|
1906 | """commit changes in the queue repository (DEPRECATED) | |
1907 |
|
1907 | |||
1908 | This command is deprecated; use hg commit --mq instead.""" |
|
1908 | This command is deprecated; use hg commit --mq instead.""" | |
1909 | q = repo.mq |
|
1909 | q = repo.mq | |
1910 | r = q.qrepo() |
|
1910 | r = q.qrepo() | |
1911 | if not r: |
|
1911 | if not r: | |
1912 | raise util.Abort('no queue repository') |
|
1912 | raise util.Abort('no queue repository') | |
1913 | commands.commit(r.ui, r, *pats, **opts) |
|
1913 | commands.commit(r.ui, r, *pats, **opts) | |
1914 |
|
1914 | |||
1915 | def series(ui, repo, **opts): |
|
1915 | def series(ui, repo, **opts): | |
1916 | """print the entire series file""" |
|
1916 | """print the entire series file""" | |
1917 | repo.mq.qseries(repo, missing=opts['missing'], summary=opts['summary']) |
|
1917 | repo.mq.qseries(repo, missing=opts['missing'], summary=opts['summary']) | |
1918 | return 0 |
|
1918 | return 0 | |
1919 |
|
1919 | |||
1920 | def top(ui, repo, **opts): |
|
1920 | def top(ui, repo, **opts): | |
1921 | """print the name of the current patch""" |
|
1921 | """print the name of the current patch""" | |
1922 | q = repo.mq |
|
1922 | q = repo.mq | |
1923 | t = q.applied and q.series_end(True) or 0 |
|
1923 | t = q.applied and q.series_end(True) or 0 | |
1924 | if t: |
|
1924 | if t: | |
1925 | return q.qseries(repo, start=t - 1, length=1, status='A', |
|
1925 | return q.qseries(repo, start=t - 1, length=1, status='A', | |
1926 | summary=opts.get('summary')) |
|
1926 | summary=opts.get('summary')) | |
1927 | else: |
|
1927 | else: | |
1928 | ui.write(_("no patches applied\n")) |
|
1928 | ui.write(_("no patches applied\n")) | |
1929 | return 1 |
|
1929 | return 1 | |
1930 |
|
1930 | |||
1931 | def next(ui, repo, **opts): |
|
1931 | def next(ui, repo, **opts): | |
1932 | """print the name of the next patch""" |
|
1932 | """print the name of the next patch""" | |
1933 | q = repo.mq |
|
1933 | q = repo.mq | |
1934 | end = q.series_end() |
|
1934 | end = q.series_end() | |
1935 | if end == len(q.series): |
|
1935 | if end == len(q.series): | |
1936 | ui.write(_("all patches applied\n")) |
|
1936 | ui.write(_("all patches applied\n")) | |
1937 | return 1 |
|
1937 | return 1 | |
1938 | return q.qseries(repo, start=end, length=1, summary=opts.get('summary')) |
|
1938 | return q.qseries(repo, start=end, length=1, summary=opts.get('summary')) | |
1939 |
|
1939 | |||
1940 | def prev(ui, repo, **opts): |
|
1940 | def prev(ui, repo, **opts): | |
1941 | """print the name of the previous patch""" |
|
1941 | """print the name of the previous patch""" | |
1942 | q = repo.mq |
|
1942 | q = repo.mq | |
1943 | l = len(q.applied) |
|
1943 | l = len(q.applied) | |
1944 | if l == 1: |
|
1944 | if l == 1: | |
1945 | ui.write(_("only one patch applied\n")) |
|
1945 | ui.write(_("only one patch applied\n")) | |
1946 | return 1 |
|
1946 | return 1 | |
1947 | if not l: |
|
1947 | if not l: | |
1948 | ui.write(_("no patches applied\n")) |
|
1948 | ui.write(_("no patches applied\n")) | |
1949 | return 1 |
|
1949 | return 1 | |
1950 | return q.qseries(repo, start=l - 2, length=1, status='A', |
|
1950 | return q.qseries(repo, start=l - 2, length=1, status='A', | |
1951 | summary=opts.get('summary')) |
|
1951 | summary=opts.get('summary')) | |
1952 |
|
1952 | |||
1953 | def setupheaderopts(ui, opts): |
|
1953 | def setupheaderopts(ui, opts): | |
1954 | if not opts.get('user') and opts.get('currentuser'): |
|
1954 | if not opts.get('user') and opts.get('currentuser'): | |
1955 | opts['user'] = ui.username() |
|
1955 | opts['user'] = ui.username() | |
1956 | if not opts.get('date') and opts.get('currentdate'): |
|
1956 | if not opts.get('date') and opts.get('currentdate'): | |
1957 | opts['date'] = "%d %d" % util.makedate() |
|
1957 | opts['date'] = "%d %d" % util.makedate() | |
1958 |
|
1958 | |||
1959 | def new(ui, repo, patch, *args, **opts): |
|
1959 | def new(ui, repo, patch, *args, **opts): | |
1960 | """create a new patch |
|
1960 | """create a new patch | |
1961 |
|
1961 | |||
1962 | qnew creates a new patch on top of the currently-applied patch (if |
|
1962 | qnew creates a new patch on top of the currently-applied patch (if | |
1963 | any). It will refuse to run if there are any outstanding changes |
|
1963 | any). It will refuse to run if there are any outstanding changes | |
1964 | unless -f/--force is specified, in which case the patch will be |
|
1964 | unless -f/--force is specified, in which case the patch will be | |
1965 | initialized with them. You may also use -I/--include, |
|
1965 | initialized with them. You may also use -I/--include, | |
1966 | -X/--exclude, and/or a list of files after the patch name to add |
|
1966 | -X/--exclude, and/or a list of files after the patch name to add | |
1967 | only changes to matching files to the new patch, leaving the rest |
|
1967 | only changes to matching files to the new patch, leaving the rest | |
1968 | as uncommitted modifications. |
|
1968 | as uncommitted modifications. | |
1969 |
|
1969 | |||
1970 | -u/--user and -d/--date can be used to set the (given) user and |
|
1970 | -u/--user and -d/--date can be used to set the (given) user and | |
1971 | date, respectively. -U/--currentuser and -D/--currentdate set user |
|
1971 | date, respectively. -U/--currentuser and -D/--currentdate set user | |
1972 | to current user and date to current date. |
|
1972 | to current user and date to current date. | |
1973 |
|
1973 | |||
1974 | -e/--edit, -m/--message or -l/--logfile set the patch header as |
|
1974 | -e/--edit, -m/--message or -l/--logfile set the patch header as | |
1975 | well as the commit message. If none is specified, the header is |
|
1975 | well as the commit message. If none is specified, the header is | |
1976 | empty and the commit message is '[mq]: PATCH'. |
|
1976 | empty and the commit message is '[mq]: PATCH'. | |
1977 |
|
1977 | |||
1978 | Use the -g/--git option to keep the patch in the git extended diff |
|
1978 | Use the -g/--git option to keep the patch in the git extended diff | |
1979 | format. Read the diffs help topic for more information on why this |
|
1979 | format. Read the diffs help topic for more information on why this | |
1980 | is important for preserving permission changes and copy/rename |
|
1980 | is important for preserving permission changes and copy/rename | |
1981 | information. |
|
1981 | information. | |
1982 | """ |
|
1982 | """ | |
1983 | msg = cmdutil.logmessage(opts) |
|
1983 | msg = cmdutil.logmessage(opts) | |
1984 | def getmsg(): |
|
1984 | def getmsg(): | |
1985 | return ui.edit(msg, ui.username()) |
|
1985 | return ui.edit(msg, ui.username()) | |
1986 | q = repo.mq |
|
1986 | q = repo.mq | |
1987 | opts['msg'] = msg |
|
1987 | opts['msg'] = msg | |
1988 | if opts.get('edit'): |
|
1988 | if opts.get('edit'): | |
1989 | opts['msg'] = getmsg |
|
1989 | opts['msg'] = getmsg | |
1990 | else: |
|
1990 | else: | |
1991 | opts['msg'] = msg |
|
1991 | opts['msg'] = msg | |
1992 | setupheaderopts(ui, opts) |
|
1992 | setupheaderopts(ui, opts) | |
1993 | q.new(repo, patch, *args, **opts) |
|
1993 | q.new(repo, patch, *args, **opts) | |
1994 | q.save_dirty() |
|
1994 | q.save_dirty() | |
1995 | return 0 |
|
1995 | return 0 | |
1996 |
|
1996 | |||
1997 | def refresh(ui, repo, *pats, **opts): |
|
1997 | def refresh(ui, repo, *pats, **opts): | |
1998 | """update the current patch |
|
1998 | """update the current patch | |
1999 |
|
1999 | |||
2000 | If any file patterns are provided, the refreshed patch will |
|
2000 | If any file patterns are provided, the refreshed patch will | |
2001 | contain only the modifications that match those patterns; the |
|
2001 | contain only the modifications that match those patterns; the | |
2002 | remaining modifications will remain in the working directory. |
|
2002 | remaining modifications will remain in the working directory. | |
2003 |
|
2003 | |||
2004 | If -s/--short is specified, files currently included in the patch |
|
2004 | If -s/--short is specified, files currently included in the patch | |
2005 | will be refreshed just like matched files and remain in the patch. |
|
2005 | will be refreshed just like matched files and remain in the patch. | |
2006 |
|
2006 | |||
2007 | hg add/remove/copy/rename work as usual, though you might want to |
|
2007 | hg add/remove/copy/rename work as usual, though you might want to | |
2008 | use git-style patches (-g/--git or [diff] git=1) to track copies |
|
2008 | use git-style patches (-g/--git or [diff] git=1) to track copies | |
2009 | and renames. See the diffs help topic for more information on the |
|
2009 | and renames. See the diffs help topic for more information on the | |
2010 | git diff format. |
|
2010 | git diff format. | |
2011 | """ |
|
2011 | """ | |
2012 | q = repo.mq |
|
2012 | q = repo.mq | |
2013 | message = cmdutil.logmessage(opts) |
|
2013 | message = cmdutil.logmessage(opts) | |
2014 | if opts['edit']: |
|
2014 | if opts['edit']: | |
2015 | if not q.applied: |
|
2015 | if not q.applied: | |
2016 | ui.write(_("no patches applied\n")) |
|
2016 | ui.write(_("no patches applied\n")) | |
2017 | return 1 |
|
2017 | return 1 | |
2018 | if message: |
|
2018 | if message: | |
2019 | raise util.Abort(_('option "-e" incompatible with "-m" or "-l"')) |
|
2019 | raise util.Abort(_('option "-e" incompatible with "-m" or "-l"')) | |
2020 | patch = q.applied[-1].name |
|
2020 | patch = q.applied[-1].name | |
2021 | ph = patchheader(q.join(patch), q.plainmode) |
|
2021 | ph = patchheader(q.join(patch), q.plainmode) | |
2022 | message = ui.edit('\n'.join(ph.message), ph.user or ui.username()) |
|
2022 | message = ui.edit('\n'.join(ph.message), ph.user or ui.username()) | |
2023 | setupheaderopts(ui, opts) |
|
2023 | setupheaderopts(ui, opts) | |
2024 | ret = q.refresh(repo, pats, msg=message, **opts) |
|
2024 | ret = q.refresh(repo, pats, msg=message, **opts) | |
2025 | q.save_dirty() |
|
2025 | q.save_dirty() | |
2026 | return ret |
|
2026 | return ret | |
2027 |
|
2027 | |||
2028 | def diff(ui, repo, *pats, **opts): |
|
2028 | def diff(ui, repo, *pats, **opts): | |
2029 | """diff of the current patch and subsequent modifications |
|
2029 | """diff of the current patch and subsequent modifications | |
2030 |
|
2030 | |||
2031 | Shows a diff which includes the current patch as well as any |
|
2031 | Shows a diff which includes the current patch as well as any | |
2032 | changes which have been made in the working directory since the |
|
2032 | changes which have been made in the working directory since the | |
2033 | last refresh (thus showing what the current patch would become |
|
2033 | last refresh (thus showing what the current patch would become | |
2034 | after a qrefresh). |
|
2034 | after a qrefresh). | |
2035 |
|
2035 | |||
2036 | Use 'hg diff' if you only want to see the changes made since the |
|
2036 | Use 'hg diff' if you only want to see the changes made since the | |
2037 | last qrefresh, or 'hg export qtip' if you want to see changes made |
|
2037 | last qrefresh, or 'hg export qtip' if you want to see changes made | |
2038 | by the current patch without including changes made since the |
|
2038 | by the current patch without including changes made since the | |
2039 | qrefresh. |
|
2039 | qrefresh. | |
2040 | """ |
|
2040 | """ | |
2041 | repo.mq.diff(repo, pats, opts) |
|
2041 | repo.mq.diff(repo, pats, opts) | |
2042 | return 0 |
|
2042 | return 0 | |
2043 |
|
2043 | |||
2044 | def fold(ui, repo, *files, **opts): |
|
2044 | def fold(ui, repo, *files, **opts): | |
2045 | """fold the named patches into the current patch |
|
2045 | """fold the named patches into the current patch | |
2046 |
|
2046 | |||
2047 | Patches must not yet be applied. Each patch will be successively |
|
2047 | Patches must not yet be applied. Each patch will be successively | |
2048 | applied to the current patch in the order given. If all the |
|
2048 | applied to the current patch in the order given. If all the | |
2049 | patches apply successfully, the current patch will be refreshed |
|
2049 | patches apply successfully, the current patch will be refreshed | |
2050 | with the new cumulative patch, and the folded patches will be |
|
2050 | with the new cumulative patch, and the folded patches will be | |
2051 | deleted. With -k/--keep, the folded patch files will not be |
|
2051 | deleted. With -k/--keep, the folded patch files will not be | |
2052 | removed afterwards. |
|
2052 | removed afterwards. | |
2053 |
|
2053 | |||
2054 | The header for each folded patch will be concatenated with the |
|
2054 | The header for each folded patch will be concatenated with the | |
2055 | current patch header, separated by a line of '* * *'.""" |
|
2055 | current patch header, separated by a line of '* * *'.""" | |
2056 |
|
2056 | |||
2057 | q = repo.mq |
|
2057 | q = repo.mq | |
2058 |
|
2058 | |||
2059 | if not files: |
|
2059 | if not files: | |
2060 | raise util.Abort(_('qfold requires at least one patch name')) |
|
2060 | raise util.Abort(_('qfold requires at least one patch name')) | |
2061 | if not q.check_toppatch(repo)[0]: |
|
2061 | if not q.check_toppatch(repo)[0]: | |
2062 | raise util.Abort(_('No patches applied')) |
|
2062 | raise util.Abort(_('No patches applied')) | |
2063 | q.check_localchanges(repo) |
|
2063 | q.check_localchanges(repo) | |
2064 |
|
2064 | |||
2065 | message = cmdutil.logmessage(opts) |
|
2065 | message = cmdutil.logmessage(opts) | |
2066 | if opts['edit']: |
|
2066 | if opts['edit']: | |
2067 | if message: |
|
2067 | if message: | |
2068 | raise util.Abort(_('option "-e" incompatible with "-m" or "-l"')) |
|
2068 | raise util.Abort(_('option "-e" incompatible with "-m" or "-l"')) | |
2069 |
|
2069 | |||
2070 | parent = q.lookup('qtip') |
|
2070 | parent = q.lookup('qtip') | |
2071 | patches = [] |
|
2071 | patches = [] | |
2072 | messages = [] |
|
2072 | messages = [] | |
2073 | for f in files: |
|
2073 | for f in files: | |
2074 | p = q.lookup(f) |
|
2074 | p = q.lookup(f) | |
2075 | if p in patches or p == parent: |
|
2075 | if p in patches or p == parent: | |
2076 | ui.warn(_('Skipping already folded patch %s') % p) |
|
2076 | ui.warn(_('Skipping already folded patch %s') % p) | |
2077 | if q.isapplied(p): |
|
2077 | if q.isapplied(p): | |
2078 | raise util.Abort(_('qfold cannot fold already applied patch %s') % p) |
|
2078 | raise util.Abort(_('qfold cannot fold already applied patch %s') % p) | |
2079 | patches.append(p) |
|
2079 | patches.append(p) | |
2080 |
|
2080 | |||
2081 | for p in patches: |
|
2081 | for p in patches: | |
2082 | if not message: |
|
2082 | if not message: | |
2083 | ph = patchheader(q.join(p), q.plainmode) |
|
2083 | ph = patchheader(q.join(p), q.plainmode) | |
2084 | if ph.message: |
|
2084 | if ph.message: | |
2085 | messages.append(ph.message) |
|
2085 | messages.append(ph.message) | |
2086 | pf = q.join(p) |
|
2086 | pf = q.join(p) | |
2087 | (patchsuccess, files, fuzz) = q.patch(repo, pf) |
|
2087 | (patchsuccess, files, fuzz) = q.patch(repo, pf) | |
2088 | if not patchsuccess: |
|
2088 | if not patchsuccess: | |
2089 | raise util.Abort(_('Error folding patch %s') % p) |
|
2089 | raise util.Abort(_('Error folding patch %s') % p) | |
2090 | patch.updatedir(ui, repo, files) |
|
2090 | patch.updatedir(ui, repo, files) | |
2091 |
|
2091 | |||
2092 | if not message: |
|
2092 | if not message: | |
2093 | ph = patchheader(q.join(parent), q.plainmode) |
|
2093 | ph = patchheader(q.join(parent), q.plainmode) | |
2094 | message, user = ph.message, ph.user |
|
2094 | message, user = ph.message, ph.user | |
2095 | for msg in messages: |
|
2095 | for msg in messages: | |
2096 | message.append('* * *') |
|
2096 | message.append('* * *') | |
2097 | message.extend(msg) |
|
2097 | message.extend(msg) | |
2098 | message = '\n'.join(message) |
|
2098 | message = '\n'.join(message) | |
2099 |
|
2099 | |||
2100 | if opts['edit']: |
|
2100 | if opts['edit']: | |
2101 | message = ui.edit(message, user or ui.username()) |
|
2101 | message = ui.edit(message, user or ui.username()) | |
2102 |
|
2102 | |||
2103 | diffopts = q.patchopts(q.diffopts(), *patches) |
|
2103 | diffopts = q.patchopts(q.diffopts(), *patches) | |
2104 | q.refresh(repo, msg=message, git=diffopts.git) |
|
2104 | q.refresh(repo, msg=message, git=diffopts.git) | |
2105 | q.delete(repo, patches, opts) |
|
2105 | q.delete(repo, patches, opts) | |
2106 | q.save_dirty() |
|
2106 | q.save_dirty() | |
2107 |
|
2107 | |||
2108 | def goto(ui, repo, patch, **opts): |
|
2108 | def goto(ui, repo, patch, **opts): | |
2109 | '''push or pop patches until named patch is at top of stack''' |
|
2109 | '''push or pop patches until named patch is at top of stack''' | |
2110 | q = repo.mq |
|
2110 | q = repo.mq | |
2111 | patch = q.lookup(patch) |
|
2111 | patch = q.lookup(patch) | |
2112 | if q.isapplied(patch): |
|
2112 | if q.isapplied(patch): | |
2113 | ret = q.pop(repo, patch, force=opts['force']) |
|
2113 | ret = q.pop(repo, patch, force=opts['force']) | |
2114 | else: |
|
2114 | else: | |
2115 | ret = q.push(repo, patch, force=opts['force']) |
|
2115 | ret = q.push(repo, patch, force=opts['force']) | |
2116 | q.save_dirty() |
|
2116 | q.save_dirty() | |
2117 | return ret |
|
2117 | return ret | |
2118 |
|
2118 | |||
2119 | def guard(ui, repo, *args, **opts): |
|
2119 | def guard(ui, repo, *args, **opts): | |
2120 | '''set or print guards for a patch |
|
2120 | '''set or print guards for a patch | |
2121 |
|
2121 | |||
2122 | Guards control whether a patch can be pushed. A patch with no |
|
2122 | Guards control whether a patch can be pushed. A patch with no | |
2123 | guards is always pushed. A patch with a positive guard ("+foo") is |
|
2123 | guards is always pushed. A patch with a positive guard ("+foo") is | |
2124 | pushed only if the qselect command has activated it. A patch with |
|
2124 | pushed only if the qselect command has activated it. A patch with | |
2125 | a negative guard ("-foo") is never pushed if the qselect command |
|
2125 | a negative guard ("-foo") is never pushed if the qselect command | |
2126 | has activated it. |
|
2126 | has activated it. | |
2127 |
|
2127 | |||
2128 | With no arguments, print the currently active guards. |
|
2128 | With no arguments, print the currently active guards. | |
2129 | With arguments, set guards for the named patch. |
|
2129 | With arguments, set guards for the named patch. | |
2130 | NOTE: Specifying negative guards now requires '--'. |
|
2130 | NOTE: Specifying negative guards now requires '--'. | |
2131 |
|
2131 | |||
2132 | To set guards on another patch:: |
|
2132 | To set guards on another patch:: | |
2133 |
|
2133 | |||
2134 | hg qguard other.patch -- +2.6.17 -stable |
|
2134 | hg qguard other.patch -- +2.6.17 -stable | |
2135 | ''' |
|
2135 | ''' | |
2136 | def status(idx): |
|
2136 | def status(idx): | |
2137 | guards = q.series_guards[idx] or ['unguarded'] |
|
2137 | guards = q.series_guards[idx] or ['unguarded'] | |
2138 | ui.write('%s: %s\n' % (q.series[idx], ' '.join(guards))) |
|
2138 | ui.write('%s: %s\n' % (q.series[idx], ' '.join(guards))) | |
2139 | q = repo.mq |
|
2139 | q = repo.mq | |
2140 | patch = None |
|
2140 | patch = None | |
2141 | args = list(args) |
|
2141 | args = list(args) | |
2142 | if opts['list']: |
|
2142 | if opts['list']: | |
2143 | if args or opts['none']: |
|
2143 | if args or opts['none']: | |
2144 | raise util.Abort(_('cannot mix -l/--list with options or arguments')) |
|
2144 | raise util.Abort(_('cannot mix -l/--list with options or arguments')) | |
2145 | for i in xrange(len(q.series)): |
|
2145 | for i in xrange(len(q.series)): | |
2146 | status(i) |
|
2146 | status(i) | |
2147 | return |
|
2147 | return | |
2148 | if not args or args[0][0:1] in '-+': |
|
2148 | if not args or args[0][0:1] in '-+': | |
2149 | if not q.applied: |
|
2149 | if not q.applied: | |
2150 | raise util.Abort(_('no patches applied')) |
|
2150 | raise util.Abort(_('no patches applied')) | |
2151 | patch = q.applied[-1].name |
|
2151 | patch = q.applied[-1].name | |
2152 | if patch is None and args[0][0:1] not in '-+': |
|
2152 | if patch is None and args[0][0:1] not in '-+': | |
2153 | patch = args.pop(0) |
|
2153 | patch = args.pop(0) | |
2154 | if patch is None: |
|
2154 | if patch is None: | |
2155 | raise util.Abort(_('no patch to work with')) |
|
2155 | raise util.Abort(_('no patch to work with')) | |
2156 | if args or opts['none']: |
|
2156 | if args or opts['none']: | |
2157 | idx = q.find_series(patch) |
|
2157 | idx = q.find_series(patch) | |
2158 | if idx is None: |
|
2158 | if idx is None: | |
2159 | raise util.Abort(_('no patch named %s') % patch) |
|
2159 | raise util.Abort(_('no patch named %s') % patch) | |
2160 | q.set_guards(idx, args) |
|
2160 | q.set_guards(idx, args) | |
2161 | q.save_dirty() |
|
2161 | q.save_dirty() | |
2162 | else: |
|
2162 | else: | |
2163 | status(q.series.index(q.lookup(patch))) |
|
2163 | status(q.series.index(q.lookup(patch))) | |
2164 |
|
2164 | |||
2165 | def header(ui, repo, patch=None): |
|
2165 | def header(ui, repo, patch=None): | |
2166 | """print the header of the topmost or specified patch""" |
|
2166 | """print the header of the topmost or specified patch""" | |
2167 | q = repo.mq |
|
2167 | q = repo.mq | |
2168 |
|
2168 | |||
2169 | if patch: |
|
2169 | if patch: | |
2170 | patch = q.lookup(patch) |
|
2170 | patch = q.lookup(patch) | |
2171 | else: |
|
2171 | else: | |
2172 | if not q.applied: |
|
2172 | if not q.applied: | |
2173 | ui.write(_('no patches applied\n')) |
|
2173 | ui.write(_('no patches applied\n')) | |
2174 | return 1 |
|
2174 | return 1 | |
2175 | patch = q.lookup('qtip') |
|
2175 | patch = q.lookup('qtip') | |
2176 | ph = patchheader(q.join(patch), q.plainmode) |
|
2176 | ph = patchheader(q.join(patch), q.plainmode) | |
2177 |
|
2177 | |||
2178 | ui.write('\n'.join(ph.message) + '\n') |
|
2178 | ui.write('\n'.join(ph.message) + '\n') | |
2179 |
|
2179 | |||
2180 | def lastsavename(path): |
|
2180 | def lastsavename(path): | |
2181 | (directory, base) = os.path.split(path) |
|
2181 | (directory, base) = os.path.split(path) | |
2182 | names = os.listdir(directory) |
|
2182 | names = os.listdir(directory) | |
2183 | namere = re.compile("%s.([0-9]+)" % base) |
|
2183 | namere = re.compile("%s.([0-9]+)" % base) | |
2184 | maxindex = None |
|
2184 | maxindex = None | |
2185 | maxname = None |
|
2185 | maxname = None | |
2186 | for f in names: |
|
2186 | for f in names: | |
2187 | m = namere.match(f) |
|
2187 | m = namere.match(f) | |
2188 | if m: |
|
2188 | if m: | |
2189 | index = int(m.group(1)) |
|
2189 | index = int(m.group(1)) | |
2190 | if maxindex is None or index > maxindex: |
|
2190 | if maxindex is None or index > maxindex: | |
2191 | maxindex = index |
|
2191 | maxindex = index | |
2192 | maxname = f |
|
2192 | maxname = f | |
2193 | if maxname: |
|
2193 | if maxname: | |
2194 | return (os.path.join(directory, maxname), maxindex) |
|
2194 | return (os.path.join(directory, maxname), maxindex) | |
2195 | return (None, None) |
|
2195 | return (None, None) | |
2196 |
|
2196 | |||
2197 | def savename(path): |
|
2197 | def savename(path): | |
2198 | (last, index) = lastsavename(path) |
|
2198 | (last, index) = lastsavename(path) | |
2199 | if last is None: |
|
2199 | if last is None: | |
2200 | index = 0 |
|
2200 | index = 0 | |
2201 | newpath = path + ".%d" % (index + 1) |
|
2201 | newpath = path + ".%d" % (index + 1) | |
2202 | return newpath |
|
2202 | return newpath | |
2203 |
|
2203 | |||
2204 | def push(ui, repo, patch=None, **opts): |
|
2204 | def push(ui, repo, patch=None, **opts): | |
2205 | """push the next patch onto the stack |
|
2205 | """push the next patch onto the stack | |
2206 |
|
2206 | |||
2207 | When -f/--force is applied, all local changes in patched files |
|
2207 | When -f/--force is applied, all local changes in patched files | |
2208 | will be lost. |
|
2208 | will be lost. | |
2209 | """ |
|
2209 | """ | |
2210 | q = repo.mq |
|
2210 | q = repo.mq | |
2211 | mergeq = None |
|
2211 | mergeq = None | |
2212 |
|
2212 | |||
2213 | if opts['merge']: |
|
2213 | if opts['merge']: | |
2214 | if opts['name']: |
|
2214 | if opts['name']: | |
2215 | newpath = repo.join(opts['name']) |
|
2215 | newpath = repo.join(opts['name']) | |
2216 | else: |
|
2216 | else: | |
2217 | newpath, i = lastsavename(q.path) |
|
2217 | newpath, i = lastsavename(q.path) | |
2218 | if not newpath: |
|
2218 | if not newpath: | |
2219 | ui.warn(_("no saved queues found, please use -n\n")) |
|
2219 | ui.warn(_("no saved queues found, please use -n\n")) | |
2220 | return 1 |
|
2220 | return 1 | |
2221 | mergeq = queue(ui, repo.join(""), newpath) |
|
2221 | mergeq = queue(ui, repo.join(""), newpath) | |
2222 | ui.warn(_("merging with queue at: %s\n") % mergeq.path) |
|
2222 | ui.warn(_("merging with queue at: %s\n") % mergeq.path) | |
2223 | ret = q.push(repo, patch, force=opts['force'], list=opts['list'], |
|
2223 | ret = q.push(repo, patch, force=opts['force'], list=opts['list'], | |
2224 | mergeq=mergeq, all=opts.get('all')) |
|
2224 | mergeq=mergeq, all=opts.get('all')) | |
2225 | return ret |
|
2225 | return ret | |
2226 |
|
2226 | |||
2227 | def pop(ui, repo, patch=None, **opts): |
|
2227 | def pop(ui, repo, patch=None, **opts): | |
2228 | """pop the current patch off the stack |
|
2228 | """pop the current patch off the stack | |
2229 |
|
2229 | |||
2230 | By default, pops off the top of the patch stack. If given a patch |
|
2230 | By default, pops off the top of the patch stack. If given a patch | |
2231 | name, keeps popping off patches until the named patch is at the |
|
2231 | name, keeps popping off patches until the named patch is at the | |
2232 | top of the stack. |
|
2232 | top of the stack. | |
2233 | """ |
|
2233 | """ | |
2234 | localupdate = True |
|
2234 | localupdate = True | |
2235 | if opts['name']: |
|
2235 | if opts['name']: | |
2236 | q = queue(ui, repo.join(""), repo.join(opts['name'])) |
|
2236 | q = queue(ui, repo.join(""), repo.join(opts['name'])) | |
2237 | ui.warn(_('using patch queue: %s\n') % q.path) |
|
2237 | ui.warn(_('using patch queue: %s\n') % q.path) | |
2238 | localupdate = False |
|
2238 | localupdate = False | |
2239 | else: |
|
2239 | else: | |
2240 | q = repo.mq |
|
2240 | q = repo.mq | |
2241 | ret = q.pop(repo, patch, force=opts['force'], update=localupdate, |
|
2241 | ret = q.pop(repo, patch, force=opts['force'], update=localupdate, | |
2242 | all=opts['all']) |
|
2242 | all=opts['all']) | |
2243 | q.save_dirty() |
|
2243 | q.save_dirty() | |
2244 | return ret |
|
2244 | return ret | |
2245 |
|
2245 | |||
2246 | def rename(ui, repo, patch, name=None, **opts): |
|
2246 | def rename(ui, repo, patch, name=None, **opts): | |
2247 | """rename a patch |
|
2247 | """rename a patch | |
2248 |
|
2248 | |||
2249 | With one argument, renames the current patch to PATCH1. |
|
2249 | With one argument, renames the current patch to PATCH1. | |
2250 | With two arguments, renames PATCH1 to PATCH2.""" |
|
2250 | With two arguments, renames PATCH1 to PATCH2.""" | |
2251 |
|
2251 | |||
2252 | q = repo.mq |
|
2252 | q = repo.mq | |
2253 |
|
2253 | |||
2254 | if not name: |
|
2254 | if not name: | |
2255 | name = patch |
|
2255 | name = patch | |
2256 | patch = None |
|
2256 | patch = None | |
2257 |
|
2257 | |||
2258 | if patch: |
|
2258 | if patch: | |
2259 | patch = q.lookup(patch) |
|
2259 | patch = q.lookup(patch) | |
2260 | else: |
|
2260 | else: | |
2261 | if not q.applied: |
|
2261 | if not q.applied: | |
2262 | ui.write(_('no patches applied\n')) |
|
2262 | ui.write(_('no patches applied\n')) | |
2263 | return |
|
2263 | return | |
2264 | patch = q.lookup('qtip') |
|
2264 | patch = q.lookup('qtip') | |
2265 | absdest = q.join(name) |
|
2265 | absdest = q.join(name) | |
2266 | if os.path.isdir(absdest): |
|
2266 | if os.path.isdir(absdest): | |
2267 | name = normname(os.path.join(name, os.path.basename(patch))) |
|
2267 | name = normname(os.path.join(name, os.path.basename(patch))) | |
2268 | absdest = q.join(name) |
|
2268 | absdest = q.join(name) | |
2269 | if os.path.exists(absdest): |
|
2269 | if os.path.exists(absdest): | |
2270 | raise util.Abort(_('%s already exists') % absdest) |
|
2270 | raise util.Abort(_('%s already exists') % absdest) | |
2271 |
|
2271 | |||
2272 | if name in q.series: |
|
2272 | if name in q.series: | |
2273 | raise util.Abort( |
|
2273 | raise util.Abort( | |
2274 | _('A patch named %s already exists in the series file') % name) |
|
2274 | _('A patch named %s already exists in the series file') % name) | |
2275 |
|
2275 | |||
2276 | ui.note(_('renaming %s to %s\n') % (patch, name)) |
|
2276 | ui.note(_('renaming %s to %s\n') % (patch, name)) | |
2277 | i = q.find_series(patch) |
|
2277 | i = q.find_series(patch) | |
2278 | guards = q.guard_re.findall(q.full_series[i]) |
|
2278 | guards = q.guard_re.findall(q.full_series[i]) | |
2279 | q.full_series[i] = name + ''.join([' #' + g for g in guards]) |
|
2279 | q.full_series[i] = name + ''.join([' #' + g for g in guards]) | |
2280 | q.parse_series() |
|
2280 | q.parse_series() | |
2281 | q.series_dirty = 1 |
|
2281 | q.series_dirty = 1 | |
2282 |
|
2282 | |||
2283 | info = q.isapplied(patch) |
|
2283 | info = q.isapplied(patch) | |
2284 | if info: |
|
2284 | if info: | |
2285 | q.applied[info[0]] = statusentry(info[1], name) |
|
2285 | q.applied[info[0]] = statusentry(info[1], name) | |
2286 | q.applied_dirty = 1 |
|
2286 | q.applied_dirty = 1 | |
2287 |
|
2287 | |||
2288 | util.rename(q.join(patch), absdest) |
|
2288 | util.rename(q.join(patch), absdest) | |
2289 | r = q.qrepo() |
|
2289 | r = q.qrepo() | |
2290 | if r: |
|
2290 | if r: | |
2291 | wlock = r.wlock() |
|
2291 | wlock = r.wlock() | |
2292 | try: |
|
2292 | try: | |
2293 | if r.dirstate[patch] == 'a': |
|
2293 | if r.dirstate[patch] == 'a': | |
2294 | r.dirstate.forget(patch) |
|
2294 | r.dirstate.forget(patch) | |
2295 | r.dirstate.add(name) |
|
2295 | r.dirstate.add(name) | |
2296 | else: |
|
2296 | else: | |
2297 | if r.dirstate[name] == 'r': |
|
2297 | if r.dirstate[name] == 'r': | |
2298 | r.undelete([name]) |
|
2298 | r.undelete([name]) | |
2299 | r.copy(patch, name) |
|
2299 | r.copy(patch, name) | |
2300 | r.remove([patch], False) |
|
2300 | r.remove([patch], False) | |
2301 | finally: |
|
2301 | finally: | |
2302 | wlock.release() |
|
2302 | wlock.release() | |
2303 |
|
2303 | |||
2304 | q.save_dirty() |
|
2304 | q.save_dirty() | |
2305 |
|
2305 | |||
2306 | def restore(ui, repo, rev, **opts): |
|
2306 | def restore(ui, repo, rev, **opts): | |
2307 | """restore the queue state saved by a revision (DEPRECATED) |
|
2307 | """restore the queue state saved by a revision (DEPRECATED) | |
2308 |
|
2308 | |||
2309 | This command is deprecated, use rebase --mq instead.""" |
|
2309 | This command is deprecated, use rebase --mq instead.""" | |
2310 | rev = repo.lookup(rev) |
|
2310 | rev = repo.lookup(rev) | |
2311 | q = repo.mq |
|
2311 | q = repo.mq | |
2312 | q.restore(repo, rev, delete=opts['delete'], |
|
2312 | q.restore(repo, rev, delete=opts['delete'], | |
2313 | qupdate=opts['update']) |
|
2313 | qupdate=opts['update']) | |
2314 | q.save_dirty() |
|
2314 | q.save_dirty() | |
2315 | return 0 |
|
2315 | return 0 | |
2316 |
|
2316 | |||
2317 | def save(ui, repo, **opts): |
|
2317 | def save(ui, repo, **opts): | |
2318 | """save current queue state (DEPRECATED) |
|
2318 | """save current queue state (DEPRECATED) | |
2319 |
|
2319 | |||
2320 | This command is deprecated, use rebase --mq instead.""" |
|
2320 | This command is deprecated, use rebase --mq instead.""" | |
2321 | q = repo.mq |
|
2321 | q = repo.mq | |
2322 | message = cmdutil.logmessage(opts) |
|
2322 | message = cmdutil.logmessage(opts) | |
2323 | ret = q.save(repo, msg=message) |
|
2323 | ret = q.save(repo, msg=message) | |
2324 | if ret: |
|
2324 | if ret: | |
2325 | return ret |
|
2325 | return ret | |
2326 | q.save_dirty() |
|
2326 | q.save_dirty() | |
2327 | if opts['copy']: |
|
2327 | if opts['copy']: | |
2328 | path = q.path |
|
2328 | path = q.path | |
2329 | if opts['name']: |
|
2329 | if opts['name']: | |
2330 | newpath = os.path.join(q.basepath, opts['name']) |
|
2330 | newpath = os.path.join(q.basepath, opts['name']) | |
2331 | if os.path.exists(newpath): |
|
2331 | if os.path.exists(newpath): | |
2332 | if not os.path.isdir(newpath): |
|
2332 | if not os.path.isdir(newpath): | |
2333 | raise util.Abort(_('destination %s exists and is not ' |
|
2333 | raise util.Abort(_('destination %s exists and is not ' | |
2334 | 'a directory') % newpath) |
|
2334 | 'a directory') % newpath) | |
2335 | if not opts['force']: |
|
2335 | if not opts['force']: | |
2336 | raise util.Abort(_('destination %s exists, ' |
|
2336 | raise util.Abort(_('destination %s exists, ' | |
2337 | 'use -f to force') % newpath) |
|
2337 | 'use -f to force') % newpath) | |
2338 | else: |
|
2338 | else: | |
2339 | newpath = savename(path) |
|
2339 | newpath = savename(path) | |
2340 | ui.warn(_("copy %s to %s\n") % (path, newpath)) |
|
2340 | ui.warn(_("copy %s to %s\n") % (path, newpath)) | |
2341 | util.copyfiles(path, newpath) |
|
2341 | util.copyfiles(path, newpath) | |
2342 | if opts['empty']: |
|
2342 | if opts['empty']: | |
2343 | try: |
|
2343 | try: | |
2344 | os.unlink(q.join(q.status_path)) |
|
2344 | os.unlink(q.join(q.status_path)) | |
2345 | except: |
|
2345 | except: | |
2346 | pass |
|
2346 | pass | |
2347 | return 0 |
|
2347 | return 0 | |
2348 |
|
2348 | |||
2349 | def strip(ui, repo, rev, **opts): |
|
2349 | def strip(ui, repo, rev, **opts): | |
2350 | """strip a revision and all its descendants from the repository |
|
2350 | """strip a revision and all its descendants from the repository | |
2351 |
|
2351 | |||
2352 | If one of the working directory's parent revisions is stripped, the |
|
2352 | If one of the working directory's parent revisions is stripped, the | |
2353 | working directory will be updated to the parent of the stripped |
|
2353 | working directory will be updated to the parent of the stripped | |
2354 | revision. |
|
2354 | revision. | |
2355 | """ |
|
2355 | """ | |
2356 | backup = 'all' |
|
2356 | backup = 'all' | |
2357 | if opts['backup']: |
|
2357 | if opts['backup']: | |
2358 | backup = 'strip' |
|
2358 | backup = 'strip' | |
2359 | elif opts['nobackup']: |
|
2359 | elif opts['nobackup']: | |
2360 | backup = 'none' |
|
2360 | backup = 'none' | |
2361 |
|
2361 | |||
2362 | rev = repo.lookup(rev) |
|
2362 | rev = repo.lookup(rev) | |
2363 | p = repo.dirstate.parents() |
|
2363 | p = repo.dirstate.parents() | |
2364 | cl = repo.changelog |
|
2364 | cl = repo.changelog | |
2365 | update = True |
|
2365 | update = True | |
2366 | if p[0] == nullid: |
|
2366 | if p[0] == nullid: | |
2367 | update = False |
|
2367 | update = False | |
2368 | elif p[1] == nullid and rev != cl.ancestor(p[0], rev): |
|
2368 | elif p[1] == nullid and rev != cl.ancestor(p[0], rev): | |
2369 | update = False |
|
2369 | update = False | |
2370 | elif rev not in (cl.ancestor(p[0], rev), cl.ancestor(p[1], rev)): |
|
2370 | elif rev not in (cl.ancestor(p[0], rev), cl.ancestor(p[1], rev)): | |
2371 | update = False |
|
2371 | update = False | |
2372 |
|
2372 | |||
2373 | repo.mq.strip(repo, rev, backup=backup, update=update, force=opts['force']) |
|
2373 | repo.mq.strip(repo, rev, backup=backup, update=update, force=opts['force']) | |
2374 | return 0 |
|
2374 | return 0 | |
2375 |
|
2375 | |||
2376 | def select(ui, repo, *args, **opts): |
|
2376 | def select(ui, repo, *args, **opts): | |
2377 | '''set or print guarded patches to push |
|
2377 | '''set or print guarded patches to push | |
2378 |
|
2378 | |||
2379 | Use the qguard command to set or print guards on patch, then use |
|
2379 | Use the qguard command to set or print guards on patch, then use | |
2380 | qselect to tell mq which guards to use. A patch will be pushed if |
|
2380 | qselect to tell mq which guards to use. A patch will be pushed if | |
2381 | it has no guards or any positive guards match the currently |
|
2381 | it has no guards or any positive guards match the currently | |
2382 | selected guard, but will not be pushed if any negative guards |
|
2382 | selected guard, but will not be pushed if any negative guards | |
2383 | match the current guard. For example:: |
|
2383 | match the current guard. For example:: | |
2384 |
|
2384 | |||
2385 | qguard foo.patch -stable (negative guard) |
|
2385 | qguard foo.patch -stable (negative guard) | |
2386 | qguard bar.patch +stable (positive guard) |
|
2386 | qguard bar.patch +stable (positive guard) | |
2387 | qselect stable |
|
2387 | qselect stable | |
2388 |
|
2388 | |||
2389 | This activates the "stable" guard. mq will skip foo.patch (because |
|
2389 | This activates the "stable" guard. mq will skip foo.patch (because | |
2390 | it has a negative match) but push bar.patch (because it has a |
|
2390 | it has a negative match) but push bar.patch (because it has a | |
2391 | positive match). |
|
2391 | positive match). | |
2392 |
|
2392 | |||
2393 | With no arguments, prints the currently active guards. |
|
2393 | With no arguments, prints the currently active guards. | |
2394 | With one argument, sets the active guard. |
|
2394 | With one argument, sets the active guard. | |
2395 |
|
2395 | |||
2396 | Use -n/--none to deactivate guards (no other arguments needed). |
|
2396 | Use -n/--none to deactivate guards (no other arguments needed). | |
2397 | When no guards are active, patches with positive guards are |
|
2397 | When no guards are active, patches with positive guards are | |
2398 | skipped and patches with negative guards are pushed. |
|
2398 | skipped and patches with negative guards are pushed. | |
2399 |
|
2399 | |||
2400 | qselect can change the guards on applied patches. It does not pop |
|
2400 | qselect can change the guards on applied patches. It does not pop | |
2401 | guarded patches by default. Use --pop to pop back to the last |
|
2401 | guarded patches by default. Use --pop to pop back to the last | |
2402 | applied patch that is not guarded. Use --reapply (which implies |
|
2402 | applied patch that is not guarded. Use --reapply (which implies | |
2403 | --pop) to push back to the current patch afterwards, but skip |
|
2403 | --pop) to push back to the current patch afterwards, but skip | |
2404 | guarded patches. |
|
2404 | guarded patches. | |
2405 |
|
2405 | |||
2406 | Use -s/--series to print a list of all guards in the series file |
|
2406 | Use -s/--series to print a list of all guards in the series file | |
2407 | (no other arguments needed). Use -v for more information.''' |
|
2407 | (no other arguments needed). Use -v for more information.''' | |
2408 |
|
2408 | |||
2409 | q = repo.mq |
|
2409 | q = repo.mq | |
2410 | guards = q.active() |
|
2410 | guards = q.active() | |
2411 | if args or opts['none']: |
|
2411 | if args or opts['none']: | |
2412 | old_unapplied = q.unapplied(repo) |
|
2412 | old_unapplied = q.unapplied(repo) | |
2413 | old_guarded = [i for i in xrange(len(q.applied)) if |
|
2413 | old_guarded = [i for i in xrange(len(q.applied)) if | |
2414 | not q.pushable(i)[0]] |
|
2414 | not q.pushable(i)[0]] | |
2415 | q.set_active(args) |
|
2415 | q.set_active(args) | |
2416 | q.save_dirty() |
|
2416 | q.save_dirty() | |
2417 | if not args: |
|
2417 | if not args: | |
2418 | ui.status(_('guards deactivated\n')) |
|
2418 | ui.status(_('guards deactivated\n')) | |
2419 | if not opts['pop'] and not opts['reapply']: |
|
2419 | if not opts['pop'] and not opts['reapply']: | |
2420 | unapplied = q.unapplied(repo) |
|
2420 | unapplied = q.unapplied(repo) | |
2421 | guarded = [i for i in xrange(len(q.applied)) |
|
2421 | guarded = [i for i in xrange(len(q.applied)) | |
2422 | if not q.pushable(i)[0]] |
|
2422 | if not q.pushable(i)[0]] | |
2423 | if len(unapplied) != len(old_unapplied): |
|
2423 | if len(unapplied) != len(old_unapplied): | |
2424 | ui.status(_('number of unguarded, unapplied patches has ' |
|
2424 | ui.status(_('number of unguarded, unapplied patches has ' | |
2425 | 'changed from %d to %d\n') % |
|
2425 | 'changed from %d to %d\n') % | |
2426 | (len(old_unapplied), len(unapplied))) |
|
2426 | (len(old_unapplied), len(unapplied))) | |
2427 | if len(guarded) != len(old_guarded): |
|
2427 | if len(guarded) != len(old_guarded): | |
2428 | ui.status(_('number of guarded, applied patches has changed ' |
|
2428 | ui.status(_('number of guarded, applied patches has changed ' | |
2429 | 'from %d to %d\n') % |
|
2429 | 'from %d to %d\n') % | |
2430 | (len(old_guarded), len(guarded))) |
|
2430 | (len(old_guarded), len(guarded))) | |
2431 | elif opts['series']: |
|
2431 | elif opts['series']: | |
2432 | guards = {} |
|
2432 | guards = {} | |
2433 | noguards = 0 |
|
2433 | noguards = 0 | |
2434 | for gs in q.series_guards: |
|
2434 | for gs in q.series_guards: | |
2435 | if not gs: |
|
2435 | if not gs: | |
2436 | noguards += 1 |
|
2436 | noguards += 1 | |
2437 | for g in gs: |
|
2437 | for g in gs: | |
2438 | guards.setdefault(g, 0) |
|
2438 | guards.setdefault(g, 0) | |
2439 | guards[g] += 1 |
|
2439 | guards[g] += 1 | |
2440 | if ui.verbose: |
|
2440 | if ui.verbose: | |
2441 | guards['NONE'] = noguards |
|
2441 | guards['NONE'] = noguards | |
2442 | guards = guards.items() |
|
2442 | guards = guards.items() | |
2443 | guards.sort(key=lambda x: x[0][1:]) |
|
2443 | guards.sort(key=lambda x: x[0][1:]) | |
2444 | if guards: |
|
2444 | if guards: | |
2445 | ui.note(_('guards in series file:\n')) |
|
2445 | ui.note(_('guards in series file:\n')) | |
2446 | for guard, count in guards: |
|
2446 | for guard, count in guards: | |
2447 | ui.note('%2d ' % count) |
|
2447 | ui.note('%2d ' % count) | |
2448 | ui.write(guard, '\n') |
|
2448 | ui.write(guard, '\n') | |
2449 | else: |
|
2449 | else: | |
2450 | ui.note(_('no guards in series file\n')) |
|
2450 | ui.note(_('no guards in series file\n')) | |
2451 | else: |
|
2451 | else: | |
2452 | if guards: |
|
2452 | if guards: | |
2453 | ui.note(_('active guards:\n')) |
|
2453 | ui.note(_('active guards:\n')) | |
2454 | for g in guards: |
|
2454 | for g in guards: | |
2455 | ui.write(g, '\n') |
|
2455 | ui.write(g, '\n') | |
2456 | else: |
|
2456 | else: | |
2457 | ui.write(_('no active guards\n')) |
|
2457 | ui.write(_('no active guards\n')) | |
2458 | reapply = opts['reapply'] and q.applied and q.appliedname(-1) |
|
2458 | reapply = opts['reapply'] and q.applied and q.appliedname(-1) | |
2459 | popped = False |
|
2459 | popped = False | |
2460 | if opts['pop'] or opts['reapply']: |
|
2460 | if opts['pop'] or opts['reapply']: | |
2461 | for i in xrange(len(q.applied)): |
|
2461 | for i in xrange(len(q.applied)): | |
2462 | pushable, reason = q.pushable(i) |
|
2462 | pushable, reason = q.pushable(i) | |
2463 | if not pushable: |
|
2463 | if not pushable: | |
2464 | ui.status(_('popping guarded patches\n')) |
|
2464 | ui.status(_('popping guarded patches\n')) | |
2465 | popped = True |
|
2465 | popped = True | |
2466 | if i == 0: |
|
2466 | if i == 0: | |
2467 | q.pop(repo, all=True) |
|
2467 | q.pop(repo, all=True) | |
2468 | else: |
|
2468 | else: | |
2469 | q.pop(repo, i - 1) |
|
2469 | q.pop(repo, i - 1) | |
2470 | break |
|
2470 | break | |
2471 | if popped: |
|
2471 | if popped: | |
2472 | try: |
|
2472 | try: | |
2473 | if reapply: |
|
2473 | if reapply: | |
2474 | ui.status(_('reapplying unguarded patches\n')) |
|
2474 | ui.status(_('reapplying unguarded patches\n')) | |
2475 | q.push(repo, reapply) |
|
2475 | q.push(repo, reapply) | |
2476 | finally: |
|
2476 | finally: | |
2477 | q.save_dirty() |
|
2477 | q.save_dirty() | |
2478 |
|
2478 | |||
2479 | def finish(ui, repo, *revrange, **opts): |
|
2479 | def finish(ui, repo, *revrange, **opts): | |
2480 | """move applied patches into repository history |
|
2480 | """move applied patches into repository history | |
2481 |
|
2481 | |||
2482 | Finishes the specified revisions (corresponding to applied |
|
2482 | Finishes the specified revisions (corresponding to applied | |
2483 | patches) by moving them out of mq control into regular repository |
|
2483 | patches) by moving them out of mq control into regular repository | |
2484 | history. |
|
2484 | history. | |
2485 |
|
2485 | |||
2486 | Accepts a revision range or the -a/--applied option. If --applied |
|
2486 | Accepts a revision range or the -a/--applied option. If --applied | |
2487 | is specified, all applied mq revisions are removed from mq |
|
2487 | is specified, all applied mq revisions are removed from mq | |
2488 | control. Otherwise, the given revisions must be at the base of the |
|
2488 | control. Otherwise, the given revisions must be at the base of the | |
2489 | stack of applied patches. |
|
2489 | stack of applied patches. | |
2490 |
|
2490 | |||
2491 | This can be especially useful if your changes have been applied to |
|
2491 | This can be especially useful if your changes have been applied to | |
2492 | an upstream repository, or if you are about to push your changes |
|
2492 | an upstream repository, or if you are about to push your changes | |
2493 | to upstream. |
|
2493 | to upstream. | |
2494 | """ |
|
2494 | """ | |
2495 | if not opts['applied'] and not revrange: |
|
2495 | if not opts['applied'] and not revrange: | |
2496 | raise util.Abort(_('no revisions specified')) |
|
2496 | raise util.Abort(_('no revisions specified')) | |
2497 | elif opts['applied']: |
|
2497 | elif opts['applied']: | |
2498 | revrange = ('qbase:qtip',) + revrange |
|
2498 | revrange = ('qbase:qtip',) + revrange | |
2499 |
|
2499 | |||
2500 | q = repo.mq |
|
2500 | q = repo.mq | |
2501 | if not q.applied: |
|
2501 | if not q.applied: | |
2502 | ui.status(_('no patches applied\n')) |
|
2502 | ui.status(_('no patches applied\n')) | |
2503 | return 0 |
|
2503 | return 0 | |
2504 |
|
2504 | |||
2505 | revs = cmdutil.revrange(repo, revrange) |
|
2505 | revs = cmdutil.revrange(repo, revrange) | |
2506 | q.finish(repo, revs) |
|
2506 | q.finish(repo, revs) | |
2507 | q.save_dirty() |
|
2507 | q.save_dirty() | |
2508 | return 0 |
|
2508 | return 0 | |
2509 |
|
2509 | |||
2510 | def reposetup(ui, repo): |
|
2510 | def reposetup(ui, repo): | |
2511 | class mqrepo(repo.__class__): |
|
2511 | class mqrepo(repo.__class__): | |
2512 | @util.propertycache |
|
2512 | @util.propertycache | |
2513 | def mq(self): |
|
2513 | def mq(self): | |
2514 | return queue(self.ui, self.join("")) |
|
2514 | return queue(self.ui, self.join("")) | |
2515 |
|
2515 | |||
2516 | def abort_if_wdir_patched(self, errmsg, force=False): |
|
2516 | def abort_if_wdir_patched(self, errmsg, force=False): | |
2517 | if self.mq.applied and not force: |
|
2517 | if self.mq.applied and not force: | |
2518 | parent = self.dirstate.parents()[0] |
|
2518 | parent = self.dirstate.parents()[0] | |
2519 | if parent in [s.node for s in self.mq.applied]: |
|
2519 | if parent in [s.node for s in self.mq.applied]: | |
2520 | raise util.Abort(errmsg) |
|
2520 | raise util.Abort(errmsg) | |
2521 |
|
2521 | |||
2522 | def commit(self, text="", user=None, date=None, match=None, |
|
2522 | def commit(self, text="", user=None, date=None, match=None, | |
2523 | force=False, editor=False, extra={}): |
|
2523 | force=False, editor=False, extra={}): | |
2524 | self.abort_if_wdir_patched( |
|
2524 | self.abort_if_wdir_patched( | |
2525 | _('cannot commit over an applied mq patch'), |
|
2525 | _('cannot commit over an applied mq patch'), | |
2526 | force) |
|
2526 | force) | |
2527 |
|
2527 | |||
2528 | return super(mqrepo, self).commit(text, user, date, match, force, |
|
2528 | return super(mqrepo, self).commit(text, user, date, match, force, | |
2529 | editor, extra) |
|
2529 | editor, extra) | |
2530 |
|
2530 | |||
2531 | def push(self, remote, force=False, revs=None): |
|
2531 | def push(self, remote, force=False, revs=None): | |
2532 | if self.mq.applied and not force and not revs: |
|
2532 | if self.mq.applied and not force and not revs: | |
2533 | raise util.Abort(_('source has mq patches applied')) |
|
2533 | raise util.Abort(_('source has mq patches applied')) | |
2534 | return super(mqrepo, self).push(remote, force, revs) |
|
2534 | return super(mqrepo, self).push(remote, force, revs) | |
2535 |
|
2535 | |||
2536 | def _findtags(self): |
|
2536 | def _findtags(self): | |
2537 | '''augment tags from base class with patch tags''' |
|
2537 | '''augment tags from base class with patch tags''' | |
2538 | result = super(mqrepo, self)._findtags() |
|
2538 | result = super(mqrepo, self)._findtags() | |
2539 |
|
2539 | |||
2540 | q = self.mq |
|
2540 | q = self.mq | |
2541 | if not q.applied: |
|
2541 | if not q.applied: | |
2542 | return result |
|
2542 | return result | |
2543 |
|
2543 | |||
2544 | mqtags = [(patch.node, patch.name) for patch in q.applied] |
|
2544 | mqtags = [(patch.node, patch.name) for patch in q.applied] | |
2545 |
|
2545 | |||
2546 | if mqtags[-1][0] not in self.changelog.nodemap: |
|
2546 | if mqtags[-1][0] not in self.changelog.nodemap: | |
2547 | self.ui.warn(_('mq status file refers to unknown node %s\n') |
|
2547 | self.ui.warn(_('mq status file refers to unknown node %s\n') | |
2548 | % short(mqtags[-1][0])) |
|
2548 | % short(mqtags[-1][0])) | |
2549 | return result |
|
2549 | return result | |
2550 |
|
2550 | |||
2551 | mqtags.append((mqtags[-1][0], 'qtip')) |
|
2551 | mqtags.append((mqtags[-1][0], 'qtip')) | |
2552 | mqtags.append((mqtags[0][0], 'qbase')) |
|
2552 | mqtags.append((mqtags[0][0], 'qbase')) | |
2553 | mqtags.append((self.changelog.parents(mqtags[0][0])[0], 'qparent')) |
|
2553 | mqtags.append((self.changelog.parents(mqtags[0][0])[0], 'qparent')) | |
2554 | tags = result[0] |
|
2554 | tags = result[0] | |
2555 | for patch in mqtags: |
|
2555 | for patch in mqtags: | |
2556 | if patch[1] in tags: |
|
2556 | if patch[1] in tags: | |
2557 | self.ui.warn(_('Tag %s overrides mq patch of the same name\n') |
|
2557 | self.ui.warn(_('Tag %s overrides mq patch of the same name\n') | |
2558 | % patch[1]) |
|
2558 | % patch[1]) | |
2559 | else: |
|
2559 | else: | |
2560 | tags[patch[1]] = patch[0] |
|
2560 | tags[patch[1]] = patch[0] | |
2561 |
|
2561 | |||
2562 | return result |
|
2562 | return result | |
2563 |
|
2563 | |||
2564 | def _branchtags(self, partial, lrev): |
|
2564 | def _branchtags(self, partial, lrev): | |
2565 | q = self.mq |
|
2565 | q = self.mq | |
2566 | if not q.applied: |
|
2566 | if not q.applied: | |
2567 | return super(mqrepo, self)._branchtags(partial, lrev) |
|
2567 | return super(mqrepo, self)._branchtags(partial, lrev) | |
2568 |
|
2568 | |||
2569 | cl = self.changelog |
|
2569 | cl = self.changelog | |
2570 | qbasenode = q.applied[0].node |
|
2570 | qbasenode = q.applied[0].node | |
2571 | if qbasenode not in cl.nodemap: |
|
2571 | if qbasenode not in cl.nodemap: | |
2572 | self.ui.warn(_('mq status file refers to unknown node %s\n') |
|
2572 | self.ui.warn(_('mq status file refers to unknown node %s\n') | |
2573 | % short(qbasenode)) |
|
2573 | % short(qbasenode)) | |
2574 | return super(mqrepo, self)._branchtags(partial, lrev) |
|
2574 | return super(mqrepo, self)._branchtags(partial, lrev) | |
2575 |
|
2575 | |||
2576 | qbase = cl.rev(qbasenode) |
|
2576 | qbase = cl.rev(qbasenode) | |
2577 | start = lrev + 1 |
|
2577 | start = lrev + 1 | |
2578 | if start < qbase: |
|
2578 | if start < qbase: | |
2579 | # update the cache (excluding the patches) and save it |
|
2579 | # update the cache (excluding the patches) and save it | |
2580 |
self |
|
2580 | ctxgen = (self[r] for r in xrange(lrev + 1, qbase)) | |
|
2581 | self._updatebranchcache(partial, ctxgen) | |||
2581 | self._writebranchcache(partial, cl.node(qbase - 1), qbase - 1) |
|
2582 | self._writebranchcache(partial, cl.node(qbase - 1), qbase - 1) | |
2582 | start = qbase |
|
2583 | start = qbase | |
2583 | # if start = qbase, the cache is as updated as it should be. |
|
2584 | # if start = qbase, the cache is as updated as it should be. | |
2584 | # if start > qbase, the cache includes (part of) the patches. |
|
2585 | # if start > qbase, the cache includes (part of) the patches. | |
2585 | # we might as well use it, but we won't save it. |
|
2586 | # we might as well use it, but we won't save it. | |
2586 |
|
2587 | |||
2587 | # update the cache up to the tip |
|
2588 | # update the cache up to the tip | |
2588 | self._updatebranchcache(partial, start, len(cl)) |
|
2589 | ctxgen = (self[r] for r in xrange(start, len(cl))) | |
|
2590 | self._updatebranchcache(partial, ctxgen) | |||
2589 |
|
2591 | |||
2590 | return partial |
|
2592 | return partial | |
2591 |
|
2593 | |||
2592 | if repo.local(): |
|
2594 | if repo.local(): | |
2593 | repo.__class__ = mqrepo |
|
2595 | repo.__class__ = mqrepo | |
2594 |
|
2596 | |||
2595 | def mqimport(orig, ui, repo, *args, **kwargs): |
|
2597 | def mqimport(orig, ui, repo, *args, **kwargs): | |
2596 | if (hasattr(repo, 'abort_if_wdir_patched') |
|
2598 | if (hasattr(repo, 'abort_if_wdir_patched') | |
2597 | and not kwargs.get('no_commit', False)): |
|
2599 | and not kwargs.get('no_commit', False)): | |
2598 | repo.abort_if_wdir_patched(_('cannot import over an applied patch'), |
|
2600 | repo.abort_if_wdir_patched(_('cannot import over an applied patch'), | |
2599 | kwargs.get('force')) |
|
2601 | kwargs.get('force')) | |
2600 | return orig(ui, repo, *args, **kwargs) |
|
2602 | return orig(ui, repo, *args, **kwargs) | |
2601 |
|
2603 | |||
2602 | def mqinit(orig, ui, *args, **kwargs): |
|
2604 | def mqinit(orig, ui, *args, **kwargs): | |
2603 | mq = kwargs.pop('mq', None) |
|
2605 | mq = kwargs.pop('mq', None) | |
2604 |
|
2606 | |||
2605 | if not mq: |
|
2607 | if not mq: | |
2606 | return orig(ui, *args, **kwargs) |
|
2608 | return orig(ui, *args, **kwargs) | |
2607 |
|
2609 | |||
2608 | if args: |
|
2610 | if args: | |
2609 | repopath = args[0] |
|
2611 | repopath = args[0] | |
2610 | if not hg.islocal(repopath): |
|
2612 | if not hg.islocal(repopath): | |
2611 | raise util.Abort(_('only a local queue repository ' |
|
2613 | raise util.Abort(_('only a local queue repository ' | |
2612 | 'may be initialized')) |
|
2614 | 'may be initialized')) | |
2613 | else: |
|
2615 | else: | |
2614 | repopath = cmdutil.findrepo(os.getcwd()) |
|
2616 | repopath = cmdutil.findrepo(os.getcwd()) | |
2615 | if not repopath: |
|
2617 | if not repopath: | |
2616 | raise util.Abort(_('There is no Mercurial repository here ' |
|
2618 | raise util.Abort(_('There is no Mercurial repository here ' | |
2617 | '(.hg not found)')) |
|
2619 | '(.hg not found)')) | |
2618 | repo = hg.repository(ui, repopath) |
|
2620 | repo = hg.repository(ui, repopath) | |
2619 | return qinit(ui, repo, True) |
|
2621 | return qinit(ui, repo, True) | |
2620 |
|
2622 | |||
2621 | def mqcommand(orig, ui, repo, *args, **kwargs): |
|
2623 | def mqcommand(orig, ui, repo, *args, **kwargs): | |
2622 | """Add --mq option to operate on patch repository instead of main""" |
|
2624 | """Add --mq option to operate on patch repository instead of main""" | |
2623 |
|
2625 | |||
2624 | # some commands do not like getting unknown options |
|
2626 | # some commands do not like getting unknown options | |
2625 | mq = kwargs.pop('mq', None) |
|
2627 | mq = kwargs.pop('mq', None) | |
2626 |
|
2628 | |||
2627 | if not mq: |
|
2629 | if not mq: | |
2628 | return orig(ui, repo, *args, **kwargs) |
|
2630 | return orig(ui, repo, *args, **kwargs) | |
2629 |
|
2631 | |||
2630 | q = repo.mq |
|
2632 | q = repo.mq | |
2631 | r = q.qrepo() |
|
2633 | r = q.qrepo() | |
2632 | if not r: |
|
2634 | if not r: | |
2633 | raise util.Abort('no queue repository') |
|
2635 | raise util.Abort('no queue repository') | |
2634 | return orig(r.ui, r, *args, **kwargs) |
|
2636 | return orig(r.ui, r, *args, **kwargs) | |
2635 |
|
2637 | |||
2636 | def uisetup(ui): |
|
2638 | def uisetup(ui): | |
2637 | mqopt = [('', 'mq', None, _("operate on patch repository"))] |
|
2639 | mqopt = [('', 'mq', None, _("operate on patch repository"))] | |
2638 |
|
2640 | |||
2639 | extensions.wrapcommand(commands.table, 'import', mqimport) |
|
2641 | extensions.wrapcommand(commands.table, 'import', mqimport) | |
2640 |
|
2642 | |||
2641 | entry = extensions.wrapcommand(commands.table, 'init', mqinit) |
|
2643 | entry = extensions.wrapcommand(commands.table, 'init', mqinit) | |
2642 | entry[1].extend(mqopt) |
|
2644 | entry[1].extend(mqopt) | |
2643 |
|
2645 | |||
2644 | for cmd in commands.table.keys(): |
|
2646 | for cmd in commands.table.keys(): | |
2645 | cmd = cmdutil.parsealiases(cmd)[0] |
|
2647 | cmd = cmdutil.parsealiases(cmd)[0] | |
2646 | if cmd in commands.norepo: |
|
2648 | if cmd in commands.norepo: | |
2647 | continue |
|
2649 | continue | |
2648 | entry = extensions.wrapcommand(commands.table, cmd, mqcommand) |
|
2650 | entry = extensions.wrapcommand(commands.table, cmd, mqcommand) | |
2649 | entry[1].extend(mqopt) |
|
2651 | entry[1].extend(mqopt) | |
2650 |
|
2652 | |||
2651 | seriesopts = [('s', 'summary', None, _('print first line of patch header'))] |
|
2653 | seriesopts = [('s', 'summary', None, _('print first line of patch header'))] | |
2652 |
|
2654 | |||
2653 | cmdtable = { |
|
2655 | cmdtable = { | |
2654 | "qapplied": |
|
2656 | "qapplied": | |
2655 | (applied, |
|
2657 | (applied, | |
2656 | [('1', 'last', None, _('show only the last patch'))] + seriesopts, |
|
2658 | [('1', 'last', None, _('show only the last patch'))] + seriesopts, | |
2657 | _('hg qapplied [-1] [-s] [PATCH]')), |
|
2659 | _('hg qapplied [-1] [-s] [PATCH]')), | |
2658 | "qclone": |
|
2660 | "qclone": | |
2659 | (clone, |
|
2661 | (clone, | |
2660 | [('', 'pull', None, _('use pull protocol to copy metadata')), |
|
2662 | [('', 'pull', None, _('use pull protocol to copy metadata')), | |
2661 | ('U', 'noupdate', None, _('do not update the new working directories')), |
|
2663 | ('U', 'noupdate', None, _('do not update the new working directories')), | |
2662 | ('', 'uncompressed', None, |
|
2664 | ('', 'uncompressed', None, | |
2663 | _('use uncompressed transfer (fast over LAN)')), |
|
2665 | _('use uncompressed transfer (fast over LAN)')), | |
2664 | ('p', 'patches', '', _('location of source patch repository')), |
|
2666 | ('p', 'patches', '', _('location of source patch repository')), | |
2665 | ] + commands.remoteopts, |
|
2667 | ] + commands.remoteopts, | |
2666 | _('hg qclone [OPTION]... SOURCE [DEST]')), |
|
2668 | _('hg qclone [OPTION]... SOURCE [DEST]')), | |
2667 | "qcommit|qci": |
|
2669 | "qcommit|qci": | |
2668 | (commit, |
|
2670 | (commit, | |
2669 | commands.table["^commit|ci"][1], |
|
2671 | commands.table["^commit|ci"][1], | |
2670 | _('hg qcommit [OPTION]... [FILE]...')), |
|
2672 | _('hg qcommit [OPTION]... [FILE]...')), | |
2671 | "^qdiff": |
|
2673 | "^qdiff": | |
2672 | (diff, |
|
2674 | (diff, | |
2673 | commands.diffopts + commands.diffopts2 + commands.walkopts, |
|
2675 | commands.diffopts + commands.diffopts2 + commands.walkopts, | |
2674 | _('hg qdiff [OPTION]... [FILE]...')), |
|
2676 | _('hg qdiff [OPTION]... [FILE]...')), | |
2675 | "qdelete|qremove|qrm": |
|
2677 | "qdelete|qremove|qrm": | |
2676 | (delete, |
|
2678 | (delete, | |
2677 | [('k', 'keep', None, _('keep patch file')), |
|
2679 | [('k', 'keep', None, _('keep patch file')), | |
2678 | ('r', 'rev', [], _('stop managing a revision (DEPRECATED)'))], |
|
2680 | ('r', 'rev', [], _('stop managing a revision (DEPRECATED)'))], | |
2679 | _('hg qdelete [-k] [-r REV]... [PATCH]...')), |
|
2681 | _('hg qdelete [-k] [-r REV]... [PATCH]...')), | |
2680 | 'qfold': |
|
2682 | 'qfold': | |
2681 | (fold, |
|
2683 | (fold, | |
2682 | [('e', 'edit', None, _('edit patch header')), |
|
2684 | [('e', 'edit', None, _('edit patch header')), | |
2683 | ('k', 'keep', None, _('keep folded patch files')), |
|
2685 | ('k', 'keep', None, _('keep folded patch files')), | |
2684 | ] + commands.commitopts, |
|
2686 | ] + commands.commitopts, | |
2685 | _('hg qfold [-e] [-k] [-m TEXT] [-l FILE] PATCH...')), |
|
2687 | _('hg qfold [-e] [-k] [-m TEXT] [-l FILE] PATCH...')), | |
2686 | 'qgoto': |
|
2688 | 'qgoto': | |
2687 | (goto, |
|
2689 | (goto, | |
2688 | [('f', 'force', None, _('overwrite any local changes'))], |
|
2690 | [('f', 'force', None, _('overwrite any local changes'))], | |
2689 | _('hg qgoto [OPTION]... PATCH')), |
|
2691 | _('hg qgoto [OPTION]... PATCH')), | |
2690 | 'qguard': |
|
2692 | 'qguard': | |
2691 | (guard, |
|
2693 | (guard, | |
2692 | [('l', 'list', None, _('list all patches and guards')), |
|
2694 | [('l', 'list', None, _('list all patches and guards')), | |
2693 | ('n', 'none', None, _('drop all guards'))], |
|
2695 | ('n', 'none', None, _('drop all guards'))], | |
2694 | _('hg qguard [-l] [-n] [PATCH] [-- [+GUARD]... [-GUARD]...]')), |
|
2696 | _('hg qguard [-l] [-n] [PATCH] [-- [+GUARD]... [-GUARD]...]')), | |
2695 | 'qheader': (header, [], _('hg qheader [PATCH]')), |
|
2697 | 'qheader': (header, [], _('hg qheader [PATCH]')), | |
2696 | "^qimport": |
|
2698 | "^qimport": | |
2697 | (qimport, |
|
2699 | (qimport, | |
2698 | [('e', 'existing', None, _('import file in patch directory')), |
|
2700 | [('e', 'existing', None, _('import file in patch directory')), | |
2699 | ('n', 'name', '', _('name of patch file')), |
|
2701 | ('n', 'name', '', _('name of patch file')), | |
2700 | ('f', 'force', None, _('overwrite existing files')), |
|
2702 | ('f', 'force', None, _('overwrite existing files')), | |
2701 | ('r', 'rev', [], _('place existing revisions under mq control')), |
|
2703 | ('r', 'rev', [], _('place existing revisions under mq control')), | |
2702 | ('g', 'git', None, _('use git extended diff format')), |
|
2704 | ('g', 'git', None, _('use git extended diff format')), | |
2703 | ('P', 'push', None, _('qpush after importing'))], |
|
2705 | ('P', 'push', None, _('qpush after importing'))], | |
2704 | _('hg qimport [-e] [-n NAME] [-f] [-g] [-P] [-r REV]... FILE...')), |
|
2706 | _('hg qimport [-e] [-n NAME] [-f] [-g] [-P] [-r REV]... FILE...')), | |
2705 | "^qinit": |
|
2707 | "^qinit": | |
2706 | (init, |
|
2708 | (init, | |
2707 | [('c', 'create-repo', None, _('create queue repository'))], |
|
2709 | [('c', 'create-repo', None, _('create queue repository'))], | |
2708 | _('hg qinit [-c]')), |
|
2710 | _('hg qinit [-c]')), | |
2709 | "qnew": |
|
2711 | "qnew": | |
2710 | (new, |
|
2712 | (new, | |
2711 | [('e', 'edit', None, _('edit commit message')), |
|
2713 | [('e', 'edit', None, _('edit commit message')), | |
2712 | ('f', 'force', None, _('import uncommitted changes (DEPRECATED)')), |
|
2714 | ('f', 'force', None, _('import uncommitted changes (DEPRECATED)')), | |
2713 | ('g', 'git', None, _('use git extended diff format')), |
|
2715 | ('g', 'git', None, _('use git extended diff format')), | |
2714 | ('U', 'currentuser', None, _('add "From: <current user>" to patch')), |
|
2716 | ('U', 'currentuser', None, _('add "From: <current user>" to patch')), | |
2715 | ('u', 'user', '', _('add "From: <given user>" to patch')), |
|
2717 | ('u', 'user', '', _('add "From: <given user>" to patch')), | |
2716 | ('D', 'currentdate', None, _('add "Date: <current date>" to patch')), |
|
2718 | ('D', 'currentdate', None, _('add "Date: <current date>" to patch')), | |
2717 | ('d', 'date', '', _('add "Date: <given date>" to patch')) |
|
2719 | ('d', 'date', '', _('add "Date: <given date>" to patch')) | |
2718 | ] + commands.walkopts + commands.commitopts, |
|
2720 | ] + commands.walkopts + commands.commitopts, | |
2719 | _('hg qnew [-e] [-m TEXT] [-l FILE] [-f] PATCH [FILE]...')), |
|
2721 | _('hg qnew [-e] [-m TEXT] [-l FILE] [-f] PATCH [FILE]...')), | |
2720 | "qnext": (next, [] + seriesopts, _('hg qnext [-s]')), |
|
2722 | "qnext": (next, [] + seriesopts, _('hg qnext [-s]')), | |
2721 | "qprev": (prev, [] + seriesopts, _('hg qprev [-s]')), |
|
2723 | "qprev": (prev, [] + seriesopts, _('hg qprev [-s]')), | |
2722 | "^qpop": |
|
2724 | "^qpop": | |
2723 | (pop, |
|
2725 | (pop, | |
2724 | [('a', 'all', None, _('pop all patches')), |
|
2726 | [('a', 'all', None, _('pop all patches')), | |
2725 | ('n', 'name', '', _('queue name to pop (DEPRECATED)')), |
|
2727 | ('n', 'name', '', _('queue name to pop (DEPRECATED)')), | |
2726 | ('f', 'force', None, _('forget any local changes to patched files'))], |
|
2728 | ('f', 'force', None, _('forget any local changes to patched files'))], | |
2727 | _('hg qpop [-a] [-n NAME] [-f] [PATCH | INDEX]')), |
|
2729 | _('hg qpop [-a] [-n NAME] [-f] [PATCH | INDEX]')), | |
2728 | "^qpush": |
|
2730 | "^qpush": | |
2729 | (push, |
|
2731 | (push, | |
2730 | [('f', 'force', None, _('apply if the patch has rejects')), |
|
2732 | [('f', 'force', None, _('apply if the patch has rejects')), | |
2731 | ('l', 'list', None, _('list patch name in commit text')), |
|
2733 | ('l', 'list', None, _('list patch name in commit text')), | |
2732 | ('a', 'all', None, _('apply all patches')), |
|
2734 | ('a', 'all', None, _('apply all patches')), | |
2733 | ('m', 'merge', None, _('merge from another queue (DEPRECATED)')), |
|
2735 | ('m', 'merge', None, _('merge from another queue (DEPRECATED)')), | |
2734 | ('n', 'name', '', _('merge queue name (DEPRECATED)'))], |
|
2736 | ('n', 'name', '', _('merge queue name (DEPRECATED)'))], | |
2735 | _('hg qpush [-f] [-l] [-a] [-m] [-n NAME] [PATCH | INDEX]')), |
|
2737 | _('hg qpush [-f] [-l] [-a] [-m] [-n NAME] [PATCH | INDEX]')), | |
2736 | "^qrefresh": |
|
2738 | "^qrefresh": | |
2737 | (refresh, |
|
2739 | (refresh, | |
2738 | [('e', 'edit', None, _('edit commit message')), |
|
2740 | [('e', 'edit', None, _('edit commit message')), | |
2739 | ('g', 'git', None, _('use git extended diff format')), |
|
2741 | ('g', 'git', None, _('use git extended diff format')), | |
2740 | ('s', 'short', None, |
|
2742 | ('s', 'short', None, | |
2741 | _('refresh only files already in the patch and specified files')), |
|
2743 | _('refresh only files already in the patch and specified files')), | |
2742 | ('U', 'currentuser', None, |
|
2744 | ('U', 'currentuser', None, | |
2743 | _('add/update author field in patch with current user')), |
|
2745 | _('add/update author field in patch with current user')), | |
2744 | ('u', 'user', '', |
|
2746 | ('u', 'user', '', | |
2745 | _('add/update author field in patch with given user')), |
|
2747 | _('add/update author field in patch with given user')), | |
2746 | ('D', 'currentdate', None, |
|
2748 | ('D', 'currentdate', None, | |
2747 | _('add/update date field in patch with current date')), |
|
2749 | _('add/update date field in patch with current date')), | |
2748 | ('d', 'date', '', |
|
2750 | ('d', 'date', '', | |
2749 | _('add/update date field in patch with given date')) |
|
2751 | _('add/update date field in patch with given date')) | |
2750 | ] + commands.walkopts + commands.commitopts, |
|
2752 | ] + commands.walkopts + commands.commitopts, | |
2751 | _('hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]...')), |
|
2753 | _('hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]...')), | |
2752 | 'qrename|qmv': |
|
2754 | 'qrename|qmv': | |
2753 | (rename, [], _('hg qrename PATCH1 [PATCH2]')), |
|
2755 | (rename, [], _('hg qrename PATCH1 [PATCH2]')), | |
2754 | "qrestore": |
|
2756 | "qrestore": | |
2755 | (restore, |
|
2757 | (restore, | |
2756 | [('d', 'delete', None, _('delete save entry')), |
|
2758 | [('d', 'delete', None, _('delete save entry')), | |
2757 | ('u', 'update', None, _('update queue working directory'))], |
|
2759 | ('u', 'update', None, _('update queue working directory'))], | |
2758 | _('hg qrestore [-d] [-u] REV')), |
|
2760 | _('hg qrestore [-d] [-u] REV')), | |
2759 | "qsave": |
|
2761 | "qsave": | |
2760 | (save, |
|
2762 | (save, | |
2761 | [('c', 'copy', None, _('copy patch directory')), |
|
2763 | [('c', 'copy', None, _('copy patch directory')), | |
2762 | ('n', 'name', '', _('copy directory name')), |
|
2764 | ('n', 'name', '', _('copy directory name')), | |
2763 | ('e', 'empty', None, _('clear queue status file')), |
|
2765 | ('e', 'empty', None, _('clear queue status file')), | |
2764 | ('f', 'force', None, _('force copy'))] + commands.commitopts, |
|
2766 | ('f', 'force', None, _('force copy'))] + commands.commitopts, | |
2765 | _('hg qsave [-m TEXT] [-l FILE] [-c] [-n NAME] [-e] [-f]')), |
|
2767 | _('hg qsave [-m TEXT] [-l FILE] [-c] [-n NAME] [-e] [-f]')), | |
2766 | "qselect": |
|
2768 | "qselect": | |
2767 | (select, |
|
2769 | (select, | |
2768 | [('n', 'none', None, _('disable all guards')), |
|
2770 | [('n', 'none', None, _('disable all guards')), | |
2769 | ('s', 'series', None, _('list all guards in series file')), |
|
2771 | ('s', 'series', None, _('list all guards in series file')), | |
2770 | ('', 'pop', None, _('pop to before first guarded applied patch')), |
|
2772 | ('', 'pop', None, _('pop to before first guarded applied patch')), | |
2771 | ('', 'reapply', None, _('pop, then reapply patches'))], |
|
2773 | ('', 'reapply', None, _('pop, then reapply patches'))], | |
2772 | _('hg qselect [OPTION]... [GUARD]...')), |
|
2774 | _('hg qselect [OPTION]... [GUARD]...')), | |
2773 | "qseries": |
|
2775 | "qseries": | |
2774 | (series, |
|
2776 | (series, | |
2775 | [('m', 'missing', None, _('print patches not in series')), |
|
2777 | [('m', 'missing', None, _('print patches not in series')), | |
2776 | ] + seriesopts, |
|
2778 | ] + seriesopts, | |
2777 | _('hg qseries [-ms]')), |
|
2779 | _('hg qseries [-ms]')), | |
2778 | "^strip": |
|
2780 | "^strip": | |
2779 | (strip, |
|
2781 | (strip, | |
2780 | [('f', 'force', None, _('force removal with local changes')), |
|
2782 | [('f', 'force', None, _('force removal with local changes')), | |
2781 | ('b', 'backup', None, _('bundle unrelated changesets')), |
|
2783 | ('b', 'backup', None, _('bundle unrelated changesets')), | |
2782 | ('n', 'nobackup', None, _('no backups'))], |
|
2784 | ('n', 'nobackup', None, _('no backups'))], | |
2783 | _('hg strip [-f] [-b] [-n] REV')), |
|
2785 | _('hg strip [-f] [-b] [-n] REV')), | |
2784 | "qtop": (top, [] + seriesopts, _('hg qtop [-s]')), |
|
2786 | "qtop": (top, [] + seriesopts, _('hg qtop [-s]')), | |
2785 | "qunapplied": |
|
2787 | "qunapplied": | |
2786 | (unapplied, |
|
2788 | (unapplied, | |
2787 | [('1', 'first', None, _('show only the first patch'))] + seriesopts, |
|
2789 | [('1', 'first', None, _('show only the first patch'))] + seriesopts, | |
2788 | _('hg qunapplied [-1] [-s] [PATCH]')), |
|
2790 | _('hg qunapplied [-1] [-s] [PATCH]')), | |
2789 | "qfinish": |
|
2791 | "qfinish": | |
2790 | (finish, |
|
2792 | (finish, | |
2791 | [('a', 'applied', None, _('finish all applied changesets'))], |
|
2793 | [('a', 'applied', None, _('finish all applied changesets'))], | |
2792 | _('hg qfinish [-a] [REV]...')), |
|
2794 | _('hg qfinish [-a] [REV]...')), | |
2793 | } |
|
2795 | } |
@@ -1,2224 +1,2215 | |||||
1 | # localrepo.py - read/write repository class for mercurial |
|
1 | # localrepo.py - read/write repository class for mercurial | |
2 | # |
|
2 | # | |
3 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> |
|
3 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | |
4 | # |
|
4 | # | |
5 | # This software may be used and distributed according to the terms of the |
|
5 | # This software may be used and distributed according to the terms of the | |
6 | # GNU General Public License version 2 or any later version. |
|
6 | # GNU General Public License version 2 or any later version. | |
7 |
|
7 | |||
8 | from node import bin, hex, nullid, nullrev, short |
|
8 | from node import bin, hex, nullid, nullrev, short | |
9 | from i18n import _ |
|
9 | from i18n import _ | |
10 | import repo, changegroup, subrepo |
|
10 | import repo, changegroup, subrepo | |
11 | import changelog, dirstate, filelog, manifest, context |
|
11 | import changelog, dirstate, filelog, manifest, context | |
12 | import lock, transaction, store, encoding |
|
12 | import lock, transaction, store, encoding | |
13 | import util, extensions, hook, error |
|
13 | import util, extensions, hook, error | |
14 | import match as matchmod |
|
14 | import match as matchmod | |
15 | import merge as mergemod |
|
15 | import merge as mergemod | |
16 | import tags as tagsmod |
|
16 | import tags as tagsmod | |
17 | from lock import release |
|
17 | from lock import release | |
18 | import weakref, stat, errno, os, time, inspect |
|
18 | import weakref, stat, errno, os, time, inspect | |
19 | propertycache = util.propertycache |
|
19 | propertycache = util.propertycache | |
20 |
|
20 | |||
21 | class localrepository(repo.repository): |
|
21 | class localrepository(repo.repository): | |
22 | capabilities = set(('lookup', 'changegroupsubset', 'branchmap')) |
|
22 | capabilities = set(('lookup', 'changegroupsubset', 'branchmap')) | |
23 | supported = set('revlogv1 store fncache shared'.split()) |
|
23 | supported = set('revlogv1 store fncache shared'.split()) | |
24 |
|
24 | |||
25 | def __init__(self, baseui, path=None, create=0): |
|
25 | def __init__(self, baseui, path=None, create=0): | |
26 | repo.repository.__init__(self) |
|
26 | repo.repository.__init__(self) | |
27 | self.root = os.path.realpath(path) |
|
27 | self.root = os.path.realpath(path) | |
28 | self.path = os.path.join(self.root, ".hg") |
|
28 | self.path = os.path.join(self.root, ".hg") | |
29 | self.origroot = path |
|
29 | self.origroot = path | |
30 | self.opener = util.opener(self.path) |
|
30 | self.opener = util.opener(self.path) | |
31 | self.wopener = util.opener(self.root) |
|
31 | self.wopener = util.opener(self.root) | |
32 | self.baseui = baseui |
|
32 | self.baseui = baseui | |
33 | self.ui = baseui.copy() |
|
33 | self.ui = baseui.copy() | |
34 |
|
34 | |||
35 | try: |
|
35 | try: | |
36 | self.ui.readconfig(self.join("hgrc"), self.root) |
|
36 | self.ui.readconfig(self.join("hgrc"), self.root) | |
37 | extensions.loadall(self.ui) |
|
37 | extensions.loadall(self.ui) | |
38 | except IOError: |
|
38 | except IOError: | |
39 | pass |
|
39 | pass | |
40 |
|
40 | |||
41 | if not os.path.isdir(self.path): |
|
41 | if not os.path.isdir(self.path): | |
42 | if create: |
|
42 | if create: | |
43 | if not os.path.exists(path): |
|
43 | if not os.path.exists(path): | |
44 | os.mkdir(path) |
|
44 | os.mkdir(path) | |
45 | os.mkdir(self.path) |
|
45 | os.mkdir(self.path) | |
46 | requirements = ["revlogv1"] |
|
46 | requirements = ["revlogv1"] | |
47 | if self.ui.configbool('format', 'usestore', True): |
|
47 | if self.ui.configbool('format', 'usestore', True): | |
48 | os.mkdir(os.path.join(self.path, "store")) |
|
48 | os.mkdir(os.path.join(self.path, "store")) | |
49 | requirements.append("store") |
|
49 | requirements.append("store") | |
50 | if self.ui.configbool('format', 'usefncache', True): |
|
50 | if self.ui.configbool('format', 'usefncache', True): | |
51 | requirements.append("fncache") |
|
51 | requirements.append("fncache") | |
52 | # create an invalid changelog |
|
52 | # create an invalid changelog | |
53 | self.opener("00changelog.i", "a").write( |
|
53 | self.opener("00changelog.i", "a").write( | |
54 | '\0\0\0\2' # represents revlogv2 |
|
54 | '\0\0\0\2' # represents revlogv2 | |
55 | ' dummy changelog to prevent using the old repo layout' |
|
55 | ' dummy changelog to prevent using the old repo layout' | |
56 | ) |
|
56 | ) | |
57 | reqfile = self.opener("requires", "w") |
|
57 | reqfile = self.opener("requires", "w") | |
58 | for r in requirements: |
|
58 | for r in requirements: | |
59 | reqfile.write("%s\n" % r) |
|
59 | reqfile.write("%s\n" % r) | |
60 | reqfile.close() |
|
60 | reqfile.close() | |
61 | else: |
|
61 | else: | |
62 | raise error.RepoError(_("repository %s not found") % path) |
|
62 | raise error.RepoError(_("repository %s not found") % path) | |
63 | elif create: |
|
63 | elif create: | |
64 | raise error.RepoError(_("repository %s already exists") % path) |
|
64 | raise error.RepoError(_("repository %s already exists") % path) | |
65 | else: |
|
65 | else: | |
66 | # find requirements |
|
66 | # find requirements | |
67 | requirements = set() |
|
67 | requirements = set() | |
68 | try: |
|
68 | try: | |
69 | requirements = set(self.opener("requires").read().splitlines()) |
|
69 | requirements = set(self.opener("requires").read().splitlines()) | |
70 | except IOError, inst: |
|
70 | except IOError, inst: | |
71 | if inst.errno != errno.ENOENT: |
|
71 | if inst.errno != errno.ENOENT: | |
72 | raise |
|
72 | raise | |
73 | for r in requirements - self.supported: |
|
73 | for r in requirements - self.supported: | |
74 | raise error.RepoError(_("requirement '%s' not supported") % r) |
|
74 | raise error.RepoError(_("requirement '%s' not supported") % r) | |
75 |
|
75 | |||
76 | self.sharedpath = self.path |
|
76 | self.sharedpath = self.path | |
77 | try: |
|
77 | try: | |
78 | s = os.path.realpath(self.opener("sharedpath").read()) |
|
78 | s = os.path.realpath(self.opener("sharedpath").read()) | |
79 | if not os.path.exists(s): |
|
79 | if not os.path.exists(s): | |
80 | raise error.RepoError( |
|
80 | raise error.RepoError( | |
81 | _('.hg/sharedpath points to nonexistent directory %s') % s) |
|
81 | _('.hg/sharedpath points to nonexistent directory %s') % s) | |
82 | self.sharedpath = s |
|
82 | self.sharedpath = s | |
83 | except IOError, inst: |
|
83 | except IOError, inst: | |
84 | if inst.errno != errno.ENOENT: |
|
84 | if inst.errno != errno.ENOENT: | |
85 | raise |
|
85 | raise | |
86 |
|
86 | |||
87 | self.store = store.store(requirements, self.sharedpath, util.opener) |
|
87 | self.store = store.store(requirements, self.sharedpath, util.opener) | |
88 | self.spath = self.store.path |
|
88 | self.spath = self.store.path | |
89 | self.sopener = self.store.opener |
|
89 | self.sopener = self.store.opener | |
90 | self.sjoin = self.store.join |
|
90 | self.sjoin = self.store.join | |
91 | self.opener.createmode = self.store.createmode |
|
91 | self.opener.createmode = self.store.createmode | |
92 | self.sopener.options = {} |
|
92 | self.sopener.options = {} | |
93 |
|
93 | |||
94 | # These two define the set of tags for this repository. _tags |
|
94 | # These two define the set of tags for this repository. _tags | |
95 | # maps tag name to node; _tagtypes maps tag name to 'global' or |
|
95 | # maps tag name to node; _tagtypes maps tag name to 'global' or | |
96 | # 'local'. (Global tags are defined by .hgtags across all |
|
96 | # 'local'. (Global tags are defined by .hgtags across all | |
97 | # heads, and local tags are defined in .hg/localtags.) They |
|
97 | # heads, and local tags are defined in .hg/localtags.) They | |
98 | # constitute the in-memory cache of tags. |
|
98 | # constitute the in-memory cache of tags. | |
99 | self._tags = None |
|
99 | self._tags = None | |
100 | self._tagtypes = None |
|
100 | self._tagtypes = None | |
101 |
|
101 | |||
102 | self._branchcache = None # in UTF-8 |
|
102 | self._branchcache = None # in UTF-8 | |
103 | self._branchcachetip = None |
|
103 | self._branchcachetip = None | |
104 | self.nodetagscache = None |
|
104 | self.nodetagscache = None | |
105 | self.filterpats = {} |
|
105 | self.filterpats = {} | |
106 | self._datafilters = {} |
|
106 | self._datafilters = {} | |
107 | self._transref = self._lockref = self._wlockref = None |
|
107 | self._transref = self._lockref = self._wlockref = None | |
108 |
|
108 | |||
109 | @propertycache |
|
109 | @propertycache | |
110 | def changelog(self): |
|
110 | def changelog(self): | |
111 | c = changelog.changelog(self.sopener) |
|
111 | c = changelog.changelog(self.sopener) | |
112 | if 'HG_PENDING' in os.environ: |
|
112 | if 'HG_PENDING' in os.environ: | |
113 | p = os.environ['HG_PENDING'] |
|
113 | p = os.environ['HG_PENDING'] | |
114 | if p.startswith(self.root): |
|
114 | if p.startswith(self.root): | |
115 | c.readpending('00changelog.i.a') |
|
115 | c.readpending('00changelog.i.a') | |
116 | self.sopener.options['defversion'] = c.version |
|
116 | self.sopener.options['defversion'] = c.version | |
117 | return c |
|
117 | return c | |
118 |
|
118 | |||
119 | @propertycache |
|
119 | @propertycache | |
120 | def manifest(self): |
|
120 | def manifest(self): | |
121 | return manifest.manifest(self.sopener) |
|
121 | return manifest.manifest(self.sopener) | |
122 |
|
122 | |||
123 | @propertycache |
|
123 | @propertycache | |
124 | def dirstate(self): |
|
124 | def dirstate(self): | |
125 | return dirstate.dirstate(self.opener, self.ui, self.root) |
|
125 | return dirstate.dirstate(self.opener, self.ui, self.root) | |
126 |
|
126 | |||
127 | def __getitem__(self, changeid): |
|
127 | def __getitem__(self, changeid): | |
128 | if changeid is None: |
|
128 | if changeid is None: | |
129 | return context.workingctx(self) |
|
129 | return context.workingctx(self) | |
130 | return context.changectx(self, changeid) |
|
130 | return context.changectx(self, changeid) | |
131 |
|
131 | |||
132 | def __contains__(self, changeid): |
|
132 | def __contains__(self, changeid): | |
133 | try: |
|
133 | try: | |
134 | return bool(self.lookup(changeid)) |
|
134 | return bool(self.lookup(changeid)) | |
135 | except error.RepoLookupError: |
|
135 | except error.RepoLookupError: | |
136 | return False |
|
136 | return False | |
137 |
|
137 | |||
138 | def __nonzero__(self): |
|
138 | def __nonzero__(self): | |
139 | return True |
|
139 | return True | |
140 |
|
140 | |||
141 | def __len__(self): |
|
141 | def __len__(self): | |
142 | return len(self.changelog) |
|
142 | return len(self.changelog) | |
143 |
|
143 | |||
144 | def __iter__(self): |
|
144 | def __iter__(self): | |
145 | for i in xrange(len(self)): |
|
145 | for i in xrange(len(self)): | |
146 | yield i |
|
146 | yield i | |
147 |
|
147 | |||
148 | def url(self): |
|
148 | def url(self): | |
149 | return 'file:' + self.root |
|
149 | return 'file:' + self.root | |
150 |
|
150 | |||
151 | def hook(self, name, throw=False, **args): |
|
151 | def hook(self, name, throw=False, **args): | |
152 | return hook.hook(self.ui, self, name, throw, **args) |
|
152 | return hook.hook(self.ui, self, name, throw, **args) | |
153 |
|
153 | |||
154 | tag_disallowed = ':\r\n' |
|
154 | tag_disallowed = ':\r\n' | |
155 |
|
155 | |||
156 | def _tag(self, names, node, message, local, user, date, extra={}): |
|
156 | def _tag(self, names, node, message, local, user, date, extra={}): | |
157 | if isinstance(names, str): |
|
157 | if isinstance(names, str): | |
158 | allchars = names |
|
158 | allchars = names | |
159 | names = (names,) |
|
159 | names = (names,) | |
160 | else: |
|
160 | else: | |
161 | allchars = ''.join(names) |
|
161 | allchars = ''.join(names) | |
162 | for c in self.tag_disallowed: |
|
162 | for c in self.tag_disallowed: | |
163 | if c in allchars: |
|
163 | if c in allchars: | |
164 | raise util.Abort(_('%r cannot be used in a tag name') % c) |
|
164 | raise util.Abort(_('%r cannot be used in a tag name') % c) | |
165 |
|
165 | |||
166 | for name in names: |
|
166 | for name in names: | |
167 | self.hook('pretag', throw=True, node=hex(node), tag=name, |
|
167 | self.hook('pretag', throw=True, node=hex(node), tag=name, | |
168 | local=local) |
|
168 | local=local) | |
169 |
|
169 | |||
170 | def writetags(fp, names, munge, prevtags): |
|
170 | def writetags(fp, names, munge, prevtags): | |
171 | fp.seek(0, 2) |
|
171 | fp.seek(0, 2) | |
172 | if prevtags and prevtags[-1] != '\n': |
|
172 | if prevtags and prevtags[-1] != '\n': | |
173 | fp.write('\n') |
|
173 | fp.write('\n') | |
174 | for name in names: |
|
174 | for name in names: | |
175 | m = munge and munge(name) or name |
|
175 | m = munge and munge(name) or name | |
176 | if self._tagtypes and name in self._tagtypes: |
|
176 | if self._tagtypes and name in self._tagtypes: | |
177 | old = self._tags.get(name, nullid) |
|
177 | old = self._tags.get(name, nullid) | |
178 | fp.write('%s %s\n' % (hex(old), m)) |
|
178 | fp.write('%s %s\n' % (hex(old), m)) | |
179 | fp.write('%s %s\n' % (hex(node), m)) |
|
179 | fp.write('%s %s\n' % (hex(node), m)) | |
180 | fp.close() |
|
180 | fp.close() | |
181 |
|
181 | |||
182 | prevtags = '' |
|
182 | prevtags = '' | |
183 | if local: |
|
183 | if local: | |
184 | try: |
|
184 | try: | |
185 | fp = self.opener('localtags', 'r+') |
|
185 | fp = self.opener('localtags', 'r+') | |
186 | except IOError: |
|
186 | except IOError: | |
187 | fp = self.opener('localtags', 'a') |
|
187 | fp = self.opener('localtags', 'a') | |
188 | else: |
|
188 | else: | |
189 | prevtags = fp.read() |
|
189 | prevtags = fp.read() | |
190 |
|
190 | |||
191 | # local tags are stored in the current charset |
|
191 | # local tags are stored in the current charset | |
192 | writetags(fp, names, None, prevtags) |
|
192 | writetags(fp, names, None, prevtags) | |
193 | for name in names: |
|
193 | for name in names: | |
194 | self.hook('tag', node=hex(node), tag=name, local=local) |
|
194 | self.hook('tag', node=hex(node), tag=name, local=local) | |
195 | return |
|
195 | return | |
196 |
|
196 | |||
197 | try: |
|
197 | try: | |
198 | fp = self.wfile('.hgtags', 'rb+') |
|
198 | fp = self.wfile('.hgtags', 'rb+') | |
199 | except IOError: |
|
199 | except IOError: | |
200 | fp = self.wfile('.hgtags', 'ab') |
|
200 | fp = self.wfile('.hgtags', 'ab') | |
201 | else: |
|
201 | else: | |
202 | prevtags = fp.read() |
|
202 | prevtags = fp.read() | |
203 |
|
203 | |||
204 | # committed tags are stored in UTF-8 |
|
204 | # committed tags are stored in UTF-8 | |
205 | writetags(fp, names, encoding.fromlocal, prevtags) |
|
205 | writetags(fp, names, encoding.fromlocal, prevtags) | |
206 |
|
206 | |||
207 | if '.hgtags' not in self.dirstate: |
|
207 | if '.hgtags' not in self.dirstate: | |
208 | self.add(['.hgtags']) |
|
208 | self.add(['.hgtags']) | |
209 |
|
209 | |||
210 | m = matchmod.exact(self.root, '', ['.hgtags']) |
|
210 | m = matchmod.exact(self.root, '', ['.hgtags']) | |
211 | tagnode = self.commit(message, user, date, extra=extra, match=m) |
|
211 | tagnode = self.commit(message, user, date, extra=extra, match=m) | |
212 |
|
212 | |||
213 | for name in names: |
|
213 | for name in names: | |
214 | self.hook('tag', node=hex(node), tag=name, local=local) |
|
214 | self.hook('tag', node=hex(node), tag=name, local=local) | |
215 |
|
215 | |||
216 | return tagnode |
|
216 | return tagnode | |
217 |
|
217 | |||
218 | def tag(self, names, node, message, local, user, date): |
|
218 | def tag(self, names, node, message, local, user, date): | |
219 | '''tag a revision with one or more symbolic names. |
|
219 | '''tag a revision with one or more symbolic names. | |
220 |
|
220 | |||
221 | names is a list of strings or, when adding a single tag, names may be a |
|
221 | names is a list of strings or, when adding a single tag, names may be a | |
222 | string. |
|
222 | string. | |
223 |
|
223 | |||
224 | if local is True, the tags are stored in a per-repository file. |
|
224 | if local is True, the tags are stored in a per-repository file. | |
225 | otherwise, they are stored in the .hgtags file, and a new |
|
225 | otherwise, they are stored in the .hgtags file, and a new | |
226 | changeset is committed with the change. |
|
226 | changeset is committed with the change. | |
227 |
|
227 | |||
228 | keyword arguments: |
|
228 | keyword arguments: | |
229 |
|
229 | |||
230 | local: whether to store tags in non-version-controlled file |
|
230 | local: whether to store tags in non-version-controlled file | |
231 | (default False) |
|
231 | (default False) | |
232 |
|
232 | |||
233 | message: commit message to use if committing |
|
233 | message: commit message to use if committing | |
234 |
|
234 | |||
235 | user: name of user to use if committing |
|
235 | user: name of user to use if committing | |
236 |
|
236 | |||
237 | date: date tuple to use if committing''' |
|
237 | date: date tuple to use if committing''' | |
238 |
|
238 | |||
239 | for x in self.status()[:5]: |
|
239 | for x in self.status()[:5]: | |
240 | if '.hgtags' in x: |
|
240 | if '.hgtags' in x: | |
241 | raise util.Abort(_('working copy of .hgtags is changed ' |
|
241 | raise util.Abort(_('working copy of .hgtags is changed ' | |
242 | '(please commit .hgtags manually)')) |
|
242 | '(please commit .hgtags manually)')) | |
243 |
|
243 | |||
244 | self.tags() # instantiate the cache |
|
244 | self.tags() # instantiate the cache | |
245 | self._tag(names, node, message, local, user, date) |
|
245 | self._tag(names, node, message, local, user, date) | |
246 |
|
246 | |||
247 | def tags(self): |
|
247 | def tags(self): | |
248 | '''return a mapping of tag to node''' |
|
248 | '''return a mapping of tag to node''' | |
249 | if self._tags is None: |
|
249 | if self._tags is None: | |
250 | (self._tags, self._tagtypes) = self._findtags() |
|
250 | (self._tags, self._tagtypes) = self._findtags() | |
251 |
|
251 | |||
252 | return self._tags |
|
252 | return self._tags | |
253 |
|
253 | |||
254 | def _findtags(self): |
|
254 | def _findtags(self): | |
255 | '''Do the hard work of finding tags. Return a pair of dicts |
|
255 | '''Do the hard work of finding tags. Return a pair of dicts | |
256 | (tags, tagtypes) where tags maps tag name to node, and tagtypes |
|
256 | (tags, tagtypes) where tags maps tag name to node, and tagtypes | |
257 | maps tag name to a string like \'global\' or \'local\'. |
|
257 | maps tag name to a string like \'global\' or \'local\'. | |
258 | Subclasses or extensions are free to add their own tags, but |
|
258 | Subclasses or extensions are free to add their own tags, but | |
259 | should be aware that the returned dicts will be retained for the |
|
259 | should be aware that the returned dicts will be retained for the | |
260 | duration of the localrepo object.''' |
|
260 | duration of the localrepo object.''' | |
261 |
|
261 | |||
262 | # XXX what tagtype should subclasses/extensions use? Currently |
|
262 | # XXX what tagtype should subclasses/extensions use? Currently | |
263 | # mq and bookmarks add tags, but do not set the tagtype at all. |
|
263 | # mq and bookmarks add tags, but do not set the tagtype at all. | |
264 | # Should each extension invent its own tag type? Should there |
|
264 | # Should each extension invent its own tag type? Should there | |
265 | # be one tagtype for all such "virtual" tags? Or is the status |
|
265 | # be one tagtype for all such "virtual" tags? Or is the status | |
266 | # quo fine? |
|
266 | # quo fine? | |
267 |
|
267 | |||
268 | alltags = {} # map tag name to (node, hist) |
|
268 | alltags = {} # map tag name to (node, hist) | |
269 | tagtypes = {} |
|
269 | tagtypes = {} | |
270 |
|
270 | |||
271 | tagsmod.findglobaltags(self.ui, self, alltags, tagtypes) |
|
271 | tagsmod.findglobaltags(self.ui, self, alltags, tagtypes) | |
272 | tagsmod.readlocaltags(self.ui, self, alltags, tagtypes) |
|
272 | tagsmod.readlocaltags(self.ui, self, alltags, tagtypes) | |
273 |
|
273 | |||
274 | # Build the return dicts. Have to re-encode tag names because |
|
274 | # Build the return dicts. Have to re-encode tag names because | |
275 | # the tags module always uses UTF-8 (in order not to lose info |
|
275 | # the tags module always uses UTF-8 (in order not to lose info | |
276 | # writing to the cache), but the rest of Mercurial wants them in |
|
276 | # writing to the cache), but the rest of Mercurial wants them in | |
277 | # local encoding. |
|
277 | # local encoding. | |
278 | tags = {} |
|
278 | tags = {} | |
279 | for (name, (node, hist)) in alltags.iteritems(): |
|
279 | for (name, (node, hist)) in alltags.iteritems(): | |
280 | if node != nullid: |
|
280 | if node != nullid: | |
281 | tags[encoding.tolocal(name)] = node |
|
281 | tags[encoding.tolocal(name)] = node | |
282 | tags['tip'] = self.changelog.tip() |
|
282 | tags['tip'] = self.changelog.tip() | |
283 | tagtypes = dict([(encoding.tolocal(name), value) |
|
283 | tagtypes = dict([(encoding.tolocal(name), value) | |
284 | for (name, value) in tagtypes.iteritems()]) |
|
284 | for (name, value) in tagtypes.iteritems()]) | |
285 | return (tags, tagtypes) |
|
285 | return (tags, tagtypes) | |
286 |
|
286 | |||
287 | def tagtype(self, tagname): |
|
287 | def tagtype(self, tagname): | |
288 | ''' |
|
288 | ''' | |
289 | return the type of the given tag. result can be: |
|
289 | return the type of the given tag. result can be: | |
290 |
|
290 | |||
291 | 'local' : a local tag |
|
291 | 'local' : a local tag | |
292 | 'global' : a global tag |
|
292 | 'global' : a global tag | |
293 | None : tag does not exist |
|
293 | None : tag does not exist | |
294 | ''' |
|
294 | ''' | |
295 |
|
295 | |||
296 | self.tags() |
|
296 | self.tags() | |
297 |
|
297 | |||
298 | return self._tagtypes.get(tagname) |
|
298 | return self._tagtypes.get(tagname) | |
299 |
|
299 | |||
300 | def tagslist(self): |
|
300 | def tagslist(self): | |
301 | '''return a list of tags ordered by revision''' |
|
301 | '''return a list of tags ordered by revision''' | |
302 | l = [] |
|
302 | l = [] | |
303 | for t, n in self.tags().iteritems(): |
|
303 | for t, n in self.tags().iteritems(): | |
304 | try: |
|
304 | try: | |
305 | r = self.changelog.rev(n) |
|
305 | r = self.changelog.rev(n) | |
306 | except: |
|
306 | except: | |
307 | r = -2 # sort to the beginning of the list if unknown |
|
307 | r = -2 # sort to the beginning of the list if unknown | |
308 | l.append((r, t, n)) |
|
308 | l.append((r, t, n)) | |
309 | return [(t, n) for r, t, n in sorted(l)] |
|
309 | return [(t, n) for r, t, n in sorted(l)] | |
310 |
|
310 | |||
311 | def nodetags(self, node): |
|
311 | def nodetags(self, node): | |
312 | '''return the tags associated with a node''' |
|
312 | '''return the tags associated with a node''' | |
313 | if not self.nodetagscache: |
|
313 | if not self.nodetagscache: | |
314 | self.nodetagscache = {} |
|
314 | self.nodetagscache = {} | |
315 | for t, n in self.tags().iteritems(): |
|
315 | for t, n in self.tags().iteritems(): | |
316 | self.nodetagscache.setdefault(n, []).append(t) |
|
316 | self.nodetagscache.setdefault(n, []).append(t) | |
317 | return self.nodetagscache.get(node, []) |
|
317 | return self.nodetagscache.get(node, []) | |
318 |
|
318 | |||
319 | def _branchtags(self, partial, lrev): |
|
319 | def _branchtags(self, partial, lrev): | |
320 | # TODO: rename this function? |
|
320 | # TODO: rename this function? | |
321 | tiprev = len(self) - 1 |
|
321 | tiprev = len(self) - 1 | |
322 | if lrev != tiprev: |
|
322 | if lrev != tiprev: | |
323 |
self |
|
323 | ctxgen = (self[r] for r in xrange(lrev + 1, tiprev + 1)) | |
|
324 | self._updatebranchcache(partial, ctxgen) | |||
324 | self._writebranchcache(partial, self.changelog.tip(), tiprev) |
|
325 | self._writebranchcache(partial, self.changelog.tip(), tiprev) | |
325 |
|
326 | |||
326 | return partial |
|
327 | return partial | |
327 |
|
328 | |||
328 | def branchmap(self): |
|
329 | def branchmap(self): | |
329 | '''returns a dictionary {branch: [branchheads]}''' |
|
330 | '''returns a dictionary {branch: [branchheads]}''' | |
330 | tip = self.changelog.tip() |
|
331 | tip = self.changelog.tip() | |
331 | if self._branchcache is not None and self._branchcachetip == tip: |
|
332 | if self._branchcache is not None and self._branchcachetip == tip: | |
332 | return self._branchcache |
|
333 | return self._branchcache | |
333 |
|
334 | |||
334 | oldtip = self._branchcachetip |
|
335 | oldtip = self._branchcachetip | |
335 | self._branchcachetip = tip |
|
336 | self._branchcachetip = tip | |
336 | if oldtip is None or oldtip not in self.changelog.nodemap: |
|
337 | if oldtip is None or oldtip not in self.changelog.nodemap: | |
337 | partial, last, lrev = self._readbranchcache() |
|
338 | partial, last, lrev = self._readbranchcache() | |
338 | else: |
|
339 | else: | |
339 | lrev = self.changelog.rev(oldtip) |
|
340 | lrev = self.changelog.rev(oldtip) | |
340 | partial = self._branchcache |
|
341 | partial = self._branchcache | |
341 |
|
342 | |||
342 | self._branchtags(partial, lrev) |
|
343 | self._branchtags(partial, lrev) | |
343 | # this private cache holds all heads (not just tips) |
|
344 | # this private cache holds all heads (not just tips) | |
344 | self._branchcache = partial |
|
345 | self._branchcache = partial | |
345 |
|
346 | |||
346 | return self._branchcache |
|
347 | return self._branchcache | |
347 |
|
348 | |||
348 | def branchtags(self): |
|
349 | def branchtags(self): | |
349 | '''return a dict where branch names map to the tipmost head of |
|
350 | '''return a dict where branch names map to the tipmost head of | |
350 | the branch, open heads come before closed''' |
|
351 | the branch, open heads come before closed''' | |
351 | bt = {} |
|
352 | bt = {} | |
352 | for bn, heads in self.branchmap().iteritems(): |
|
353 | for bn, heads in self.branchmap().iteritems(): | |
353 | tip = heads[-1] |
|
354 | tip = heads[-1] | |
354 | for h in reversed(heads): |
|
355 | for h in reversed(heads): | |
355 | if 'close' not in self.changelog.read(h)[5]: |
|
356 | if 'close' not in self.changelog.read(h)[5]: | |
356 | tip = h |
|
357 | tip = h | |
357 | break |
|
358 | break | |
358 | bt[bn] = tip |
|
359 | bt[bn] = tip | |
359 | return bt |
|
360 | return bt | |
360 |
|
361 | |||
361 |
|
362 | |||
362 | def _readbranchcache(self): |
|
363 | def _readbranchcache(self): | |
363 | partial = {} |
|
364 | partial = {} | |
364 | try: |
|
365 | try: | |
365 | f = self.opener("branchheads.cache") |
|
366 | f = self.opener("branchheads.cache") | |
366 | lines = f.read().split('\n') |
|
367 | lines = f.read().split('\n') | |
367 | f.close() |
|
368 | f.close() | |
368 | except (IOError, OSError): |
|
369 | except (IOError, OSError): | |
369 | return {}, nullid, nullrev |
|
370 | return {}, nullid, nullrev | |
370 |
|
371 | |||
371 | try: |
|
372 | try: | |
372 | last, lrev = lines.pop(0).split(" ", 1) |
|
373 | last, lrev = lines.pop(0).split(" ", 1) | |
373 | last, lrev = bin(last), int(lrev) |
|
374 | last, lrev = bin(last), int(lrev) | |
374 | if lrev >= len(self) or self[lrev].node() != last: |
|
375 | if lrev >= len(self) or self[lrev].node() != last: | |
375 | # invalidate the cache |
|
376 | # invalidate the cache | |
376 | raise ValueError('invalidating branch cache (tip differs)') |
|
377 | raise ValueError('invalidating branch cache (tip differs)') | |
377 | for l in lines: |
|
378 | for l in lines: | |
378 | if not l: |
|
379 | if not l: | |
379 | continue |
|
380 | continue | |
380 | node, label = l.split(" ", 1) |
|
381 | node, label = l.split(" ", 1) | |
381 | partial.setdefault(label.strip(), []).append(bin(node)) |
|
382 | partial.setdefault(label.strip(), []).append(bin(node)) | |
382 | except KeyboardInterrupt: |
|
383 | except KeyboardInterrupt: | |
383 | raise |
|
384 | raise | |
384 | except Exception, inst: |
|
385 | except Exception, inst: | |
385 | if self.ui.debugflag: |
|
386 | if self.ui.debugflag: | |
386 | self.ui.warn(str(inst), '\n') |
|
387 | self.ui.warn(str(inst), '\n') | |
387 | partial, last, lrev = {}, nullid, nullrev |
|
388 | partial, last, lrev = {}, nullid, nullrev | |
388 | return partial, last, lrev |
|
389 | return partial, last, lrev | |
389 |
|
390 | |||
390 | def _writebranchcache(self, branches, tip, tiprev): |
|
391 | def _writebranchcache(self, branches, tip, tiprev): | |
391 | try: |
|
392 | try: | |
392 | f = self.opener("branchheads.cache", "w", atomictemp=True) |
|
393 | f = self.opener("branchheads.cache", "w", atomictemp=True) | |
393 | f.write("%s %s\n" % (hex(tip), tiprev)) |
|
394 | f.write("%s %s\n" % (hex(tip), tiprev)) | |
394 | for label, nodes in branches.iteritems(): |
|
395 | for label, nodes in branches.iteritems(): | |
395 | for node in nodes: |
|
396 | for node in nodes: | |
396 | f.write("%s %s\n" % (hex(node), label)) |
|
397 | f.write("%s %s\n" % (hex(node), label)) | |
397 | f.rename() |
|
398 | f.rename() | |
398 | except (IOError, OSError): |
|
399 | except (IOError, OSError): | |
399 | pass |
|
400 | pass | |
400 |
|
401 | |||
401 |
def _updatebranchcache(self, partial, |
|
402 | def _updatebranchcache(self, partial, ctxgen): | |
402 | # collect new branch entries |
|
403 | # collect new branch entries | |
403 | newbranches = {} |
|
404 | newbranches = {} | |
404 |
for |
|
405 | for c in ctxgen: | |
405 | c = self[r] |
|
|||
406 | newbranches.setdefault(c.branch(), []).append(c.node()) |
|
406 | newbranches.setdefault(c.branch(), []).append(c.node()) | |
407 | # if older branchheads are reachable from new ones, they aren't |
|
407 | # if older branchheads are reachable from new ones, they aren't | |
408 | # really branchheads. Note checking parents is insufficient: |
|
408 | # really branchheads. Note checking parents is insufficient: | |
409 | # 1 (branch a) -> 2 (branch b) -> 3 (branch a) |
|
409 | # 1 (branch a) -> 2 (branch b) -> 3 (branch a) | |
410 | for branch, newnodes in newbranches.iteritems(): |
|
410 | for branch, newnodes in newbranches.iteritems(): | |
411 | bheads = partial.setdefault(branch, []) |
|
411 | bheads = partial.setdefault(branch, []) | |
412 | bheads.extend(newnodes) |
|
412 | bheads.extend(newnodes) | |
413 | if len(bheads) < 2: |
|
413 | if len(bheads) < 2: | |
414 | continue |
|
414 | continue | |
415 | newbheads = [] |
|
415 | newbheads = [] | |
416 | # starting from tip means fewer passes over reachable |
|
416 | # starting from tip means fewer passes over reachable | |
417 | while newnodes: |
|
417 | while newnodes: | |
418 | latest = newnodes.pop() |
|
418 | latest = newnodes.pop() | |
419 | if latest not in bheads: |
|
419 | if latest not in bheads: | |
420 | continue |
|
420 | continue | |
421 | minbhrev = self[min([self[bh].rev() for bh in bheads])].node() |
|
421 | minbhrev = self[min([self[bh].rev() for bh in bheads])].node() | |
422 | reachable = self.changelog.reachable(latest, minbhrev) |
|
422 | reachable = self.changelog.reachable(latest, minbhrev) | |
423 | bheads = [b for b in bheads if b not in reachable] |
|
423 | bheads = [b for b in bheads if b not in reachable] | |
424 | newbheads.insert(0, latest) |
|
424 | newbheads.insert(0, latest) | |
425 | bheads.extend(newbheads) |
|
425 | bheads.extend(newbheads) | |
426 | partial[branch] = bheads |
|
426 | partial[branch] = bheads | |
427 |
|
427 | |||
428 | def lookup(self, key): |
|
428 | def lookup(self, key): | |
429 | if isinstance(key, int): |
|
429 | if isinstance(key, int): | |
430 | return self.changelog.node(key) |
|
430 | return self.changelog.node(key) | |
431 | elif key == '.': |
|
431 | elif key == '.': | |
432 | return self.dirstate.parents()[0] |
|
432 | return self.dirstate.parents()[0] | |
433 | elif key == 'null': |
|
433 | elif key == 'null': | |
434 | return nullid |
|
434 | return nullid | |
435 | elif key == 'tip': |
|
435 | elif key == 'tip': | |
436 | return self.changelog.tip() |
|
436 | return self.changelog.tip() | |
437 | n = self.changelog._match(key) |
|
437 | n = self.changelog._match(key) | |
438 | if n: |
|
438 | if n: | |
439 | return n |
|
439 | return n | |
440 | if key in self.tags(): |
|
440 | if key in self.tags(): | |
441 | return self.tags()[key] |
|
441 | return self.tags()[key] | |
442 | if key in self.branchtags(): |
|
442 | if key in self.branchtags(): | |
443 | return self.branchtags()[key] |
|
443 | return self.branchtags()[key] | |
444 | n = self.changelog._partialmatch(key) |
|
444 | n = self.changelog._partialmatch(key) | |
445 | if n: |
|
445 | if n: | |
446 | return n |
|
446 | return n | |
447 |
|
447 | |||
448 | # can't find key, check if it might have come from damaged dirstate |
|
448 | # can't find key, check if it might have come from damaged dirstate | |
449 | if key in self.dirstate.parents(): |
|
449 | if key in self.dirstate.parents(): | |
450 | raise error.Abort(_("working directory has unknown parent '%s'!") |
|
450 | raise error.Abort(_("working directory has unknown parent '%s'!") | |
451 | % short(key)) |
|
451 | % short(key)) | |
452 | try: |
|
452 | try: | |
453 | if len(key) == 20: |
|
453 | if len(key) == 20: | |
454 | key = hex(key) |
|
454 | key = hex(key) | |
455 | except: |
|
455 | except: | |
456 | pass |
|
456 | pass | |
457 | raise error.RepoLookupError(_("unknown revision '%s'") % key) |
|
457 | raise error.RepoLookupError(_("unknown revision '%s'") % key) | |
458 |
|
458 | |||
459 | def local(self): |
|
459 | def local(self): | |
460 | return True |
|
460 | return True | |
461 |
|
461 | |||
462 | def join(self, f): |
|
462 | def join(self, f): | |
463 | return os.path.join(self.path, f) |
|
463 | return os.path.join(self.path, f) | |
464 |
|
464 | |||
465 | def wjoin(self, f): |
|
465 | def wjoin(self, f): | |
466 | return os.path.join(self.root, f) |
|
466 | return os.path.join(self.root, f) | |
467 |
|
467 | |||
468 | def rjoin(self, f): |
|
468 | def rjoin(self, f): | |
469 | return os.path.join(self.root, util.pconvert(f)) |
|
469 | return os.path.join(self.root, util.pconvert(f)) | |
470 |
|
470 | |||
471 | def file(self, f): |
|
471 | def file(self, f): | |
472 | if f[0] == '/': |
|
472 | if f[0] == '/': | |
473 | f = f[1:] |
|
473 | f = f[1:] | |
474 | return filelog.filelog(self.sopener, f) |
|
474 | return filelog.filelog(self.sopener, f) | |
475 |
|
475 | |||
476 | def changectx(self, changeid): |
|
476 | def changectx(self, changeid): | |
477 | return self[changeid] |
|
477 | return self[changeid] | |
478 |
|
478 | |||
479 | def parents(self, changeid=None): |
|
479 | def parents(self, changeid=None): | |
480 | '''get list of changectxs for parents of changeid''' |
|
480 | '''get list of changectxs for parents of changeid''' | |
481 | return self[changeid].parents() |
|
481 | return self[changeid].parents() | |
482 |
|
482 | |||
483 | def filectx(self, path, changeid=None, fileid=None): |
|
483 | def filectx(self, path, changeid=None, fileid=None): | |
484 | """changeid can be a changeset revision, node, or tag. |
|
484 | """changeid can be a changeset revision, node, or tag. | |
485 | fileid can be a file revision or node.""" |
|
485 | fileid can be a file revision or node.""" | |
486 | return context.filectx(self, path, changeid, fileid) |
|
486 | return context.filectx(self, path, changeid, fileid) | |
487 |
|
487 | |||
488 | def getcwd(self): |
|
488 | def getcwd(self): | |
489 | return self.dirstate.getcwd() |
|
489 | return self.dirstate.getcwd() | |
490 |
|
490 | |||
491 | def pathto(self, f, cwd=None): |
|
491 | def pathto(self, f, cwd=None): | |
492 | return self.dirstate.pathto(f, cwd) |
|
492 | return self.dirstate.pathto(f, cwd) | |
493 |
|
493 | |||
494 | def wfile(self, f, mode='r'): |
|
494 | def wfile(self, f, mode='r'): | |
495 | return self.wopener(f, mode) |
|
495 | return self.wopener(f, mode) | |
496 |
|
496 | |||
497 | def _link(self, f): |
|
497 | def _link(self, f): | |
498 | return os.path.islink(self.wjoin(f)) |
|
498 | return os.path.islink(self.wjoin(f)) | |
499 |
|
499 | |||
500 | def _filter(self, filter, filename, data): |
|
500 | def _filter(self, filter, filename, data): | |
501 | if filter not in self.filterpats: |
|
501 | if filter not in self.filterpats: | |
502 | l = [] |
|
502 | l = [] | |
503 | for pat, cmd in self.ui.configitems(filter): |
|
503 | for pat, cmd in self.ui.configitems(filter): | |
504 | if cmd == '!': |
|
504 | if cmd == '!': | |
505 | continue |
|
505 | continue | |
506 | mf = matchmod.match(self.root, '', [pat]) |
|
506 | mf = matchmod.match(self.root, '', [pat]) | |
507 | fn = None |
|
507 | fn = None | |
508 | params = cmd |
|
508 | params = cmd | |
509 | for name, filterfn in self._datafilters.iteritems(): |
|
509 | for name, filterfn in self._datafilters.iteritems(): | |
510 | if cmd.startswith(name): |
|
510 | if cmd.startswith(name): | |
511 | fn = filterfn |
|
511 | fn = filterfn | |
512 | params = cmd[len(name):].lstrip() |
|
512 | params = cmd[len(name):].lstrip() | |
513 | break |
|
513 | break | |
514 | if not fn: |
|
514 | if not fn: | |
515 | fn = lambda s, c, **kwargs: util.filter(s, c) |
|
515 | fn = lambda s, c, **kwargs: util.filter(s, c) | |
516 | # Wrap old filters not supporting keyword arguments |
|
516 | # Wrap old filters not supporting keyword arguments | |
517 | if not inspect.getargspec(fn)[2]: |
|
517 | if not inspect.getargspec(fn)[2]: | |
518 | oldfn = fn |
|
518 | oldfn = fn | |
519 | fn = lambda s, c, **kwargs: oldfn(s, c) |
|
519 | fn = lambda s, c, **kwargs: oldfn(s, c) | |
520 | l.append((mf, fn, params)) |
|
520 | l.append((mf, fn, params)) | |
521 | self.filterpats[filter] = l |
|
521 | self.filterpats[filter] = l | |
522 |
|
522 | |||
523 | for mf, fn, cmd in self.filterpats[filter]: |
|
523 | for mf, fn, cmd in self.filterpats[filter]: | |
524 | if mf(filename): |
|
524 | if mf(filename): | |
525 | self.ui.debug("filtering %s through %s\n" % (filename, cmd)) |
|
525 | self.ui.debug("filtering %s through %s\n" % (filename, cmd)) | |
526 | data = fn(data, cmd, ui=self.ui, repo=self, filename=filename) |
|
526 | data = fn(data, cmd, ui=self.ui, repo=self, filename=filename) | |
527 | break |
|
527 | break | |
528 |
|
528 | |||
529 | return data |
|
529 | return data | |
530 |
|
530 | |||
531 | def adddatafilter(self, name, filter): |
|
531 | def adddatafilter(self, name, filter): | |
532 | self._datafilters[name] = filter |
|
532 | self._datafilters[name] = filter | |
533 |
|
533 | |||
534 | def wread(self, filename): |
|
534 | def wread(self, filename): | |
535 | if self._link(filename): |
|
535 | if self._link(filename): | |
536 | data = os.readlink(self.wjoin(filename)) |
|
536 | data = os.readlink(self.wjoin(filename)) | |
537 | else: |
|
537 | else: | |
538 | data = self.wopener(filename, 'r').read() |
|
538 | data = self.wopener(filename, 'r').read() | |
539 | return self._filter("encode", filename, data) |
|
539 | return self._filter("encode", filename, data) | |
540 |
|
540 | |||
541 | def wwrite(self, filename, data, flags): |
|
541 | def wwrite(self, filename, data, flags): | |
542 | data = self._filter("decode", filename, data) |
|
542 | data = self._filter("decode", filename, data) | |
543 | try: |
|
543 | try: | |
544 | os.unlink(self.wjoin(filename)) |
|
544 | os.unlink(self.wjoin(filename)) | |
545 | except OSError: |
|
545 | except OSError: | |
546 | pass |
|
546 | pass | |
547 | if 'l' in flags: |
|
547 | if 'l' in flags: | |
548 | self.wopener.symlink(data, filename) |
|
548 | self.wopener.symlink(data, filename) | |
549 | else: |
|
549 | else: | |
550 | self.wopener(filename, 'w').write(data) |
|
550 | self.wopener(filename, 'w').write(data) | |
551 | if 'x' in flags: |
|
551 | if 'x' in flags: | |
552 | util.set_flags(self.wjoin(filename), False, True) |
|
552 | util.set_flags(self.wjoin(filename), False, True) | |
553 |
|
553 | |||
554 | def wwritedata(self, filename, data): |
|
554 | def wwritedata(self, filename, data): | |
555 | return self._filter("decode", filename, data) |
|
555 | return self._filter("decode", filename, data) | |
556 |
|
556 | |||
557 | def transaction(self): |
|
557 | def transaction(self): | |
558 | tr = self._transref and self._transref() or None |
|
558 | tr = self._transref and self._transref() or None | |
559 | if tr and tr.running(): |
|
559 | if tr and tr.running(): | |
560 | return tr.nest() |
|
560 | return tr.nest() | |
561 |
|
561 | |||
562 | # abort here if the journal already exists |
|
562 | # abort here if the journal already exists | |
563 | if os.path.exists(self.sjoin("journal")): |
|
563 | if os.path.exists(self.sjoin("journal")): | |
564 | raise error.RepoError( |
|
564 | raise error.RepoError( | |
565 | _("abandoned transaction found - run hg recover")) |
|
565 | _("abandoned transaction found - run hg recover")) | |
566 |
|
566 | |||
567 | # save dirstate for rollback |
|
567 | # save dirstate for rollback | |
568 | try: |
|
568 | try: | |
569 | ds = self.opener("dirstate").read() |
|
569 | ds = self.opener("dirstate").read() | |
570 | except IOError: |
|
570 | except IOError: | |
571 | ds = "" |
|
571 | ds = "" | |
572 | self.opener("journal.dirstate", "w").write(ds) |
|
572 | self.opener("journal.dirstate", "w").write(ds) | |
573 | self.opener("journal.branch", "w").write(self.dirstate.branch()) |
|
573 | self.opener("journal.branch", "w").write(self.dirstate.branch()) | |
574 |
|
574 | |||
575 | renames = [(self.sjoin("journal"), self.sjoin("undo")), |
|
575 | renames = [(self.sjoin("journal"), self.sjoin("undo")), | |
576 | (self.join("journal.dirstate"), self.join("undo.dirstate")), |
|
576 | (self.join("journal.dirstate"), self.join("undo.dirstate")), | |
577 | (self.join("journal.branch"), self.join("undo.branch"))] |
|
577 | (self.join("journal.branch"), self.join("undo.branch"))] | |
578 | tr = transaction.transaction(self.ui.warn, self.sopener, |
|
578 | tr = transaction.transaction(self.ui.warn, self.sopener, | |
579 | self.sjoin("journal"), |
|
579 | self.sjoin("journal"), | |
580 | aftertrans(renames), |
|
580 | aftertrans(renames), | |
581 | self.store.createmode) |
|
581 | self.store.createmode) | |
582 | self._transref = weakref.ref(tr) |
|
582 | self._transref = weakref.ref(tr) | |
583 | return tr |
|
583 | return tr | |
584 |
|
584 | |||
585 | def recover(self): |
|
585 | def recover(self): | |
586 | lock = self.lock() |
|
586 | lock = self.lock() | |
587 | try: |
|
587 | try: | |
588 | if os.path.exists(self.sjoin("journal")): |
|
588 | if os.path.exists(self.sjoin("journal")): | |
589 | self.ui.status(_("rolling back interrupted transaction\n")) |
|
589 | self.ui.status(_("rolling back interrupted transaction\n")) | |
590 | transaction.rollback(self.sopener, self.sjoin("journal"), |
|
590 | transaction.rollback(self.sopener, self.sjoin("journal"), | |
591 | self.ui.warn) |
|
591 | self.ui.warn) | |
592 | self.invalidate() |
|
592 | self.invalidate() | |
593 | return True |
|
593 | return True | |
594 | else: |
|
594 | else: | |
595 | self.ui.warn(_("no interrupted transaction available\n")) |
|
595 | self.ui.warn(_("no interrupted transaction available\n")) | |
596 | return False |
|
596 | return False | |
597 | finally: |
|
597 | finally: | |
598 | lock.release() |
|
598 | lock.release() | |
599 |
|
599 | |||
600 | def rollback(self): |
|
600 | def rollback(self): | |
601 | wlock = lock = None |
|
601 | wlock = lock = None | |
602 | try: |
|
602 | try: | |
603 | wlock = self.wlock() |
|
603 | wlock = self.wlock() | |
604 | lock = self.lock() |
|
604 | lock = self.lock() | |
605 | if os.path.exists(self.sjoin("undo")): |
|
605 | if os.path.exists(self.sjoin("undo")): | |
606 | self.ui.status(_("rolling back last transaction\n")) |
|
606 | self.ui.status(_("rolling back last transaction\n")) | |
607 | transaction.rollback(self.sopener, self.sjoin("undo"), |
|
607 | transaction.rollback(self.sopener, self.sjoin("undo"), | |
608 | self.ui.warn) |
|
608 | self.ui.warn) | |
609 | util.rename(self.join("undo.dirstate"), self.join("dirstate")) |
|
609 | util.rename(self.join("undo.dirstate"), self.join("dirstate")) | |
610 | try: |
|
610 | try: | |
611 | branch = self.opener("undo.branch").read() |
|
611 | branch = self.opener("undo.branch").read() | |
612 | self.dirstate.setbranch(branch) |
|
612 | self.dirstate.setbranch(branch) | |
613 | except IOError: |
|
613 | except IOError: | |
614 | self.ui.warn(_("Named branch could not be reset, " |
|
614 | self.ui.warn(_("Named branch could not be reset, " | |
615 | "current branch still is: %s\n") |
|
615 | "current branch still is: %s\n") | |
616 | % encoding.tolocal(self.dirstate.branch())) |
|
616 | % encoding.tolocal(self.dirstate.branch())) | |
617 | self.invalidate() |
|
617 | self.invalidate() | |
618 | self.dirstate.invalidate() |
|
618 | self.dirstate.invalidate() | |
619 | self.destroyed() |
|
619 | self.destroyed() | |
620 | else: |
|
620 | else: | |
621 | self.ui.warn(_("no rollback information available\n")) |
|
621 | self.ui.warn(_("no rollback information available\n")) | |
622 | finally: |
|
622 | finally: | |
623 | release(lock, wlock) |
|
623 | release(lock, wlock) | |
624 |
|
624 | |||
625 | def invalidatecaches(self): |
|
625 | def invalidatecaches(self): | |
626 | self._tags = None |
|
626 | self._tags = None | |
627 | self._tagtypes = None |
|
627 | self._tagtypes = None | |
628 | self.nodetagscache = None |
|
628 | self.nodetagscache = None | |
629 | self._branchcache = None # in UTF-8 |
|
629 | self._branchcache = None # in UTF-8 | |
630 | self._branchcachetip = None |
|
630 | self._branchcachetip = None | |
631 |
|
631 | |||
632 | def invalidate(self): |
|
632 | def invalidate(self): | |
633 | for a in "changelog manifest".split(): |
|
633 | for a in "changelog manifest".split(): | |
634 | if a in self.__dict__: |
|
634 | if a in self.__dict__: | |
635 | delattr(self, a) |
|
635 | delattr(self, a) | |
636 | self.invalidatecaches() |
|
636 | self.invalidatecaches() | |
637 |
|
637 | |||
638 | def _lock(self, lockname, wait, releasefn, acquirefn, desc): |
|
638 | def _lock(self, lockname, wait, releasefn, acquirefn, desc): | |
639 | try: |
|
639 | try: | |
640 | l = lock.lock(lockname, 0, releasefn, desc=desc) |
|
640 | l = lock.lock(lockname, 0, releasefn, desc=desc) | |
641 | except error.LockHeld, inst: |
|
641 | except error.LockHeld, inst: | |
642 | if not wait: |
|
642 | if not wait: | |
643 | raise |
|
643 | raise | |
644 | self.ui.warn(_("waiting for lock on %s held by %r\n") % |
|
644 | self.ui.warn(_("waiting for lock on %s held by %r\n") % | |
645 | (desc, inst.locker)) |
|
645 | (desc, inst.locker)) | |
646 | # default to 600 seconds timeout |
|
646 | # default to 600 seconds timeout | |
647 | l = lock.lock(lockname, int(self.ui.config("ui", "timeout", "600")), |
|
647 | l = lock.lock(lockname, int(self.ui.config("ui", "timeout", "600")), | |
648 | releasefn, desc=desc) |
|
648 | releasefn, desc=desc) | |
649 | if acquirefn: |
|
649 | if acquirefn: | |
650 | acquirefn() |
|
650 | acquirefn() | |
651 | return l |
|
651 | return l | |
652 |
|
652 | |||
653 | def lock(self, wait=True): |
|
653 | def lock(self, wait=True): | |
654 | '''Lock the repository store (.hg/store) and return a weak reference |
|
654 | '''Lock the repository store (.hg/store) and return a weak reference | |
655 | to the lock. Use this before modifying the store (e.g. committing or |
|
655 | to the lock. Use this before modifying the store (e.g. committing or | |
656 | stripping). If you are opening a transaction, get a lock as well.)''' |
|
656 | stripping). If you are opening a transaction, get a lock as well.)''' | |
657 | l = self._lockref and self._lockref() |
|
657 | l = self._lockref and self._lockref() | |
658 | if l is not None and l.held: |
|
658 | if l is not None and l.held: | |
659 | l.lock() |
|
659 | l.lock() | |
660 | return l |
|
660 | return l | |
661 |
|
661 | |||
662 | l = self._lock(self.sjoin("lock"), wait, None, self.invalidate, |
|
662 | l = self._lock(self.sjoin("lock"), wait, None, self.invalidate, | |
663 | _('repository %s') % self.origroot) |
|
663 | _('repository %s') % self.origroot) | |
664 | self._lockref = weakref.ref(l) |
|
664 | self._lockref = weakref.ref(l) | |
665 | return l |
|
665 | return l | |
666 |
|
666 | |||
667 | def wlock(self, wait=True): |
|
667 | def wlock(self, wait=True): | |
668 | '''Lock the non-store parts of the repository (everything under |
|
668 | '''Lock the non-store parts of the repository (everything under | |
669 | .hg except .hg/store) and return a weak reference to the lock. |
|
669 | .hg except .hg/store) and return a weak reference to the lock. | |
670 | Use this before modifying files in .hg.''' |
|
670 | Use this before modifying files in .hg.''' | |
671 | l = self._wlockref and self._wlockref() |
|
671 | l = self._wlockref and self._wlockref() | |
672 | if l is not None and l.held: |
|
672 | if l is not None and l.held: | |
673 | l.lock() |
|
673 | l.lock() | |
674 | return l |
|
674 | return l | |
675 |
|
675 | |||
676 | l = self._lock(self.join("wlock"), wait, self.dirstate.write, |
|
676 | l = self._lock(self.join("wlock"), wait, self.dirstate.write, | |
677 | self.dirstate.invalidate, _('working directory of %s') % |
|
677 | self.dirstate.invalidate, _('working directory of %s') % | |
678 | self.origroot) |
|
678 | self.origroot) | |
679 | self._wlockref = weakref.ref(l) |
|
679 | self._wlockref = weakref.ref(l) | |
680 | return l |
|
680 | return l | |
681 |
|
681 | |||
682 | def _filecommit(self, fctx, manifest1, manifest2, linkrev, tr, changelist): |
|
682 | def _filecommit(self, fctx, manifest1, manifest2, linkrev, tr, changelist): | |
683 | """ |
|
683 | """ | |
684 | commit an individual file as part of a larger transaction |
|
684 | commit an individual file as part of a larger transaction | |
685 | """ |
|
685 | """ | |
686 |
|
686 | |||
687 | fname = fctx.path() |
|
687 | fname = fctx.path() | |
688 | text = fctx.data() |
|
688 | text = fctx.data() | |
689 | flog = self.file(fname) |
|
689 | flog = self.file(fname) | |
690 | fparent1 = manifest1.get(fname, nullid) |
|
690 | fparent1 = manifest1.get(fname, nullid) | |
691 | fparent2 = fparent2o = manifest2.get(fname, nullid) |
|
691 | fparent2 = fparent2o = manifest2.get(fname, nullid) | |
692 |
|
692 | |||
693 | meta = {} |
|
693 | meta = {} | |
694 | copy = fctx.renamed() |
|
694 | copy = fctx.renamed() | |
695 | if copy and copy[0] != fname: |
|
695 | if copy and copy[0] != fname: | |
696 | # Mark the new revision of this file as a copy of another |
|
696 | # Mark the new revision of this file as a copy of another | |
697 | # file. This copy data will effectively act as a parent |
|
697 | # file. This copy data will effectively act as a parent | |
698 | # of this new revision. If this is a merge, the first |
|
698 | # of this new revision. If this is a merge, the first | |
699 | # parent will be the nullid (meaning "look up the copy data") |
|
699 | # parent will be the nullid (meaning "look up the copy data") | |
700 | # and the second one will be the other parent. For example: |
|
700 | # and the second one will be the other parent. For example: | |
701 | # |
|
701 | # | |
702 | # 0 --- 1 --- 3 rev1 changes file foo |
|
702 | # 0 --- 1 --- 3 rev1 changes file foo | |
703 | # \ / rev2 renames foo to bar and changes it |
|
703 | # \ / rev2 renames foo to bar and changes it | |
704 | # \- 2 -/ rev3 should have bar with all changes and |
|
704 | # \- 2 -/ rev3 should have bar with all changes and | |
705 | # should record that bar descends from |
|
705 | # should record that bar descends from | |
706 | # bar in rev2 and foo in rev1 |
|
706 | # bar in rev2 and foo in rev1 | |
707 | # |
|
707 | # | |
708 | # this allows this merge to succeed: |
|
708 | # this allows this merge to succeed: | |
709 | # |
|
709 | # | |
710 | # 0 --- 1 --- 3 rev4 reverts the content change from rev2 |
|
710 | # 0 --- 1 --- 3 rev4 reverts the content change from rev2 | |
711 | # \ / merging rev3 and rev4 should use bar@rev2 |
|
711 | # \ / merging rev3 and rev4 should use bar@rev2 | |
712 | # \- 2 --- 4 as the merge base |
|
712 | # \- 2 --- 4 as the merge base | |
713 | # |
|
713 | # | |
714 |
|
714 | |||
715 | cfname = copy[0] |
|
715 | cfname = copy[0] | |
716 | crev = manifest1.get(cfname) |
|
716 | crev = manifest1.get(cfname) | |
717 | newfparent = fparent2 |
|
717 | newfparent = fparent2 | |
718 |
|
718 | |||
719 | if manifest2: # branch merge |
|
719 | if manifest2: # branch merge | |
720 | if fparent2 == nullid or crev is None: # copied on remote side |
|
720 | if fparent2 == nullid or crev is None: # copied on remote side | |
721 | if cfname in manifest2: |
|
721 | if cfname in manifest2: | |
722 | crev = manifest2[cfname] |
|
722 | crev = manifest2[cfname] | |
723 | newfparent = fparent1 |
|
723 | newfparent = fparent1 | |
724 |
|
724 | |||
725 | # find source in nearest ancestor if we've lost track |
|
725 | # find source in nearest ancestor if we've lost track | |
726 | if not crev: |
|
726 | if not crev: | |
727 | self.ui.debug(" %s: searching for copy revision for %s\n" % |
|
727 | self.ui.debug(" %s: searching for copy revision for %s\n" % | |
728 | (fname, cfname)) |
|
728 | (fname, cfname)) | |
729 | for ancestor in self['.'].ancestors(): |
|
729 | for ancestor in self['.'].ancestors(): | |
730 | if cfname in ancestor: |
|
730 | if cfname in ancestor: | |
731 | crev = ancestor[cfname].filenode() |
|
731 | crev = ancestor[cfname].filenode() | |
732 | break |
|
732 | break | |
733 |
|
733 | |||
734 | self.ui.debug(" %s: copy %s:%s\n" % (fname, cfname, hex(crev))) |
|
734 | self.ui.debug(" %s: copy %s:%s\n" % (fname, cfname, hex(crev))) | |
735 | meta["copy"] = cfname |
|
735 | meta["copy"] = cfname | |
736 | meta["copyrev"] = hex(crev) |
|
736 | meta["copyrev"] = hex(crev) | |
737 | fparent1, fparent2 = nullid, newfparent |
|
737 | fparent1, fparent2 = nullid, newfparent | |
738 | elif fparent2 != nullid: |
|
738 | elif fparent2 != nullid: | |
739 | # is one parent an ancestor of the other? |
|
739 | # is one parent an ancestor of the other? | |
740 | fparentancestor = flog.ancestor(fparent1, fparent2) |
|
740 | fparentancestor = flog.ancestor(fparent1, fparent2) | |
741 | if fparentancestor == fparent1: |
|
741 | if fparentancestor == fparent1: | |
742 | fparent1, fparent2 = fparent2, nullid |
|
742 | fparent1, fparent2 = fparent2, nullid | |
743 | elif fparentancestor == fparent2: |
|
743 | elif fparentancestor == fparent2: | |
744 | fparent2 = nullid |
|
744 | fparent2 = nullid | |
745 |
|
745 | |||
746 | # is the file changed? |
|
746 | # is the file changed? | |
747 | if fparent2 != nullid or flog.cmp(fparent1, text) or meta: |
|
747 | if fparent2 != nullid or flog.cmp(fparent1, text) or meta: | |
748 | changelist.append(fname) |
|
748 | changelist.append(fname) | |
749 | return flog.add(text, meta, tr, linkrev, fparent1, fparent2) |
|
749 | return flog.add(text, meta, tr, linkrev, fparent1, fparent2) | |
750 |
|
750 | |||
751 | # are just the flags changed during merge? |
|
751 | # are just the flags changed during merge? | |
752 | if fparent1 != fparent2o and manifest1.flags(fname) != fctx.flags(): |
|
752 | if fparent1 != fparent2o and manifest1.flags(fname) != fctx.flags(): | |
753 | changelist.append(fname) |
|
753 | changelist.append(fname) | |
754 |
|
754 | |||
755 | return fparent1 |
|
755 | return fparent1 | |
756 |
|
756 | |||
757 | def commit(self, text="", user=None, date=None, match=None, force=False, |
|
757 | def commit(self, text="", user=None, date=None, match=None, force=False, | |
758 | editor=False, extra={}): |
|
758 | editor=False, extra={}): | |
759 | """Add a new revision to current repository. |
|
759 | """Add a new revision to current repository. | |
760 |
|
760 | |||
761 | Revision information is gathered from the working directory, |
|
761 | Revision information is gathered from the working directory, | |
762 | match can be used to filter the committed files. If editor is |
|
762 | match can be used to filter the committed files. If editor is | |
763 | supplied, it is called to get a commit message. |
|
763 | supplied, it is called to get a commit message. | |
764 | """ |
|
764 | """ | |
765 |
|
765 | |||
766 | def fail(f, msg): |
|
766 | def fail(f, msg): | |
767 | raise util.Abort('%s: %s' % (f, msg)) |
|
767 | raise util.Abort('%s: %s' % (f, msg)) | |
768 |
|
768 | |||
769 | if not match: |
|
769 | if not match: | |
770 | match = matchmod.always(self.root, '') |
|
770 | match = matchmod.always(self.root, '') | |
771 |
|
771 | |||
772 | if not force: |
|
772 | if not force: | |
773 | vdirs = [] |
|
773 | vdirs = [] | |
774 | match.dir = vdirs.append |
|
774 | match.dir = vdirs.append | |
775 | match.bad = fail |
|
775 | match.bad = fail | |
776 |
|
776 | |||
777 | wlock = self.wlock() |
|
777 | wlock = self.wlock() | |
778 | try: |
|
778 | try: | |
779 | p1, p2 = self.dirstate.parents() |
|
779 | p1, p2 = self.dirstate.parents() | |
780 | wctx = self[None] |
|
780 | wctx = self[None] | |
781 |
|
781 | |||
782 | if (not force and p2 != nullid and match and |
|
782 | if (not force and p2 != nullid and match and | |
783 | (match.files() or match.anypats())): |
|
783 | (match.files() or match.anypats())): | |
784 | raise util.Abort(_('cannot partially commit a merge ' |
|
784 | raise util.Abort(_('cannot partially commit a merge ' | |
785 | '(do not specify files or patterns)')) |
|
785 | '(do not specify files or patterns)')) | |
786 |
|
786 | |||
787 | changes = self.status(match=match, clean=force) |
|
787 | changes = self.status(match=match, clean=force) | |
788 | if force: |
|
788 | if force: | |
789 | changes[0].extend(changes[6]) # mq may commit unchanged files |
|
789 | changes[0].extend(changes[6]) # mq may commit unchanged files | |
790 |
|
790 | |||
791 | # check subrepos |
|
791 | # check subrepos | |
792 | subs = [] |
|
792 | subs = [] | |
793 | removedsubs = set() |
|
793 | removedsubs = set() | |
794 | for p in wctx.parents(): |
|
794 | for p in wctx.parents(): | |
795 | removedsubs.update(s for s in p.substate if match(s)) |
|
795 | removedsubs.update(s for s in p.substate if match(s)) | |
796 | for s in wctx.substate: |
|
796 | for s in wctx.substate: | |
797 | removedsubs.discard(s) |
|
797 | removedsubs.discard(s) | |
798 | if match(s) and wctx.sub(s).dirty(): |
|
798 | if match(s) and wctx.sub(s).dirty(): | |
799 | subs.append(s) |
|
799 | subs.append(s) | |
800 | if (subs or removedsubs) and '.hgsubstate' not in changes[0]: |
|
800 | if (subs or removedsubs) and '.hgsubstate' not in changes[0]: | |
801 | changes[0].insert(0, '.hgsubstate') |
|
801 | changes[0].insert(0, '.hgsubstate') | |
802 |
|
802 | |||
803 | # make sure all explicit patterns are matched |
|
803 | # make sure all explicit patterns are matched | |
804 | if not force and match.files(): |
|
804 | if not force and match.files(): | |
805 | matched = set(changes[0] + changes[1] + changes[2]) |
|
805 | matched = set(changes[0] + changes[1] + changes[2]) | |
806 |
|
806 | |||
807 | for f in match.files(): |
|
807 | for f in match.files(): | |
808 | if f == '.' or f in matched or f in wctx.substate: |
|
808 | if f == '.' or f in matched or f in wctx.substate: | |
809 | continue |
|
809 | continue | |
810 | if f in changes[3]: # missing |
|
810 | if f in changes[3]: # missing | |
811 | fail(f, _('file not found!')) |
|
811 | fail(f, _('file not found!')) | |
812 | if f in vdirs: # visited directory |
|
812 | if f in vdirs: # visited directory | |
813 | d = f + '/' |
|
813 | d = f + '/' | |
814 | for mf in matched: |
|
814 | for mf in matched: | |
815 | if mf.startswith(d): |
|
815 | if mf.startswith(d): | |
816 | break |
|
816 | break | |
817 | else: |
|
817 | else: | |
818 | fail(f, _("no match under directory!")) |
|
818 | fail(f, _("no match under directory!")) | |
819 | elif f not in self.dirstate: |
|
819 | elif f not in self.dirstate: | |
820 | fail(f, _("file not tracked!")) |
|
820 | fail(f, _("file not tracked!")) | |
821 |
|
821 | |||
822 | if (not force and not extra.get("close") and p2 == nullid |
|
822 | if (not force and not extra.get("close") and p2 == nullid | |
823 | and not (changes[0] or changes[1] or changes[2]) |
|
823 | and not (changes[0] or changes[1] or changes[2]) | |
824 | and self[None].branch() == self['.'].branch()): |
|
824 | and self[None].branch() == self['.'].branch()): | |
825 | return None |
|
825 | return None | |
826 |
|
826 | |||
827 | ms = mergemod.mergestate(self) |
|
827 | ms = mergemod.mergestate(self) | |
828 | for f in changes[0]: |
|
828 | for f in changes[0]: | |
829 | if f in ms and ms[f] == 'u': |
|
829 | if f in ms and ms[f] == 'u': | |
830 | raise util.Abort(_("unresolved merge conflicts " |
|
830 | raise util.Abort(_("unresolved merge conflicts " | |
831 | "(see hg resolve)")) |
|
831 | "(see hg resolve)")) | |
832 |
|
832 | |||
833 | cctx = context.workingctx(self, (p1, p2), text, user, date, |
|
833 | cctx = context.workingctx(self, (p1, p2), text, user, date, | |
834 | extra, changes) |
|
834 | extra, changes) | |
835 | if editor: |
|
835 | if editor: | |
836 | cctx._text = editor(self, cctx, subs) |
|
836 | cctx._text = editor(self, cctx, subs) | |
837 | edited = (text != cctx._text) |
|
837 | edited = (text != cctx._text) | |
838 |
|
838 | |||
839 | # commit subs |
|
839 | # commit subs | |
840 | if subs or removedsubs: |
|
840 | if subs or removedsubs: | |
841 | state = wctx.substate.copy() |
|
841 | state = wctx.substate.copy() | |
842 | for s in subs: |
|
842 | for s in subs: | |
843 | self.ui.status(_('committing subrepository %s\n') % s) |
|
843 | self.ui.status(_('committing subrepository %s\n') % s) | |
844 | sr = wctx.sub(s).commit(cctx._text, user, date) |
|
844 | sr = wctx.sub(s).commit(cctx._text, user, date) | |
845 | state[s] = (state[s][0], sr) |
|
845 | state[s] = (state[s][0], sr) | |
846 | subrepo.writestate(self, state) |
|
846 | subrepo.writestate(self, state) | |
847 |
|
847 | |||
848 | # Save commit message in case this transaction gets rolled back |
|
848 | # Save commit message in case this transaction gets rolled back | |
849 | # (e.g. by a pretxncommit hook). Leave the content alone on |
|
849 | # (e.g. by a pretxncommit hook). Leave the content alone on | |
850 | # the assumption that the user will use the same editor again. |
|
850 | # the assumption that the user will use the same editor again. | |
851 | msgfile = self.opener('last-message.txt', 'wb') |
|
851 | msgfile = self.opener('last-message.txt', 'wb') | |
852 | msgfile.write(cctx._text) |
|
852 | msgfile.write(cctx._text) | |
853 | msgfile.close() |
|
853 | msgfile.close() | |
854 |
|
854 | |||
855 | try: |
|
855 | try: | |
856 | hookp1, hookp2 = hex(p1), (p2 != nullid and hex(p2) or '') |
|
856 | hookp1, hookp2 = hex(p1), (p2 != nullid and hex(p2) or '') | |
857 | self.hook("precommit", throw=True, parent1=hookp1, parent2=hookp2) |
|
857 | self.hook("precommit", throw=True, parent1=hookp1, parent2=hookp2) | |
858 | ret = self.commitctx(cctx, True) |
|
858 | ret = self.commitctx(cctx, True) | |
859 | except: |
|
859 | except: | |
860 | if edited: |
|
860 | if edited: | |
861 | msgfn = self.pathto(msgfile.name[len(self.root)+1:]) |
|
861 | msgfn = self.pathto(msgfile.name[len(self.root)+1:]) | |
862 | self.ui.write( |
|
862 | self.ui.write( | |
863 | _('note: commit message saved in %s\n') % msgfn) |
|
863 | _('note: commit message saved in %s\n') % msgfn) | |
864 | raise |
|
864 | raise | |
865 |
|
865 | |||
866 | # update dirstate and mergestate |
|
866 | # update dirstate and mergestate | |
867 | for f in changes[0] + changes[1]: |
|
867 | for f in changes[0] + changes[1]: | |
868 | self.dirstate.normal(f) |
|
868 | self.dirstate.normal(f) | |
869 | for f in changes[2]: |
|
869 | for f in changes[2]: | |
870 | self.dirstate.forget(f) |
|
870 | self.dirstate.forget(f) | |
871 | self.dirstate.setparents(ret) |
|
871 | self.dirstate.setparents(ret) | |
872 | ms.reset() |
|
872 | ms.reset() | |
873 | finally: |
|
873 | finally: | |
874 | wlock.release() |
|
874 | wlock.release() | |
875 |
|
875 | |||
876 | self.hook("commit", node=hex(ret), parent1=hookp1, parent2=hookp2) |
|
876 | self.hook("commit", node=hex(ret), parent1=hookp1, parent2=hookp2) | |
877 | return ret |
|
877 | return ret | |
878 |
|
878 | |||
879 | def commitctx(self, ctx, error=False): |
|
879 | def commitctx(self, ctx, error=False): | |
880 | """Add a new revision to current repository. |
|
880 | """Add a new revision to current repository. | |
881 | Revision information is passed via the context argument. |
|
881 | Revision information is passed via the context argument. | |
882 | """ |
|
882 | """ | |
883 |
|
883 | |||
884 | tr = lock = None |
|
884 | tr = lock = None | |
885 | removed = ctx.removed() |
|
885 | removed = ctx.removed() | |
886 | p1, p2 = ctx.p1(), ctx.p2() |
|
886 | p1, p2 = ctx.p1(), ctx.p2() | |
887 | m1 = p1.manifest().copy() |
|
887 | m1 = p1.manifest().copy() | |
888 | m2 = p2.manifest() |
|
888 | m2 = p2.manifest() | |
889 | user = ctx.user() |
|
889 | user = ctx.user() | |
890 |
|
890 | |||
891 | lock = self.lock() |
|
891 | lock = self.lock() | |
892 | try: |
|
892 | try: | |
893 | tr = self.transaction() |
|
893 | tr = self.transaction() | |
894 | trp = weakref.proxy(tr) |
|
894 | trp = weakref.proxy(tr) | |
895 |
|
895 | |||
896 | # check in files |
|
896 | # check in files | |
897 | new = {} |
|
897 | new = {} | |
898 | changed = [] |
|
898 | changed = [] | |
899 | linkrev = len(self) |
|
899 | linkrev = len(self) | |
900 | for f in sorted(ctx.modified() + ctx.added()): |
|
900 | for f in sorted(ctx.modified() + ctx.added()): | |
901 | self.ui.note(f + "\n") |
|
901 | self.ui.note(f + "\n") | |
902 | try: |
|
902 | try: | |
903 | fctx = ctx[f] |
|
903 | fctx = ctx[f] | |
904 | new[f] = self._filecommit(fctx, m1, m2, linkrev, trp, |
|
904 | new[f] = self._filecommit(fctx, m1, m2, linkrev, trp, | |
905 | changed) |
|
905 | changed) | |
906 | m1.set(f, fctx.flags()) |
|
906 | m1.set(f, fctx.flags()) | |
907 | except OSError, inst: |
|
907 | except OSError, inst: | |
908 | self.ui.warn(_("trouble committing %s!\n") % f) |
|
908 | self.ui.warn(_("trouble committing %s!\n") % f) | |
909 | raise |
|
909 | raise | |
910 | except IOError, inst: |
|
910 | except IOError, inst: | |
911 | errcode = getattr(inst, 'errno', errno.ENOENT) |
|
911 | errcode = getattr(inst, 'errno', errno.ENOENT) | |
912 | if error or errcode and errcode != errno.ENOENT: |
|
912 | if error or errcode and errcode != errno.ENOENT: | |
913 | self.ui.warn(_("trouble committing %s!\n") % f) |
|
913 | self.ui.warn(_("trouble committing %s!\n") % f) | |
914 | raise |
|
914 | raise | |
915 | else: |
|
915 | else: | |
916 | removed.append(f) |
|
916 | removed.append(f) | |
917 |
|
917 | |||
918 | # update manifest |
|
918 | # update manifest | |
919 | m1.update(new) |
|
919 | m1.update(new) | |
920 | removed = [f for f in sorted(removed) if f in m1 or f in m2] |
|
920 | removed = [f for f in sorted(removed) if f in m1 or f in m2] | |
921 | drop = [f for f in removed if f in m1] |
|
921 | drop = [f for f in removed if f in m1] | |
922 | for f in drop: |
|
922 | for f in drop: | |
923 | del m1[f] |
|
923 | del m1[f] | |
924 | mn = self.manifest.add(m1, trp, linkrev, p1.manifestnode(), |
|
924 | mn = self.manifest.add(m1, trp, linkrev, p1.manifestnode(), | |
925 | p2.manifestnode(), (new, drop)) |
|
925 | p2.manifestnode(), (new, drop)) | |
926 |
|
926 | |||
927 | # update changelog |
|
927 | # update changelog | |
928 | self.changelog.delayupdate() |
|
928 | self.changelog.delayupdate() | |
929 | n = self.changelog.add(mn, changed + removed, ctx.description(), |
|
929 | n = self.changelog.add(mn, changed + removed, ctx.description(), | |
930 | trp, p1.node(), p2.node(), |
|
930 | trp, p1.node(), p2.node(), | |
931 | user, ctx.date(), ctx.extra().copy()) |
|
931 | user, ctx.date(), ctx.extra().copy()) | |
932 | p = lambda: self.changelog.writepending() and self.root or "" |
|
932 | p = lambda: self.changelog.writepending() and self.root or "" | |
933 | xp1, xp2 = p1.hex(), p2 and p2.hex() or '' |
|
933 | xp1, xp2 = p1.hex(), p2 and p2.hex() or '' | |
934 | self.hook('pretxncommit', throw=True, node=hex(n), parent1=xp1, |
|
934 | self.hook('pretxncommit', throw=True, node=hex(n), parent1=xp1, | |
935 | parent2=xp2, pending=p) |
|
935 | parent2=xp2, pending=p) | |
936 | self.changelog.finalize(trp) |
|
936 | self.changelog.finalize(trp) | |
937 | tr.close() |
|
937 | tr.close() | |
938 |
|
938 | |||
939 | if self._branchcache: |
|
939 | if self._branchcache: | |
940 | self.branchtags() |
|
940 | self.branchtags() | |
941 | return n |
|
941 | return n | |
942 | finally: |
|
942 | finally: | |
943 | del tr |
|
943 | del tr | |
944 | lock.release() |
|
944 | lock.release() | |
945 |
|
945 | |||
946 | def destroyed(self): |
|
946 | def destroyed(self): | |
947 | '''Inform the repository that nodes have been destroyed. |
|
947 | '''Inform the repository that nodes have been destroyed. | |
948 | Intended for use by strip and rollback, so there's a common |
|
948 | Intended for use by strip and rollback, so there's a common | |
949 | place for anything that has to be done after destroying history.''' |
|
949 | place for anything that has to be done after destroying history.''' | |
950 | # XXX it might be nice if we could take the list of destroyed |
|
950 | # XXX it might be nice if we could take the list of destroyed | |
951 | # nodes, but I don't see an easy way for rollback() to do that |
|
951 | # nodes, but I don't see an easy way for rollback() to do that | |
952 |
|
952 | |||
953 | # Ensure the persistent tag cache is updated. Doing it now |
|
953 | # Ensure the persistent tag cache is updated. Doing it now | |
954 | # means that the tag cache only has to worry about destroyed |
|
954 | # means that the tag cache only has to worry about destroyed | |
955 | # heads immediately after a strip/rollback. That in turn |
|
955 | # heads immediately after a strip/rollback. That in turn | |
956 | # guarantees that "cachetip == currenttip" (comparing both rev |
|
956 | # guarantees that "cachetip == currenttip" (comparing both rev | |
957 | # and node) always means no nodes have been added or destroyed. |
|
957 | # and node) always means no nodes have been added or destroyed. | |
958 |
|
958 | |||
959 | # XXX this is suboptimal when qrefresh'ing: we strip the current |
|
959 | # XXX this is suboptimal when qrefresh'ing: we strip the current | |
960 | # head, refresh the tag cache, then immediately add a new head. |
|
960 | # head, refresh the tag cache, then immediately add a new head. | |
961 | # But I think doing it this way is necessary for the "instant |
|
961 | # But I think doing it this way is necessary for the "instant | |
962 | # tag cache retrieval" case to work. |
|
962 | # tag cache retrieval" case to work. | |
963 | self.invalidatecaches() |
|
963 | self.invalidatecaches() | |
964 |
|
964 | |||
965 | def walk(self, match, node=None): |
|
965 | def walk(self, match, node=None): | |
966 | ''' |
|
966 | ''' | |
967 | walk recursively through the directory tree or a given |
|
967 | walk recursively through the directory tree or a given | |
968 | changeset, finding all files matched by the match |
|
968 | changeset, finding all files matched by the match | |
969 | function |
|
969 | function | |
970 | ''' |
|
970 | ''' | |
971 | return self[node].walk(match) |
|
971 | return self[node].walk(match) | |
972 |
|
972 | |||
973 | def status(self, node1='.', node2=None, match=None, |
|
973 | def status(self, node1='.', node2=None, match=None, | |
974 | ignored=False, clean=False, unknown=False): |
|
974 | ignored=False, clean=False, unknown=False): | |
975 | """return status of files between two nodes or node and working directory |
|
975 | """return status of files between two nodes or node and working directory | |
976 |
|
976 | |||
977 | If node1 is None, use the first dirstate parent instead. |
|
977 | If node1 is None, use the first dirstate parent instead. | |
978 | If node2 is None, compare node1 with working directory. |
|
978 | If node2 is None, compare node1 with working directory. | |
979 | """ |
|
979 | """ | |
980 |
|
980 | |||
981 | def mfmatches(ctx): |
|
981 | def mfmatches(ctx): | |
982 | mf = ctx.manifest().copy() |
|
982 | mf = ctx.manifest().copy() | |
983 | for fn in mf.keys(): |
|
983 | for fn in mf.keys(): | |
984 | if not match(fn): |
|
984 | if not match(fn): | |
985 | del mf[fn] |
|
985 | del mf[fn] | |
986 | return mf |
|
986 | return mf | |
987 |
|
987 | |||
988 | if isinstance(node1, context.changectx): |
|
988 | if isinstance(node1, context.changectx): | |
989 | ctx1 = node1 |
|
989 | ctx1 = node1 | |
990 | else: |
|
990 | else: | |
991 | ctx1 = self[node1] |
|
991 | ctx1 = self[node1] | |
992 | if isinstance(node2, context.changectx): |
|
992 | if isinstance(node2, context.changectx): | |
993 | ctx2 = node2 |
|
993 | ctx2 = node2 | |
994 | else: |
|
994 | else: | |
995 | ctx2 = self[node2] |
|
995 | ctx2 = self[node2] | |
996 |
|
996 | |||
997 | working = ctx2.rev() is None |
|
997 | working = ctx2.rev() is None | |
998 | parentworking = working and ctx1 == self['.'] |
|
998 | parentworking = working and ctx1 == self['.'] | |
999 | match = match or matchmod.always(self.root, self.getcwd()) |
|
999 | match = match or matchmod.always(self.root, self.getcwd()) | |
1000 | listignored, listclean, listunknown = ignored, clean, unknown |
|
1000 | listignored, listclean, listunknown = ignored, clean, unknown | |
1001 |
|
1001 | |||
1002 | # load earliest manifest first for caching reasons |
|
1002 | # load earliest manifest first for caching reasons | |
1003 | if not working and ctx2.rev() < ctx1.rev(): |
|
1003 | if not working and ctx2.rev() < ctx1.rev(): | |
1004 | ctx2.manifest() |
|
1004 | ctx2.manifest() | |
1005 |
|
1005 | |||
1006 | if not parentworking: |
|
1006 | if not parentworking: | |
1007 | def bad(f, msg): |
|
1007 | def bad(f, msg): | |
1008 | if f not in ctx1: |
|
1008 | if f not in ctx1: | |
1009 | self.ui.warn('%s: %s\n' % (self.dirstate.pathto(f), msg)) |
|
1009 | self.ui.warn('%s: %s\n' % (self.dirstate.pathto(f), msg)) | |
1010 | match.bad = bad |
|
1010 | match.bad = bad | |
1011 |
|
1011 | |||
1012 | if working: # we need to scan the working dir |
|
1012 | if working: # we need to scan the working dir | |
1013 | subrepos = ctx1.substate.keys() |
|
1013 | subrepos = ctx1.substate.keys() | |
1014 | s = self.dirstate.status(match, subrepos, listignored, |
|
1014 | s = self.dirstate.status(match, subrepos, listignored, | |
1015 | listclean, listunknown) |
|
1015 | listclean, listunknown) | |
1016 | cmp, modified, added, removed, deleted, unknown, ignored, clean = s |
|
1016 | cmp, modified, added, removed, deleted, unknown, ignored, clean = s | |
1017 |
|
1017 | |||
1018 | # check for any possibly clean files |
|
1018 | # check for any possibly clean files | |
1019 | if parentworking and cmp: |
|
1019 | if parentworking and cmp: | |
1020 | fixup = [] |
|
1020 | fixup = [] | |
1021 | # do a full compare of any files that might have changed |
|
1021 | # do a full compare of any files that might have changed | |
1022 | for f in sorted(cmp): |
|
1022 | for f in sorted(cmp): | |
1023 | if (f not in ctx1 or ctx2.flags(f) != ctx1.flags(f) |
|
1023 | if (f not in ctx1 or ctx2.flags(f) != ctx1.flags(f) | |
1024 | or ctx1[f].cmp(ctx2[f].data())): |
|
1024 | or ctx1[f].cmp(ctx2[f].data())): | |
1025 | modified.append(f) |
|
1025 | modified.append(f) | |
1026 | else: |
|
1026 | else: | |
1027 | fixup.append(f) |
|
1027 | fixup.append(f) | |
1028 |
|
1028 | |||
1029 | if listclean: |
|
1029 | if listclean: | |
1030 | clean += fixup |
|
1030 | clean += fixup | |
1031 |
|
1031 | |||
1032 | # update dirstate for files that are actually clean |
|
1032 | # update dirstate for files that are actually clean | |
1033 | if fixup: |
|
1033 | if fixup: | |
1034 | try: |
|
1034 | try: | |
1035 | # updating the dirstate is optional |
|
1035 | # updating the dirstate is optional | |
1036 | # so we don't wait on the lock |
|
1036 | # so we don't wait on the lock | |
1037 | wlock = self.wlock(False) |
|
1037 | wlock = self.wlock(False) | |
1038 | try: |
|
1038 | try: | |
1039 | for f in fixup: |
|
1039 | for f in fixup: | |
1040 | self.dirstate.normal(f) |
|
1040 | self.dirstate.normal(f) | |
1041 | finally: |
|
1041 | finally: | |
1042 | wlock.release() |
|
1042 | wlock.release() | |
1043 | except error.LockError: |
|
1043 | except error.LockError: | |
1044 | pass |
|
1044 | pass | |
1045 |
|
1045 | |||
1046 | if not parentworking: |
|
1046 | if not parentworking: | |
1047 | mf1 = mfmatches(ctx1) |
|
1047 | mf1 = mfmatches(ctx1) | |
1048 | if working: |
|
1048 | if working: | |
1049 | # we are comparing working dir against non-parent |
|
1049 | # we are comparing working dir against non-parent | |
1050 | # generate a pseudo-manifest for the working dir |
|
1050 | # generate a pseudo-manifest for the working dir | |
1051 | mf2 = mfmatches(self['.']) |
|
1051 | mf2 = mfmatches(self['.']) | |
1052 | for f in cmp + modified + added: |
|
1052 | for f in cmp + modified + added: | |
1053 | mf2[f] = None |
|
1053 | mf2[f] = None | |
1054 | mf2.set(f, ctx2.flags(f)) |
|
1054 | mf2.set(f, ctx2.flags(f)) | |
1055 | for f in removed: |
|
1055 | for f in removed: | |
1056 | if f in mf2: |
|
1056 | if f in mf2: | |
1057 | del mf2[f] |
|
1057 | del mf2[f] | |
1058 | else: |
|
1058 | else: | |
1059 | # we are comparing two revisions |
|
1059 | # we are comparing two revisions | |
1060 | deleted, unknown, ignored = [], [], [] |
|
1060 | deleted, unknown, ignored = [], [], [] | |
1061 | mf2 = mfmatches(ctx2) |
|
1061 | mf2 = mfmatches(ctx2) | |
1062 |
|
1062 | |||
1063 | modified, added, clean = [], [], [] |
|
1063 | modified, added, clean = [], [], [] | |
1064 | for fn in mf2: |
|
1064 | for fn in mf2: | |
1065 | if fn in mf1: |
|
1065 | if fn in mf1: | |
1066 | if (mf1.flags(fn) != mf2.flags(fn) or |
|
1066 | if (mf1.flags(fn) != mf2.flags(fn) or | |
1067 | (mf1[fn] != mf2[fn] and |
|
1067 | (mf1[fn] != mf2[fn] and | |
1068 | (mf2[fn] or ctx1[fn].cmp(ctx2[fn].data())))): |
|
1068 | (mf2[fn] or ctx1[fn].cmp(ctx2[fn].data())))): | |
1069 | modified.append(fn) |
|
1069 | modified.append(fn) | |
1070 | elif listclean: |
|
1070 | elif listclean: | |
1071 | clean.append(fn) |
|
1071 | clean.append(fn) | |
1072 | del mf1[fn] |
|
1072 | del mf1[fn] | |
1073 | else: |
|
1073 | else: | |
1074 | added.append(fn) |
|
1074 | added.append(fn) | |
1075 | removed = mf1.keys() |
|
1075 | removed = mf1.keys() | |
1076 |
|
1076 | |||
1077 | r = modified, added, removed, deleted, unknown, ignored, clean |
|
1077 | r = modified, added, removed, deleted, unknown, ignored, clean | |
1078 | [l.sort() for l in r] |
|
1078 | [l.sort() for l in r] | |
1079 | return r |
|
1079 | return r | |
1080 |
|
1080 | |||
1081 | def add(self, list): |
|
1081 | def add(self, list): | |
1082 | wlock = self.wlock() |
|
1082 | wlock = self.wlock() | |
1083 | try: |
|
1083 | try: | |
1084 | rejected = [] |
|
1084 | rejected = [] | |
1085 | for f in list: |
|
1085 | for f in list: | |
1086 | p = self.wjoin(f) |
|
1086 | p = self.wjoin(f) | |
1087 | try: |
|
1087 | try: | |
1088 | st = os.lstat(p) |
|
1088 | st = os.lstat(p) | |
1089 | except: |
|
1089 | except: | |
1090 | self.ui.warn(_("%s does not exist!\n") % f) |
|
1090 | self.ui.warn(_("%s does not exist!\n") % f) | |
1091 | rejected.append(f) |
|
1091 | rejected.append(f) | |
1092 | continue |
|
1092 | continue | |
1093 | if st.st_size > 10000000: |
|
1093 | if st.st_size > 10000000: | |
1094 | self.ui.warn(_("%s: up to %d MB of RAM may be required " |
|
1094 | self.ui.warn(_("%s: up to %d MB of RAM may be required " | |
1095 | "to manage this file\n" |
|
1095 | "to manage this file\n" | |
1096 | "(use 'hg revert %s' to cancel the " |
|
1096 | "(use 'hg revert %s' to cancel the " | |
1097 | "pending addition)\n") |
|
1097 | "pending addition)\n") | |
1098 | % (f, 3 * st.st_size // 1000000, f)) |
|
1098 | % (f, 3 * st.st_size // 1000000, f)) | |
1099 | if not (stat.S_ISREG(st.st_mode) or stat.S_ISLNK(st.st_mode)): |
|
1099 | if not (stat.S_ISREG(st.st_mode) or stat.S_ISLNK(st.st_mode)): | |
1100 | self.ui.warn(_("%s not added: only files and symlinks " |
|
1100 | self.ui.warn(_("%s not added: only files and symlinks " | |
1101 | "supported currently\n") % f) |
|
1101 | "supported currently\n") % f) | |
1102 | rejected.append(p) |
|
1102 | rejected.append(p) | |
1103 | elif self.dirstate[f] in 'amn': |
|
1103 | elif self.dirstate[f] in 'amn': | |
1104 | self.ui.warn(_("%s already tracked!\n") % f) |
|
1104 | self.ui.warn(_("%s already tracked!\n") % f) | |
1105 | elif self.dirstate[f] == 'r': |
|
1105 | elif self.dirstate[f] == 'r': | |
1106 | self.dirstate.normallookup(f) |
|
1106 | self.dirstate.normallookup(f) | |
1107 | else: |
|
1107 | else: | |
1108 | self.dirstate.add(f) |
|
1108 | self.dirstate.add(f) | |
1109 | return rejected |
|
1109 | return rejected | |
1110 | finally: |
|
1110 | finally: | |
1111 | wlock.release() |
|
1111 | wlock.release() | |
1112 |
|
1112 | |||
1113 | def forget(self, list): |
|
1113 | def forget(self, list): | |
1114 | wlock = self.wlock() |
|
1114 | wlock = self.wlock() | |
1115 | try: |
|
1115 | try: | |
1116 | for f in list: |
|
1116 | for f in list: | |
1117 | if self.dirstate[f] != 'a': |
|
1117 | if self.dirstate[f] != 'a': | |
1118 | self.ui.warn(_("%s not added!\n") % f) |
|
1118 | self.ui.warn(_("%s not added!\n") % f) | |
1119 | else: |
|
1119 | else: | |
1120 | self.dirstate.forget(f) |
|
1120 | self.dirstate.forget(f) | |
1121 | finally: |
|
1121 | finally: | |
1122 | wlock.release() |
|
1122 | wlock.release() | |
1123 |
|
1123 | |||
1124 | def remove(self, list, unlink=False): |
|
1124 | def remove(self, list, unlink=False): | |
1125 | if unlink: |
|
1125 | if unlink: | |
1126 | for f in list: |
|
1126 | for f in list: | |
1127 | try: |
|
1127 | try: | |
1128 | util.unlink(self.wjoin(f)) |
|
1128 | util.unlink(self.wjoin(f)) | |
1129 | except OSError, inst: |
|
1129 | except OSError, inst: | |
1130 | if inst.errno != errno.ENOENT: |
|
1130 | if inst.errno != errno.ENOENT: | |
1131 | raise |
|
1131 | raise | |
1132 | wlock = self.wlock() |
|
1132 | wlock = self.wlock() | |
1133 | try: |
|
1133 | try: | |
1134 | for f in list: |
|
1134 | for f in list: | |
1135 | if unlink and os.path.exists(self.wjoin(f)): |
|
1135 | if unlink and os.path.exists(self.wjoin(f)): | |
1136 | self.ui.warn(_("%s still exists!\n") % f) |
|
1136 | self.ui.warn(_("%s still exists!\n") % f) | |
1137 | elif self.dirstate[f] == 'a': |
|
1137 | elif self.dirstate[f] == 'a': | |
1138 | self.dirstate.forget(f) |
|
1138 | self.dirstate.forget(f) | |
1139 | elif f not in self.dirstate: |
|
1139 | elif f not in self.dirstate: | |
1140 | self.ui.warn(_("%s not tracked!\n") % f) |
|
1140 | self.ui.warn(_("%s not tracked!\n") % f) | |
1141 | else: |
|
1141 | else: | |
1142 | self.dirstate.remove(f) |
|
1142 | self.dirstate.remove(f) | |
1143 | finally: |
|
1143 | finally: | |
1144 | wlock.release() |
|
1144 | wlock.release() | |
1145 |
|
1145 | |||
1146 | def undelete(self, list): |
|
1146 | def undelete(self, list): | |
1147 | manifests = [self.manifest.read(self.changelog.read(p)[0]) |
|
1147 | manifests = [self.manifest.read(self.changelog.read(p)[0]) | |
1148 | for p in self.dirstate.parents() if p != nullid] |
|
1148 | for p in self.dirstate.parents() if p != nullid] | |
1149 | wlock = self.wlock() |
|
1149 | wlock = self.wlock() | |
1150 | try: |
|
1150 | try: | |
1151 | for f in list: |
|
1151 | for f in list: | |
1152 | if self.dirstate[f] != 'r': |
|
1152 | if self.dirstate[f] != 'r': | |
1153 | self.ui.warn(_("%s not removed!\n") % f) |
|
1153 | self.ui.warn(_("%s not removed!\n") % f) | |
1154 | else: |
|
1154 | else: | |
1155 | m = f in manifests[0] and manifests[0] or manifests[1] |
|
1155 | m = f in manifests[0] and manifests[0] or manifests[1] | |
1156 | t = self.file(f).read(m[f]) |
|
1156 | t = self.file(f).read(m[f]) | |
1157 | self.wwrite(f, t, m.flags(f)) |
|
1157 | self.wwrite(f, t, m.flags(f)) | |
1158 | self.dirstate.normal(f) |
|
1158 | self.dirstate.normal(f) | |
1159 | finally: |
|
1159 | finally: | |
1160 | wlock.release() |
|
1160 | wlock.release() | |
1161 |
|
1161 | |||
1162 | def copy(self, source, dest): |
|
1162 | def copy(self, source, dest): | |
1163 | p = self.wjoin(dest) |
|
1163 | p = self.wjoin(dest) | |
1164 | if not (os.path.exists(p) or os.path.islink(p)): |
|
1164 | if not (os.path.exists(p) or os.path.islink(p)): | |
1165 | self.ui.warn(_("%s does not exist!\n") % dest) |
|
1165 | self.ui.warn(_("%s does not exist!\n") % dest) | |
1166 | elif not (os.path.isfile(p) or os.path.islink(p)): |
|
1166 | elif not (os.path.isfile(p) or os.path.islink(p)): | |
1167 | self.ui.warn(_("copy failed: %s is not a file or a " |
|
1167 | self.ui.warn(_("copy failed: %s is not a file or a " | |
1168 | "symbolic link\n") % dest) |
|
1168 | "symbolic link\n") % dest) | |
1169 | else: |
|
1169 | else: | |
1170 | wlock = self.wlock() |
|
1170 | wlock = self.wlock() | |
1171 | try: |
|
1171 | try: | |
1172 | if self.dirstate[dest] in '?r': |
|
1172 | if self.dirstate[dest] in '?r': | |
1173 | self.dirstate.add(dest) |
|
1173 | self.dirstate.add(dest) | |
1174 | self.dirstate.copy(source, dest) |
|
1174 | self.dirstate.copy(source, dest) | |
1175 | finally: |
|
1175 | finally: | |
1176 | wlock.release() |
|
1176 | wlock.release() | |
1177 |
|
1177 | |||
1178 | def heads(self, start=None): |
|
1178 | def heads(self, start=None): | |
1179 | heads = self.changelog.heads(start) |
|
1179 | heads = self.changelog.heads(start) | |
1180 | # sort the output in rev descending order |
|
1180 | # sort the output in rev descending order | |
1181 | heads = [(-self.changelog.rev(h), h) for h in heads] |
|
1181 | heads = [(-self.changelog.rev(h), h) for h in heads] | |
1182 | return [n for (r, n) in sorted(heads)] |
|
1182 | return [n for (r, n) in sorted(heads)] | |
1183 |
|
1183 | |||
1184 | def branchheads(self, branch=None, start=None, closed=False): |
|
1184 | def branchheads(self, branch=None, start=None, closed=False): | |
1185 | '''return a (possibly filtered) list of heads for the given branch |
|
1185 | '''return a (possibly filtered) list of heads for the given branch | |
1186 |
|
1186 | |||
1187 | Heads are returned in topological order, from newest to oldest. |
|
1187 | Heads are returned in topological order, from newest to oldest. | |
1188 | If branch is None, use the dirstate branch. |
|
1188 | If branch is None, use the dirstate branch. | |
1189 | If start is not None, return only heads reachable from start. |
|
1189 | If start is not None, return only heads reachable from start. | |
1190 | If closed is True, return heads that are marked as closed as well. |
|
1190 | If closed is True, return heads that are marked as closed as well. | |
1191 | ''' |
|
1191 | ''' | |
1192 | if branch is None: |
|
1192 | if branch is None: | |
1193 | branch = self[None].branch() |
|
1193 | branch = self[None].branch() | |
1194 | branches = self.branchmap() |
|
1194 | branches = self.branchmap() | |
1195 | if branch not in branches: |
|
1195 | if branch not in branches: | |
1196 | return [] |
|
1196 | return [] | |
1197 | # the cache returns heads ordered lowest to highest |
|
1197 | # the cache returns heads ordered lowest to highest | |
1198 | bheads = list(reversed(branches[branch])) |
|
1198 | bheads = list(reversed(branches[branch])) | |
1199 | if start is not None: |
|
1199 | if start is not None: | |
1200 | # filter out the heads that cannot be reached from startrev |
|
1200 | # filter out the heads that cannot be reached from startrev | |
1201 | fbheads = set(self.changelog.nodesbetween([start], bheads)[2]) |
|
1201 | fbheads = set(self.changelog.nodesbetween([start], bheads)[2]) | |
1202 | bheads = [h for h in bheads if h in fbheads] |
|
1202 | bheads = [h for h in bheads if h in fbheads] | |
1203 | if not closed: |
|
1203 | if not closed: | |
1204 | bheads = [h for h in bheads if |
|
1204 | bheads = [h for h in bheads if | |
1205 | ('close' not in self.changelog.read(h)[5])] |
|
1205 | ('close' not in self.changelog.read(h)[5])] | |
1206 | return bheads |
|
1206 | return bheads | |
1207 |
|
1207 | |||
1208 | def branches(self, nodes): |
|
1208 | def branches(self, nodes): | |
1209 | if not nodes: |
|
1209 | if not nodes: | |
1210 | nodes = [self.changelog.tip()] |
|
1210 | nodes = [self.changelog.tip()] | |
1211 | b = [] |
|
1211 | b = [] | |
1212 | for n in nodes: |
|
1212 | for n in nodes: | |
1213 | t = n |
|
1213 | t = n | |
1214 | while 1: |
|
1214 | while 1: | |
1215 | p = self.changelog.parents(n) |
|
1215 | p = self.changelog.parents(n) | |
1216 | if p[1] != nullid or p[0] == nullid: |
|
1216 | if p[1] != nullid or p[0] == nullid: | |
1217 | b.append((t, n, p[0], p[1])) |
|
1217 | b.append((t, n, p[0], p[1])) | |
1218 | break |
|
1218 | break | |
1219 | n = p[0] |
|
1219 | n = p[0] | |
1220 | return b |
|
1220 | return b | |
1221 |
|
1221 | |||
1222 | def between(self, pairs): |
|
1222 | def between(self, pairs): | |
1223 | r = [] |
|
1223 | r = [] | |
1224 |
|
1224 | |||
1225 | for top, bottom in pairs: |
|
1225 | for top, bottom in pairs: | |
1226 | n, l, i = top, [], 0 |
|
1226 | n, l, i = top, [], 0 | |
1227 | f = 1 |
|
1227 | f = 1 | |
1228 |
|
1228 | |||
1229 | while n != bottom and n != nullid: |
|
1229 | while n != bottom and n != nullid: | |
1230 | p = self.changelog.parents(n)[0] |
|
1230 | p = self.changelog.parents(n)[0] | |
1231 | if i == f: |
|
1231 | if i == f: | |
1232 | l.append(n) |
|
1232 | l.append(n) | |
1233 | f = f * 2 |
|
1233 | f = f * 2 | |
1234 | n = p |
|
1234 | n = p | |
1235 | i += 1 |
|
1235 | i += 1 | |
1236 |
|
1236 | |||
1237 | r.append(l) |
|
1237 | r.append(l) | |
1238 |
|
1238 | |||
1239 | return r |
|
1239 | return r | |
1240 |
|
1240 | |||
1241 | def findincoming(self, remote, base=None, heads=None, force=False): |
|
1241 | def findincoming(self, remote, base=None, heads=None, force=False): | |
1242 | """Return list of roots of the subsets of missing nodes from remote |
|
1242 | """Return list of roots of the subsets of missing nodes from remote | |
1243 |
|
1243 | |||
1244 | If base dict is specified, assume that these nodes and their parents |
|
1244 | If base dict is specified, assume that these nodes and their parents | |
1245 | exist on the remote side and that no child of a node of base exists |
|
1245 | exist on the remote side and that no child of a node of base exists | |
1246 | in both remote and self. |
|
1246 | in both remote and self. | |
1247 | Furthermore base will be updated to include the nodes that exists |
|
1247 | Furthermore base will be updated to include the nodes that exists | |
1248 | in self and remote but no children exists in self and remote. |
|
1248 | in self and remote but no children exists in self and remote. | |
1249 | If a list of heads is specified, return only nodes which are heads |
|
1249 | If a list of heads is specified, return only nodes which are heads | |
1250 | or ancestors of these heads. |
|
1250 | or ancestors of these heads. | |
1251 |
|
1251 | |||
1252 | All the ancestors of base are in self and in remote. |
|
1252 | All the ancestors of base are in self and in remote. | |
1253 | All the descendants of the list returned are missing in self. |
|
1253 | All the descendants of the list returned are missing in self. | |
1254 | (and so we know that the rest of the nodes are missing in remote, see |
|
1254 | (and so we know that the rest of the nodes are missing in remote, see | |
1255 | outgoing) |
|
1255 | outgoing) | |
1256 | """ |
|
1256 | """ | |
1257 | return self.findcommonincoming(remote, base, heads, force)[1] |
|
1257 | return self.findcommonincoming(remote, base, heads, force)[1] | |
1258 |
|
1258 | |||
1259 | def findcommonincoming(self, remote, base=None, heads=None, force=False): |
|
1259 | def findcommonincoming(self, remote, base=None, heads=None, force=False): | |
1260 | """Return a tuple (common, missing roots, heads) used to identify |
|
1260 | """Return a tuple (common, missing roots, heads) used to identify | |
1261 | missing nodes from remote. |
|
1261 | missing nodes from remote. | |
1262 |
|
1262 | |||
1263 | If base dict is specified, assume that these nodes and their parents |
|
1263 | If base dict is specified, assume that these nodes and their parents | |
1264 | exist on the remote side and that no child of a node of base exists |
|
1264 | exist on the remote side and that no child of a node of base exists | |
1265 | in both remote and self. |
|
1265 | in both remote and self. | |
1266 | Furthermore base will be updated to include the nodes that exists |
|
1266 | Furthermore base will be updated to include the nodes that exists | |
1267 | in self and remote but no children exists in self and remote. |
|
1267 | in self and remote but no children exists in self and remote. | |
1268 | If a list of heads is specified, return only nodes which are heads |
|
1268 | If a list of heads is specified, return only nodes which are heads | |
1269 | or ancestors of these heads. |
|
1269 | or ancestors of these heads. | |
1270 |
|
1270 | |||
1271 | All the ancestors of base are in self and in remote. |
|
1271 | All the ancestors of base are in self and in remote. | |
1272 | """ |
|
1272 | """ | |
1273 | m = self.changelog.nodemap |
|
1273 | m = self.changelog.nodemap | |
1274 | search = [] |
|
1274 | search = [] | |
1275 | fetch = set() |
|
1275 | fetch = set() | |
1276 | seen = set() |
|
1276 | seen = set() | |
1277 | seenbranch = set() |
|
1277 | seenbranch = set() | |
1278 | if base is None: |
|
1278 | if base is None: | |
1279 | base = {} |
|
1279 | base = {} | |
1280 |
|
1280 | |||
1281 | if not heads: |
|
1281 | if not heads: | |
1282 | heads = remote.heads() |
|
1282 | heads = remote.heads() | |
1283 |
|
1283 | |||
1284 | if self.changelog.tip() == nullid: |
|
1284 | if self.changelog.tip() == nullid: | |
1285 | base[nullid] = 1 |
|
1285 | base[nullid] = 1 | |
1286 | if heads != [nullid]: |
|
1286 | if heads != [nullid]: | |
1287 | return [nullid], [nullid], list(heads) |
|
1287 | return [nullid], [nullid], list(heads) | |
1288 | return [nullid], [], [] |
|
1288 | return [nullid], [], [] | |
1289 |
|
1289 | |||
1290 | # assume we're closer to the tip than the root |
|
1290 | # assume we're closer to the tip than the root | |
1291 | # and start by examining the heads |
|
1291 | # and start by examining the heads | |
1292 | self.ui.status(_("searching for changes\n")) |
|
1292 | self.ui.status(_("searching for changes\n")) | |
1293 |
|
1293 | |||
1294 | unknown = [] |
|
1294 | unknown = [] | |
1295 | for h in heads: |
|
1295 | for h in heads: | |
1296 | if h not in m: |
|
1296 | if h not in m: | |
1297 | unknown.append(h) |
|
1297 | unknown.append(h) | |
1298 | else: |
|
1298 | else: | |
1299 | base[h] = 1 |
|
1299 | base[h] = 1 | |
1300 |
|
1300 | |||
1301 | heads = unknown |
|
1301 | heads = unknown | |
1302 | if not unknown: |
|
1302 | if not unknown: | |
1303 | return base.keys(), [], [] |
|
1303 | return base.keys(), [], [] | |
1304 |
|
1304 | |||
1305 | req = set(unknown) |
|
1305 | req = set(unknown) | |
1306 | reqcnt = 0 |
|
1306 | reqcnt = 0 | |
1307 |
|
1307 | |||
1308 | # search through remote branches |
|
1308 | # search through remote branches | |
1309 | # a 'branch' here is a linear segment of history, with four parts: |
|
1309 | # a 'branch' here is a linear segment of history, with four parts: | |
1310 | # head, root, first parent, second parent |
|
1310 | # head, root, first parent, second parent | |
1311 | # (a branch always has two parents (or none) by definition) |
|
1311 | # (a branch always has two parents (or none) by definition) | |
1312 | unknown = remote.branches(unknown) |
|
1312 | unknown = remote.branches(unknown) | |
1313 | while unknown: |
|
1313 | while unknown: | |
1314 | r = [] |
|
1314 | r = [] | |
1315 | while unknown: |
|
1315 | while unknown: | |
1316 | n = unknown.pop(0) |
|
1316 | n = unknown.pop(0) | |
1317 | if n[0] in seen: |
|
1317 | if n[0] in seen: | |
1318 | continue |
|
1318 | continue | |
1319 |
|
1319 | |||
1320 | self.ui.debug("examining %s:%s\n" |
|
1320 | self.ui.debug("examining %s:%s\n" | |
1321 | % (short(n[0]), short(n[1]))) |
|
1321 | % (short(n[0]), short(n[1]))) | |
1322 | if n[0] == nullid: # found the end of the branch |
|
1322 | if n[0] == nullid: # found the end of the branch | |
1323 | pass |
|
1323 | pass | |
1324 | elif n in seenbranch: |
|
1324 | elif n in seenbranch: | |
1325 | self.ui.debug("branch already found\n") |
|
1325 | self.ui.debug("branch already found\n") | |
1326 | continue |
|
1326 | continue | |
1327 | elif n[1] and n[1] in m: # do we know the base? |
|
1327 | elif n[1] and n[1] in m: # do we know the base? | |
1328 | self.ui.debug("found incomplete branch %s:%s\n" |
|
1328 | self.ui.debug("found incomplete branch %s:%s\n" | |
1329 | % (short(n[0]), short(n[1]))) |
|
1329 | % (short(n[0]), short(n[1]))) | |
1330 | search.append(n[0:2]) # schedule branch range for scanning |
|
1330 | search.append(n[0:2]) # schedule branch range for scanning | |
1331 | seenbranch.add(n) |
|
1331 | seenbranch.add(n) | |
1332 | else: |
|
1332 | else: | |
1333 | if n[1] not in seen and n[1] not in fetch: |
|
1333 | if n[1] not in seen and n[1] not in fetch: | |
1334 | if n[2] in m and n[3] in m: |
|
1334 | if n[2] in m and n[3] in m: | |
1335 | self.ui.debug("found new changeset %s\n" % |
|
1335 | self.ui.debug("found new changeset %s\n" % | |
1336 | short(n[1])) |
|
1336 | short(n[1])) | |
1337 | fetch.add(n[1]) # earliest unknown |
|
1337 | fetch.add(n[1]) # earliest unknown | |
1338 | for p in n[2:4]: |
|
1338 | for p in n[2:4]: | |
1339 | if p in m: |
|
1339 | if p in m: | |
1340 | base[p] = 1 # latest known |
|
1340 | base[p] = 1 # latest known | |
1341 |
|
1341 | |||
1342 | for p in n[2:4]: |
|
1342 | for p in n[2:4]: | |
1343 | if p not in req and p not in m: |
|
1343 | if p not in req and p not in m: | |
1344 | r.append(p) |
|
1344 | r.append(p) | |
1345 | req.add(p) |
|
1345 | req.add(p) | |
1346 | seen.add(n[0]) |
|
1346 | seen.add(n[0]) | |
1347 |
|
1347 | |||
1348 | if r: |
|
1348 | if r: | |
1349 | reqcnt += 1 |
|
1349 | reqcnt += 1 | |
1350 | self.ui.progress(_('searching'), reqcnt, unit=_('queries')) |
|
1350 | self.ui.progress(_('searching'), reqcnt, unit=_('queries')) | |
1351 | self.ui.debug("request %d: %s\n" % |
|
1351 | self.ui.debug("request %d: %s\n" % | |
1352 | (reqcnt, " ".join(map(short, r)))) |
|
1352 | (reqcnt, " ".join(map(short, r)))) | |
1353 | for p in xrange(0, len(r), 10): |
|
1353 | for p in xrange(0, len(r), 10): | |
1354 | for b in remote.branches(r[p:p + 10]): |
|
1354 | for b in remote.branches(r[p:p + 10]): | |
1355 | self.ui.debug("received %s:%s\n" % |
|
1355 | self.ui.debug("received %s:%s\n" % | |
1356 | (short(b[0]), short(b[1]))) |
|
1356 | (short(b[0]), short(b[1]))) | |
1357 | unknown.append(b) |
|
1357 | unknown.append(b) | |
1358 |
|
1358 | |||
1359 | # do binary search on the branches we found |
|
1359 | # do binary search on the branches we found | |
1360 | while search: |
|
1360 | while search: | |
1361 | newsearch = [] |
|
1361 | newsearch = [] | |
1362 | reqcnt += 1 |
|
1362 | reqcnt += 1 | |
1363 | self.ui.progress(_('searching'), reqcnt, unit=_('queries')) |
|
1363 | self.ui.progress(_('searching'), reqcnt, unit=_('queries')) | |
1364 | for n, l in zip(search, remote.between(search)): |
|
1364 | for n, l in zip(search, remote.between(search)): | |
1365 | l.append(n[1]) |
|
1365 | l.append(n[1]) | |
1366 | p = n[0] |
|
1366 | p = n[0] | |
1367 | f = 1 |
|
1367 | f = 1 | |
1368 | for i in l: |
|
1368 | for i in l: | |
1369 | self.ui.debug("narrowing %d:%d %s\n" % (f, len(l), short(i))) |
|
1369 | self.ui.debug("narrowing %d:%d %s\n" % (f, len(l), short(i))) | |
1370 | if i in m: |
|
1370 | if i in m: | |
1371 | if f <= 2: |
|
1371 | if f <= 2: | |
1372 | self.ui.debug("found new branch changeset %s\n" % |
|
1372 | self.ui.debug("found new branch changeset %s\n" % | |
1373 | short(p)) |
|
1373 | short(p)) | |
1374 | fetch.add(p) |
|
1374 | fetch.add(p) | |
1375 | base[i] = 1 |
|
1375 | base[i] = 1 | |
1376 | else: |
|
1376 | else: | |
1377 | self.ui.debug("narrowed branch search to %s:%s\n" |
|
1377 | self.ui.debug("narrowed branch search to %s:%s\n" | |
1378 | % (short(p), short(i))) |
|
1378 | % (short(p), short(i))) | |
1379 | newsearch.append((p, i)) |
|
1379 | newsearch.append((p, i)) | |
1380 | break |
|
1380 | break | |
1381 | p, f = i, f * 2 |
|
1381 | p, f = i, f * 2 | |
1382 | search = newsearch |
|
1382 | search = newsearch | |
1383 |
|
1383 | |||
1384 | # sanity check our fetch list |
|
1384 | # sanity check our fetch list | |
1385 | for f in fetch: |
|
1385 | for f in fetch: | |
1386 | if f in m: |
|
1386 | if f in m: | |
1387 | raise error.RepoError(_("already have changeset ") |
|
1387 | raise error.RepoError(_("already have changeset ") | |
1388 | + short(f[:4])) |
|
1388 | + short(f[:4])) | |
1389 |
|
1389 | |||
1390 | if base.keys() == [nullid]: |
|
1390 | if base.keys() == [nullid]: | |
1391 | if force: |
|
1391 | if force: | |
1392 | self.ui.warn(_("warning: repository is unrelated\n")) |
|
1392 | self.ui.warn(_("warning: repository is unrelated\n")) | |
1393 | else: |
|
1393 | else: | |
1394 | raise util.Abort(_("repository is unrelated")) |
|
1394 | raise util.Abort(_("repository is unrelated")) | |
1395 |
|
1395 | |||
1396 | self.ui.debug("found new changesets starting at " + |
|
1396 | self.ui.debug("found new changesets starting at " + | |
1397 | " ".join([short(f) for f in fetch]) + "\n") |
|
1397 | " ".join([short(f) for f in fetch]) + "\n") | |
1398 |
|
1398 | |||
1399 | self.ui.progress(_('searching'), None) |
|
1399 | self.ui.progress(_('searching'), None) | |
1400 | self.ui.debug("%d total queries\n" % reqcnt) |
|
1400 | self.ui.debug("%d total queries\n" % reqcnt) | |
1401 |
|
1401 | |||
1402 | return base.keys(), list(fetch), heads |
|
1402 | return base.keys(), list(fetch), heads | |
1403 |
|
1403 | |||
1404 | def findoutgoing(self, remote, base=None, heads=None, force=False): |
|
1404 | def findoutgoing(self, remote, base=None, heads=None, force=False): | |
1405 | """Return list of nodes that are roots of subsets not in remote |
|
1405 | """Return list of nodes that are roots of subsets not in remote | |
1406 |
|
1406 | |||
1407 | If base dict is specified, assume that these nodes and their parents |
|
1407 | If base dict is specified, assume that these nodes and their parents | |
1408 | exist on the remote side. |
|
1408 | exist on the remote side. | |
1409 | If a list of heads is specified, return only nodes which are heads |
|
1409 | If a list of heads is specified, return only nodes which are heads | |
1410 | or ancestors of these heads, and return a second element which |
|
1410 | or ancestors of these heads, and return a second element which | |
1411 | contains all remote heads which get new children. |
|
1411 | contains all remote heads which get new children. | |
1412 | """ |
|
1412 | """ | |
1413 | if base is None: |
|
1413 | if base is None: | |
1414 | base = {} |
|
1414 | base = {} | |
1415 | self.findincoming(remote, base, heads, force=force) |
|
1415 | self.findincoming(remote, base, heads, force=force) | |
1416 |
|
1416 | |||
1417 | self.ui.debug("common changesets up to " |
|
1417 | self.ui.debug("common changesets up to " | |
1418 | + " ".join(map(short, base.keys())) + "\n") |
|
1418 | + " ".join(map(short, base.keys())) + "\n") | |
1419 |
|
1419 | |||
1420 | remain = set(self.changelog.nodemap) |
|
1420 | remain = set(self.changelog.nodemap) | |
1421 |
|
1421 | |||
1422 | # prune everything remote has from the tree |
|
1422 | # prune everything remote has from the tree | |
1423 | remain.remove(nullid) |
|
1423 | remain.remove(nullid) | |
1424 | remove = base.keys() |
|
1424 | remove = base.keys() | |
1425 | while remove: |
|
1425 | while remove: | |
1426 | n = remove.pop(0) |
|
1426 | n = remove.pop(0) | |
1427 | if n in remain: |
|
1427 | if n in remain: | |
1428 | remain.remove(n) |
|
1428 | remain.remove(n) | |
1429 | for p in self.changelog.parents(n): |
|
1429 | for p in self.changelog.parents(n): | |
1430 | remove.append(p) |
|
1430 | remove.append(p) | |
1431 |
|
1431 | |||
1432 | # find every node whose parents have been pruned |
|
1432 | # find every node whose parents have been pruned | |
1433 | subset = [] |
|
1433 | subset = [] | |
1434 | # find every remote head that will get new children |
|
1434 | # find every remote head that will get new children | |
1435 | updated_heads = set() |
|
1435 | updated_heads = set() | |
1436 | for n in remain: |
|
1436 | for n in remain: | |
1437 | p1, p2 = self.changelog.parents(n) |
|
1437 | p1, p2 = self.changelog.parents(n) | |
1438 | if p1 not in remain and p2 not in remain: |
|
1438 | if p1 not in remain and p2 not in remain: | |
1439 | subset.append(n) |
|
1439 | subset.append(n) | |
1440 | if heads: |
|
1440 | if heads: | |
1441 | if p1 in heads: |
|
1441 | if p1 in heads: | |
1442 | updated_heads.add(p1) |
|
1442 | updated_heads.add(p1) | |
1443 | if p2 in heads: |
|
1443 | if p2 in heads: | |
1444 | updated_heads.add(p2) |
|
1444 | updated_heads.add(p2) | |
1445 |
|
1445 | |||
1446 | # this is the set of all roots we have to push |
|
1446 | # this is the set of all roots we have to push | |
1447 | if heads: |
|
1447 | if heads: | |
1448 | return subset, list(updated_heads) |
|
1448 | return subset, list(updated_heads) | |
1449 | else: |
|
1449 | else: | |
1450 | return subset |
|
1450 | return subset | |
1451 |
|
1451 | |||
1452 | def pull(self, remote, heads=None, force=False): |
|
1452 | def pull(self, remote, heads=None, force=False): | |
1453 | lock = self.lock() |
|
1453 | lock = self.lock() | |
1454 | try: |
|
1454 | try: | |
1455 | common, fetch, rheads = self.findcommonincoming(remote, heads=heads, |
|
1455 | common, fetch, rheads = self.findcommonincoming(remote, heads=heads, | |
1456 | force=force) |
|
1456 | force=force) | |
1457 | if fetch == [nullid]: |
|
1457 | if fetch == [nullid]: | |
1458 | self.ui.status(_("requesting all changes\n")) |
|
1458 | self.ui.status(_("requesting all changes\n")) | |
1459 |
|
1459 | |||
1460 | if not fetch: |
|
1460 | if not fetch: | |
1461 | self.ui.status(_("no changes found\n")) |
|
1461 | self.ui.status(_("no changes found\n")) | |
1462 | return 0 |
|
1462 | return 0 | |
1463 |
|
1463 | |||
1464 | if heads is None and remote.capable('changegroupsubset'): |
|
1464 | if heads is None and remote.capable('changegroupsubset'): | |
1465 | heads = rheads |
|
1465 | heads = rheads | |
1466 |
|
1466 | |||
1467 | if heads is None: |
|
1467 | if heads is None: | |
1468 | cg = remote.changegroup(fetch, 'pull') |
|
1468 | cg = remote.changegroup(fetch, 'pull') | |
1469 | else: |
|
1469 | else: | |
1470 | if not remote.capable('changegroupsubset'): |
|
1470 | if not remote.capable('changegroupsubset'): | |
1471 | raise util.Abort(_("Partial pull cannot be done because " |
|
1471 | raise util.Abort(_("Partial pull cannot be done because " | |
1472 | "other repository doesn't support " |
|
1472 | "other repository doesn't support " | |
1473 | "changegroupsubset.")) |
|
1473 | "changegroupsubset.")) | |
1474 | cg = remote.changegroupsubset(fetch, heads, 'pull') |
|
1474 | cg = remote.changegroupsubset(fetch, heads, 'pull') | |
1475 | return self.addchangegroup(cg, 'pull', remote.url()) |
|
1475 | return self.addchangegroup(cg, 'pull', remote.url()) | |
1476 | finally: |
|
1476 | finally: | |
1477 | lock.release() |
|
1477 | lock.release() | |
1478 |
|
1478 | |||
1479 | def push(self, remote, force=False, revs=None): |
|
1479 | def push(self, remote, force=False, revs=None): | |
1480 | # there are two ways to push to remote repo: |
|
1480 | # there are two ways to push to remote repo: | |
1481 | # |
|
1481 | # | |
1482 | # addchangegroup assumes local user can lock remote |
|
1482 | # addchangegroup assumes local user can lock remote | |
1483 | # repo (local filesystem, old ssh servers). |
|
1483 | # repo (local filesystem, old ssh servers). | |
1484 | # |
|
1484 | # | |
1485 | # unbundle assumes local user cannot lock remote repo (new ssh |
|
1485 | # unbundle assumes local user cannot lock remote repo (new ssh | |
1486 | # servers, http servers). |
|
1486 | # servers, http servers). | |
1487 |
|
1487 | |||
1488 | if remote.capable('unbundle'): |
|
1488 | if remote.capable('unbundle'): | |
1489 | return self.push_unbundle(remote, force, revs) |
|
1489 | return self.push_unbundle(remote, force, revs) | |
1490 | return self.push_addchangegroup(remote, force, revs) |
|
1490 | return self.push_addchangegroup(remote, force, revs) | |
1491 |
|
1491 | |||
1492 | def prepush(self, remote, force, revs): |
|
1492 | def prepush(self, remote, force, revs): | |
1493 | '''Analyze the local and remote repositories and determine which |
|
1493 | '''Analyze the local and remote repositories and determine which | |
1494 | changesets need to be pushed to the remote. Return a tuple |
|
1494 | changesets need to be pushed to the remote. Return a tuple | |
1495 | (changegroup, remoteheads). changegroup is a readable file-like |
|
1495 | (changegroup, remoteheads). changegroup is a readable file-like | |
1496 | object whose read() returns successive changegroup chunks ready to |
|
1496 | object whose read() returns successive changegroup chunks ready to | |
1497 | be sent over the wire. remoteheads is the list of remote heads. |
|
1497 | be sent over the wire. remoteheads is the list of remote heads. | |
1498 | ''' |
|
1498 | ''' | |
1499 | common = {} |
|
1499 | common = {} | |
1500 | remote_heads = remote.heads() |
|
1500 | remote_heads = remote.heads() | |
1501 | inc = self.findincoming(remote, common, remote_heads, force=force) |
|
1501 | inc = self.findincoming(remote, common, remote_heads, force=force) | |
1502 |
|
1502 | |||
1503 | update, updated_heads = self.findoutgoing(remote, common, remote_heads) |
|
1503 | update, updated_heads = self.findoutgoing(remote, common, remote_heads) | |
1504 | msng_cl, bases, heads = self.changelog.nodesbetween(update, revs) |
|
1504 | msng_cl, bases, heads = self.changelog.nodesbetween(update, revs) | |
1505 |
|
1505 | |||
1506 |
def checkbranch(lheads, rheads, |
|
1506 | def checkbranch(lheads, rheads, branchname=None): | |
1507 | ''' |
|
1507 | ''' | |
1508 | check whether there are more local heads than remote heads on |
|
1508 | check whether there are more local heads than remote heads on | |
1509 | a specific branch. |
|
1509 | a specific branch. | |
1510 |
|
1510 | |||
1511 | lheads: local branch heads |
|
1511 | lheads: local branch heads | |
1512 | rheads: remote branch heads |
|
1512 | rheads: remote branch heads | |
1513 | updatelb: outgoing local branch bases |
|
|||
1514 | ''' |
|
1513 | ''' | |
1515 |
|
1514 | |||
1516 | warn = 0 |
|
1515 | warn = 0 | |
1517 |
|
1516 | |||
1518 |
if |
|
1517 | if len(lheads) > len(rheads): | |
1519 | warn = 1 |
|
1518 | warn = 1 | |
1520 | else: |
|
1519 | else: | |
1521 | # add local heads involved in the push |
|
|||
1522 | updatelheads = [self.changelog.heads(x, lheads) |
|
|||
1523 | for x in updatelb] |
|
|||
1524 | newheads = set(sum(updatelheads, [])) & set(lheads) |
|
|||
1525 |
|
||||
1526 | if not newheads: |
|
|||
1527 | return True |
|
|||
1528 |
|
||||
1529 | # add heads we don't have or that are not involved in the push |
|
1520 | # add heads we don't have or that are not involved in the push | |
|
1521 | newheads = set(lheads) | |||
1530 | for r in rheads: |
|
1522 | for r in rheads: | |
1531 | if r in self.changelog.nodemap: |
|
1523 | if r in self.changelog.nodemap: | |
1532 | desc = self.changelog.heads(r, heads) |
|
1524 | desc = self.changelog.heads(r, heads) | |
1533 | l = [h for h in heads if h in desc] |
|
1525 | l = [h for h in heads if h in desc] | |
1534 | if not l: |
|
1526 | if not l: | |
1535 | newheads.add(r) |
|
1527 | newheads.add(r) | |
1536 | else: |
|
1528 | else: | |
1537 | newheads.add(r) |
|
1529 | newheads.add(r) | |
1538 | if len(newheads) > len(rheads): |
|
1530 | if len(newheads) > len(rheads): | |
1539 | warn = 1 |
|
1531 | warn = 1 | |
1540 |
|
1532 | |||
1541 | if warn: |
|
1533 | if warn: | |
1542 | if branchname is not None: |
|
1534 | if branchname is not None: | |
1543 | msg = _("abort: push creates new remote heads" |
|
1535 | msg = _("abort: push creates new remote heads" | |
1544 | " on branch '%s'!\n") % branchname |
|
1536 | " on branch '%s'!\n") % branchname | |
1545 | else: |
|
1537 | else: | |
1546 | msg = _("abort: push creates new remote heads!\n") |
|
1538 | msg = _("abort: push creates new remote heads!\n") | |
1547 | self.ui.warn(msg) |
|
1539 | self.ui.warn(msg) | |
1548 | if len(lheads) > len(rheads): |
|
1540 | if len(lheads) > len(rheads): | |
1549 | self.ui.status(_("(did you forget to merge?" |
|
1541 | self.ui.status(_("(did you forget to merge?" | |
1550 | " use push -f to force)\n")) |
|
1542 | " use push -f to force)\n")) | |
1551 | else: |
|
1543 | else: | |
1552 | self.ui.status(_("(you should pull and merge or" |
|
1544 | self.ui.status(_("(you should pull and merge or" | |
1553 | " use push -f to force)\n")) |
|
1545 | " use push -f to force)\n")) | |
1554 | return False |
|
1546 | return False | |
1555 | return True |
|
1547 | return True | |
1556 |
|
1548 | |||
1557 | if not bases: |
|
1549 | if not bases: | |
1558 | self.ui.status(_("no changes found\n")) |
|
1550 | self.ui.status(_("no changes found\n")) | |
1559 | return None, 1 |
|
1551 | return None, 1 | |
1560 | elif not force: |
|
1552 | elif not force: | |
1561 | # Check for each named branch if we're creating new remote heads. |
|
1553 | # Check for each named branch if we're creating new remote heads. | |
1562 | # To be a remote head after push, node must be either: |
|
1554 | # To be a remote head after push, node must be either: | |
1563 | # - unknown locally |
|
1555 | # - unknown locally | |
1564 | # - a local outgoing head descended from update |
|
1556 | # - a local outgoing head descended from update | |
1565 | # - a remote head that's known locally and not |
|
1557 | # - a remote head that's known locally and not | |
1566 | # ancestral to an outgoing head |
|
1558 | # ancestral to an outgoing head | |
1567 | # |
|
1559 | # | |
1568 | # New named branches cannot be created without --force. |
|
1560 | # New named branches cannot be created without --force. | |
1569 |
|
1561 | |||
1570 | if remote_heads != [nullid]: |
|
1562 | if remote_heads != [nullid]: | |
1571 | if remote.capable('branchmap'): |
|
1563 | if remote.capable('branchmap'): | |
1572 | remotebrheads = remote.branchmap() |
|
1564 | remotebrheads = remote.branchmap() | |
1573 |
|
1565 | |||
1574 | if not revs: |
|
1566 | if not revs: | |
1575 | localbrheads = self.branchmap() |
|
1567 | localbrheads = self.branchmap() | |
1576 | else: |
|
1568 | else: | |
1577 | localbrheads = {} |
|
1569 | localbrheads = {} | |
1578 |
for n in |
|
1570 | ctxgen = (self[n] for n in msng_cl) | |
1579 |
|
|
1571 | self._updatebranchcache(localbrheads, ctxgen) | |
1580 | localbrheads.setdefault(branch, []).append(n) |
|
|||
1581 |
|
1572 | |||
1582 | newbranches = list(set(localbrheads) - set(remotebrheads)) |
|
1573 | newbranches = list(set(localbrheads) - set(remotebrheads)) | |
1583 | if newbranches: # new branch requires --force |
|
1574 | if newbranches: # new branch requires --force | |
1584 | branchnames = ', '.join("%s" % b for b in newbranches) |
|
1575 | branchnames = ', '.join("%s" % b for b in newbranches) | |
1585 | self.ui.warn(_("abort: push creates " |
|
1576 | self.ui.warn(_("abort: push creates " | |
1586 | "new remote branches: %s!\n") |
|
1577 | "new remote branches: %s!\n") | |
1587 | % branchnames) |
|
1578 | % branchnames) | |
1588 | # propose 'push -b .' in the msg too? |
|
1579 | # propose 'push -b .' in the msg too? | |
1589 | self.ui.status(_("(use 'hg push -f' to force)\n")) |
|
1580 | self.ui.status(_("(use 'hg push -f' to force)\n")) | |
1590 | return None, 0 |
|
1581 | return None, 0 | |
1591 | for branch, lheads in localbrheads.iteritems(): |
|
1582 | for branch, lheads in localbrheads.iteritems(): | |
1592 | if branch in remotebrheads: |
|
1583 | if branch in remotebrheads: | |
1593 | rheads = remotebrheads[branch] |
|
1584 | rheads = remotebrheads[branch] | |
1594 |
if not checkbranch(lheads, rheads, |
|
1585 | if not checkbranch(lheads, rheads, branch): | |
1595 | return None, 0 |
|
1586 | return None, 0 | |
1596 | else: |
|
1587 | else: | |
1597 |
if not checkbranch(heads, remote_heads |
|
1588 | if not checkbranch(heads, remote_heads): | |
1598 | return None, 0 |
|
1589 | return None, 0 | |
1599 |
|
1590 | |||
1600 | if inc: |
|
1591 | if inc: | |
1601 | self.ui.warn(_("note: unsynced remote changes!\n")) |
|
1592 | self.ui.warn(_("note: unsynced remote changes!\n")) | |
1602 |
|
1593 | |||
1603 |
|
1594 | |||
1604 | if revs is None: |
|
1595 | if revs is None: | |
1605 | # use the fast path, no race possible on push |
|
1596 | # use the fast path, no race possible on push | |
1606 | nodes = self.changelog.findmissing(common.keys()) |
|
1597 | nodes = self.changelog.findmissing(common.keys()) | |
1607 | cg = self._changegroup(nodes, 'push') |
|
1598 | cg = self._changegroup(nodes, 'push') | |
1608 | else: |
|
1599 | else: | |
1609 | cg = self.changegroupsubset(update, revs, 'push') |
|
1600 | cg = self.changegroupsubset(update, revs, 'push') | |
1610 | return cg, remote_heads |
|
1601 | return cg, remote_heads | |
1611 |
|
1602 | |||
1612 | def push_addchangegroup(self, remote, force, revs): |
|
1603 | def push_addchangegroup(self, remote, force, revs): | |
1613 | lock = remote.lock() |
|
1604 | lock = remote.lock() | |
1614 | try: |
|
1605 | try: | |
1615 | ret = self.prepush(remote, force, revs) |
|
1606 | ret = self.prepush(remote, force, revs) | |
1616 | if ret[0] is not None: |
|
1607 | if ret[0] is not None: | |
1617 | cg, remote_heads = ret |
|
1608 | cg, remote_heads = ret | |
1618 | return remote.addchangegroup(cg, 'push', self.url()) |
|
1609 | return remote.addchangegroup(cg, 'push', self.url()) | |
1619 | return ret[1] |
|
1610 | return ret[1] | |
1620 | finally: |
|
1611 | finally: | |
1621 | lock.release() |
|
1612 | lock.release() | |
1622 |
|
1613 | |||
1623 | def push_unbundle(self, remote, force, revs): |
|
1614 | def push_unbundle(self, remote, force, revs): | |
1624 | # local repo finds heads on server, finds out what revs it |
|
1615 | # local repo finds heads on server, finds out what revs it | |
1625 | # must push. once revs transferred, if server finds it has |
|
1616 | # must push. once revs transferred, if server finds it has | |
1626 | # different heads (someone else won commit/push race), server |
|
1617 | # different heads (someone else won commit/push race), server | |
1627 | # aborts. |
|
1618 | # aborts. | |
1628 |
|
1619 | |||
1629 | ret = self.prepush(remote, force, revs) |
|
1620 | ret = self.prepush(remote, force, revs) | |
1630 | if ret[0] is not None: |
|
1621 | if ret[0] is not None: | |
1631 | cg, remote_heads = ret |
|
1622 | cg, remote_heads = ret | |
1632 | if force: |
|
1623 | if force: | |
1633 | remote_heads = ['force'] |
|
1624 | remote_heads = ['force'] | |
1634 | return remote.unbundle(cg, remote_heads, 'push') |
|
1625 | return remote.unbundle(cg, remote_heads, 'push') | |
1635 | return ret[1] |
|
1626 | return ret[1] | |
1636 |
|
1627 | |||
1637 | def changegroupinfo(self, nodes, source): |
|
1628 | def changegroupinfo(self, nodes, source): | |
1638 | if self.ui.verbose or source == 'bundle': |
|
1629 | if self.ui.verbose or source == 'bundle': | |
1639 | self.ui.status(_("%d changesets found\n") % len(nodes)) |
|
1630 | self.ui.status(_("%d changesets found\n") % len(nodes)) | |
1640 | if self.ui.debugflag: |
|
1631 | if self.ui.debugflag: | |
1641 | self.ui.debug("list of changesets:\n") |
|
1632 | self.ui.debug("list of changesets:\n") | |
1642 | for node in nodes: |
|
1633 | for node in nodes: | |
1643 | self.ui.debug("%s\n" % hex(node)) |
|
1634 | self.ui.debug("%s\n" % hex(node)) | |
1644 |
|
1635 | |||
1645 | def changegroupsubset(self, bases, heads, source, extranodes=None): |
|
1636 | def changegroupsubset(self, bases, heads, source, extranodes=None): | |
1646 | """Compute a changegroup consisting of all the nodes that are |
|
1637 | """Compute a changegroup consisting of all the nodes that are | |
1647 | descendents of any of the bases and ancestors of any of the heads. |
|
1638 | descendents of any of the bases and ancestors of any of the heads. | |
1648 | Return a chunkbuffer object whose read() method will return |
|
1639 | Return a chunkbuffer object whose read() method will return | |
1649 | successive changegroup chunks. |
|
1640 | successive changegroup chunks. | |
1650 |
|
1641 | |||
1651 | It is fairly complex as determining which filenodes and which |
|
1642 | It is fairly complex as determining which filenodes and which | |
1652 | manifest nodes need to be included for the changeset to be complete |
|
1643 | manifest nodes need to be included for the changeset to be complete | |
1653 | is non-trivial. |
|
1644 | is non-trivial. | |
1654 |
|
1645 | |||
1655 | Another wrinkle is doing the reverse, figuring out which changeset in |
|
1646 | Another wrinkle is doing the reverse, figuring out which changeset in | |
1656 | the changegroup a particular filenode or manifestnode belongs to. |
|
1647 | the changegroup a particular filenode or manifestnode belongs to. | |
1657 |
|
1648 | |||
1658 | The caller can specify some nodes that must be included in the |
|
1649 | The caller can specify some nodes that must be included in the | |
1659 | changegroup using the extranodes argument. It should be a dict |
|
1650 | changegroup using the extranodes argument. It should be a dict | |
1660 | where the keys are the filenames (or 1 for the manifest), and the |
|
1651 | where the keys are the filenames (or 1 for the manifest), and the | |
1661 | values are lists of (node, linknode) tuples, where node is a wanted |
|
1652 | values are lists of (node, linknode) tuples, where node is a wanted | |
1662 | node and linknode is the changelog node that should be transmitted as |
|
1653 | node and linknode is the changelog node that should be transmitted as | |
1663 | the linkrev. |
|
1654 | the linkrev. | |
1664 | """ |
|
1655 | """ | |
1665 |
|
1656 | |||
1666 | # Set up some initial variables |
|
1657 | # Set up some initial variables | |
1667 | # Make it easy to refer to self.changelog |
|
1658 | # Make it easy to refer to self.changelog | |
1668 | cl = self.changelog |
|
1659 | cl = self.changelog | |
1669 | # msng is short for missing - compute the list of changesets in this |
|
1660 | # msng is short for missing - compute the list of changesets in this | |
1670 | # changegroup. |
|
1661 | # changegroup. | |
1671 | if not bases: |
|
1662 | if not bases: | |
1672 | bases = [nullid] |
|
1663 | bases = [nullid] | |
1673 | msng_cl_lst, bases, heads = cl.nodesbetween(bases, heads) |
|
1664 | msng_cl_lst, bases, heads = cl.nodesbetween(bases, heads) | |
1674 |
|
1665 | |||
1675 | if extranodes is None: |
|
1666 | if extranodes is None: | |
1676 | # can we go through the fast path ? |
|
1667 | # can we go through the fast path ? | |
1677 | heads.sort() |
|
1668 | heads.sort() | |
1678 | allheads = self.heads() |
|
1669 | allheads = self.heads() | |
1679 | allheads.sort() |
|
1670 | allheads.sort() | |
1680 | if heads == allheads: |
|
1671 | if heads == allheads: | |
1681 | return self._changegroup(msng_cl_lst, source) |
|
1672 | return self._changegroup(msng_cl_lst, source) | |
1682 |
|
1673 | |||
1683 | # slow path |
|
1674 | # slow path | |
1684 | self.hook('preoutgoing', throw=True, source=source) |
|
1675 | self.hook('preoutgoing', throw=True, source=source) | |
1685 |
|
1676 | |||
1686 | self.changegroupinfo(msng_cl_lst, source) |
|
1677 | self.changegroupinfo(msng_cl_lst, source) | |
1687 | # Some bases may turn out to be superfluous, and some heads may be |
|
1678 | # Some bases may turn out to be superfluous, and some heads may be | |
1688 | # too. nodesbetween will return the minimal set of bases and heads |
|
1679 | # too. nodesbetween will return the minimal set of bases and heads | |
1689 | # necessary to re-create the changegroup. |
|
1680 | # necessary to re-create the changegroup. | |
1690 |
|
1681 | |||
1691 | # Known heads are the list of heads that it is assumed the recipient |
|
1682 | # Known heads are the list of heads that it is assumed the recipient | |
1692 | # of this changegroup will know about. |
|
1683 | # of this changegroup will know about. | |
1693 | knownheads = set() |
|
1684 | knownheads = set() | |
1694 | # We assume that all parents of bases are known heads. |
|
1685 | # We assume that all parents of bases are known heads. | |
1695 | for n in bases: |
|
1686 | for n in bases: | |
1696 | knownheads.update(cl.parents(n)) |
|
1687 | knownheads.update(cl.parents(n)) | |
1697 | knownheads.discard(nullid) |
|
1688 | knownheads.discard(nullid) | |
1698 | knownheads = list(knownheads) |
|
1689 | knownheads = list(knownheads) | |
1699 | if knownheads: |
|
1690 | if knownheads: | |
1700 | # Now that we know what heads are known, we can compute which |
|
1691 | # Now that we know what heads are known, we can compute which | |
1701 | # changesets are known. The recipient must know about all |
|
1692 | # changesets are known. The recipient must know about all | |
1702 | # changesets required to reach the known heads from the null |
|
1693 | # changesets required to reach the known heads from the null | |
1703 | # changeset. |
|
1694 | # changeset. | |
1704 | has_cl_set, junk, junk = cl.nodesbetween(None, knownheads) |
|
1695 | has_cl_set, junk, junk = cl.nodesbetween(None, knownheads) | |
1705 | junk = None |
|
1696 | junk = None | |
1706 | # Transform the list into a set. |
|
1697 | # Transform the list into a set. | |
1707 | has_cl_set = set(has_cl_set) |
|
1698 | has_cl_set = set(has_cl_set) | |
1708 | else: |
|
1699 | else: | |
1709 | # If there were no known heads, the recipient cannot be assumed to |
|
1700 | # If there were no known heads, the recipient cannot be assumed to | |
1710 | # know about any changesets. |
|
1701 | # know about any changesets. | |
1711 | has_cl_set = set() |
|
1702 | has_cl_set = set() | |
1712 |
|
1703 | |||
1713 | # Make it easy to refer to self.manifest |
|
1704 | # Make it easy to refer to self.manifest | |
1714 | mnfst = self.manifest |
|
1705 | mnfst = self.manifest | |
1715 | # We don't know which manifests are missing yet |
|
1706 | # We don't know which manifests are missing yet | |
1716 | msng_mnfst_set = {} |
|
1707 | msng_mnfst_set = {} | |
1717 | # Nor do we know which filenodes are missing. |
|
1708 | # Nor do we know which filenodes are missing. | |
1718 | msng_filenode_set = {} |
|
1709 | msng_filenode_set = {} | |
1719 |
|
1710 | |||
1720 | junk = mnfst.index[len(mnfst) - 1] # Get around a bug in lazyindex |
|
1711 | junk = mnfst.index[len(mnfst) - 1] # Get around a bug in lazyindex | |
1721 | junk = None |
|
1712 | junk = None | |
1722 |
|
1713 | |||
1723 | # A changeset always belongs to itself, so the changenode lookup |
|
1714 | # A changeset always belongs to itself, so the changenode lookup | |
1724 | # function for a changenode is identity. |
|
1715 | # function for a changenode is identity. | |
1725 | def identity(x): |
|
1716 | def identity(x): | |
1726 | return x |
|
1717 | return x | |
1727 |
|
1718 | |||
1728 | # If we determine that a particular file or manifest node must be a |
|
1719 | # If we determine that a particular file or manifest node must be a | |
1729 | # node that the recipient of the changegroup will already have, we can |
|
1720 | # node that the recipient of the changegroup will already have, we can | |
1730 | # also assume the recipient will have all the parents. This function |
|
1721 | # also assume the recipient will have all the parents. This function | |
1731 | # prunes them from the set of missing nodes. |
|
1722 | # prunes them from the set of missing nodes. | |
1732 | def prune_parents(revlog, hasset, msngset): |
|
1723 | def prune_parents(revlog, hasset, msngset): | |
1733 | for r in revlog.ancestors(*[revlog.rev(n) for n in hasset]): |
|
1724 | for r in revlog.ancestors(*[revlog.rev(n) for n in hasset]): | |
1734 | msngset.pop(revlog.node(r), None) |
|
1725 | msngset.pop(revlog.node(r), None) | |
1735 |
|
1726 | |||
1736 | # Use the information collected in collect_manifests_and_files to say |
|
1727 | # Use the information collected in collect_manifests_and_files to say | |
1737 | # which changenode any manifestnode belongs to. |
|
1728 | # which changenode any manifestnode belongs to. | |
1738 | def lookup_manifest_link(mnfstnode): |
|
1729 | def lookup_manifest_link(mnfstnode): | |
1739 | return msng_mnfst_set[mnfstnode] |
|
1730 | return msng_mnfst_set[mnfstnode] | |
1740 |
|
1731 | |||
1741 | # A function generating function that sets up the initial environment |
|
1732 | # A function generating function that sets up the initial environment | |
1742 | # the inner function. |
|
1733 | # the inner function. | |
1743 | def filenode_collector(changedfiles): |
|
1734 | def filenode_collector(changedfiles): | |
1744 | # This gathers information from each manifestnode included in the |
|
1735 | # This gathers information from each manifestnode included in the | |
1745 | # changegroup about which filenodes the manifest node references |
|
1736 | # changegroup about which filenodes the manifest node references | |
1746 | # so we can include those in the changegroup too. |
|
1737 | # so we can include those in the changegroup too. | |
1747 | # |
|
1738 | # | |
1748 | # It also remembers which changenode each filenode belongs to. It |
|
1739 | # It also remembers which changenode each filenode belongs to. It | |
1749 | # does this by assuming the a filenode belongs to the changenode |
|
1740 | # does this by assuming the a filenode belongs to the changenode | |
1750 | # the first manifest that references it belongs to. |
|
1741 | # the first manifest that references it belongs to. | |
1751 | def collect_msng_filenodes(mnfstnode): |
|
1742 | def collect_msng_filenodes(mnfstnode): | |
1752 | r = mnfst.rev(mnfstnode) |
|
1743 | r = mnfst.rev(mnfstnode) | |
1753 | if r - 1 in mnfst.parentrevs(r): |
|
1744 | if r - 1 in mnfst.parentrevs(r): | |
1754 | # If the previous rev is one of the parents, |
|
1745 | # If the previous rev is one of the parents, | |
1755 | # we only need to see a diff. |
|
1746 | # we only need to see a diff. | |
1756 | deltamf = mnfst.readdelta(mnfstnode) |
|
1747 | deltamf = mnfst.readdelta(mnfstnode) | |
1757 | # For each line in the delta |
|
1748 | # For each line in the delta | |
1758 | for f, fnode in deltamf.iteritems(): |
|
1749 | for f, fnode in deltamf.iteritems(): | |
1759 | f = changedfiles.get(f, None) |
|
1750 | f = changedfiles.get(f, None) | |
1760 | # And if the file is in the list of files we care |
|
1751 | # And if the file is in the list of files we care | |
1761 | # about. |
|
1752 | # about. | |
1762 | if f is not None: |
|
1753 | if f is not None: | |
1763 | # Get the changenode this manifest belongs to |
|
1754 | # Get the changenode this manifest belongs to | |
1764 | clnode = msng_mnfst_set[mnfstnode] |
|
1755 | clnode = msng_mnfst_set[mnfstnode] | |
1765 | # Create the set of filenodes for the file if |
|
1756 | # Create the set of filenodes for the file if | |
1766 | # there isn't one already. |
|
1757 | # there isn't one already. | |
1767 | ndset = msng_filenode_set.setdefault(f, {}) |
|
1758 | ndset = msng_filenode_set.setdefault(f, {}) | |
1768 | # And set the filenode's changelog node to the |
|
1759 | # And set the filenode's changelog node to the | |
1769 | # manifest's if it hasn't been set already. |
|
1760 | # manifest's if it hasn't been set already. | |
1770 | ndset.setdefault(fnode, clnode) |
|
1761 | ndset.setdefault(fnode, clnode) | |
1771 | else: |
|
1762 | else: | |
1772 | # Otherwise we need a full manifest. |
|
1763 | # Otherwise we need a full manifest. | |
1773 | m = mnfst.read(mnfstnode) |
|
1764 | m = mnfst.read(mnfstnode) | |
1774 | # For every file in we care about. |
|
1765 | # For every file in we care about. | |
1775 | for f in changedfiles: |
|
1766 | for f in changedfiles: | |
1776 | fnode = m.get(f, None) |
|
1767 | fnode = m.get(f, None) | |
1777 | # If it's in the manifest |
|
1768 | # If it's in the manifest | |
1778 | if fnode is not None: |
|
1769 | if fnode is not None: | |
1779 | # See comments above. |
|
1770 | # See comments above. | |
1780 | clnode = msng_mnfst_set[mnfstnode] |
|
1771 | clnode = msng_mnfst_set[mnfstnode] | |
1781 | ndset = msng_filenode_set.setdefault(f, {}) |
|
1772 | ndset = msng_filenode_set.setdefault(f, {}) | |
1782 | ndset.setdefault(fnode, clnode) |
|
1773 | ndset.setdefault(fnode, clnode) | |
1783 | return collect_msng_filenodes |
|
1774 | return collect_msng_filenodes | |
1784 |
|
1775 | |||
1785 | # We have a list of filenodes we think we need for a file, lets remove |
|
1776 | # We have a list of filenodes we think we need for a file, lets remove | |
1786 | # all those we know the recipient must have. |
|
1777 | # all those we know the recipient must have. | |
1787 | def prune_filenodes(f, filerevlog): |
|
1778 | def prune_filenodes(f, filerevlog): | |
1788 | msngset = msng_filenode_set[f] |
|
1779 | msngset = msng_filenode_set[f] | |
1789 | hasset = set() |
|
1780 | hasset = set() | |
1790 | # If a 'missing' filenode thinks it belongs to a changenode we |
|
1781 | # If a 'missing' filenode thinks it belongs to a changenode we | |
1791 | # assume the recipient must have, then the recipient must have |
|
1782 | # assume the recipient must have, then the recipient must have | |
1792 | # that filenode. |
|
1783 | # that filenode. | |
1793 | for n in msngset: |
|
1784 | for n in msngset: | |
1794 | clnode = cl.node(filerevlog.linkrev(filerevlog.rev(n))) |
|
1785 | clnode = cl.node(filerevlog.linkrev(filerevlog.rev(n))) | |
1795 | if clnode in has_cl_set: |
|
1786 | if clnode in has_cl_set: | |
1796 | hasset.add(n) |
|
1787 | hasset.add(n) | |
1797 | prune_parents(filerevlog, hasset, msngset) |
|
1788 | prune_parents(filerevlog, hasset, msngset) | |
1798 |
|
1789 | |||
1799 | # A function generator function that sets up the a context for the |
|
1790 | # A function generator function that sets up the a context for the | |
1800 | # inner function. |
|
1791 | # inner function. | |
1801 | def lookup_filenode_link_func(fname): |
|
1792 | def lookup_filenode_link_func(fname): | |
1802 | msngset = msng_filenode_set[fname] |
|
1793 | msngset = msng_filenode_set[fname] | |
1803 | # Lookup the changenode the filenode belongs to. |
|
1794 | # Lookup the changenode the filenode belongs to. | |
1804 | def lookup_filenode_link(fnode): |
|
1795 | def lookup_filenode_link(fnode): | |
1805 | return msngset[fnode] |
|
1796 | return msngset[fnode] | |
1806 | return lookup_filenode_link |
|
1797 | return lookup_filenode_link | |
1807 |
|
1798 | |||
1808 | # Add the nodes that were explicitly requested. |
|
1799 | # Add the nodes that were explicitly requested. | |
1809 | def add_extra_nodes(name, nodes): |
|
1800 | def add_extra_nodes(name, nodes): | |
1810 | if not extranodes or name not in extranodes: |
|
1801 | if not extranodes or name not in extranodes: | |
1811 | return |
|
1802 | return | |
1812 |
|
1803 | |||
1813 | for node, linknode in extranodes[name]: |
|
1804 | for node, linknode in extranodes[name]: | |
1814 | if node not in nodes: |
|
1805 | if node not in nodes: | |
1815 | nodes[node] = linknode |
|
1806 | nodes[node] = linknode | |
1816 |
|
1807 | |||
1817 | # Now that we have all theses utility functions to help out and |
|
1808 | # Now that we have all theses utility functions to help out and | |
1818 | # logically divide up the task, generate the group. |
|
1809 | # logically divide up the task, generate the group. | |
1819 | def gengroup(): |
|
1810 | def gengroup(): | |
1820 | # The set of changed files starts empty. |
|
1811 | # The set of changed files starts empty. | |
1821 | changedfiles = {} |
|
1812 | changedfiles = {} | |
1822 | collect = changegroup.collector(cl, msng_mnfst_set, changedfiles) |
|
1813 | collect = changegroup.collector(cl, msng_mnfst_set, changedfiles) | |
1823 |
|
1814 | |||
1824 | # Create a changenode group generator that will call our functions |
|
1815 | # Create a changenode group generator that will call our functions | |
1825 | # back to lookup the owning changenode and collect information. |
|
1816 | # back to lookup the owning changenode and collect information. | |
1826 | group = cl.group(msng_cl_lst, identity, collect) |
|
1817 | group = cl.group(msng_cl_lst, identity, collect) | |
1827 | cnt = 0 |
|
1818 | cnt = 0 | |
1828 | for chnk in group: |
|
1819 | for chnk in group: | |
1829 | yield chnk |
|
1820 | yield chnk | |
1830 | self.ui.progress(_('bundling changes'), cnt, unit=_('chunks')) |
|
1821 | self.ui.progress(_('bundling changes'), cnt, unit=_('chunks')) | |
1831 | cnt += 1 |
|
1822 | cnt += 1 | |
1832 | self.ui.progress(_('bundling changes'), None) |
|
1823 | self.ui.progress(_('bundling changes'), None) | |
1833 |
|
1824 | |||
1834 |
|
1825 | |||
1835 | # Figure out which manifest nodes (of the ones we think might be |
|
1826 | # Figure out which manifest nodes (of the ones we think might be | |
1836 | # part of the changegroup) the recipient must know about and |
|
1827 | # part of the changegroup) the recipient must know about and | |
1837 | # remove them from the changegroup. |
|
1828 | # remove them from the changegroup. | |
1838 | has_mnfst_set = set() |
|
1829 | has_mnfst_set = set() | |
1839 | for n in msng_mnfst_set: |
|
1830 | for n in msng_mnfst_set: | |
1840 | # If a 'missing' manifest thinks it belongs to a changenode |
|
1831 | # If a 'missing' manifest thinks it belongs to a changenode | |
1841 | # the recipient is assumed to have, obviously the recipient |
|
1832 | # the recipient is assumed to have, obviously the recipient | |
1842 | # must have that manifest. |
|
1833 | # must have that manifest. | |
1843 | linknode = cl.node(mnfst.linkrev(mnfst.rev(n))) |
|
1834 | linknode = cl.node(mnfst.linkrev(mnfst.rev(n))) | |
1844 | if linknode in has_cl_set: |
|
1835 | if linknode in has_cl_set: | |
1845 | has_mnfst_set.add(n) |
|
1836 | has_mnfst_set.add(n) | |
1846 | prune_parents(mnfst, has_mnfst_set, msng_mnfst_set) |
|
1837 | prune_parents(mnfst, has_mnfst_set, msng_mnfst_set) | |
1847 | add_extra_nodes(1, msng_mnfst_set) |
|
1838 | add_extra_nodes(1, msng_mnfst_set) | |
1848 | msng_mnfst_lst = msng_mnfst_set.keys() |
|
1839 | msng_mnfst_lst = msng_mnfst_set.keys() | |
1849 | # Sort the manifestnodes by revision number. |
|
1840 | # Sort the manifestnodes by revision number. | |
1850 | msng_mnfst_lst.sort(key=mnfst.rev) |
|
1841 | msng_mnfst_lst.sort(key=mnfst.rev) | |
1851 | # Create a generator for the manifestnodes that calls our lookup |
|
1842 | # Create a generator for the manifestnodes that calls our lookup | |
1852 | # and data collection functions back. |
|
1843 | # and data collection functions back. | |
1853 | group = mnfst.group(msng_mnfst_lst, lookup_manifest_link, |
|
1844 | group = mnfst.group(msng_mnfst_lst, lookup_manifest_link, | |
1854 | filenode_collector(changedfiles)) |
|
1845 | filenode_collector(changedfiles)) | |
1855 | cnt = 0 |
|
1846 | cnt = 0 | |
1856 | for chnk in group: |
|
1847 | for chnk in group: | |
1857 | yield chnk |
|
1848 | yield chnk | |
1858 | self.ui.progress(_('bundling manifests'), cnt, unit=_('chunks')) |
|
1849 | self.ui.progress(_('bundling manifests'), cnt, unit=_('chunks')) | |
1859 | cnt += 1 |
|
1850 | cnt += 1 | |
1860 | self.ui.progress(_('bundling manifests'), None) |
|
1851 | self.ui.progress(_('bundling manifests'), None) | |
1861 |
|
1852 | |||
1862 | # These are no longer needed, dereference and toss the memory for |
|
1853 | # These are no longer needed, dereference and toss the memory for | |
1863 | # them. |
|
1854 | # them. | |
1864 | msng_mnfst_lst = None |
|
1855 | msng_mnfst_lst = None | |
1865 | msng_mnfst_set.clear() |
|
1856 | msng_mnfst_set.clear() | |
1866 |
|
1857 | |||
1867 | if extranodes: |
|
1858 | if extranodes: | |
1868 | for fname in extranodes: |
|
1859 | for fname in extranodes: | |
1869 | if isinstance(fname, int): |
|
1860 | if isinstance(fname, int): | |
1870 | continue |
|
1861 | continue | |
1871 | msng_filenode_set.setdefault(fname, {}) |
|
1862 | msng_filenode_set.setdefault(fname, {}) | |
1872 | changedfiles[fname] = 1 |
|
1863 | changedfiles[fname] = 1 | |
1873 | # Go through all our files in order sorted by name. |
|
1864 | # Go through all our files in order sorted by name. | |
1874 | cnt = 0 |
|
1865 | cnt = 0 | |
1875 | for fname in sorted(changedfiles): |
|
1866 | for fname in sorted(changedfiles): | |
1876 | filerevlog = self.file(fname) |
|
1867 | filerevlog = self.file(fname) | |
1877 | if not len(filerevlog): |
|
1868 | if not len(filerevlog): | |
1878 | raise util.Abort(_("empty or missing revlog for %s") % fname) |
|
1869 | raise util.Abort(_("empty or missing revlog for %s") % fname) | |
1879 | # Toss out the filenodes that the recipient isn't really |
|
1870 | # Toss out the filenodes that the recipient isn't really | |
1880 | # missing. |
|
1871 | # missing. | |
1881 | if fname in msng_filenode_set: |
|
1872 | if fname in msng_filenode_set: | |
1882 | prune_filenodes(fname, filerevlog) |
|
1873 | prune_filenodes(fname, filerevlog) | |
1883 | add_extra_nodes(fname, msng_filenode_set[fname]) |
|
1874 | add_extra_nodes(fname, msng_filenode_set[fname]) | |
1884 | msng_filenode_lst = msng_filenode_set[fname].keys() |
|
1875 | msng_filenode_lst = msng_filenode_set[fname].keys() | |
1885 | else: |
|
1876 | else: | |
1886 | msng_filenode_lst = [] |
|
1877 | msng_filenode_lst = [] | |
1887 | # If any filenodes are left, generate the group for them, |
|
1878 | # If any filenodes are left, generate the group for them, | |
1888 | # otherwise don't bother. |
|
1879 | # otherwise don't bother. | |
1889 | if len(msng_filenode_lst) > 0: |
|
1880 | if len(msng_filenode_lst) > 0: | |
1890 | yield changegroup.chunkheader(len(fname)) |
|
1881 | yield changegroup.chunkheader(len(fname)) | |
1891 | yield fname |
|
1882 | yield fname | |
1892 | # Sort the filenodes by their revision # |
|
1883 | # Sort the filenodes by their revision # | |
1893 | msng_filenode_lst.sort(key=filerevlog.rev) |
|
1884 | msng_filenode_lst.sort(key=filerevlog.rev) | |
1894 | # Create a group generator and only pass in a changenode |
|
1885 | # Create a group generator and only pass in a changenode | |
1895 | # lookup function as we need to collect no information |
|
1886 | # lookup function as we need to collect no information | |
1896 | # from filenodes. |
|
1887 | # from filenodes. | |
1897 | group = filerevlog.group(msng_filenode_lst, |
|
1888 | group = filerevlog.group(msng_filenode_lst, | |
1898 | lookup_filenode_link_func(fname)) |
|
1889 | lookup_filenode_link_func(fname)) | |
1899 | for chnk in group: |
|
1890 | for chnk in group: | |
1900 | self.ui.progress( |
|
1891 | self.ui.progress( | |
1901 | _('bundling files'), cnt, item=fname, unit=_('chunks')) |
|
1892 | _('bundling files'), cnt, item=fname, unit=_('chunks')) | |
1902 | cnt += 1 |
|
1893 | cnt += 1 | |
1903 | yield chnk |
|
1894 | yield chnk | |
1904 | if fname in msng_filenode_set: |
|
1895 | if fname in msng_filenode_set: | |
1905 | # Don't need this anymore, toss it to free memory. |
|
1896 | # Don't need this anymore, toss it to free memory. | |
1906 | del msng_filenode_set[fname] |
|
1897 | del msng_filenode_set[fname] | |
1907 | # Signal that no more groups are left. |
|
1898 | # Signal that no more groups are left. | |
1908 | yield changegroup.closechunk() |
|
1899 | yield changegroup.closechunk() | |
1909 | self.ui.progress(_('bundling files'), None) |
|
1900 | self.ui.progress(_('bundling files'), None) | |
1910 |
|
1901 | |||
1911 | if msng_cl_lst: |
|
1902 | if msng_cl_lst: | |
1912 | self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source) |
|
1903 | self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source) | |
1913 |
|
1904 | |||
1914 | return util.chunkbuffer(gengroup()) |
|
1905 | return util.chunkbuffer(gengroup()) | |
1915 |
|
1906 | |||
1916 | def changegroup(self, basenodes, source): |
|
1907 | def changegroup(self, basenodes, source): | |
1917 | # to avoid a race we use changegroupsubset() (issue1320) |
|
1908 | # to avoid a race we use changegroupsubset() (issue1320) | |
1918 | return self.changegroupsubset(basenodes, self.heads(), source) |
|
1909 | return self.changegroupsubset(basenodes, self.heads(), source) | |
1919 |
|
1910 | |||
1920 | def _changegroup(self, nodes, source): |
|
1911 | def _changegroup(self, nodes, source): | |
1921 | """Compute the changegroup of all nodes that we have that a recipient |
|
1912 | """Compute the changegroup of all nodes that we have that a recipient | |
1922 | doesn't. Return a chunkbuffer object whose read() method will return |
|
1913 | doesn't. Return a chunkbuffer object whose read() method will return | |
1923 | successive changegroup chunks. |
|
1914 | successive changegroup chunks. | |
1924 |
|
1915 | |||
1925 | This is much easier than the previous function as we can assume that |
|
1916 | This is much easier than the previous function as we can assume that | |
1926 | the recipient has any changenode we aren't sending them. |
|
1917 | the recipient has any changenode we aren't sending them. | |
1927 |
|
1918 | |||
1928 | nodes is the set of nodes to send""" |
|
1919 | nodes is the set of nodes to send""" | |
1929 |
|
1920 | |||
1930 | self.hook('preoutgoing', throw=True, source=source) |
|
1921 | self.hook('preoutgoing', throw=True, source=source) | |
1931 |
|
1922 | |||
1932 | cl = self.changelog |
|
1923 | cl = self.changelog | |
1933 | revset = set([cl.rev(n) for n in nodes]) |
|
1924 | revset = set([cl.rev(n) for n in nodes]) | |
1934 | self.changegroupinfo(nodes, source) |
|
1925 | self.changegroupinfo(nodes, source) | |
1935 |
|
1926 | |||
1936 | def identity(x): |
|
1927 | def identity(x): | |
1937 | return x |
|
1928 | return x | |
1938 |
|
1929 | |||
1939 | def gennodelst(log): |
|
1930 | def gennodelst(log): | |
1940 | for r in log: |
|
1931 | for r in log: | |
1941 | if log.linkrev(r) in revset: |
|
1932 | if log.linkrev(r) in revset: | |
1942 | yield log.node(r) |
|
1933 | yield log.node(r) | |
1943 |
|
1934 | |||
1944 | def lookuprevlink_func(revlog): |
|
1935 | def lookuprevlink_func(revlog): | |
1945 | def lookuprevlink(n): |
|
1936 | def lookuprevlink(n): | |
1946 | return cl.node(revlog.linkrev(revlog.rev(n))) |
|
1937 | return cl.node(revlog.linkrev(revlog.rev(n))) | |
1947 | return lookuprevlink |
|
1938 | return lookuprevlink | |
1948 |
|
1939 | |||
1949 | def gengroup(): |
|
1940 | def gengroup(): | |
1950 | '''yield a sequence of changegroup chunks (strings)''' |
|
1941 | '''yield a sequence of changegroup chunks (strings)''' | |
1951 | # construct a list of all changed files |
|
1942 | # construct a list of all changed files | |
1952 | changedfiles = {} |
|
1943 | changedfiles = {} | |
1953 | mmfs = {} |
|
1944 | mmfs = {} | |
1954 | collect = changegroup.collector(cl, mmfs, changedfiles) |
|
1945 | collect = changegroup.collector(cl, mmfs, changedfiles) | |
1955 |
|
1946 | |||
1956 | cnt = 0 |
|
1947 | cnt = 0 | |
1957 | for chnk in cl.group(nodes, identity, collect): |
|
1948 | for chnk in cl.group(nodes, identity, collect): | |
1958 | self.ui.progress(_('bundling changes'), cnt, unit=_('chunks')) |
|
1949 | self.ui.progress(_('bundling changes'), cnt, unit=_('chunks')) | |
1959 | cnt += 1 |
|
1950 | cnt += 1 | |
1960 | yield chnk |
|
1951 | yield chnk | |
1961 | self.ui.progress(_('bundling changes'), None) |
|
1952 | self.ui.progress(_('bundling changes'), None) | |
1962 |
|
1953 | |||
1963 | mnfst = self.manifest |
|
1954 | mnfst = self.manifest | |
1964 | nodeiter = gennodelst(mnfst) |
|
1955 | nodeiter = gennodelst(mnfst) | |
1965 | cnt = 0 |
|
1956 | cnt = 0 | |
1966 | for chnk in mnfst.group(nodeiter, lookuprevlink_func(mnfst)): |
|
1957 | for chnk in mnfst.group(nodeiter, lookuprevlink_func(mnfst)): | |
1967 | self.ui.progress(_('bundling manifests'), cnt, unit=_('chunks')) |
|
1958 | self.ui.progress(_('bundling manifests'), cnt, unit=_('chunks')) | |
1968 | cnt += 1 |
|
1959 | cnt += 1 | |
1969 | yield chnk |
|
1960 | yield chnk | |
1970 | self.ui.progress(_('bundling manifests'), None) |
|
1961 | self.ui.progress(_('bundling manifests'), None) | |
1971 |
|
1962 | |||
1972 | cnt = 0 |
|
1963 | cnt = 0 | |
1973 | for fname in sorted(changedfiles): |
|
1964 | for fname in sorted(changedfiles): | |
1974 | filerevlog = self.file(fname) |
|
1965 | filerevlog = self.file(fname) | |
1975 | if not len(filerevlog): |
|
1966 | if not len(filerevlog): | |
1976 | raise util.Abort(_("empty or missing revlog for %s") % fname) |
|
1967 | raise util.Abort(_("empty or missing revlog for %s") % fname) | |
1977 | nodeiter = gennodelst(filerevlog) |
|
1968 | nodeiter = gennodelst(filerevlog) | |
1978 | nodeiter = list(nodeiter) |
|
1969 | nodeiter = list(nodeiter) | |
1979 | if nodeiter: |
|
1970 | if nodeiter: | |
1980 | yield changegroup.chunkheader(len(fname)) |
|
1971 | yield changegroup.chunkheader(len(fname)) | |
1981 | yield fname |
|
1972 | yield fname | |
1982 | lookup = lookuprevlink_func(filerevlog) |
|
1973 | lookup = lookuprevlink_func(filerevlog) | |
1983 | for chnk in filerevlog.group(nodeiter, lookup): |
|
1974 | for chnk in filerevlog.group(nodeiter, lookup): | |
1984 | self.ui.progress( |
|
1975 | self.ui.progress( | |
1985 | _('bundling files'), cnt, item=fname, unit=_('chunks')) |
|
1976 | _('bundling files'), cnt, item=fname, unit=_('chunks')) | |
1986 | cnt += 1 |
|
1977 | cnt += 1 | |
1987 | yield chnk |
|
1978 | yield chnk | |
1988 | self.ui.progress(_('bundling files'), None) |
|
1979 | self.ui.progress(_('bundling files'), None) | |
1989 |
|
1980 | |||
1990 | yield changegroup.closechunk() |
|
1981 | yield changegroup.closechunk() | |
1991 |
|
1982 | |||
1992 | if nodes: |
|
1983 | if nodes: | |
1993 | self.hook('outgoing', node=hex(nodes[0]), source=source) |
|
1984 | self.hook('outgoing', node=hex(nodes[0]), source=source) | |
1994 |
|
1985 | |||
1995 | return util.chunkbuffer(gengroup()) |
|
1986 | return util.chunkbuffer(gengroup()) | |
1996 |
|
1987 | |||
1997 | def addchangegroup(self, source, srctype, url, emptyok=False): |
|
1988 | def addchangegroup(self, source, srctype, url, emptyok=False): | |
1998 | """add changegroup to repo. |
|
1989 | """add changegroup to repo. | |
1999 |
|
1990 | |||
2000 | return values: |
|
1991 | return values: | |
2001 | - nothing changed or no source: 0 |
|
1992 | - nothing changed or no source: 0 | |
2002 | - more heads than before: 1+added heads (2..n) |
|
1993 | - more heads than before: 1+added heads (2..n) | |
2003 | - less heads than before: -1-removed heads (-2..-n) |
|
1994 | - less heads than before: -1-removed heads (-2..-n) | |
2004 | - number of heads stays the same: 1 |
|
1995 | - number of heads stays the same: 1 | |
2005 | """ |
|
1996 | """ | |
2006 | def csmap(x): |
|
1997 | def csmap(x): | |
2007 | self.ui.debug("add changeset %s\n" % short(x)) |
|
1998 | self.ui.debug("add changeset %s\n" % short(x)) | |
2008 | return len(cl) |
|
1999 | return len(cl) | |
2009 |
|
2000 | |||
2010 | def revmap(x): |
|
2001 | def revmap(x): | |
2011 | return cl.rev(x) |
|
2002 | return cl.rev(x) | |
2012 |
|
2003 | |||
2013 | if not source: |
|
2004 | if not source: | |
2014 | return 0 |
|
2005 | return 0 | |
2015 |
|
2006 | |||
2016 | self.hook('prechangegroup', throw=True, source=srctype, url=url) |
|
2007 | self.hook('prechangegroup', throw=True, source=srctype, url=url) | |
2017 |
|
2008 | |||
2018 | changesets = files = revisions = 0 |
|
2009 | changesets = files = revisions = 0 | |
2019 |
|
2010 | |||
2020 | # write changelog data to temp files so concurrent readers will not see |
|
2011 | # write changelog data to temp files so concurrent readers will not see | |
2021 | # inconsistent view |
|
2012 | # inconsistent view | |
2022 | cl = self.changelog |
|
2013 | cl = self.changelog | |
2023 | cl.delayupdate() |
|
2014 | cl.delayupdate() | |
2024 | oldheads = len(cl.heads()) |
|
2015 | oldheads = len(cl.heads()) | |
2025 |
|
2016 | |||
2026 | tr = self.transaction() |
|
2017 | tr = self.transaction() | |
2027 | try: |
|
2018 | try: | |
2028 | trp = weakref.proxy(tr) |
|
2019 | trp = weakref.proxy(tr) | |
2029 | # pull off the changeset group |
|
2020 | # pull off the changeset group | |
2030 | self.ui.status(_("adding changesets\n")) |
|
2021 | self.ui.status(_("adding changesets\n")) | |
2031 | clstart = len(cl) |
|
2022 | clstart = len(cl) | |
2032 | class prog(object): |
|
2023 | class prog(object): | |
2033 | step = _('changesets') |
|
2024 | step = _('changesets') | |
2034 | count = 1 |
|
2025 | count = 1 | |
2035 | ui = self.ui |
|
2026 | ui = self.ui | |
2036 | def __call__(self): |
|
2027 | def __call__(self): | |
2037 | self.ui.progress(self.step, self.count, unit=_('chunks')) |
|
2028 | self.ui.progress(self.step, self.count, unit=_('chunks')) | |
2038 | self.count += 1 |
|
2029 | self.count += 1 | |
2039 | pr = prog() |
|
2030 | pr = prog() | |
2040 | chunkiter = changegroup.chunkiter(source, progress=pr) |
|
2031 | chunkiter = changegroup.chunkiter(source, progress=pr) | |
2041 | if cl.addgroup(chunkiter, csmap, trp) is None and not emptyok: |
|
2032 | if cl.addgroup(chunkiter, csmap, trp) is None and not emptyok: | |
2042 | raise util.Abort(_("received changelog group is empty")) |
|
2033 | raise util.Abort(_("received changelog group is empty")) | |
2043 | clend = len(cl) |
|
2034 | clend = len(cl) | |
2044 | changesets = clend - clstart |
|
2035 | changesets = clend - clstart | |
2045 | self.ui.progress(_('changesets'), None) |
|
2036 | self.ui.progress(_('changesets'), None) | |
2046 |
|
2037 | |||
2047 | # pull off the manifest group |
|
2038 | # pull off the manifest group | |
2048 | self.ui.status(_("adding manifests\n")) |
|
2039 | self.ui.status(_("adding manifests\n")) | |
2049 | pr.step = _('manifests') |
|
2040 | pr.step = _('manifests') | |
2050 | pr.count = 1 |
|
2041 | pr.count = 1 | |
2051 | chunkiter = changegroup.chunkiter(source, progress=pr) |
|
2042 | chunkiter = changegroup.chunkiter(source, progress=pr) | |
2052 | # no need to check for empty manifest group here: |
|
2043 | # no need to check for empty manifest group here: | |
2053 | # if the result of the merge of 1 and 2 is the same in 3 and 4, |
|
2044 | # if the result of the merge of 1 and 2 is the same in 3 and 4, | |
2054 | # no new manifest will be created and the manifest group will |
|
2045 | # no new manifest will be created and the manifest group will | |
2055 | # be empty during the pull |
|
2046 | # be empty during the pull | |
2056 | self.manifest.addgroup(chunkiter, revmap, trp) |
|
2047 | self.manifest.addgroup(chunkiter, revmap, trp) | |
2057 | self.ui.progress(_('manifests'), None) |
|
2048 | self.ui.progress(_('manifests'), None) | |
2058 |
|
2049 | |||
2059 | needfiles = {} |
|
2050 | needfiles = {} | |
2060 | if self.ui.configbool('server', 'validate', default=False): |
|
2051 | if self.ui.configbool('server', 'validate', default=False): | |
2061 | # validate incoming csets have their manifests |
|
2052 | # validate incoming csets have their manifests | |
2062 | for cset in xrange(clstart, clend): |
|
2053 | for cset in xrange(clstart, clend): | |
2063 | mfest = self.changelog.read(self.changelog.node(cset))[0] |
|
2054 | mfest = self.changelog.read(self.changelog.node(cset))[0] | |
2064 | mfest = self.manifest.readdelta(mfest) |
|
2055 | mfest = self.manifest.readdelta(mfest) | |
2065 | # store file nodes we must see |
|
2056 | # store file nodes we must see | |
2066 | for f, n in mfest.iteritems(): |
|
2057 | for f, n in mfest.iteritems(): | |
2067 | needfiles.setdefault(f, set()).add(n) |
|
2058 | needfiles.setdefault(f, set()).add(n) | |
2068 |
|
2059 | |||
2069 | # process the files |
|
2060 | # process the files | |
2070 | self.ui.status(_("adding file changes\n")) |
|
2061 | self.ui.status(_("adding file changes\n")) | |
2071 | pr.step = 'files' |
|
2062 | pr.step = 'files' | |
2072 | pr.count = 1 |
|
2063 | pr.count = 1 | |
2073 | while 1: |
|
2064 | while 1: | |
2074 | f = changegroup.getchunk(source) |
|
2065 | f = changegroup.getchunk(source) | |
2075 | if not f: |
|
2066 | if not f: | |
2076 | break |
|
2067 | break | |
2077 | self.ui.debug("adding %s revisions\n" % f) |
|
2068 | self.ui.debug("adding %s revisions\n" % f) | |
2078 | fl = self.file(f) |
|
2069 | fl = self.file(f) | |
2079 | o = len(fl) |
|
2070 | o = len(fl) | |
2080 | chunkiter = changegroup.chunkiter(source, progress=pr) |
|
2071 | chunkiter = changegroup.chunkiter(source, progress=pr) | |
2081 | if fl.addgroup(chunkiter, revmap, trp) is None: |
|
2072 | if fl.addgroup(chunkiter, revmap, trp) is None: | |
2082 | raise util.Abort(_("received file revlog group is empty")) |
|
2073 | raise util.Abort(_("received file revlog group is empty")) | |
2083 | revisions += len(fl) - o |
|
2074 | revisions += len(fl) - o | |
2084 | files += 1 |
|
2075 | files += 1 | |
2085 | if f in needfiles: |
|
2076 | if f in needfiles: | |
2086 | needs = needfiles[f] |
|
2077 | needs = needfiles[f] | |
2087 | for new in xrange(o, len(fl)): |
|
2078 | for new in xrange(o, len(fl)): | |
2088 | n = fl.node(new) |
|
2079 | n = fl.node(new) | |
2089 | if n in needs: |
|
2080 | if n in needs: | |
2090 | needs.remove(n) |
|
2081 | needs.remove(n) | |
2091 | if not needs: |
|
2082 | if not needs: | |
2092 | del needfiles[f] |
|
2083 | del needfiles[f] | |
2093 | self.ui.progress(_('files'), None) |
|
2084 | self.ui.progress(_('files'), None) | |
2094 |
|
2085 | |||
2095 | for f, needs in needfiles.iteritems(): |
|
2086 | for f, needs in needfiles.iteritems(): | |
2096 | fl = self.file(f) |
|
2087 | fl = self.file(f) | |
2097 | for n in needs: |
|
2088 | for n in needs: | |
2098 | try: |
|
2089 | try: | |
2099 | fl.rev(n) |
|
2090 | fl.rev(n) | |
2100 | except error.LookupError: |
|
2091 | except error.LookupError: | |
2101 | raise util.Abort( |
|
2092 | raise util.Abort( | |
2102 | _('missing file data for %s:%s - run hg verify') % |
|
2093 | _('missing file data for %s:%s - run hg verify') % | |
2103 | (f, hex(n))) |
|
2094 | (f, hex(n))) | |
2104 |
|
2095 | |||
2105 | newheads = len(cl.heads()) |
|
2096 | newheads = len(cl.heads()) | |
2106 | heads = "" |
|
2097 | heads = "" | |
2107 | if oldheads and newheads != oldheads: |
|
2098 | if oldheads and newheads != oldheads: | |
2108 | heads = _(" (%+d heads)") % (newheads - oldheads) |
|
2099 | heads = _(" (%+d heads)") % (newheads - oldheads) | |
2109 |
|
2100 | |||
2110 | self.ui.status(_("added %d changesets" |
|
2101 | self.ui.status(_("added %d changesets" | |
2111 | " with %d changes to %d files%s\n") |
|
2102 | " with %d changes to %d files%s\n") | |
2112 | % (changesets, revisions, files, heads)) |
|
2103 | % (changesets, revisions, files, heads)) | |
2113 |
|
2104 | |||
2114 | if changesets > 0: |
|
2105 | if changesets > 0: | |
2115 | p = lambda: cl.writepending() and self.root or "" |
|
2106 | p = lambda: cl.writepending() and self.root or "" | |
2116 | self.hook('pretxnchangegroup', throw=True, |
|
2107 | self.hook('pretxnchangegroup', throw=True, | |
2117 | node=hex(cl.node(clstart)), source=srctype, |
|
2108 | node=hex(cl.node(clstart)), source=srctype, | |
2118 | url=url, pending=p) |
|
2109 | url=url, pending=p) | |
2119 |
|
2110 | |||
2120 | # make changelog see real files again |
|
2111 | # make changelog see real files again | |
2121 | cl.finalize(trp) |
|
2112 | cl.finalize(trp) | |
2122 |
|
2113 | |||
2123 | tr.close() |
|
2114 | tr.close() | |
2124 | finally: |
|
2115 | finally: | |
2125 | del tr |
|
2116 | del tr | |
2126 |
|
2117 | |||
2127 | if changesets > 0: |
|
2118 | if changesets > 0: | |
2128 | # forcefully update the on-disk branch cache |
|
2119 | # forcefully update the on-disk branch cache | |
2129 | self.ui.debug("updating the branch cache\n") |
|
2120 | self.ui.debug("updating the branch cache\n") | |
2130 | self.branchtags() |
|
2121 | self.branchtags() | |
2131 | self.hook("changegroup", node=hex(cl.node(clstart)), |
|
2122 | self.hook("changegroup", node=hex(cl.node(clstart)), | |
2132 | source=srctype, url=url) |
|
2123 | source=srctype, url=url) | |
2133 |
|
2124 | |||
2134 | for i in xrange(clstart, clend): |
|
2125 | for i in xrange(clstart, clend): | |
2135 | self.hook("incoming", node=hex(cl.node(i)), |
|
2126 | self.hook("incoming", node=hex(cl.node(i)), | |
2136 | source=srctype, url=url) |
|
2127 | source=srctype, url=url) | |
2137 |
|
2128 | |||
2138 | # never return 0 here: |
|
2129 | # never return 0 here: | |
2139 | if newheads < oldheads: |
|
2130 | if newheads < oldheads: | |
2140 | return newheads - oldheads - 1 |
|
2131 | return newheads - oldheads - 1 | |
2141 | else: |
|
2132 | else: | |
2142 | return newheads - oldheads + 1 |
|
2133 | return newheads - oldheads + 1 | |
2143 |
|
2134 | |||
2144 |
|
2135 | |||
2145 | def stream_in(self, remote): |
|
2136 | def stream_in(self, remote): | |
2146 | fp = remote.stream_out() |
|
2137 | fp = remote.stream_out() | |
2147 | l = fp.readline() |
|
2138 | l = fp.readline() | |
2148 | try: |
|
2139 | try: | |
2149 | resp = int(l) |
|
2140 | resp = int(l) | |
2150 | except ValueError: |
|
2141 | except ValueError: | |
2151 | raise error.ResponseError( |
|
2142 | raise error.ResponseError( | |
2152 | _('Unexpected response from remote server:'), l) |
|
2143 | _('Unexpected response from remote server:'), l) | |
2153 | if resp == 1: |
|
2144 | if resp == 1: | |
2154 | raise util.Abort(_('operation forbidden by server')) |
|
2145 | raise util.Abort(_('operation forbidden by server')) | |
2155 | elif resp == 2: |
|
2146 | elif resp == 2: | |
2156 | raise util.Abort(_('locking the remote repository failed')) |
|
2147 | raise util.Abort(_('locking the remote repository failed')) | |
2157 | elif resp != 0: |
|
2148 | elif resp != 0: | |
2158 | raise util.Abort(_('the server sent an unknown error code')) |
|
2149 | raise util.Abort(_('the server sent an unknown error code')) | |
2159 | self.ui.status(_('streaming all changes\n')) |
|
2150 | self.ui.status(_('streaming all changes\n')) | |
2160 | l = fp.readline() |
|
2151 | l = fp.readline() | |
2161 | try: |
|
2152 | try: | |
2162 | total_files, total_bytes = map(int, l.split(' ', 1)) |
|
2153 | total_files, total_bytes = map(int, l.split(' ', 1)) | |
2163 | except (ValueError, TypeError): |
|
2154 | except (ValueError, TypeError): | |
2164 | raise error.ResponseError( |
|
2155 | raise error.ResponseError( | |
2165 | _('Unexpected response from remote server:'), l) |
|
2156 | _('Unexpected response from remote server:'), l) | |
2166 | self.ui.status(_('%d files to transfer, %s of data\n') % |
|
2157 | self.ui.status(_('%d files to transfer, %s of data\n') % | |
2167 | (total_files, util.bytecount(total_bytes))) |
|
2158 | (total_files, util.bytecount(total_bytes))) | |
2168 | start = time.time() |
|
2159 | start = time.time() | |
2169 | for i in xrange(total_files): |
|
2160 | for i in xrange(total_files): | |
2170 | # XXX doesn't support '\n' or '\r' in filenames |
|
2161 | # XXX doesn't support '\n' or '\r' in filenames | |
2171 | l = fp.readline() |
|
2162 | l = fp.readline() | |
2172 | try: |
|
2163 | try: | |
2173 | name, size = l.split('\0', 1) |
|
2164 | name, size = l.split('\0', 1) | |
2174 | size = int(size) |
|
2165 | size = int(size) | |
2175 | except (ValueError, TypeError): |
|
2166 | except (ValueError, TypeError): | |
2176 | raise error.ResponseError( |
|
2167 | raise error.ResponseError( | |
2177 | _('Unexpected response from remote server:'), l) |
|
2168 | _('Unexpected response from remote server:'), l) | |
2178 | self.ui.debug('adding %s (%s)\n' % (name, util.bytecount(size))) |
|
2169 | self.ui.debug('adding %s (%s)\n' % (name, util.bytecount(size))) | |
2179 | # for backwards compat, name was partially encoded |
|
2170 | # for backwards compat, name was partially encoded | |
2180 | ofp = self.sopener(store.decodedir(name), 'w') |
|
2171 | ofp = self.sopener(store.decodedir(name), 'w') | |
2181 | for chunk in util.filechunkiter(fp, limit=size): |
|
2172 | for chunk in util.filechunkiter(fp, limit=size): | |
2182 | ofp.write(chunk) |
|
2173 | ofp.write(chunk) | |
2183 | ofp.close() |
|
2174 | ofp.close() | |
2184 | elapsed = time.time() - start |
|
2175 | elapsed = time.time() - start | |
2185 | if elapsed <= 0: |
|
2176 | if elapsed <= 0: | |
2186 | elapsed = 0.001 |
|
2177 | elapsed = 0.001 | |
2187 | self.ui.status(_('transferred %s in %.1f seconds (%s/sec)\n') % |
|
2178 | self.ui.status(_('transferred %s in %.1f seconds (%s/sec)\n') % | |
2188 | (util.bytecount(total_bytes), elapsed, |
|
2179 | (util.bytecount(total_bytes), elapsed, | |
2189 | util.bytecount(total_bytes / elapsed))) |
|
2180 | util.bytecount(total_bytes / elapsed))) | |
2190 | self.invalidate() |
|
2181 | self.invalidate() | |
2191 | return len(self.heads()) + 1 |
|
2182 | return len(self.heads()) + 1 | |
2192 |
|
2183 | |||
2193 | def clone(self, remote, heads=[], stream=False): |
|
2184 | def clone(self, remote, heads=[], stream=False): | |
2194 | '''clone remote repository. |
|
2185 | '''clone remote repository. | |
2195 |
|
2186 | |||
2196 | keyword arguments: |
|
2187 | keyword arguments: | |
2197 | heads: list of revs to clone (forces use of pull) |
|
2188 | heads: list of revs to clone (forces use of pull) | |
2198 | stream: use streaming clone if possible''' |
|
2189 | stream: use streaming clone if possible''' | |
2199 |
|
2190 | |||
2200 | # now, all clients that can request uncompressed clones can |
|
2191 | # now, all clients that can request uncompressed clones can | |
2201 | # read repo formats supported by all servers that can serve |
|
2192 | # read repo formats supported by all servers that can serve | |
2202 | # them. |
|
2193 | # them. | |
2203 |
|
2194 | |||
2204 | # if revlog format changes, client will have to check version |
|
2195 | # if revlog format changes, client will have to check version | |
2205 | # and format flags on "stream" capability, and use |
|
2196 | # and format flags on "stream" capability, and use | |
2206 | # uncompressed only if compatible. |
|
2197 | # uncompressed only if compatible. | |
2207 |
|
2198 | |||
2208 | if stream and not heads and remote.capable('stream'): |
|
2199 | if stream and not heads and remote.capable('stream'): | |
2209 | return self.stream_in(remote) |
|
2200 | return self.stream_in(remote) | |
2210 | return self.pull(remote, heads) |
|
2201 | return self.pull(remote, heads) | |
2211 |
|
2202 | |||
2212 | # used to avoid circular references so destructors work |
|
2203 | # used to avoid circular references so destructors work | |
2213 | def aftertrans(files): |
|
2204 | def aftertrans(files): | |
2214 | renamefiles = [tuple(t) for t in files] |
|
2205 | renamefiles = [tuple(t) for t in files] | |
2215 | def a(): |
|
2206 | def a(): | |
2216 | for src, dest in renamefiles: |
|
2207 | for src, dest in renamefiles: | |
2217 | util.rename(src, dest) |
|
2208 | util.rename(src, dest) | |
2218 | return a |
|
2209 | return a | |
2219 |
|
2210 | |||
2220 | def instance(ui, path, create): |
|
2211 | def instance(ui, path, create): | |
2221 | return localrepository(ui, util.drop_scheme('file', path), create) |
|
2212 | return localrepository(ui, util.drop_scheme('file', path), create) | |
2222 |
|
2213 | |||
2223 | def islocal(path): |
|
2214 | def islocal(path): | |
2224 | return True |
|
2215 | return True |
@@ -1,169 +1,197 | |||||
1 | #!/bin/sh |
|
1 | #!/bin/sh | |
2 |
|
2 | |||
3 | mkdir a |
|
3 | mkdir a | |
4 | cd a |
|
4 | cd a | |
5 | hg init |
|
5 | hg init | |
6 | echo foo > t1 |
|
6 | echo foo > t1 | |
7 | hg add t1 |
|
7 | hg add t1 | |
8 | hg commit -m "1" -d "1000000 0" |
|
8 | hg commit -m "1" -d "1000000 0" | |
9 |
|
9 | |||
10 | cd .. |
|
10 | cd .. | |
11 | hg clone a b |
|
11 | hg clone a b | |
12 |
|
12 | |||
13 | cd a |
|
13 | cd a | |
14 | echo foo > t2 |
|
14 | echo foo > t2 | |
15 | hg add t2 |
|
15 | hg add t2 | |
16 | hg commit -m "2" -d "1000000 0" |
|
16 | hg commit -m "2" -d "1000000 0" | |
17 |
|
17 | |||
18 | cd ../b |
|
18 | cd ../b | |
19 | echo foo > t3 |
|
19 | echo foo > t3 | |
20 | hg add t3 |
|
20 | hg add t3 | |
21 | hg commit -m "3" -d "1000000 0" |
|
21 | hg commit -m "3" -d "1000000 0" | |
22 |
|
22 | |||
23 | hg push ../a |
|
23 | hg push ../a | |
24 | hg pull ../a |
|
24 | hg pull ../a | |
25 | hg push ../a |
|
25 | hg push ../a | |
26 | hg merge |
|
26 | hg merge | |
27 | hg commit -m "4" -d "1000000 0" |
|
27 | hg commit -m "4" -d "1000000 0" | |
28 | hg push ../a |
|
28 | hg push ../a | |
29 | cd .. |
|
29 | cd .. | |
30 |
|
30 | |||
31 | hg init c |
|
31 | hg init c | |
32 | cd c |
|
32 | cd c | |
33 | for i in 0 1 2; do |
|
33 | for i in 0 1 2; do | |
34 | echo $i >> foo |
|
34 | echo $i >> foo | |
35 | hg ci -Am $i -d "1000000 0" |
|
35 | hg ci -Am $i -d "1000000 0" | |
36 | done |
|
36 | done | |
37 | cd .. |
|
37 | cd .. | |
38 |
|
38 | |||
39 | hg clone c d |
|
39 | hg clone c d | |
40 | cd d |
|
40 | cd d | |
41 | for i in 0 1; do |
|
41 | for i in 0 1; do | |
42 | hg co -C $i |
|
42 | hg co -C $i | |
43 | echo d-$i >> foo |
|
43 | echo d-$i >> foo | |
44 | hg ci -m d-$i -d "1000000 0" |
|
44 | hg ci -m d-$i -d "1000000 0" | |
45 | done |
|
45 | done | |
46 |
|
46 | |||
47 | HGMERGE=true hg merge 3 |
|
47 | HGMERGE=true hg merge 3 | |
48 | hg ci -m c-d -d "1000000 0" |
|
48 | hg ci -m c-d -d "1000000 0" | |
49 |
|
49 | |||
50 | hg push ../c; echo $? |
|
50 | hg push ../c; echo $? | |
51 | hg push -r 2 ../c; echo $? |
|
51 | hg push -r 2 ../c; echo $? | |
52 | hg push -r 3 ../c; echo $? |
|
52 | hg push -r 3 ../c; echo $? | |
53 | hg push -r 3 -r 4 ../c; echo $? |
|
53 | hg push -r 3 -r 4 ../c; echo $? | |
54 | hg push -f -r 3 -r 4 ../c; echo $? |
|
54 | hg push -f -r 3 -r 4 ../c; echo $? | |
55 | hg push -r 5 ../c; echo $? |
|
55 | hg push -r 5 ../c; echo $? | |
56 |
|
56 | |||
57 | # issue 450 |
|
57 | # issue 450 | |
58 | hg init ../e |
|
58 | hg init ../e | |
59 | hg push -r 0 ../e ; echo $? |
|
59 | hg push -r 0 ../e ; echo $? | |
60 | hg push -r 1 ../e ; echo $? |
|
60 | hg push -r 1 ../e ; echo $? | |
61 |
|
61 | |||
62 | cd .. |
|
62 | cd .. | |
63 |
|
63 | |||
64 | # issue 736 |
|
64 | # issue 736 | |
65 | echo % issue 736 |
|
65 | echo % issue 736 | |
66 | hg init f |
|
66 | hg init f | |
67 | cd f |
|
67 | cd f | |
68 | hg -q branch a |
|
68 | hg -q branch a | |
69 | echo 0 > foo |
|
69 | echo 0 > foo | |
70 | hg -q ci -d "1000000 0" -Am 0 |
|
70 | hg -q ci -d "1000000 0" -Am 0 | |
71 | echo 1 > foo |
|
71 | echo 1 > foo | |
72 | hg -q ci -d "1000000 0" -m 1 |
|
72 | hg -q ci -d "1000000 0" -m 1 | |
73 | hg -q up 0 |
|
73 | hg -q up 0 | |
74 | echo 2 > foo |
|
74 | echo 2 > foo | |
75 | hg -q ci -d "1000000 0" -m 2 |
|
75 | hg -q ci -d "1000000 0" -m 2 | |
76 | hg -q up 0 |
|
76 | hg -q up 0 | |
77 | hg -q branch b |
|
77 | hg -q branch b | |
78 | echo 3 > foo |
|
78 | echo 3 > foo | |
79 | hg -q ci -d "1000000 0" -m 3 |
|
79 | hg -q ci -d "1000000 0" -m 3 | |
80 | cd .. |
|
80 | cd .. | |
81 |
|
81 | |||
82 | hg -q clone f g |
|
82 | hg -q clone f g | |
83 | cd g |
|
83 | cd g | |
84 |
|
84 | |||
85 | echo % push on existing branch and new branch |
|
85 | echo % push on existing branch and new branch | |
86 | hg -q up 1 |
|
86 | hg -q up 1 | |
87 | echo 4 > foo |
|
87 | echo 4 > foo | |
88 | hg -q ci -d "1000000 0" -m 4 |
|
88 | hg -q ci -d "1000000 0" -m 4 | |
89 | hg -q up 0 |
|
89 | hg -q up 0 | |
90 | echo 5 > foo |
|
90 | echo 5 > foo | |
91 | hg -q branch c |
|
91 | hg -q branch c | |
92 | hg -q ci -d "1000000 0" -m 5 |
|
92 | hg -q ci -d "1000000 0" -m 5 | |
93 | hg push ../f; echo $? |
|
93 | hg push ../f; echo $? | |
94 | hg push -r 4 -r 5 ../f; echo $? |
|
94 | hg push -r 4 -r 5 ../f; echo $? | |
95 |
|
95 | |||
96 | echo % multiple new branches |
|
96 | echo % multiple new branches | |
97 | hg -q branch d |
|
97 | hg -q branch d | |
98 | echo 6 > foo |
|
98 | echo 6 > foo | |
99 | hg -q ci -d "1000000 0" -m 6 |
|
99 | hg -q ci -d "1000000 0" -m 6 | |
100 | hg push ../f; echo $? |
|
100 | hg push ../f; echo $? | |
101 | hg push -r 4 -r 6 ../f; echo $? |
|
101 | hg push -r 4 -r 6 ../f; echo $? | |
102 | cd ../g |
|
102 | cd ../g | |
103 |
|
103 | |||
104 | echo % fail on multiple head push |
|
104 | echo % fail on multiple head push | |
105 | hg -q up 1 |
|
105 | hg -q up 1 | |
106 | echo 7 > foo |
|
106 | echo 7 > foo | |
107 | hg -q ci -d "1000000 0" -m 7 |
|
107 | hg -q ci -d "1000000 0" -m 7 | |
108 | hg push -r 4 -r 7 ../f; echo $? |
|
108 | hg push -r 4 -r 7 ../f; echo $? | |
109 |
|
109 | |||
110 | echo % push replacement head on existing branches |
|
110 | echo % push replacement head on existing branches | |
111 | hg -q up 3 |
|
111 | hg -q up 3 | |
112 | echo 8 > foo |
|
112 | echo 8 > foo | |
113 | hg -q ci -d "1000000 0" -m 8 |
|
113 | hg -q ci -d "1000000 0" -m 8 | |
114 | hg push -r 7 -r 8 ../f; echo $? |
|
114 | hg push -r 7 -r 8 ../f; echo $? | |
115 |
|
115 | |||
116 | echo % merge of branch a to other branch b followed by unrelated push on branch a |
|
116 | echo % merge of branch a to other branch b followed by unrelated push on branch a | |
117 | hg -q up 7 |
|
117 | hg -q up 7 | |
118 | HGMERGE=true hg -q merge 8 |
|
118 | HGMERGE=true hg -q merge 8 | |
119 | hg -q ci -d "1000000 0" -m 9 |
|
119 | hg -q ci -d "1000000 0" -m 9 | |
120 | hg -q up 8 |
|
120 | hg -q up 8 | |
121 | echo 10 > foo |
|
121 | echo 10 > foo | |
122 | hg -q ci -d "1000000 0" -m 10 |
|
122 | hg -q ci -d "1000000 0" -m 10 | |
123 | hg push -r 9 ../f; echo $? |
|
123 | hg push -r 9 ../f; echo $? | |
124 | hg push -r 10 ../f; echo $? |
|
124 | hg push -r 10 ../f; echo $? | |
125 |
|
125 | |||
126 | echo % cheating the counting algorithm |
|
126 | echo % cheating the counting algorithm | |
127 | hg -q up 9 |
|
127 | hg -q up 9 | |
128 | HGMERGE=true hg -q merge 2 |
|
128 | HGMERGE=true hg -q merge 2 | |
129 | hg -q ci -d "1000000 0" -m 11 |
|
129 | hg -q ci -d "1000000 0" -m 11 | |
130 | hg -q up 1 |
|
130 | hg -q up 1 | |
131 | echo 12 > foo |
|
131 | echo 12 > foo | |
132 | hg -q ci -d "1000000 0" -m 12 |
|
132 | hg -q ci -d "1000000 0" -m 12 | |
133 | hg push -r 11 -r 12 ../f; echo $? |
|
133 | hg push -r 11 -r 12 ../f; echo $? | |
134 |
|
134 | |||
135 | echo % checking prepush logic does not allow silently pushing multiple new heads |
|
135 | echo % checking prepush logic does not allow silently pushing multiple new heads | |
136 | cd .. |
|
136 | cd .. | |
137 | hg init h |
|
137 | hg init h | |
138 | echo init > h/init |
|
138 | echo init > h/init | |
139 | hg -R h ci -Am init |
|
139 | hg -R h ci -Am init | |
140 | echo a > h/a |
|
140 | echo a > h/a | |
141 | hg -R h ci -Am a |
|
141 | hg -R h ci -Am a | |
142 | hg clone h i |
|
142 | hg clone h i | |
143 | hg -R h up 0 |
|
143 | hg -R h up 0 | |
144 | echo b > h/b |
|
144 | echo b > h/b | |
145 | hg -R h ci -Am b |
|
145 | hg -R h ci -Am b | |
146 | hg -R i up 0 |
|
146 | hg -R i up 0 | |
147 | echo c > i/c |
|
147 | echo c > i/c | |
148 | hg -R i ci -Am c |
|
148 | hg -R i ci -Am c | |
149 | hg -R i push h |
|
149 | hg -R i push h | |
150 | echo |
|
150 | echo | |
151 |
|
151 | |||
152 | echo % check prepush logic with merged branches |
|
152 | echo % check prepush logic with merged branches | |
153 | hg init j |
|
153 | hg init j | |
154 | hg -R j branch a |
|
154 | hg -R j branch a | |
155 | echo init > j/foo |
|
155 | echo init > j/foo | |
156 | hg -R j ci -Am init |
|
156 | hg -R j ci -Am init | |
157 | hg clone j k |
|
157 | hg clone j k | |
158 | echo a1 > j/foo |
|
158 | echo a1 > j/foo | |
159 | hg -R j ci -m a1 |
|
159 | hg -R j ci -m a1 | |
160 | hg -R k branch b |
|
160 | hg -R k branch b | |
161 | echo b > k/foo |
|
161 | echo b > k/foo | |
162 | hg -R k ci -m b |
|
162 | hg -R k ci -m b | |
163 | hg -R k up 0 |
|
163 | hg -R k up 0 | |
164 | hg -R k merge b |
|
164 | hg -R k merge b | |
165 | hg -R k ci -m merge |
|
165 | hg -R k ci -m merge | |
166 | hg -R k push -r a j |
|
166 | hg -R k push -r a j | |
167 | echo |
|
167 | echo | |
168 |
|
168 | |||
|
169 | echo % prepush -r should not allow you to sneak in new heads | |||
|
170 | hg init l | |||
|
171 | cd l | |||
|
172 | echo a >> foo | |||
|
173 | hg -q add foo | |||
|
174 | hg -q branch a | |||
|
175 | hg -q ci -d '0 0' -ma | |||
|
176 | hg -q up null | |||
|
177 | echo a >> foo | |||
|
178 | hg -q add foo | |||
|
179 | hg -q branch b | |||
|
180 | hg -q ci -d '0 0' -mb | |||
|
181 | cd .. | |||
|
182 | hg -q clone l m -u a | |||
|
183 | cd m | |||
|
184 | hg -q merge b | |||
|
185 | hg -q ci -d '0 0' -mmb | |||
|
186 | hg -q up 0 | |||
|
187 | echo a >> foo | |||
|
188 | hg -q ci -ma2 | |||
|
189 | hg -q up 2 | |||
|
190 | echo a >> foo | |||
|
191 | hg -q branch -f b | |||
|
192 | hg -q ci -d '0 0' -mb2 | |||
|
193 | hg -q merge 3 | |||
|
194 | hg -q ci -d '0 0' -mma | |||
|
195 | hg push ../l -b b | |||
|
196 | ||||
169 | exit 0 |
|
197 | exit 0 |
@@ -1,172 +1,177 | |||||
1 | updating to branch default |
|
1 | updating to branch default | |
2 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
2 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
3 | pushing to ../a |
|
3 | pushing to ../a | |
4 | searching for changes |
|
4 | searching for changes | |
5 | abort: push creates new remote heads on branch 'default'! |
|
5 | abort: push creates new remote heads on branch 'default'! | |
6 | (you should pull and merge or use push -f to force) |
|
6 | (you should pull and merge or use push -f to force) | |
7 | pulling from ../a |
|
7 | pulling from ../a | |
8 | searching for changes |
|
8 | searching for changes | |
9 | adding changesets |
|
9 | adding changesets | |
10 | adding manifests |
|
10 | adding manifests | |
11 | adding file changes |
|
11 | adding file changes | |
12 | added 1 changesets with 1 changes to 1 files (+1 heads) |
|
12 | added 1 changesets with 1 changes to 1 files (+1 heads) | |
13 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
13 | (run 'hg heads' to see heads, 'hg merge' to merge) | |
14 | pushing to ../a |
|
14 | pushing to ../a | |
15 | searching for changes |
|
15 | searching for changes | |
16 | abort: push creates new remote heads on branch 'default'! |
|
16 | abort: push creates new remote heads on branch 'default'! | |
17 | (did you forget to merge? use push -f to force) |
|
17 | (did you forget to merge? use push -f to force) | |
18 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
18 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
19 | (branch merge, don't forget to commit) |
|
19 | (branch merge, don't forget to commit) | |
20 | pushing to ../a |
|
20 | pushing to ../a | |
21 | searching for changes |
|
21 | searching for changes | |
22 | adding changesets |
|
22 | adding changesets | |
23 | adding manifests |
|
23 | adding manifests | |
24 | adding file changes |
|
24 | adding file changes | |
25 | added 2 changesets with 1 changes to 1 files |
|
25 | added 2 changesets with 1 changes to 1 files | |
26 | adding foo |
|
26 | adding foo | |
27 | updating to branch default |
|
27 | updating to branch default | |
28 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
28 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
29 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
29 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
30 | created new head |
|
30 | created new head | |
31 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
31 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
32 | created new head |
|
32 | created new head | |
33 | merging foo |
|
33 | merging foo | |
34 | 0 files updated, 1 files merged, 0 files removed, 0 files unresolved |
|
34 | 0 files updated, 1 files merged, 0 files removed, 0 files unresolved | |
35 | (branch merge, don't forget to commit) |
|
35 | (branch merge, don't forget to commit) | |
36 | pushing to ../c |
|
36 | pushing to ../c | |
37 | searching for changes |
|
37 | searching for changes | |
38 | abort: push creates new remote heads on branch 'default'! |
|
38 | abort: push creates new remote heads on branch 'default'! | |
39 | (did you forget to merge? use push -f to force) |
|
39 | (did you forget to merge? use push -f to force) | |
40 | 1 |
|
40 | 1 | |
41 | pushing to ../c |
|
41 | pushing to ../c | |
42 | searching for changes |
|
42 | searching for changes | |
43 | no changes found |
|
43 | no changes found | |
44 | 0 |
|
44 | 0 | |
45 | pushing to ../c |
|
45 | pushing to ../c | |
46 | searching for changes |
|
46 | searching for changes | |
47 | abort: push creates new remote heads on branch 'default'! |
|
47 | abort: push creates new remote heads on branch 'default'! | |
48 | (you should pull and merge or use push -f to force) |
|
48 | (you should pull and merge or use push -f to force) | |
49 | 1 |
|
49 | 1 | |
50 | pushing to ../c |
|
50 | pushing to ../c | |
51 | searching for changes |
|
51 | searching for changes | |
52 | abort: push creates new remote heads on branch 'default'! |
|
52 | abort: push creates new remote heads on branch 'default'! | |
53 | (did you forget to merge? use push -f to force) |
|
53 | (did you forget to merge? use push -f to force) | |
54 | 1 |
|
54 | 1 | |
55 | pushing to ../c |
|
55 | pushing to ../c | |
56 | searching for changes |
|
56 | searching for changes | |
57 | adding changesets |
|
57 | adding changesets | |
58 | adding manifests |
|
58 | adding manifests | |
59 | adding file changes |
|
59 | adding file changes | |
60 | added 2 changesets with 2 changes to 1 files (+2 heads) |
|
60 | added 2 changesets with 2 changes to 1 files (+2 heads) | |
61 | 0 |
|
61 | 0 | |
62 | pushing to ../c |
|
62 | pushing to ../c | |
63 | searching for changes |
|
63 | searching for changes | |
64 | adding changesets |
|
64 | adding changesets | |
65 | adding manifests |
|
65 | adding manifests | |
66 | adding file changes |
|
66 | adding file changes | |
67 | added 1 changesets with 1 changes to 1 files (-1 heads) |
|
67 | added 1 changesets with 1 changes to 1 files (-1 heads) | |
68 | 0 |
|
68 | 0 | |
69 | pushing to ../e |
|
69 | pushing to ../e | |
70 | searching for changes |
|
70 | searching for changes | |
71 | adding changesets |
|
71 | adding changesets | |
72 | adding manifests |
|
72 | adding manifests | |
73 | adding file changes |
|
73 | adding file changes | |
74 | added 1 changesets with 1 changes to 1 files |
|
74 | added 1 changesets with 1 changes to 1 files | |
75 | 0 |
|
75 | 0 | |
76 | pushing to ../e |
|
76 | pushing to ../e | |
77 | searching for changes |
|
77 | searching for changes | |
78 | adding changesets |
|
78 | adding changesets | |
79 | adding manifests |
|
79 | adding manifests | |
80 | adding file changes |
|
80 | adding file changes | |
81 | added 1 changesets with 1 changes to 1 files |
|
81 | added 1 changesets with 1 changes to 1 files | |
82 | 0 |
|
82 | 0 | |
83 | % issue 736 |
|
83 | % issue 736 | |
84 | % push on existing branch and new branch |
|
84 | % push on existing branch and new branch | |
85 | pushing to ../f |
|
85 | pushing to ../f | |
86 | searching for changes |
|
86 | searching for changes | |
87 | abort: push creates new remote branches: c! |
|
87 | abort: push creates new remote branches: c! | |
88 | (use 'hg push -f' to force) |
|
88 | (use 'hg push -f' to force) | |
89 | 1 |
|
89 | 1 | |
90 | pushing to ../f |
|
90 | pushing to ../f | |
91 | searching for changes |
|
91 | searching for changes | |
92 | abort: push creates new remote branches: c! |
|
92 | abort: push creates new remote branches: c! | |
93 | (use 'hg push -f' to force) |
|
93 | (use 'hg push -f' to force) | |
94 | 1 |
|
94 | 1 | |
95 | % multiple new branches |
|
95 | % multiple new branches | |
96 | pushing to ../f |
|
96 | pushing to ../f | |
97 | searching for changes |
|
97 | searching for changes | |
98 | abort: push creates new remote branches: c, d! |
|
98 | abort: push creates new remote branches: c, d! | |
99 | (use 'hg push -f' to force) |
|
99 | (use 'hg push -f' to force) | |
100 | 1 |
|
100 | 1 | |
101 | pushing to ../f |
|
101 | pushing to ../f | |
102 | searching for changes |
|
102 | searching for changes | |
103 | abort: push creates new remote branches: d! |
|
103 | abort: push creates new remote branches: c, d! | |
104 | (use 'hg push -f' to force) |
|
104 | (use 'hg push -f' to force) | |
105 | 1 |
|
105 | 1 | |
106 | % fail on multiple head push |
|
106 | % fail on multiple head push | |
107 | pushing to ../f |
|
107 | pushing to ../f | |
108 | searching for changes |
|
108 | searching for changes | |
109 | abort: push creates new remote heads on branch 'a'! |
|
109 | abort: push creates new remote heads on branch 'a'! | |
110 | (you should pull and merge or use push -f to force) |
|
110 | (you should pull and merge or use push -f to force) | |
111 | 1 |
|
111 | 1 | |
112 | % push replacement head on existing branches |
|
112 | % push replacement head on existing branches | |
113 | pushing to ../f |
|
113 | pushing to ../f | |
114 | searching for changes |
|
114 | searching for changes | |
115 | adding changesets |
|
115 | adding changesets | |
116 | adding manifests |
|
116 | adding manifests | |
117 | adding file changes |
|
117 | adding file changes | |
118 | added 2 changesets with 2 changes to 1 files |
|
118 | added 2 changesets with 2 changes to 1 files | |
119 | 0 |
|
119 | 0 | |
120 | % merge of branch a to other branch b followed by unrelated push on branch a |
|
120 | % merge of branch a to other branch b followed by unrelated push on branch a | |
121 | pushing to ../f |
|
121 | pushing to ../f | |
122 | searching for changes |
|
122 | searching for changes | |
123 | adding changesets |
|
123 | adding changesets | |
124 | adding manifests |
|
124 | adding manifests | |
125 | adding file changes |
|
125 | adding file changes | |
126 | added 1 changesets with 1 changes to 1 files (-1 heads) |
|
126 | added 1 changesets with 1 changes to 1 files (-1 heads) | |
127 | 0 |
|
127 | 0 | |
128 | pushing to ../f |
|
128 | pushing to ../f | |
129 | searching for changes |
|
129 | searching for changes | |
130 | adding changesets |
|
130 | adding changesets | |
131 | adding manifests |
|
131 | adding manifests | |
132 | adding file changes |
|
132 | adding file changes | |
133 | added 1 changesets with 1 changes to 1 files (+1 heads) |
|
133 | added 1 changesets with 1 changes to 1 files (+1 heads) | |
134 | 0 |
|
134 | 0 | |
135 | % cheating the counting algorithm |
|
135 | % cheating the counting algorithm | |
136 | pushing to ../f |
|
136 | pushing to ../f | |
137 | searching for changes |
|
137 | searching for changes | |
138 | adding changesets |
|
138 | adding changesets | |
139 | adding manifests |
|
139 | adding manifests | |
140 | adding file changes |
|
140 | adding file changes | |
141 | added 2 changesets with 2 changes to 1 files |
|
141 | added 2 changesets with 2 changes to 1 files | |
142 | 0 |
|
142 | 0 | |
143 | % checking prepush logic does not allow silently pushing multiple new heads |
|
143 | % checking prepush logic does not allow silently pushing multiple new heads | |
144 | adding init |
|
144 | adding init | |
145 | adding a |
|
145 | adding a | |
146 | updating to branch default |
|
146 | updating to branch default | |
147 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
147 | 2 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
148 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
148 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
149 | adding b |
|
149 | adding b | |
150 | created new head |
|
150 | created new head | |
151 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
151 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
152 | adding c |
|
152 | adding c | |
153 | created new head |
|
153 | created new head | |
154 | pushing to h |
|
154 | pushing to h | |
155 | searching for changes |
|
155 | searching for changes | |
156 | abort: push creates new remote heads on branch 'default'! |
|
156 | abort: push creates new remote heads on branch 'default'! | |
157 | (you should pull and merge or use push -f to force) |
|
157 | (you should pull and merge or use push -f to force) | |
158 |
|
158 | |||
159 | % check prepush logic with merged branches |
|
159 | % check prepush logic with merged branches | |
160 | marked working directory as branch a |
|
160 | marked working directory as branch a | |
161 | adding foo |
|
161 | adding foo | |
162 | updating to branch a |
|
162 | updating to branch a | |
163 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
163 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
164 | marked working directory as branch b |
|
164 | marked working directory as branch b | |
165 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
165 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
166 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
166 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
167 | (branch merge, don't forget to commit) |
|
167 | (branch merge, don't forget to commit) | |
168 | pushing to j |
|
168 | pushing to j | |
169 | searching for changes |
|
169 | searching for changes | |
|
170 | abort: push creates new remote branches: b! | |||
|
171 | (use 'hg push -f' to force) | |||
|
172 | ||||
|
173 | % prepush -r should not allow you to sneak in new heads | |||
|
174 | pushing to ../l | |||
|
175 | searching for changes | |||
170 | abort: push creates new remote heads on branch 'a'! |
|
176 | abort: push creates new remote heads on branch 'a'! | |
171 |
( |
|
177 | (did you forget to merge? use push -f to force) | |
172 |
|
General Comments 0
You need to be logged in to leave comments.
Login now