Show More
@@ -1,1999 +1,1999 | |||||
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 |
|
5 | # This software may be used and distributed according to the terms | |
6 | # of the GNU General Public License, incorporated herein by reference. |
|
6 | # of the GNU General Public License, incorporated herein by reference. | |
7 |
|
7 | |||
8 | from node import * |
|
8 | from node import * | |
9 | from i18n import _ |
|
9 | from i18n import _ | |
10 | import repo, changegroup |
|
10 | import repo, changegroup | |
11 | import changelog, dirstate, filelog, manifest, context, weakref |
|
11 | import changelog, dirstate, filelog, manifest, context, weakref | |
12 | import re, lock, transaction, tempfile, stat, errno, ui |
|
12 | import re, lock, transaction, tempfile, stat, errno, ui | |
13 | import os, revlog, time, util, extensions, hook |
|
13 | import os, revlog, time, util, extensions, hook | |
14 |
|
14 | |||
15 | class localrepository(repo.repository): |
|
15 | class localrepository(repo.repository): | |
16 | capabilities = util.set(('lookup', 'changegroupsubset')) |
|
16 | capabilities = util.set(('lookup', 'changegroupsubset')) | |
17 | supported = ('revlogv1', 'store') |
|
17 | supported = ('revlogv1', 'store') | |
18 |
|
18 | |||
19 | def __init__(self, parentui, path=None, create=0): |
|
19 | def __init__(self, parentui, path=None, create=0): | |
20 | repo.repository.__init__(self) |
|
20 | repo.repository.__init__(self) | |
21 | self.root = os.path.realpath(path) |
|
21 | self.root = os.path.realpath(path) | |
22 | self.path = os.path.join(self.root, ".hg") |
|
22 | self.path = os.path.join(self.root, ".hg") | |
23 | self.origroot = path |
|
23 | self.origroot = path | |
24 | self.opener = util.opener(self.path) |
|
24 | self.opener = util.opener(self.path) | |
25 | self.wopener = util.opener(self.root) |
|
25 | self.wopener = util.opener(self.root) | |
26 |
|
26 | |||
27 | if not os.path.isdir(self.path): |
|
27 | if not os.path.isdir(self.path): | |
28 | if create: |
|
28 | if create: | |
29 | if not os.path.exists(path): |
|
29 | if not os.path.exists(path): | |
30 | os.mkdir(path) |
|
30 | os.mkdir(path) | |
31 | os.mkdir(self.path) |
|
31 | os.mkdir(self.path) | |
32 | requirements = ["revlogv1"] |
|
32 | requirements = ["revlogv1"] | |
33 | if parentui.configbool('format', 'usestore', True): |
|
33 | if parentui.configbool('format', 'usestore', True): | |
34 | os.mkdir(os.path.join(self.path, "store")) |
|
34 | os.mkdir(os.path.join(self.path, "store")) | |
35 | requirements.append("store") |
|
35 | requirements.append("store") | |
36 | # create an invalid changelog |
|
36 | # create an invalid changelog | |
37 | self.opener("00changelog.i", "a").write( |
|
37 | self.opener("00changelog.i", "a").write( | |
38 | '\0\0\0\2' # represents revlogv2 |
|
38 | '\0\0\0\2' # represents revlogv2 | |
39 | ' dummy changelog to prevent using the old repo layout' |
|
39 | ' dummy changelog to prevent using the old repo layout' | |
40 | ) |
|
40 | ) | |
41 | reqfile = self.opener("requires", "w") |
|
41 | reqfile = self.opener("requires", "w") | |
42 | for r in requirements: |
|
42 | for r in requirements: | |
43 | reqfile.write("%s\n" % r) |
|
43 | reqfile.write("%s\n" % r) | |
44 | reqfile.close() |
|
44 | reqfile.close() | |
45 | else: |
|
45 | else: | |
46 | raise repo.RepoError(_("repository %s not found") % path) |
|
46 | raise repo.RepoError(_("repository %s not found") % path) | |
47 | elif create: |
|
47 | elif create: | |
48 | raise repo.RepoError(_("repository %s already exists") % path) |
|
48 | raise repo.RepoError(_("repository %s already exists") % path) | |
49 | else: |
|
49 | else: | |
50 | # find requirements |
|
50 | # find requirements | |
51 | try: |
|
51 | try: | |
52 | requirements = self.opener("requires").read().splitlines() |
|
52 | requirements = self.opener("requires").read().splitlines() | |
53 | except IOError, inst: |
|
53 | except IOError, inst: | |
54 | if inst.errno != errno.ENOENT: |
|
54 | if inst.errno != errno.ENOENT: | |
55 | raise |
|
55 | raise | |
56 | requirements = [] |
|
56 | requirements = [] | |
57 | # check them |
|
57 | # check them | |
58 | for r in requirements: |
|
58 | for r in requirements: | |
59 | if r not in self.supported: |
|
59 | if r not in self.supported: | |
60 | raise repo.RepoError(_("requirement '%s' not supported") % r) |
|
60 | raise repo.RepoError(_("requirement '%s' not supported") % r) | |
61 |
|
61 | |||
62 | # setup store |
|
62 | # setup store | |
63 | if "store" in requirements: |
|
63 | if "store" in requirements: | |
64 | self.encodefn = util.encodefilename |
|
64 | self.encodefn = util.encodefilename | |
65 | self.decodefn = util.decodefilename |
|
65 | self.decodefn = util.decodefilename | |
66 | self.spath = os.path.join(self.path, "store") |
|
66 | self.spath = os.path.join(self.path, "store") | |
67 | else: |
|
67 | else: | |
68 | self.encodefn = lambda x: x |
|
68 | self.encodefn = lambda x: x | |
69 | self.decodefn = lambda x: x |
|
69 | self.decodefn = lambda x: x | |
70 | self.spath = self.path |
|
70 | self.spath = self.path | |
71 | self.sopener = util.encodedopener(util.opener(self.spath), |
|
71 | self.sopener = util.encodedopener(util.opener(self.spath), | |
72 | self.encodefn) |
|
72 | self.encodefn) | |
73 |
|
73 | |||
74 | self.ui = ui.ui(parentui=parentui) |
|
74 | self.ui = ui.ui(parentui=parentui) | |
75 | try: |
|
75 | try: | |
76 | self.ui.readconfig(self.join("hgrc"), self.root) |
|
76 | self.ui.readconfig(self.join("hgrc"), self.root) | |
77 | extensions.loadall(self.ui) |
|
77 | extensions.loadall(self.ui) | |
78 | except IOError: |
|
78 | except IOError: | |
79 | pass |
|
79 | pass | |
80 |
|
80 | |||
81 | self.tagscache = None |
|
81 | self.tagscache = None | |
82 | self.branchcache = None |
|
82 | self.branchcache = None | |
83 | self.nodetagscache = None |
|
83 | self.nodetagscache = None | |
84 | self.filterpats = {} |
|
84 | self.filterpats = {} | |
85 | self._transref = self._lockref = self._wlockref = None |
|
85 | self._transref = self._lockref = self._wlockref = None | |
86 |
|
86 | |||
87 | def __getattr__(self, name): |
|
87 | def __getattr__(self, name): | |
88 | if name == 'changelog': |
|
88 | if name == 'changelog': | |
89 | self.changelog = changelog.changelog(self.sopener) |
|
89 | self.changelog = changelog.changelog(self.sopener) | |
90 | self.sopener.defversion = self.changelog.version |
|
90 | self.sopener.defversion = self.changelog.version | |
91 | return self.changelog |
|
91 | return self.changelog | |
92 | if name == 'manifest': |
|
92 | if name == 'manifest': | |
93 | self.changelog |
|
93 | self.changelog | |
94 | self.manifest = manifest.manifest(self.sopener) |
|
94 | self.manifest = manifest.manifest(self.sopener) | |
95 | return self.manifest |
|
95 | return self.manifest | |
96 | if name == 'dirstate': |
|
96 | if name == 'dirstate': | |
97 | self.dirstate = dirstate.dirstate(self.opener, self.ui, self.root) |
|
97 | self.dirstate = dirstate.dirstate(self.opener, self.ui, self.root) | |
98 | return self.dirstate |
|
98 | return self.dirstate | |
99 | else: |
|
99 | else: | |
100 | raise AttributeError, name |
|
100 | raise AttributeError, name | |
101 |
|
101 | |||
102 | def url(self): |
|
102 | def url(self): | |
103 | return 'file:' + self.root |
|
103 | return 'file:' + self.root | |
104 |
|
104 | |||
105 | def hook(self, name, throw=False, **args): |
|
105 | def hook(self, name, throw=False, **args): | |
106 | return hook.hook(self.ui, self, name, throw, **args) |
|
106 | return hook.hook(self.ui, self, name, throw, **args) | |
107 |
|
107 | |||
108 | tag_disallowed = ':\r\n' |
|
108 | tag_disallowed = ':\r\n' | |
109 |
|
109 | |||
110 | def _tag(self, name, node, message, local, user, date, parent=None, |
|
110 | def _tag(self, name, node, message, local, user, date, parent=None, | |
111 | extra={}): |
|
111 | extra={}): | |
112 | use_dirstate = parent is None |
|
112 | use_dirstate = parent is None | |
113 |
|
113 | |||
114 | for c in self.tag_disallowed: |
|
114 | for c in self.tag_disallowed: | |
115 | if c in name: |
|
115 | if c in name: | |
116 | raise util.Abort(_('%r cannot be used in a tag name') % c) |
|
116 | raise util.Abort(_('%r cannot be used in a tag name') % c) | |
117 |
|
117 | |||
118 | self.hook('pretag', throw=True, node=hex(node), tag=name, local=local) |
|
118 | self.hook('pretag', throw=True, node=hex(node), tag=name, local=local) | |
119 |
|
119 | |||
120 | def writetag(fp, name, munge, prevtags): |
|
120 | def writetag(fp, name, munge, prevtags): | |
121 | fp.seek(0, 2) |
|
121 | fp.seek(0, 2) | |
122 | if prevtags and prevtags[-1] != '\n': |
|
122 | if prevtags and prevtags[-1] != '\n': | |
123 | fp.write('\n') |
|
123 | fp.write('\n') | |
124 | fp.write('%s %s\n' % (hex(node), munge and munge(name) or name)) |
|
124 | fp.write('%s %s\n' % (hex(node), munge and munge(name) or name)) | |
125 | fp.close() |
|
125 | fp.close() | |
126 |
|
126 | |||
127 | prevtags = '' |
|
127 | prevtags = '' | |
128 | if local: |
|
128 | if local: | |
129 | try: |
|
129 | try: | |
130 | fp = self.opener('localtags', 'r+') |
|
130 | fp = self.opener('localtags', 'r+') | |
131 | except IOError, err: |
|
131 | except IOError, err: | |
132 | fp = self.opener('localtags', 'a') |
|
132 | fp = self.opener('localtags', 'a') | |
133 | else: |
|
133 | else: | |
134 | prevtags = fp.read() |
|
134 | prevtags = fp.read() | |
135 |
|
135 | |||
136 | # local tags are stored in the current charset |
|
136 | # local tags are stored in the current charset | |
137 | writetag(fp, name, None, prevtags) |
|
137 | writetag(fp, name, None, prevtags) | |
138 | self.hook('tag', node=hex(node), tag=name, local=local) |
|
138 | self.hook('tag', node=hex(node), tag=name, local=local) | |
139 | return |
|
139 | return | |
140 |
|
140 | |||
141 | if use_dirstate: |
|
141 | if use_dirstate: | |
142 | try: |
|
142 | try: | |
143 | fp = self.wfile('.hgtags', 'rb+') |
|
143 | fp = self.wfile('.hgtags', 'rb+') | |
144 | except IOError, err: |
|
144 | except IOError, err: | |
145 | fp = self.wfile('.hgtags', 'ab') |
|
145 | fp = self.wfile('.hgtags', 'ab') | |
146 | else: |
|
146 | else: | |
147 | prevtags = fp.read() |
|
147 | prevtags = fp.read() | |
148 | else: |
|
148 | else: | |
149 | try: |
|
149 | try: | |
150 | prevtags = self.filectx('.hgtags', parent).data() |
|
150 | prevtags = self.filectx('.hgtags', parent).data() | |
151 | except revlog.LookupError: |
|
151 | except revlog.LookupError: | |
152 | pass |
|
152 | pass | |
153 | fp = self.wfile('.hgtags', 'wb') |
|
153 | fp = self.wfile('.hgtags', 'wb') | |
154 | if prevtags: |
|
154 | if prevtags: | |
155 | fp.write(prevtags) |
|
155 | fp.write(prevtags) | |
156 |
|
156 | |||
157 | # committed tags are stored in UTF-8 |
|
157 | # committed tags are stored in UTF-8 | |
158 | writetag(fp, name, util.fromlocal, prevtags) |
|
158 | writetag(fp, name, util.fromlocal, prevtags) | |
159 |
|
159 | |||
160 | if use_dirstate and '.hgtags' not in self.dirstate: |
|
160 | if use_dirstate and '.hgtags' not in self.dirstate: | |
161 | self.add(['.hgtags']) |
|
161 | self.add(['.hgtags']) | |
162 |
|
162 | |||
163 | tagnode = self.commit(['.hgtags'], message, user, date, p1=parent, |
|
163 | tagnode = self.commit(['.hgtags'], message, user, date, p1=parent, | |
164 | extra=extra) |
|
164 | extra=extra) | |
165 |
|
165 | |||
166 | self.hook('tag', node=hex(node), tag=name, local=local) |
|
166 | self.hook('tag', node=hex(node), tag=name, local=local) | |
167 |
|
167 | |||
168 | return tagnode |
|
168 | return tagnode | |
169 |
|
169 | |||
170 | def tag(self, name, node, message, local, user, date): |
|
170 | def tag(self, name, node, message, local, user, date): | |
171 | '''tag a revision with a symbolic name. |
|
171 | '''tag a revision with a symbolic name. | |
172 |
|
172 | |||
173 | if local is True, the tag is stored in a per-repository file. |
|
173 | if local is True, the tag is stored in a per-repository file. | |
174 | otherwise, it is stored in the .hgtags file, and a new |
|
174 | otherwise, it is stored in the .hgtags file, and a new | |
175 | changeset is committed with the change. |
|
175 | changeset is committed with the change. | |
176 |
|
176 | |||
177 | keyword arguments: |
|
177 | keyword arguments: | |
178 |
|
178 | |||
179 | local: whether to store tag in non-version-controlled file |
|
179 | local: whether to store tag in non-version-controlled file | |
180 | (default False) |
|
180 | (default False) | |
181 |
|
181 | |||
182 | message: commit message to use if committing |
|
182 | message: commit message to use if committing | |
183 |
|
183 | |||
184 | user: name of user to use if committing |
|
184 | user: name of user to use if committing | |
185 |
|
185 | |||
186 | date: date tuple to use if committing''' |
|
186 | date: date tuple to use if committing''' | |
187 |
|
187 | |||
188 | for x in self.status()[:5]: |
|
188 | for x in self.status()[:5]: | |
189 | if '.hgtags' in x: |
|
189 | if '.hgtags' in x: | |
190 | raise util.Abort(_('working copy of .hgtags is changed ' |
|
190 | raise util.Abort(_('working copy of .hgtags is changed ' | |
191 | '(please commit .hgtags manually)')) |
|
191 | '(please commit .hgtags manually)')) | |
192 |
|
192 | |||
193 |
|
193 | |||
194 | self._tag(name, node, message, local, user, date) |
|
194 | self._tag(name, node, message, local, user, date) | |
195 |
|
195 | |||
196 | def tags(self): |
|
196 | def tags(self): | |
197 | '''return a mapping of tag to node''' |
|
197 | '''return a mapping of tag to node''' | |
198 | if self.tagscache: |
|
198 | if self.tagscache: | |
199 | return self.tagscache |
|
199 | return self.tagscache | |
200 |
|
200 | |||
201 | globaltags = {} |
|
201 | globaltags = {} | |
202 |
|
202 | |||
203 | def readtags(lines, fn): |
|
203 | def readtags(lines, fn): | |
204 | filetags = {} |
|
204 | filetags = {} | |
205 | count = 0 |
|
205 | count = 0 | |
206 |
|
206 | |||
207 | def warn(msg): |
|
207 | def warn(msg): | |
208 | self.ui.warn(_("%s, line %s: %s\n") % (fn, count, msg)) |
|
208 | self.ui.warn(_("%s, line %s: %s\n") % (fn, count, msg)) | |
209 |
|
209 | |||
210 | for l in lines: |
|
210 | for l in lines: | |
211 | count += 1 |
|
211 | count += 1 | |
212 | if not l: |
|
212 | if not l: | |
213 | continue |
|
213 | continue | |
214 | s = l.split(" ", 1) |
|
214 | s = l.split(" ", 1) | |
215 | if len(s) != 2: |
|
215 | if len(s) != 2: | |
216 | warn(_("cannot parse entry")) |
|
216 | warn(_("cannot parse entry")) | |
217 | continue |
|
217 | continue | |
218 | node, key = s |
|
218 | node, key = s | |
219 | key = util.tolocal(key.strip()) # stored in UTF-8 |
|
219 | key = util.tolocal(key.strip()) # stored in UTF-8 | |
220 | try: |
|
220 | try: | |
221 | bin_n = bin(node) |
|
221 | bin_n = bin(node) | |
222 | except TypeError: |
|
222 | except TypeError: | |
223 | warn(_("node '%s' is not well formed") % node) |
|
223 | warn(_("node '%s' is not well formed") % node) | |
224 | continue |
|
224 | continue | |
225 | if bin_n not in self.changelog.nodemap: |
|
225 | if bin_n not in self.changelog.nodemap: | |
226 | warn(_("tag '%s' refers to unknown node") % key) |
|
226 | warn(_("tag '%s' refers to unknown node") % key) | |
227 | continue |
|
227 | continue | |
228 |
|
228 | |||
229 | h = [] |
|
229 | h = [] | |
230 | if key in filetags: |
|
230 | if key in filetags: | |
231 | n, h = filetags[key] |
|
231 | n, h = filetags[key] | |
232 | h.append(n) |
|
232 | h.append(n) | |
233 | filetags[key] = (bin_n, h) |
|
233 | filetags[key] = (bin_n, h) | |
234 |
|
234 | |||
235 | for k, nh in filetags.items(): |
|
235 | for k, nh in filetags.items(): | |
236 | if k not in globaltags: |
|
236 | if k not in globaltags: | |
237 | globaltags[k] = nh |
|
237 | globaltags[k] = nh | |
238 | continue |
|
238 | continue | |
239 | # we prefer the global tag if: |
|
239 | # we prefer the global tag if: | |
240 | # it supercedes us OR |
|
240 | # it supercedes us OR | |
241 | # mutual supercedes and it has a higher rank |
|
241 | # mutual supercedes and it has a higher rank | |
242 | # otherwise we win because we're tip-most |
|
242 | # otherwise we win because we're tip-most | |
243 | an, ah = nh |
|
243 | an, ah = nh | |
244 | bn, bh = globaltags[k] |
|
244 | bn, bh = globaltags[k] | |
245 | if (bn != an and an in bh and |
|
245 | if (bn != an and an in bh and | |
246 | (bn not in ah or len(bh) > len(ah))): |
|
246 | (bn not in ah or len(bh) > len(ah))): | |
247 | an = bn |
|
247 | an = bn | |
248 | ah.extend([n for n in bh if n not in ah]) |
|
248 | ah.extend([n for n in bh if n not in ah]) | |
249 | globaltags[k] = an, ah |
|
249 | globaltags[k] = an, ah | |
250 |
|
250 | |||
251 | # read the tags file from each head, ending with the tip |
|
251 | # read the tags file from each head, ending with the tip | |
252 | f = None |
|
252 | f = None | |
253 | for rev, node, fnode in self._hgtagsnodes(): |
|
253 | for rev, node, fnode in self._hgtagsnodes(): | |
254 | f = (f and f.filectx(fnode) or |
|
254 | f = (f and f.filectx(fnode) or | |
255 | self.filectx('.hgtags', fileid=fnode)) |
|
255 | self.filectx('.hgtags', fileid=fnode)) | |
256 | readtags(f.data().splitlines(), f) |
|
256 | readtags(f.data().splitlines(), f) | |
257 |
|
257 | |||
258 | try: |
|
258 | try: | |
259 | data = util.fromlocal(self.opener("localtags").read()) |
|
259 | data = util.fromlocal(self.opener("localtags").read()) | |
260 | # localtags are stored in the local character set |
|
260 | # localtags are stored in the local character set | |
261 | # while the internal tag table is stored in UTF-8 |
|
261 | # while the internal tag table is stored in UTF-8 | |
262 | readtags(data.splitlines(), "localtags") |
|
262 | readtags(data.splitlines(), "localtags") | |
263 | except IOError: |
|
263 | except IOError: | |
264 | pass |
|
264 | pass | |
265 |
|
265 | |||
266 | self.tagscache = {} |
|
266 | self.tagscache = {} | |
267 | for k,nh in globaltags.items(): |
|
267 | for k,nh in globaltags.items(): | |
268 | n = nh[0] |
|
268 | n = nh[0] | |
269 | if n != nullid: |
|
269 | if n != nullid: | |
270 | self.tagscache[k] = n |
|
270 | self.tagscache[k] = n | |
271 | self.tagscache['tip'] = self.changelog.tip() |
|
271 | self.tagscache['tip'] = self.changelog.tip() | |
272 |
|
272 | |||
273 | return self.tagscache |
|
273 | return self.tagscache | |
274 |
|
274 | |||
275 | def _hgtagsnodes(self): |
|
275 | def _hgtagsnodes(self): | |
276 | heads = self.heads() |
|
276 | heads = self.heads() | |
277 | heads.reverse() |
|
277 | heads.reverse() | |
278 | last = {} |
|
278 | last = {} | |
279 | ret = [] |
|
279 | ret = [] | |
280 | for node in heads: |
|
280 | for node in heads: | |
281 | c = self.changectx(node) |
|
281 | c = self.changectx(node) | |
282 | rev = c.rev() |
|
282 | rev = c.rev() | |
283 | try: |
|
283 | try: | |
284 | fnode = c.filenode('.hgtags') |
|
284 | fnode = c.filenode('.hgtags') | |
285 | except revlog.LookupError: |
|
285 | except revlog.LookupError: | |
286 | continue |
|
286 | continue | |
287 | ret.append((rev, node, fnode)) |
|
287 | ret.append((rev, node, fnode)) | |
288 | if fnode in last: |
|
288 | if fnode in last: | |
289 | ret[last[fnode]] = None |
|
289 | ret[last[fnode]] = None | |
290 | last[fnode] = len(ret) - 1 |
|
290 | last[fnode] = len(ret) - 1 | |
291 | return [item for item in ret if item] |
|
291 | return [item for item in ret if item] | |
292 |
|
292 | |||
293 | def tagslist(self): |
|
293 | def tagslist(self): | |
294 | '''return a list of tags ordered by revision''' |
|
294 | '''return a list of tags ordered by revision''' | |
295 | l = [] |
|
295 | l = [] | |
296 | for t, n in self.tags().items(): |
|
296 | for t, n in self.tags().items(): | |
297 | try: |
|
297 | try: | |
298 | r = self.changelog.rev(n) |
|
298 | r = self.changelog.rev(n) | |
299 | except: |
|
299 | except: | |
300 | r = -2 # sort to the beginning of the list if unknown |
|
300 | r = -2 # sort to the beginning of the list if unknown | |
301 | l.append((r, t, n)) |
|
301 | l.append((r, t, n)) | |
302 | l.sort() |
|
302 | l.sort() | |
303 | return [(t, n) for r, t, n in l] |
|
303 | return [(t, n) for r, t, n in l] | |
304 |
|
304 | |||
305 | def nodetags(self, node): |
|
305 | def nodetags(self, node): | |
306 | '''return the tags associated with a node''' |
|
306 | '''return the tags associated with a node''' | |
307 | if not self.nodetagscache: |
|
307 | if not self.nodetagscache: | |
308 | self.nodetagscache = {} |
|
308 | self.nodetagscache = {} | |
309 | for t, n in self.tags().items(): |
|
309 | for t, n in self.tags().items(): | |
310 | self.nodetagscache.setdefault(n, []).append(t) |
|
310 | self.nodetagscache.setdefault(n, []).append(t) | |
311 | return self.nodetagscache.get(node, []) |
|
311 | return self.nodetagscache.get(node, []) | |
312 |
|
312 | |||
313 | def _branchtags(self): |
|
313 | def _branchtags(self): | |
314 | partial, last, lrev = self._readbranchcache() |
|
314 | partial, last, lrev = self._readbranchcache() | |
315 |
|
315 | |||
316 | tiprev = self.changelog.count() - 1 |
|
316 | tiprev = self.changelog.count() - 1 | |
317 | if lrev != tiprev: |
|
317 | if lrev != tiprev: | |
318 | self._updatebranchcache(partial, lrev+1, tiprev+1) |
|
318 | self._updatebranchcache(partial, lrev+1, tiprev+1) | |
319 | self._writebranchcache(partial, self.changelog.tip(), tiprev) |
|
319 | self._writebranchcache(partial, self.changelog.tip(), tiprev) | |
320 |
|
320 | |||
321 | return partial |
|
321 | return partial | |
322 |
|
322 | |||
323 | def branchtags(self): |
|
323 | def branchtags(self): | |
324 | if self.branchcache is not None: |
|
324 | if self.branchcache is not None: | |
325 | return self.branchcache |
|
325 | return self.branchcache | |
326 |
|
326 | |||
327 | self.branchcache = {} # avoid recursion in changectx |
|
327 | self.branchcache = {} # avoid recursion in changectx | |
328 | partial = self._branchtags() |
|
328 | partial = self._branchtags() | |
329 |
|
329 | |||
330 | # the branch cache is stored on disk as UTF-8, but in the local |
|
330 | # the branch cache is stored on disk as UTF-8, but in the local | |
331 | # charset internally |
|
331 | # charset internally | |
332 | for k, v in partial.items(): |
|
332 | for k, v in partial.items(): | |
333 | self.branchcache[util.tolocal(k)] = v |
|
333 | self.branchcache[util.tolocal(k)] = v | |
334 | return self.branchcache |
|
334 | return self.branchcache | |
335 |
|
335 | |||
336 | def _readbranchcache(self): |
|
336 | def _readbranchcache(self): | |
337 | partial = {} |
|
337 | partial = {} | |
338 | try: |
|
338 | try: | |
339 | f = self.opener("branch.cache") |
|
339 | f = self.opener("branch.cache") | |
340 | lines = f.read().split('\n') |
|
340 | lines = f.read().split('\n') | |
341 | f.close() |
|
341 | f.close() | |
342 | except (IOError, OSError): |
|
342 | except (IOError, OSError): | |
343 | return {}, nullid, nullrev |
|
343 | return {}, nullid, nullrev | |
344 |
|
344 | |||
345 | try: |
|
345 | try: | |
346 | last, lrev = lines.pop(0).split(" ", 1) |
|
346 | last, lrev = lines.pop(0).split(" ", 1) | |
347 | last, lrev = bin(last), int(lrev) |
|
347 | last, lrev = bin(last), int(lrev) | |
348 | if not (lrev < self.changelog.count() and |
|
348 | if not (lrev < self.changelog.count() and | |
349 | self.changelog.node(lrev) == last): # sanity check |
|
349 | self.changelog.node(lrev) == last): # sanity check | |
350 | # invalidate the cache |
|
350 | # invalidate the cache | |
351 | raise ValueError('Invalid branch cache: unknown tip') |
|
351 | raise ValueError('Invalid branch cache: unknown tip') | |
352 | for l in lines: |
|
352 | for l in lines: | |
353 | if not l: continue |
|
353 | if not l: continue | |
354 | node, label = l.split(" ", 1) |
|
354 | node, label = l.split(" ", 1) | |
355 | partial[label.strip()] = bin(node) |
|
355 | partial[label.strip()] = bin(node) | |
356 | except (KeyboardInterrupt, util.SignalInterrupt): |
|
356 | except (KeyboardInterrupt, util.SignalInterrupt): | |
357 | raise |
|
357 | raise | |
358 | except Exception, inst: |
|
358 | except Exception, inst: | |
359 | if self.ui.debugflag: |
|
359 | if self.ui.debugflag: | |
360 | self.ui.warn(str(inst), '\n') |
|
360 | self.ui.warn(str(inst), '\n') | |
361 | partial, last, lrev = {}, nullid, nullrev |
|
361 | partial, last, lrev = {}, nullid, nullrev | |
362 | return partial, last, lrev |
|
362 | return partial, last, lrev | |
363 |
|
363 | |||
364 | def _writebranchcache(self, branches, tip, tiprev): |
|
364 | def _writebranchcache(self, branches, tip, tiprev): | |
365 | try: |
|
365 | try: | |
366 | f = self.opener("branch.cache", "w", atomictemp=True) |
|
366 | f = self.opener("branch.cache", "w", atomictemp=True) | |
367 | f.write("%s %s\n" % (hex(tip), tiprev)) |
|
367 | f.write("%s %s\n" % (hex(tip), tiprev)) | |
368 | for label, node in branches.iteritems(): |
|
368 | for label, node in branches.iteritems(): | |
369 | f.write("%s %s\n" % (hex(node), label)) |
|
369 | f.write("%s %s\n" % (hex(node), label)) | |
370 | f.rename() |
|
370 | f.rename() | |
371 | except (IOError, OSError): |
|
371 | except (IOError, OSError): | |
372 | pass |
|
372 | pass | |
373 |
|
373 | |||
374 | def _updatebranchcache(self, partial, start, end): |
|
374 | def _updatebranchcache(self, partial, start, end): | |
375 | for r in xrange(start, end): |
|
375 | for r in xrange(start, end): | |
376 | c = self.changectx(r) |
|
376 | c = self.changectx(r) | |
377 | b = c.branch() |
|
377 | b = c.branch() | |
378 | partial[b] = c.node() |
|
378 | partial[b] = c.node() | |
379 |
|
379 | |||
380 | def lookup(self, key): |
|
380 | def lookup(self, key): | |
381 | if key == '.': |
|
381 | if key == '.': | |
382 | key, second = self.dirstate.parents() |
|
382 | key, second = self.dirstate.parents() | |
383 | if key == nullid: |
|
383 | if key == nullid: | |
384 | raise repo.RepoError(_("no revision checked out")) |
|
384 | raise repo.RepoError(_("no revision checked out")) | |
385 | if second != nullid: |
|
385 | if second != nullid: | |
386 | self.ui.warn(_("warning: working directory has two parents, " |
|
386 | self.ui.warn(_("warning: working directory has two parents, " | |
387 | "tag '.' uses the first\n")) |
|
387 | "tag '.' uses the first\n")) | |
388 | elif key == 'null': |
|
388 | elif key == 'null': | |
389 | return nullid |
|
389 | return nullid | |
390 | n = self.changelog._match(key) |
|
390 | n = self.changelog._match(key) | |
391 | if n: |
|
391 | if n: | |
392 | return n |
|
392 | return n | |
393 | if key in self.tags(): |
|
393 | if key in self.tags(): | |
394 | return self.tags()[key] |
|
394 | return self.tags()[key] | |
395 | if key in self.branchtags(): |
|
395 | if key in self.branchtags(): | |
396 | return self.branchtags()[key] |
|
396 | return self.branchtags()[key] | |
397 | n = self.changelog._partialmatch(key) |
|
397 | n = self.changelog._partialmatch(key) | |
398 | if n: |
|
398 | if n: | |
399 | return n |
|
399 | return n | |
400 | try: |
|
400 | try: | |
401 | if len(key) == 20: |
|
401 | if len(key) == 20: | |
402 | key = hex(key) |
|
402 | key = hex(key) | |
403 | except: |
|
403 | except: | |
404 | pass |
|
404 | pass | |
405 | raise repo.RepoError(_("unknown revision '%s'") % key) |
|
405 | raise repo.RepoError(_("unknown revision '%s'") % key) | |
406 |
|
406 | |||
407 | def dev(self): |
|
407 | def dev(self): | |
408 | return os.lstat(self.path).st_dev |
|
408 | return os.lstat(self.path).st_dev | |
409 |
|
409 | |||
410 | def local(self): |
|
410 | def local(self): | |
411 | return True |
|
411 | return True | |
412 |
|
412 | |||
413 | def join(self, f): |
|
413 | def join(self, f): | |
414 | return os.path.join(self.path, f) |
|
414 | return os.path.join(self.path, f) | |
415 |
|
415 | |||
416 | def sjoin(self, f): |
|
416 | def sjoin(self, f): | |
417 | f = self.encodefn(f) |
|
417 | f = self.encodefn(f) | |
418 | return os.path.join(self.spath, f) |
|
418 | return os.path.join(self.spath, f) | |
419 |
|
419 | |||
420 | def wjoin(self, f): |
|
420 | def wjoin(self, f): | |
421 | return os.path.join(self.root, f) |
|
421 | return os.path.join(self.root, f) | |
422 |
|
422 | |||
423 | def file(self, f): |
|
423 | def file(self, f): | |
424 | if f[0] == '/': |
|
424 | if f[0] == '/': | |
425 | f = f[1:] |
|
425 | f = f[1:] | |
426 | return filelog.filelog(self.sopener, f) |
|
426 | return filelog.filelog(self.sopener, f) | |
427 |
|
427 | |||
428 | def changectx(self, changeid=None): |
|
428 | def changectx(self, changeid=None): | |
429 | return context.changectx(self, changeid) |
|
429 | return context.changectx(self, changeid) | |
430 |
|
430 | |||
431 | def workingctx(self): |
|
431 | def workingctx(self): | |
432 | return context.workingctx(self) |
|
432 | return context.workingctx(self) | |
433 |
|
433 | |||
434 | def parents(self, changeid=None): |
|
434 | def parents(self, changeid=None): | |
435 | ''' |
|
435 | ''' | |
436 | get list of changectxs for parents of changeid or working directory |
|
436 | get list of changectxs for parents of changeid or working directory | |
437 | ''' |
|
437 | ''' | |
438 | if changeid is None: |
|
438 | if changeid is None: | |
439 | pl = self.dirstate.parents() |
|
439 | pl = self.dirstate.parents() | |
440 | else: |
|
440 | else: | |
441 | n = self.changelog.lookup(changeid) |
|
441 | n = self.changelog.lookup(changeid) | |
442 | pl = self.changelog.parents(n) |
|
442 | pl = self.changelog.parents(n) | |
443 | if pl[1] == nullid: |
|
443 | if pl[1] == nullid: | |
444 | return [self.changectx(pl[0])] |
|
444 | return [self.changectx(pl[0])] | |
445 | return [self.changectx(pl[0]), self.changectx(pl[1])] |
|
445 | return [self.changectx(pl[0]), self.changectx(pl[1])] | |
446 |
|
446 | |||
447 | def filectx(self, path, changeid=None, fileid=None): |
|
447 | def filectx(self, path, changeid=None, fileid=None): | |
448 | """changeid can be a changeset revision, node, or tag. |
|
448 | """changeid can be a changeset revision, node, or tag. | |
449 | fileid can be a file revision or node.""" |
|
449 | fileid can be a file revision or node.""" | |
450 | return context.filectx(self, path, changeid, fileid) |
|
450 | return context.filectx(self, path, changeid, fileid) | |
451 |
|
451 | |||
452 | def getcwd(self): |
|
452 | def getcwd(self): | |
453 | return self.dirstate.getcwd() |
|
453 | return self.dirstate.getcwd() | |
454 |
|
454 | |||
455 | def pathto(self, f, cwd=None): |
|
455 | def pathto(self, f, cwd=None): | |
456 | return self.dirstate.pathto(f, cwd) |
|
456 | return self.dirstate.pathto(f, cwd) | |
457 |
|
457 | |||
458 | def wfile(self, f, mode='r'): |
|
458 | def wfile(self, f, mode='r'): | |
459 | return self.wopener(f, mode) |
|
459 | return self.wopener(f, mode) | |
460 |
|
460 | |||
461 | def _link(self, f): |
|
461 | def _link(self, f): | |
462 | return os.path.islink(self.wjoin(f)) |
|
462 | return os.path.islink(self.wjoin(f)) | |
463 |
|
463 | |||
464 | def _filter(self, filter, filename, data): |
|
464 | def _filter(self, filter, filename, data): | |
465 | if filter not in self.filterpats: |
|
465 | if filter not in self.filterpats: | |
466 | l = [] |
|
466 | l = [] | |
467 | for pat, cmd in self.ui.configitems(filter): |
|
467 | for pat, cmd in self.ui.configitems(filter): | |
468 | mf = util.matcher(self.root, "", [pat], [], [])[1] |
|
468 | mf = util.matcher(self.root, "", [pat], [], [])[1] | |
469 | l.append((mf, cmd)) |
|
469 | l.append((mf, cmd)) | |
470 | self.filterpats[filter] = l |
|
470 | self.filterpats[filter] = l | |
471 |
|
471 | |||
472 | for mf, cmd in self.filterpats[filter]: |
|
472 | for mf, cmd in self.filterpats[filter]: | |
473 | if mf(filename): |
|
473 | if mf(filename): | |
474 | self.ui.debug(_("filtering %s through %s\n") % (filename, cmd)) |
|
474 | self.ui.debug(_("filtering %s through %s\n") % (filename, cmd)) | |
475 | data = util.filter(data, cmd) |
|
475 | data = util.filter(data, cmd) | |
476 | break |
|
476 | break | |
477 |
|
477 | |||
478 | return data |
|
478 | return data | |
479 |
|
479 | |||
480 | def wread(self, filename): |
|
480 | def wread(self, filename): | |
481 | if self._link(filename): |
|
481 | if self._link(filename): | |
482 | data = os.readlink(self.wjoin(filename)) |
|
482 | data = os.readlink(self.wjoin(filename)) | |
483 | else: |
|
483 | else: | |
484 | data = self.wopener(filename, 'r').read() |
|
484 | data = self.wopener(filename, 'r').read() | |
485 | return self._filter("encode", filename, data) |
|
485 | return self._filter("encode", filename, data) | |
486 |
|
486 | |||
487 | def wwrite(self, filename, data, flags): |
|
487 | def wwrite(self, filename, data, flags): | |
488 | data = self._filter("decode", filename, data) |
|
488 | data = self._filter("decode", filename, data) | |
489 | if "l" in flags: |
|
489 | if "l" in flags: | |
490 | self.wopener.symlink(data, filename) |
|
490 | self.wopener.symlink(data, filename) | |
491 | else: |
|
491 | else: | |
492 | try: |
|
492 | try: | |
493 | if self._link(filename): |
|
493 | if self._link(filename): | |
494 | os.unlink(self.wjoin(filename)) |
|
494 | os.unlink(self.wjoin(filename)) | |
495 | except OSError: |
|
495 | except OSError: | |
496 | pass |
|
496 | pass | |
497 | self.wopener(filename, 'w').write(data) |
|
497 | self.wopener(filename, 'w').write(data) | |
498 | util.set_exec(self.wjoin(filename), "x" in flags) |
|
498 | util.set_exec(self.wjoin(filename), "x" in flags) | |
499 |
|
499 | |||
500 | def wwritedata(self, filename, data): |
|
500 | def wwritedata(self, filename, data): | |
501 | return self._filter("decode", filename, data) |
|
501 | return self._filter("decode", filename, data) | |
502 |
|
502 | |||
503 | def transaction(self): |
|
503 | def transaction(self): | |
504 | if self._transref and self._transref(): |
|
504 | if self._transref and self._transref(): | |
505 | return self._transref().nest() |
|
505 | return self._transref().nest() | |
506 |
|
506 | |||
507 | # save dirstate for rollback |
|
507 | # save dirstate for rollback | |
508 | try: |
|
508 | try: | |
509 | ds = self.opener("dirstate").read() |
|
509 | ds = self.opener("dirstate").read() | |
510 | except IOError: |
|
510 | except IOError: | |
511 | ds = "" |
|
511 | ds = "" | |
512 | self.opener("journal.dirstate", "w").write(ds) |
|
512 | self.opener("journal.dirstate", "w").write(ds) | |
513 |
|
513 | |||
514 | renames = [(self.sjoin("journal"), self.sjoin("undo")), |
|
514 | renames = [(self.sjoin("journal"), self.sjoin("undo")), | |
515 | (self.join("journal.dirstate"), self.join("undo.dirstate"))] |
|
515 | (self.join("journal.dirstate"), self.join("undo.dirstate"))] | |
516 | tr = transaction.transaction(self.ui.warn, self.sopener, |
|
516 | tr = transaction.transaction(self.ui.warn, self.sopener, | |
517 | self.sjoin("journal"), |
|
517 | self.sjoin("journal"), | |
518 | aftertrans(renames)) |
|
518 | aftertrans(renames)) | |
519 | self._transref = weakref.ref(tr) |
|
519 | self._transref = weakref.ref(tr) | |
520 | return tr |
|
520 | return tr | |
521 |
|
521 | |||
522 | def recover(self): |
|
522 | def recover(self): | |
523 | l = self.lock() |
|
523 | l = self.lock() | |
524 | try: |
|
524 | try: | |
525 | if os.path.exists(self.sjoin("journal")): |
|
525 | if os.path.exists(self.sjoin("journal")): | |
526 | self.ui.status(_("rolling back interrupted transaction\n")) |
|
526 | self.ui.status(_("rolling back interrupted transaction\n")) | |
527 | transaction.rollback(self.sopener, self.sjoin("journal")) |
|
527 | transaction.rollback(self.sopener, self.sjoin("journal")) | |
528 | self.invalidate() |
|
528 | self.invalidate() | |
529 | return True |
|
529 | return True | |
530 | else: |
|
530 | else: | |
531 | self.ui.warn(_("no interrupted transaction available\n")) |
|
531 | self.ui.warn(_("no interrupted transaction available\n")) | |
532 | return False |
|
532 | return False | |
533 | finally: |
|
533 | finally: | |
534 | del l |
|
534 | del l | |
535 |
|
535 | |||
536 | def rollback(self): |
|
536 | def rollback(self): | |
537 | wlock = lock = None |
|
537 | wlock = lock = None | |
538 | try: |
|
538 | try: | |
539 | wlock = self.wlock() |
|
539 | wlock = self.wlock() | |
540 | lock = self.lock() |
|
540 | lock = self.lock() | |
541 | if os.path.exists(self.sjoin("undo")): |
|
541 | if os.path.exists(self.sjoin("undo")): | |
542 | self.ui.status(_("rolling back last transaction\n")) |
|
542 | self.ui.status(_("rolling back last transaction\n")) | |
543 | transaction.rollback(self.sopener, self.sjoin("undo")) |
|
543 | transaction.rollback(self.sopener, self.sjoin("undo")) | |
544 | util.rename(self.join("undo.dirstate"), self.join("dirstate")) |
|
544 | util.rename(self.join("undo.dirstate"), self.join("dirstate")) | |
545 | self.invalidate() |
|
545 | self.invalidate() | |
546 | self.dirstate.invalidate() |
|
546 | self.dirstate.invalidate() | |
547 | else: |
|
547 | else: | |
548 | self.ui.warn(_("no rollback information available\n")) |
|
548 | self.ui.warn(_("no rollback information available\n")) | |
549 | finally: |
|
549 | finally: | |
550 | del lock, wlock |
|
550 | del lock, wlock | |
551 |
|
551 | |||
552 | def invalidate(self): |
|
552 | def invalidate(self): | |
553 | for a in "changelog manifest".split(): |
|
553 | for a in "changelog manifest".split(): | |
554 | if hasattr(self, a): |
|
554 | if hasattr(self, a): | |
555 | self.__delattr__(a) |
|
555 | self.__delattr__(a) | |
556 | self.tagscache = None |
|
556 | self.tagscache = None | |
557 | self.nodetagscache = None |
|
557 | self.nodetagscache = None | |
558 |
|
558 | |||
559 | def _lock(self, lockname, wait, releasefn, acquirefn, desc): |
|
559 | def _lock(self, lockname, wait, releasefn, acquirefn, desc): | |
560 | try: |
|
560 | try: | |
561 | l = lock.lock(lockname, 0, releasefn, desc=desc) |
|
561 | l = lock.lock(lockname, 0, releasefn, desc=desc) | |
562 | except lock.LockHeld, inst: |
|
562 | except lock.LockHeld, inst: | |
563 | if not wait: |
|
563 | if not wait: | |
564 | raise |
|
564 | raise | |
565 | self.ui.warn(_("waiting for lock on %s held by %r\n") % |
|
565 | self.ui.warn(_("waiting for lock on %s held by %r\n") % | |
566 | (desc, inst.locker)) |
|
566 | (desc, inst.locker)) | |
567 | # default to 600 seconds timeout |
|
567 | # default to 600 seconds timeout | |
568 | l = lock.lock(lockname, int(self.ui.config("ui", "timeout", "600")), |
|
568 | l = lock.lock(lockname, int(self.ui.config("ui", "timeout", "600")), | |
569 | releasefn, desc=desc) |
|
569 | releasefn, desc=desc) | |
570 | if acquirefn: |
|
570 | if acquirefn: | |
571 | acquirefn() |
|
571 | acquirefn() | |
572 | return l |
|
572 | return l | |
573 |
|
573 | |||
574 | def lock(self, wait=True): |
|
574 | def lock(self, wait=True): | |
575 | if self._lockref and self._lockref(): |
|
575 | if self._lockref and self._lockref(): | |
576 | return self._lockref() |
|
576 | return self._lockref() | |
577 |
|
577 | |||
578 | l = self._lock(self.sjoin("lock"), wait, None, self.invalidate, |
|
578 | l = self._lock(self.sjoin("lock"), wait, None, self.invalidate, | |
579 | _('repository %s') % self.origroot) |
|
579 | _('repository %s') % self.origroot) | |
580 | self._lockref = weakref.ref(l) |
|
580 | self._lockref = weakref.ref(l) | |
581 | return l |
|
581 | return l | |
582 |
|
582 | |||
583 | def wlock(self, wait=True): |
|
583 | def wlock(self, wait=True): | |
584 | if self._wlockref and self._wlockref(): |
|
584 | if self._wlockref and self._wlockref(): | |
585 | return self._wlockref() |
|
585 | return self._wlockref() | |
586 |
|
586 | |||
587 | l = self._lock(self.join("wlock"), wait, self.dirstate.write, |
|
587 | l = self._lock(self.join("wlock"), wait, self.dirstate.write, | |
588 | self.dirstate.invalidate, _('working directory of %s') % |
|
588 | self.dirstate.invalidate, _('working directory of %s') % | |
589 | self.origroot) |
|
589 | self.origroot) | |
590 | self._wlockref = weakref.ref(l) |
|
590 | self._wlockref = weakref.ref(l) | |
591 | return l |
|
591 | return l | |
592 |
|
592 | |||
593 | def filecommit(self, fn, manifest1, manifest2, linkrev, tr, changelist): |
|
593 | def filecommit(self, fn, manifest1, manifest2, linkrev, tr, changelist): | |
594 | """ |
|
594 | """ | |
595 | commit an individual file as part of a larger transaction |
|
595 | commit an individual file as part of a larger transaction | |
596 | """ |
|
596 | """ | |
597 |
|
597 | |||
598 | t = self.wread(fn) |
|
598 | t = self.wread(fn) | |
599 | fl = self.file(fn) |
|
599 | fl = self.file(fn) | |
600 | fp1 = manifest1.get(fn, nullid) |
|
600 | fp1 = manifest1.get(fn, nullid) | |
601 | fp2 = manifest2.get(fn, nullid) |
|
601 | fp2 = manifest2.get(fn, nullid) | |
602 |
|
602 | |||
603 | meta = {} |
|
603 | meta = {} | |
604 | cp = self.dirstate.copied(fn) |
|
604 | cp = self.dirstate.copied(fn) | |
605 | if cp: |
|
605 | if cp: | |
606 | # Mark the new revision of this file as a copy of another |
|
606 | # Mark the new revision of this file as a copy of another | |
607 | # file. This copy data will effectively act as a parent |
|
607 | # file. This copy data will effectively act as a parent | |
608 | # of this new revision. If this is a merge, the first |
|
608 | # of this new revision. If this is a merge, the first | |
609 | # parent will be the nullid (meaning "look up the copy data") |
|
609 | # parent will be the nullid (meaning "look up the copy data") | |
610 | # and the second one will be the other parent. For example: |
|
610 | # and the second one will be the other parent. For example: | |
611 | # |
|
611 | # | |
612 | # 0 --- 1 --- 3 rev1 changes file foo |
|
612 | # 0 --- 1 --- 3 rev1 changes file foo | |
613 | # \ / rev2 renames foo to bar and changes it |
|
613 | # \ / rev2 renames foo to bar and changes it | |
614 | # \- 2 -/ rev3 should have bar with all changes and |
|
614 | # \- 2 -/ rev3 should have bar with all changes and | |
615 | # should record that bar descends from |
|
615 | # should record that bar descends from | |
616 | # bar in rev2 and foo in rev1 |
|
616 | # bar in rev2 and foo in rev1 | |
617 | # |
|
617 | # | |
618 | # this allows this merge to succeed: |
|
618 | # this allows this merge to succeed: | |
619 | # |
|
619 | # | |
620 | # 0 --- 1 --- 3 rev4 reverts the content change from rev2 |
|
620 | # 0 --- 1 --- 3 rev4 reverts the content change from rev2 | |
621 | # \ / merging rev3 and rev4 should use bar@rev2 |
|
621 | # \ / merging rev3 and rev4 should use bar@rev2 | |
622 | # \- 2 --- 4 as the merge base |
|
622 | # \- 2 --- 4 as the merge base | |
623 | # |
|
623 | # | |
624 | meta["copy"] = cp |
|
624 | meta["copy"] = cp | |
625 | if not manifest2: # not a branch merge |
|
625 | if not manifest2: # not a branch merge | |
626 | meta["copyrev"] = hex(manifest1.get(cp, nullid)) |
|
626 | meta["copyrev"] = hex(manifest1.get(cp, nullid)) | |
627 | fp2 = nullid |
|
627 | fp2 = nullid | |
628 | elif fp2 != nullid: # copied on remote side |
|
628 | elif fp2 != nullid: # copied on remote side | |
629 | meta["copyrev"] = hex(manifest1.get(cp, nullid)) |
|
629 | meta["copyrev"] = hex(manifest1.get(cp, nullid)) | |
630 | elif fp1 != nullid: # copied on local side, reversed |
|
630 | elif fp1 != nullid: # copied on local side, reversed | |
631 | meta["copyrev"] = hex(manifest2.get(cp)) |
|
631 | meta["copyrev"] = hex(manifest2.get(cp)) | |
632 | fp2 = fp1 |
|
632 | fp2 = fp1 | |
633 | elif cp in manifest2: # directory rename on local side |
|
633 | elif cp in manifest2: # directory rename on local side | |
634 | meta["copyrev"] = hex(manifest2[cp]) |
|
634 | meta["copyrev"] = hex(manifest2[cp]) | |
635 | else: # directory rename on remote side |
|
635 | else: # directory rename on remote side | |
636 | meta["copyrev"] = hex(manifest1.get(cp, nullid)) |
|
636 | meta["copyrev"] = hex(manifest1.get(cp, nullid)) | |
637 | self.ui.debug(_(" %s: copy %s:%s\n") % |
|
637 | self.ui.debug(_(" %s: copy %s:%s\n") % | |
638 | (fn, cp, meta["copyrev"])) |
|
638 | (fn, cp, meta["copyrev"])) | |
639 | fp1 = nullid |
|
639 | fp1 = nullid | |
640 | elif fp2 != nullid: |
|
640 | elif fp2 != nullid: | |
641 | # is one parent an ancestor of the other? |
|
641 | # is one parent an ancestor of the other? | |
642 | fpa = fl.ancestor(fp1, fp2) |
|
642 | fpa = fl.ancestor(fp1, fp2) | |
643 | if fpa == fp1: |
|
643 | if fpa == fp1: | |
644 | fp1, fp2 = fp2, nullid |
|
644 | fp1, fp2 = fp2, nullid | |
645 | elif fpa == fp2: |
|
645 | elif fpa == fp2: | |
646 | fp2 = nullid |
|
646 | fp2 = nullid | |
647 |
|
647 | |||
648 | # is the file unmodified from the parent? report existing entry |
|
648 | # is the file unmodified from the parent? report existing entry | |
649 | if fp2 == nullid and not fl.cmp(fp1, t) and not meta: |
|
649 | if fp2 == nullid and not fl.cmp(fp1, t) and not meta: | |
650 | return fp1 |
|
650 | return fp1 | |
651 |
|
651 | |||
652 | changelist.append(fn) |
|
652 | changelist.append(fn) | |
653 | return fl.add(t, meta, tr, linkrev, fp1, fp2) |
|
653 | return fl.add(t, meta, tr, linkrev, fp1, fp2) | |
654 |
|
654 | |||
655 | def rawcommit(self, files, text, user, date, p1=None, p2=None, extra={}): |
|
655 | def rawcommit(self, files, text, user, date, p1=None, p2=None, extra={}): | |
656 | if p1 is None: |
|
656 | if p1 is None: | |
657 | p1, p2 = self.dirstate.parents() |
|
657 | p1, p2 = self.dirstate.parents() | |
658 | return self.commit(files=files, text=text, user=user, date=date, |
|
658 | return self.commit(files=files, text=text, user=user, date=date, | |
659 | p1=p1, p2=p2, extra=extra, empty_ok=True) |
|
659 | p1=p1, p2=p2, extra=extra, empty_ok=True) | |
660 |
|
660 | |||
661 | def commit(self, files=None, text="", user=None, date=None, |
|
661 | def commit(self, files=None, text="", user=None, date=None, | |
662 | match=util.always, force=False, force_editor=False, |
|
662 | match=util.always, force=False, force_editor=False, | |
663 | p1=None, p2=None, extra={}, empty_ok=False): |
|
663 | p1=None, p2=None, extra={}, empty_ok=False): | |
664 | wlock = lock = tr = None |
|
664 | wlock = lock = tr = None | |
665 | if files: |
|
665 | if files: | |
666 | files = util.unique(files) |
|
666 | files = util.unique(files) | |
667 | try: |
|
667 | try: | |
668 | commit = [] |
|
668 | commit = [] | |
669 | remove = [] |
|
669 | remove = [] | |
670 | changed = [] |
|
670 | changed = [] | |
671 | use_dirstate = (p1 is None) # not rawcommit |
|
671 | use_dirstate = (p1 is None) # not rawcommit | |
672 | extra = extra.copy() |
|
672 | extra = extra.copy() | |
673 |
|
673 | |||
674 | if use_dirstate: |
|
674 | if use_dirstate: | |
675 | if files: |
|
675 | if files: | |
676 | for f in files: |
|
676 | for f in files: | |
677 | s = self.dirstate[f] |
|
677 | s = self.dirstate[f] | |
678 | if s in 'nma': |
|
678 | if s in 'nma': | |
679 | commit.append(f) |
|
679 | commit.append(f) | |
680 | elif s == 'r': |
|
680 | elif s == 'r': | |
681 | remove.append(f) |
|
681 | remove.append(f) | |
682 | else: |
|
682 | else: | |
683 | self.ui.warn(_("%s not tracked!\n") % f) |
|
683 | self.ui.warn(_("%s not tracked!\n") % f) | |
684 | else: |
|
684 | else: | |
685 | changes = self.status(match=match)[:5] |
|
685 | changes = self.status(match=match)[:5] | |
686 | modified, added, removed, deleted, unknown = changes |
|
686 | modified, added, removed, deleted, unknown = changes | |
687 | commit = modified + added |
|
687 | commit = modified + added | |
688 | remove = removed |
|
688 | remove = removed | |
689 | else: |
|
689 | else: | |
690 | commit = files |
|
690 | commit = files | |
691 |
|
691 | |||
692 | if use_dirstate: |
|
692 | if use_dirstate: | |
693 | p1, p2 = self.dirstate.parents() |
|
693 | p1, p2 = self.dirstate.parents() | |
694 | update_dirstate = True |
|
694 | update_dirstate = True | |
695 | else: |
|
695 | else: | |
696 | p1, p2 = p1, p2 or nullid |
|
696 | p1, p2 = p1, p2 or nullid | |
697 | update_dirstate = (self.dirstate.parents()[0] == p1) |
|
697 | update_dirstate = (self.dirstate.parents()[0] == p1) | |
698 |
|
698 | |||
699 | c1 = self.changelog.read(p1) |
|
699 | c1 = self.changelog.read(p1) | |
700 | c2 = self.changelog.read(p2) |
|
700 | c2 = self.changelog.read(p2) | |
701 | m1 = self.manifest.read(c1[0]).copy() |
|
701 | m1 = self.manifest.read(c1[0]).copy() | |
702 | m2 = self.manifest.read(c2[0]) |
|
702 | m2 = self.manifest.read(c2[0]) | |
703 |
|
703 | |||
704 | if use_dirstate: |
|
704 | if use_dirstate: | |
705 | branchname = self.workingctx().branch() |
|
705 | branchname = self.workingctx().branch() | |
706 | try: |
|
706 | try: | |
707 | branchname = branchname.decode('UTF-8').encode('UTF-8') |
|
707 | branchname = branchname.decode('UTF-8').encode('UTF-8') | |
708 | except UnicodeDecodeError: |
|
708 | except UnicodeDecodeError: | |
709 | raise util.Abort(_('branch name not in UTF-8!')) |
|
709 | raise util.Abort(_('branch name not in UTF-8!')) | |
710 | else: |
|
710 | else: | |
711 | branchname = "" |
|
711 | branchname = "" | |
712 |
|
712 | |||
713 | if use_dirstate: |
|
713 | if use_dirstate: | |
714 | oldname = c1[5].get("branch") # stored in UTF-8 |
|
714 | oldname = c1[5].get("branch") # stored in UTF-8 | |
715 | if (not commit and not remove and not force and p2 == nullid |
|
715 | if (not commit and not remove and not force and p2 == nullid | |
716 | and branchname == oldname): |
|
716 | and branchname == oldname): | |
717 | self.ui.status(_("nothing changed\n")) |
|
717 | self.ui.status(_("nothing changed\n")) | |
718 | return None |
|
718 | return None | |
719 |
|
719 | |||
720 | xp1 = hex(p1) |
|
720 | xp1 = hex(p1) | |
721 | if p2 == nullid: xp2 = '' |
|
721 | if p2 == nullid: xp2 = '' | |
722 | else: xp2 = hex(p2) |
|
722 | else: xp2 = hex(p2) | |
723 |
|
723 | |||
724 | self.hook("precommit", throw=True, parent1=xp1, parent2=xp2) |
|
724 | self.hook("precommit", throw=True, parent1=xp1, parent2=xp2) | |
725 |
|
725 | |||
726 | wlock = self.wlock() |
|
726 | wlock = self.wlock() | |
727 | lock = self.lock() |
|
727 | lock = self.lock() | |
728 | tr = self.transaction() |
|
728 | tr = self.transaction() | |
729 | trp = weakref.proxy(tr) |
|
729 | trp = weakref.proxy(tr) | |
730 |
|
730 | |||
731 | # check in files |
|
731 | # check in files | |
732 | new = {} |
|
732 | new = {} | |
733 | linkrev = self.changelog.count() |
|
733 | linkrev = self.changelog.count() | |
734 | commit.sort() |
|
734 | commit.sort() | |
735 | is_exec = util.execfunc(self.root, m1.execf) |
|
735 | is_exec = util.execfunc(self.root, m1.execf) | |
736 | is_link = util.linkfunc(self.root, m1.linkf) |
|
736 | is_link = util.linkfunc(self.root, m1.linkf) | |
737 | for f in commit: |
|
737 | for f in commit: | |
738 | self.ui.note(f + "\n") |
|
738 | self.ui.note(f + "\n") | |
739 | try: |
|
739 | try: | |
740 | new[f] = self.filecommit(f, m1, m2, linkrev, trp, changed) |
|
740 | new[f] = self.filecommit(f, m1, m2, linkrev, trp, changed) | |
741 | new_exec = is_exec(f) |
|
741 | new_exec = is_exec(f) | |
742 | new_link = is_link(f) |
|
742 | new_link = is_link(f) | |
743 | if ((not changed or changed[-1] != f) and |
|
743 | if ((not changed or changed[-1] != f) and | |
744 | m2.get(f) != new[f]): |
|
744 | m2.get(f) != new[f]): | |
745 | # mention the file in the changelog if some |
|
745 | # mention the file in the changelog if some | |
746 | # flag changed, even if there was no content |
|
746 | # flag changed, even if there was no content | |
747 | # change. |
|
747 | # change. | |
748 | old_exec = m1.execf(f) |
|
748 | old_exec = m1.execf(f) | |
749 | old_link = m1.linkf(f) |
|
749 | old_link = m1.linkf(f) | |
750 | if old_exec != new_exec or old_link != new_link: |
|
750 | if old_exec != new_exec or old_link != new_link: | |
751 | changed.append(f) |
|
751 | changed.append(f) | |
752 | m1.set(f, new_exec, new_link) |
|
752 | m1.set(f, new_exec, new_link) | |
753 | except (OSError, IOError): |
|
753 | except (OSError, IOError): | |
754 | if use_dirstate: |
|
754 | if use_dirstate: | |
755 | self.ui.warn(_("trouble committing %s!\n") % f) |
|
755 | self.ui.warn(_("trouble committing %s!\n") % f) | |
756 | raise |
|
756 | raise | |
757 | else: |
|
757 | else: | |
758 | remove.append(f) |
|
758 | remove.append(f) | |
759 |
|
759 | |||
760 | # update manifest |
|
760 | # update manifest | |
761 | m1.update(new) |
|
761 | m1.update(new) | |
762 | remove.sort() |
|
762 | remove.sort() | |
763 | removed = [] |
|
763 | removed = [] | |
764 |
|
764 | |||
765 | for f in remove: |
|
765 | for f in remove: | |
766 | if f in m1: |
|
766 | if f in m1: | |
767 | del m1[f] |
|
767 | del m1[f] | |
768 | removed.append(f) |
|
768 | removed.append(f) | |
769 | elif f in m2: |
|
769 | elif f in m2: | |
770 | removed.append(f) |
|
770 | removed.append(f) | |
771 | mn = self.manifest.add(m1, trp, linkrev, c1[0], c2[0], |
|
771 | mn = self.manifest.add(m1, trp, linkrev, c1[0], c2[0], | |
772 | (new, removed)) |
|
772 | (new, removed)) | |
773 |
|
773 | |||
774 | # add changeset |
|
774 | # add changeset | |
775 | new = new.keys() |
|
775 | new = new.keys() | |
776 | new.sort() |
|
776 | new.sort() | |
777 |
|
777 | |||
778 | user = user or self.ui.username() |
|
778 | user = user or self.ui.username() | |
779 | if (not empty_ok and not text) or force_editor: |
|
779 | if (not empty_ok and not text) or force_editor: | |
780 | edittext = [] |
|
780 | edittext = [] | |
781 | if text: |
|
781 | if text: | |
782 | edittext.append(text) |
|
782 | edittext.append(text) | |
783 | edittext.append("") |
|
783 | edittext.append("") | |
784 | edittext.append("HG: user: %s" % user) |
|
784 | edittext.append("HG: user: %s" % user) | |
785 | if p2 != nullid: |
|
785 | if p2 != nullid: | |
786 | edittext.append("HG: branch merge") |
|
786 | edittext.append("HG: branch merge") | |
787 | if branchname: |
|
787 | if branchname: | |
788 | edittext.append("HG: branch %s" % util.tolocal(branchname)) |
|
788 | edittext.append("HG: branch %s" % util.tolocal(branchname)) | |
789 | edittext.extend(["HG: changed %s" % f for f in changed]) |
|
789 | edittext.extend(["HG: changed %s" % f for f in changed]) | |
790 | edittext.extend(["HG: removed %s" % f for f in removed]) |
|
790 | edittext.extend(["HG: removed %s" % f for f in removed]) | |
791 | if not changed and not remove: |
|
791 | if not changed and not remove: | |
792 | edittext.append("HG: no files changed") |
|
792 | edittext.append("HG: no files changed") | |
793 | edittext.append("") |
|
793 | edittext.append("") | |
794 | # run editor in the repository root |
|
794 | # run editor in the repository root | |
795 | olddir = os.getcwd() |
|
795 | olddir = os.getcwd() | |
796 | os.chdir(self.root) |
|
796 | os.chdir(self.root) | |
797 | text = self.ui.edit("\n".join(edittext), user) |
|
797 | text = self.ui.edit("\n".join(edittext), user) | |
798 | os.chdir(olddir) |
|
798 | os.chdir(olddir) | |
799 |
|
799 | |||
800 | if branchname: |
|
800 | if branchname: | |
801 | extra["branch"] = branchname |
|
801 | extra["branch"] = branchname | |
802 |
|
802 | |||
803 | if use_dirstate: |
|
803 | if use_dirstate: | |
804 | lines = [line.rstrip() for line in text.rstrip().splitlines()] |
|
804 | lines = [line.rstrip() for line in text.rstrip().splitlines()] | |
805 | while lines and not lines[0]: |
|
805 | while lines and not lines[0]: | |
806 | del lines[0] |
|
806 | del lines[0] | |
807 | if not lines: |
|
807 | if not lines: | |
808 | return None |
|
808 | return None | |
809 | text = '\n'.join(lines) |
|
809 | text = '\n'.join(lines) | |
810 |
|
810 | |||
811 | n = self.changelog.add(mn, changed + removed, text, trp, p1, p2, |
|
811 | n = self.changelog.add(mn, changed + removed, text, trp, p1, p2, | |
812 | user, date, extra) |
|
812 | user, date, extra) | |
813 | self.hook('pretxncommit', throw=True, node=hex(n), parent1=xp1, |
|
813 | self.hook('pretxncommit', throw=True, node=hex(n), parent1=xp1, | |
814 | parent2=xp2) |
|
814 | parent2=xp2) | |
815 | tr.close() |
|
815 | tr.close() | |
816 |
|
816 | |||
817 | if self.branchcache and "branch" in extra: |
|
817 | if self.branchcache and "branch" in extra: | |
818 | self.branchcache[util.tolocal(extra["branch"])] = n |
|
818 | self.branchcache[util.tolocal(extra["branch"])] = n | |
819 |
|
819 | |||
820 | if use_dirstate or update_dirstate: |
|
820 | if use_dirstate or update_dirstate: | |
821 | self.dirstate.setparents(n) |
|
821 | self.dirstate.setparents(n) | |
822 | if use_dirstate: |
|
822 | if use_dirstate: | |
823 | for f in new: |
|
823 | for f in new: | |
824 | self.dirstate.normal(f) |
|
824 | self.dirstate.normal(f) | |
825 | for f in removed: |
|
825 | for f in removed: | |
826 | self.dirstate.forget(f) |
|
826 | self.dirstate.forget(f) | |
827 |
|
827 | |||
828 | self.hook("commit", node=hex(n), parent1=xp1, parent2=xp2) |
|
828 | self.hook("commit", node=hex(n), parent1=xp1, parent2=xp2) | |
829 | return n |
|
829 | return n | |
830 | finally: |
|
830 | finally: | |
831 | del tr, lock, wlock |
|
831 | del tr, lock, wlock | |
832 |
|
832 | |||
833 | def walk(self, node=None, files=[], match=util.always, badmatch=None): |
|
833 | def walk(self, node=None, files=[], match=util.always, badmatch=None): | |
834 | ''' |
|
834 | ''' | |
835 | walk recursively through the directory tree or a given |
|
835 | walk recursively through the directory tree or a given | |
836 | changeset, finding all files matched by the match |
|
836 | changeset, finding all files matched by the match | |
837 | function |
|
837 | function | |
838 |
|
838 | |||
839 | results are yielded in a tuple (src, filename), where src |
|
839 | results are yielded in a tuple (src, filename), where src | |
840 | is one of: |
|
840 | is one of: | |
841 | 'f' the file was found in the directory tree |
|
841 | 'f' the file was found in the directory tree | |
842 | 'm' the file was only in the dirstate and not in the tree |
|
842 | 'm' the file was only in the dirstate and not in the tree | |
843 | 'b' file was not found and matched badmatch |
|
843 | 'b' file was not found and matched badmatch | |
844 | ''' |
|
844 | ''' | |
845 |
|
845 | |||
846 | if node: |
|
846 | if node: | |
847 | fdict = dict.fromkeys(files) |
|
847 | fdict = dict.fromkeys(files) | |
848 | # for dirstate.walk, files=['.'] means "walk the whole tree". |
|
848 | # for dirstate.walk, files=['.'] means "walk the whole tree". | |
849 | # follow that here, too |
|
849 | # follow that here, too | |
850 | fdict.pop('.', None) |
|
850 | fdict.pop('.', None) | |
851 | mdict = self.manifest.read(self.changelog.read(node)[0]) |
|
851 | mdict = self.manifest.read(self.changelog.read(node)[0]) | |
852 | mfiles = mdict.keys() |
|
852 | mfiles = mdict.keys() | |
853 | mfiles.sort() |
|
853 | mfiles.sort() | |
854 | for fn in mfiles: |
|
854 | for fn in mfiles: | |
855 | for ffn in fdict: |
|
855 | for ffn in fdict: | |
856 | # match if the file is the exact name or a directory |
|
856 | # match if the file is the exact name or a directory | |
857 | if ffn == fn or fn.startswith("%s/" % ffn): |
|
857 | if ffn == fn or fn.startswith("%s/" % ffn): | |
858 | del fdict[ffn] |
|
858 | del fdict[ffn] | |
859 | break |
|
859 | break | |
860 | if match(fn): |
|
860 | if match(fn): | |
861 | yield 'm', fn |
|
861 | yield 'm', fn | |
862 | ffiles = fdict.keys() |
|
862 | ffiles = fdict.keys() | |
863 | ffiles.sort() |
|
863 | ffiles.sort() | |
864 | for fn in ffiles: |
|
864 | for fn in ffiles: | |
865 | if badmatch and badmatch(fn): |
|
865 | if badmatch and badmatch(fn): | |
866 | if match(fn): |
|
866 | if match(fn): | |
867 | yield 'b', fn |
|
867 | yield 'b', fn | |
868 | else: |
|
868 | else: | |
869 | self.ui.warn(_('%s: No such file in rev %s\n') |
|
869 | self.ui.warn(_('%s: No such file in rev %s\n') | |
870 | % (self.pathto(fn), short(node))) |
|
870 | % (self.pathto(fn), short(node))) | |
871 | else: |
|
871 | else: | |
872 | for src, fn in self.dirstate.walk(files, match, badmatch=badmatch): |
|
872 | for src, fn in self.dirstate.walk(files, match, badmatch=badmatch): | |
873 | yield src, fn |
|
873 | yield src, fn | |
874 |
|
874 | |||
875 | def status(self, node1=None, node2=None, files=[], match=util.always, |
|
875 | def status(self, node1=None, node2=None, files=[], match=util.always, | |
876 | list_ignored=False, list_clean=False): |
|
876 | list_ignored=False, list_clean=False): | |
877 | """return status of files between two nodes or node and working directory |
|
877 | """return status of files between two nodes or node and working directory | |
878 |
|
878 | |||
879 | If node1 is None, use the first dirstate parent instead. |
|
879 | If node1 is None, use the first dirstate parent instead. | |
880 | If node2 is None, compare node1 with working directory. |
|
880 | If node2 is None, compare node1 with working directory. | |
881 | """ |
|
881 | """ | |
882 |
|
882 | |||
883 | def fcmp(fn, getnode): |
|
883 | def fcmp(fn, getnode): | |
884 | t1 = self.wread(fn) |
|
884 | t1 = self.wread(fn) | |
885 | return self.file(fn).cmp(getnode(fn), t1) |
|
885 | return self.file(fn).cmp(getnode(fn), t1) | |
886 |
|
886 | |||
887 | def mfmatches(node): |
|
887 | def mfmatches(node): | |
888 | change = self.changelog.read(node) |
|
888 | change = self.changelog.read(node) | |
889 | mf = self.manifest.read(change[0]).copy() |
|
889 | mf = self.manifest.read(change[0]).copy() | |
890 | for fn in mf.keys(): |
|
890 | for fn in mf.keys(): | |
891 | if not match(fn): |
|
891 | if not match(fn): | |
892 | del mf[fn] |
|
892 | del mf[fn] | |
893 | return mf |
|
893 | return mf | |
894 |
|
894 | |||
895 | modified, added, removed, deleted, unknown = [], [], [], [], [] |
|
895 | modified, added, removed, deleted, unknown = [], [], [], [], [] | |
896 | ignored, clean = [], [] |
|
896 | ignored, clean = [], [] | |
897 |
|
897 | |||
898 | compareworking = False |
|
898 | compareworking = False | |
899 | if not node1 or (not node2 and node1 == self.dirstate.parents()[0]): |
|
899 | if not node1 or (not node2 and node1 == self.dirstate.parents()[0]): | |
900 | compareworking = True |
|
900 | compareworking = True | |
901 |
|
901 | |||
902 | if not compareworking: |
|
902 | if not compareworking: | |
903 | # read the manifest from node1 before the manifest from node2, |
|
903 | # read the manifest from node1 before the manifest from node2, | |
904 | # so that we'll hit the manifest cache if we're going through |
|
904 | # so that we'll hit the manifest cache if we're going through | |
905 | # all the revisions in parent->child order. |
|
905 | # all the revisions in parent->child order. | |
906 | mf1 = mfmatches(node1) |
|
906 | mf1 = mfmatches(node1) | |
907 |
|
907 | |||
908 | # are we comparing the working directory? |
|
908 | # are we comparing the working directory? | |
909 | if not node2: |
|
909 | if not node2: | |
910 | (lookup, modified, added, removed, deleted, unknown, |
|
910 | (lookup, modified, added, removed, deleted, unknown, | |
911 | ignored, clean) = self.dirstate.status(files, match, |
|
911 | ignored, clean) = self.dirstate.status(files, match, | |
912 | list_ignored, list_clean) |
|
912 | list_ignored, list_clean) | |
913 |
|
913 | |||
914 | # are we comparing working dir against its parent? |
|
914 | # are we comparing working dir against its parent? | |
915 | if compareworking: |
|
915 | if compareworking: | |
916 | if lookup: |
|
916 | if lookup: | |
917 | fixup = [] |
|
917 | fixup = [] | |
918 | # do a full compare of any files that might have changed |
|
918 | # do a full compare of any files that might have changed | |
919 | ctx = self.changectx() |
|
919 | ctx = self.changectx() | |
920 | for f in lookup: |
|
920 | for f in lookup: | |
921 | if f not in ctx or ctx[f].cmp(self.wread(f)): |
|
921 | if f not in ctx or ctx[f].cmp(self.wread(f)): | |
922 | modified.append(f) |
|
922 | modified.append(f) | |
923 | else: |
|
923 | else: | |
924 | fixup.append(f) |
|
924 | fixup.append(f) | |
925 | if list_clean: |
|
925 | if list_clean: | |
926 | clean.append(f) |
|
926 | clean.append(f) | |
927 |
|
927 | |||
928 | # update dirstate for files that are actually clean |
|
928 | # update dirstate for files that are actually clean | |
929 | if fixup: |
|
929 | if fixup: | |
930 | wlock = None |
|
930 | wlock = None | |
931 | try: |
|
931 | try: | |
932 | try: |
|
932 | try: | |
933 | wlock = self.wlock(False) |
|
933 | wlock = self.wlock(False) | |
934 | except lock.LockException: |
|
934 | except lock.LockException: | |
935 | pass |
|
935 | pass | |
936 | if wlock: |
|
936 | if wlock: | |
937 | for f in fixup: |
|
937 | for f in fixup: | |
938 | self.dirstate.normal(f) |
|
938 | self.dirstate.normal(f) | |
939 | finally: |
|
939 | finally: | |
940 | del wlock |
|
940 | del wlock | |
941 | else: |
|
941 | else: | |
942 | # we are comparing working dir against non-parent |
|
942 | # we are comparing working dir against non-parent | |
943 | # generate a pseudo-manifest for the working dir |
|
943 | # generate a pseudo-manifest for the working dir | |
944 | # XXX: create it in dirstate.py ? |
|
944 | # XXX: create it in dirstate.py ? | |
945 | mf2 = mfmatches(self.dirstate.parents()[0]) |
|
945 | mf2 = mfmatches(self.dirstate.parents()[0]) | |
946 | is_exec = util.execfunc(self.root, mf2.execf) |
|
946 | is_exec = util.execfunc(self.root, mf2.execf) | |
947 | is_link = util.linkfunc(self.root, mf2.linkf) |
|
947 | is_link = util.linkfunc(self.root, mf2.linkf) | |
948 | for f in lookup + modified + added: |
|
948 | for f in lookup + modified + added: | |
949 | mf2[f] = "" |
|
949 | mf2[f] = "" | |
950 | mf2.set(f, is_exec(f), is_link(f)) |
|
950 | mf2.set(f, is_exec(f), is_link(f)) | |
951 | for f in removed: |
|
951 | for f in removed: | |
952 | if f in mf2: |
|
952 | if f in mf2: | |
953 | del mf2[f] |
|
953 | del mf2[f] | |
954 |
|
954 | |||
955 | else: |
|
955 | else: | |
956 | # we are comparing two revisions |
|
956 | # we are comparing two revisions | |
957 | mf2 = mfmatches(node2) |
|
957 | mf2 = mfmatches(node2) | |
958 |
|
958 | |||
959 | if not compareworking: |
|
959 | if not compareworking: | |
960 | # flush lists from dirstate before comparing manifests |
|
960 | # flush lists from dirstate before comparing manifests | |
961 | modified, added, clean = [], [], [] |
|
961 | modified, added, clean = [], [], [] | |
962 |
|
962 | |||
963 | # make sure to sort the files so we talk to the disk in a |
|
963 | # make sure to sort the files so we talk to the disk in a | |
964 | # reasonable order |
|
964 | # reasonable order | |
965 | mf2keys = mf2.keys() |
|
965 | mf2keys = mf2.keys() | |
966 | mf2keys.sort() |
|
966 | mf2keys.sort() | |
967 | getnode = lambda fn: mf1.get(fn, nullid) |
|
967 | getnode = lambda fn: mf1.get(fn, nullid) | |
968 | for fn in mf2keys: |
|
968 | for fn in mf2keys: | |
969 | if mf1.has_key(fn): |
|
969 | if mf1.has_key(fn): | |
970 | if (mf1.flags(fn) != mf2.flags(fn) or |
|
970 | if (mf1.flags(fn) != mf2.flags(fn) or | |
971 | (mf1[fn] != mf2[fn] and |
|
971 | (mf1[fn] != mf2[fn] and | |
972 | (mf2[fn] != "" or fcmp(fn, getnode)))): |
|
972 | (mf2[fn] != "" or fcmp(fn, getnode)))): | |
973 | modified.append(fn) |
|
973 | modified.append(fn) | |
974 | elif list_clean: |
|
974 | elif list_clean: | |
975 | clean.append(fn) |
|
975 | clean.append(fn) | |
976 | del mf1[fn] |
|
976 | del mf1[fn] | |
977 | else: |
|
977 | else: | |
978 | added.append(fn) |
|
978 | added.append(fn) | |
979 |
|
979 | |||
980 | removed = mf1.keys() |
|
980 | removed = mf1.keys() | |
981 |
|
981 | |||
982 | # sort and return results: |
|
982 | # sort and return results: | |
983 | for l in modified, added, removed, deleted, unknown, ignored, clean: |
|
983 | for l in modified, added, removed, deleted, unknown, ignored, clean: | |
984 | l.sort() |
|
984 | l.sort() | |
985 | return (modified, added, removed, deleted, unknown, ignored, clean) |
|
985 | return (modified, added, removed, deleted, unknown, ignored, clean) | |
986 |
|
986 | |||
987 | def add(self, list): |
|
987 | def add(self, list): | |
988 | wlock = self.wlock() |
|
988 | wlock = self.wlock() | |
989 | try: |
|
989 | try: | |
990 | for f in list: |
|
990 | for f in list: | |
991 | p = self.wjoin(f) |
|
991 | p = self.wjoin(f) | |
992 | try: |
|
992 | try: | |
993 | st = os.lstat(p) |
|
993 | st = os.lstat(p) | |
994 | except: |
|
994 | except: | |
995 | self.ui.warn(_("%s does not exist!\n") % f) |
|
995 | self.ui.warn(_("%s does not exist!\n") % f) | |
996 | continue |
|
996 | continue | |
997 | if st.st_size > 10000000: |
|
997 | if st.st_size > 10000000: | |
998 | self.ui.warn(_("%s: files over 10MB may cause memory and" |
|
998 | self.ui.warn(_("%s: files over 10MB may cause memory and" | |
999 | " performance problems\n" |
|
999 | " performance problems\n" | |
1000 | "(use 'hg revert %s' to unadd the file)\n") |
|
1000 | "(use 'hg revert %s' to unadd the file)\n") | |
1001 | % (f, f)) |
|
1001 | % (f, f)) | |
1002 | if not (stat.S_ISREG(st.st_mode) or stat.S_ISLNK(st.st_mode)): |
|
1002 | if not (stat.S_ISREG(st.st_mode) or stat.S_ISLNK(st.st_mode)): | |
1003 | self.ui.warn(_("%s not added: only files and symlinks " |
|
1003 | self.ui.warn(_("%s not added: only files and symlinks " | |
1004 | "supported currently\n") % f) |
|
1004 | "supported currently\n") % f) | |
1005 | elif self.dirstate[f] in 'amn': |
|
1005 | elif self.dirstate[f] in 'amn': | |
1006 | self.ui.warn(_("%s already tracked!\n") % f) |
|
1006 | self.ui.warn(_("%s already tracked!\n") % f) | |
1007 | elif self.dirstate[f] == 'r': |
|
1007 | elif self.dirstate[f] == 'r': | |
1008 | self.dirstate.normallookup(f) |
|
1008 | self.dirstate.normallookup(f) | |
1009 | else: |
|
1009 | else: | |
1010 | self.dirstate.add(f) |
|
1010 | self.dirstate.add(f) | |
1011 | finally: |
|
1011 | finally: | |
1012 | del wlock |
|
1012 | del wlock | |
1013 |
|
1013 | |||
1014 | def forget(self, list): |
|
1014 | def forget(self, list): | |
1015 | wlock = self.wlock() |
|
1015 | wlock = self.wlock() | |
1016 | try: |
|
1016 | try: | |
1017 | for f in list: |
|
1017 | for f in list: | |
1018 | if self.dirstate[f] != 'a': |
|
1018 | if self.dirstate[f] != 'a': | |
1019 | self.ui.warn(_("%s not added!\n") % f) |
|
1019 | self.ui.warn(_("%s not added!\n") % f) | |
1020 | else: |
|
1020 | else: | |
1021 | self.dirstate.forget(f) |
|
1021 | self.dirstate.forget(f) | |
1022 | finally: |
|
1022 | finally: | |
1023 | del wlock |
|
1023 | del wlock | |
1024 |
|
1024 | |||
1025 | def remove(self, list, unlink=False): |
|
1025 | def remove(self, list, unlink=False): | |
1026 | wlock = None |
|
1026 | wlock = None | |
1027 | try: |
|
1027 | try: | |
1028 | if unlink: |
|
1028 | if unlink: | |
1029 | for f in list: |
|
1029 | for f in list: | |
1030 | try: |
|
1030 | try: | |
1031 | util.unlink(self.wjoin(f)) |
|
1031 | util.unlink(self.wjoin(f)) | |
1032 | except OSError, inst: |
|
1032 | except OSError, inst: | |
1033 | if inst.errno != errno.ENOENT: |
|
1033 | if inst.errno != errno.ENOENT: | |
1034 | raise |
|
1034 | raise | |
1035 | wlock = self.wlock() |
|
1035 | wlock = self.wlock() | |
1036 | for f in list: |
|
1036 | for f in list: | |
1037 | if unlink and os.path.exists(self.wjoin(f)): |
|
1037 | if unlink and os.path.exists(self.wjoin(f)): | |
1038 | self.ui.warn(_("%s still exists!\n") % f) |
|
1038 | self.ui.warn(_("%s still exists!\n") % f) | |
1039 | elif self.dirstate[f] == 'a': |
|
1039 | elif self.dirstate[f] == 'a': | |
1040 | self.dirstate.forget(f) |
|
1040 | self.dirstate.forget(f) | |
1041 | elif f not in self.dirstate: |
|
1041 | elif f not in self.dirstate: | |
1042 | self.ui.warn(_("%s not tracked!\n") % f) |
|
1042 | self.ui.warn(_("%s not tracked!\n") % f) | |
1043 | else: |
|
1043 | else: | |
1044 | self.dirstate.remove(f) |
|
1044 | self.dirstate.remove(f) | |
1045 | finally: |
|
1045 | finally: | |
1046 | del wlock |
|
1046 | del wlock | |
1047 |
|
1047 | |||
1048 | def undelete(self, list): |
|
1048 | def undelete(self, list): | |
1049 | wlock = None |
|
1049 | wlock = None | |
1050 | try: |
|
1050 | try: | |
1051 | manifests = [self.manifest.read(self.changelog.read(p)[0]) |
|
1051 | manifests = [self.manifest.read(self.changelog.read(p)[0]) | |
1052 | for p in self.dirstate.parents() if p != nullid] |
|
1052 | for p in self.dirstate.parents() if p != nullid] | |
1053 | wlock = self.wlock() |
|
1053 | wlock = self.wlock() | |
1054 | for f in list: |
|
1054 | for f in list: | |
1055 | if self.dirstate[f] != 'r': |
|
1055 | if self.dirstate[f] != 'r': | |
1056 | self.ui.warn("%s not removed!\n" % f) |
|
1056 | self.ui.warn("%s not removed!\n" % f) | |
1057 | else: |
|
1057 | else: | |
1058 | m = f in manifests[0] and manifests[0] or manifests[1] |
|
1058 | m = f in manifests[0] and manifests[0] or manifests[1] | |
1059 | t = self.file(f).read(m[f]) |
|
1059 | t = self.file(f).read(m[f]) | |
1060 | self.wwrite(f, t, m.flags(f)) |
|
1060 | self.wwrite(f, t, m.flags(f)) | |
1061 | self.dirstate.normal(f) |
|
1061 | self.dirstate.normal(f) | |
1062 | finally: |
|
1062 | finally: | |
1063 | del wlock |
|
1063 | del wlock | |
1064 |
|
1064 | |||
1065 | def copy(self, source, dest): |
|
1065 | def copy(self, source, dest): | |
1066 | wlock = None |
|
1066 | wlock = None | |
1067 | try: |
|
1067 | try: | |
1068 | p = self.wjoin(dest) |
|
1068 | p = self.wjoin(dest) | |
1069 | if not (os.path.exists(p) or os.path.islink(p)): |
|
1069 | if not (os.path.exists(p) or os.path.islink(p)): | |
1070 | self.ui.warn(_("%s does not exist!\n") % dest) |
|
1070 | self.ui.warn(_("%s does not exist!\n") % dest) | |
1071 | elif not (os.path.isfile(p) or os.path.islink(p)): |
|
1071 | elif not (os.path.isfile(p) or os.path.islink(p)): | |
1072 | self.ui.warn(_("copy failed: %s is not a file or a " |
|
1072 | self.ui.warn(_("copy failed: %s is not a file or a " | |
1073 | "symbolic link\n") % dest) |
|
1073 | "symbolic link\n") % dest) | |
1074 | else: |
|
1074 | else: | |
1075 | wlock = self.wlock() |
|
1075 | wlock = self.wlock() | |
1076 | if dest not in self.dirstate: |
|
1076 | if dest not in self.dirstate: | |
1077 | self.dirstate.add(dest) |
|
1077 | self.dirstate.add(dest) | |
1078 | self.dirstate.copy(source, dest) |
|
1078 | self.dirstate.copy(source, dest) | |
1079 | finally: |
|
1079 | finally: | |
1080 | del wlock |
|
1080 | del wlock | |
1081 |
|
1081 | |||
1082 | def heads(self, start=None): |
|
1082 | def heads(self, start=None): | |
1083 | heads = self.changelog.heads(start) |
|
1083 | heads = self.changelog.heads(start) | |
1084 | # sort the output in rev descending order |
|
1084 | # sort the output in rev descending order | |
1085 | heads = [(-self.changelog.rev(h), h) for h in heads] |
|
1085 | heads = [(-self.changelog.rev(h), h) for h in heads] | |
1086 | heads.sort() |
|
1086 | heads.sort() | |
1087 | return [n for (r, n) in heads] |
|
1087 | return [n for (r, n) in heads] | |
1088 |
|
1088 | |||
1089 | def branchheads(self, branch, start=None): |
|
1089 | def branchheads(self, branch, start=None): | |
1090 | branches = self.branchtags() |
|
1090 | branches = self.branchtags() | |
1091 | if branch not in branches: |
|
1091 | if branch not in branches: | |
1092 | return [] |
|
1092 | return [] | |
1093 | # The basic algorithm is this: |
|
1093 | # The basic algorithm is this: | |
1094 | # |
|
1094 | # | |
1095 | # Start from the branch tip since there are no later revisions that can |
|
1095 | # Start from the branch tip since there are no later revisions that can | |
1096 | # possibly be in this branch, and the tip is a guaranteed head. |
|
1096 | # possibly be in this branch, and the tip is a guaranteed head. | |
1097 | # |
|
1097 | # | |
1098 | # Remember the tip's parents as the first ancestors, since these by |
|
1098 | # Remember the tip's parents as the first ancestors, since these by | |
1099 | # definition are not heads. |
|
1099 | # definition are not heads. | |
1100 | # |
|
1100 | # | |
1101 | # Step backwards from the brach tip through all the revisions. We are |
|
1101 | # Step backwards from the brach tip through all the revisions. We are | |
1102 | # guaranteed by the rules of Mercurial that we will now be visiting the |
|
1102 | # guaranteed by the rules of Mercurial that we will now be visiting the | |
1103 | # nodes in reverse topological order (children before parents). |
|
1103 | # nodes in reverse topological order (children before parents). | |
1104 | # |
|
1104 | # | |
1105 | # If a revision is one of the ancestors of a head then we can toss it |
|
1105 | # If a revision is one of the ancestors of a head then we can toss it | |
1106 | # out of the ancestors set (we've already found it and won't be |
|
1106 | # out of the ancestors set (we've already found it and won't be | |
1107 | # visiting it again) and put its parents in the ancestors set. |
|
1107 | # visiting it again) and put its parents in the ancestors set. | |
1108 | # |
|
1108 | # | |
1109 | # Otherwise, if a revision is in the branch it's another head, since it |
|
1109 | # Otherwise, if a revision is in the branch it's another head, since it | |
1110 | # wasn't in the ancestor list of an existing head. So add it to the |
|
1110 | # wasn't in the ancestor list of an existing head. So add it to the | |
1111 | # head list, and add its parents to the ancestor list. |
|
1111 | # head list, and add its parents to the ancestor list. | |
1112 | # |
|
1112 | # | |
1113 | # If it is not in the branch ignore it. |
|
1113 | # If it is not in the branch ignore it. | |
1114 | # |
|
1114 | # | |
1115 | # Once we have a list of heads, use nodesbetween to filter out all the |
|
1115 | # Once we have a list of heads, use nodesbetween to filter out all the | |
1116 | # heads that cannot be reached from startrev. There may be a more |
|
1116 | # heads that cannot be reached from startrev. There may be a more | |
1117 | # efficient way to do this as part of the previous algorithm. |
|
1117 | # efficient way to do this as part of the previous algorithm. | |
1118 |
|
1118 | |||
1119 | set = util.set |
|
1119 | set = util.set | |
1120 | heads = [self.changelog.rev(branches[branch])] |
|
1120 | heads = [self.changelog.rev(branches[branch])] | |
1121 | # Don't care if ancestors contains nullrev or not. |
|
1121 | # Don't care if ancestors contains nullrev or not. | |
1122 | ancestors = set(self.changelog.parentrevs(heads[0])) |
|
1122 | ancestors = set(self.changelog.parentrevs(heads[0])) | |
1123 | for rev in xrange(heads[0] - 1, nullrev, -1): |
|
1123 | for rev in xrange(heads[0] - 1, nullrev, -1): | |
1124 | if rev in ancestors: |
|
1124 | if rev in ancestors: | |
1125 | ancestors.update(self.changelog.parentrevs(rev)) |
|
1125 | ancestors.update(self.changelog.parentrevs(rev)) | |
1126 | ancestors.remove(rev) |
|
1126 | ancestors.remove(rev) | |
1127 | elif self.changectx(rev).branch() == branch: |
|
1127 | elif self.changectx(rev).branch() == branch: | |
1128 | heads.append(rev) |
|
1128 | heads.append(rev) | |
1129 | ancestors.update(self.changelog.parentrevs(rev)) |
|
1129 | ancestors.update(self.changelog.parentrevs(rev)) | |
1130 | heads = [self.changelog.node(rev) for rev in heads] |
|
1130 | heads = [self.changelog.node(rev) for rev in heads] | |
1131 | if start is not None: |
|
1131 | if start is not None: | |
1132 | heads = self.changelog.nodesbetween([start], heads)[2] |
|
1132 | heads = self.changelog.nodesbetween([start], heads)[2] | |
1133 | return heads |
|
1133 | return heads | |
1134 |
|
1134 | |||
1135 | def branches(self, nodes): |
|
1135 | def branches(self, nodes): | |
1136 | if not nodes: |
|
1136 | if not nodes: | |
1137 | nodes = [self.changelog.tip()] |
|
1137 | nodes = [self.changelog.tip()] | |
1138 | b = [] |
|
1138 | b = [] | |
1139 | for n in nodes: |
|
1139 | for n in nodes: | |
1140 | t = n |
|
1140 | t = n | |
1141 | while 1: |
|
1141 | while 1: | |
1142 | p = self.changelog.parents(n) |
|
1142 | p = self.changelog.parents(n) | |
1143 | if p[1] != nullid or p[0] == nullid: |
|
1143 | if p[1] != nullid or p[0] == nullid: | |
1144 | b.append((t, n, p[0], p[1])) |
|
1144 | b.append((t, n, p[0], p[1])) | |
1145 | break |
|
1145 | break | |
1146 | n = p[0] |
|
1146 | n = p[0] | |
1147 | return b |
|
1147 | return b | |
1148 |
|
1148 | |||
1149 | def between(self, pairs): |
|
1149 | def between(self, pairs): | |
1150 | r = [] |
|
1150 | r = [] | |
1151 |
|
1151 | |||
1152 | for top, bottom in pairs: |
|
1152 | for top, bottom in pairs: | |
1153 | n, l, i = top, [], 0 |
|
1153 | n, l, i = top, [], 0 | |
1154 | f = 1 |
|
1154 | f = 1 | |
1155 |
|
1155 | |||
1156 | while n != bottom: |
|
1156 | while n != bottom: | |
1157 | p = self.changelog.parents(n)[0] |
|
1157 | p = self.changelog.parents(n)[0] | |
1158 | if i == f: |
|
1158 | if i == f: | |
1159 | l.append(n) |
|
1159 | l.append(n) | |
1160 | f = f * 2 |
|
1160 | f = f * 2 | |
1161 | n = p |
|
1161 | n = p | |
1162 | i += 1 |
|
1162 | i += 1 | |
1163 |
|
1163 | |||
1164 | r.append(l) |
|
1164 | r.append(l) | |
1165 |
|
1165 | |||
1166 | return r |
|
1166 | return r | |
1167 |
|
1167 | |||
1168 | def findincoming(self, remote, base=None, heads=None, force=False): |
|
1168 | def findincoming(self, remote, base=None, heads=None, force=False): | |
1169 | """Return list of roots of the subsets of missing nodes from remote |
|
1169 | """Return list of roots of the subsets of missing nodes from remote | |
1170 |
|
1170 | |||
1171 | If base dict is specified, assume that these nodes and their parents |
|
1171 | If base dict is specified, assume that these nodes and their parents | |
1172 | exist on the remote side and that no child of a node of base exists |
|
1172 | exist on the remote side and that no child of a node of base exists | |
1173 | in both remote and self. |
|
1173 | in both remote and self. | |
1174 | Furthermore base will be updated to include the nodes that exists |
|
1174 | Furthermore base will be updated to include the nodes that exists | |
1175 | in self and remote but no children exists in self and remote. |
|
1175 | in self and remote but no children exists in self and remote. | |
1176 | If a list of heads is specified, return only nodes which are heads |
|
1176 | If a list of heads is specified, return only nodes which are heads | |
1177 | or ancestors of these heads. |
|
1177 | or ancestors of these heads. | |
1178 |
|
1178 | |||
1179 | All the ancestors of base are in self and in remote. |
|
1179 | All the ancestors of base are in self and in remote. | |
1180 | All the descendants of the list returned are missing in self. |
|
1180 | All the descendants of the list returned are missing in self. | |
1181 | (and so we know that the rest of the nodes are missing in remote, see |
|
1181 | (and so we know that the rest of the nodes are missing in remote, see | |
1182 | outgoing) |
|
1182 | outgoing) | |
1183 | """ |
|
1183 | """ | |
1184 | m = self.changelog.nodemap |
|
1184 | m = self.changelog.nodemap | |
1185 | search = [] |
|
1185 | search = [] | |
1186 | fetch = {} |
|
1186 | fetch = {} | |
1187 | seen = {} |
|
1187 | seen = {} | |
1188 | seenbranch = {} |
|
1188 | seenbranch = {} | |
1189 | if base == None: |
|
1189 | if base == None: | |
1190 | base = {} |
|
1190 | base = {} | |
1191 |
|
1191 | |||
1192 | if not heads: |
|
1192 | if not heads: | |
1193 | heads = remote.heads() |
|
1193 | heads = remote.heads() | |
1194 |
|
1194 | |||
1195 | if self.changelog.tip() == nullid: |
|
1195 | if self.changelog.tip() == nullid: | |
1196 | base[nullid] = 1 |
|
1196 | base[nullid] = 1 | |
1197 | if heads != [nullid]: |
|
1197 | if heads != [nullid]: | |
1198 | return [nullid] |
|
1198 | return [nullid] | |
1199 | return [] |
|
1199 | return [] | |
1200 |
|
1200 | |||
1201 | # assume we're closer to the tip than the root |
|
1201 | # assume we're closer to the tip than the root | |
1202 | # and start by examining the heads |
|
1202 | # and start by examining the heads | |
1203 | self.ui.status(_("searching for changes\n")) |
|
1203 | self.ui.status(_("searching for changes\n")) | |
1204 |
|
1204 | |||
1205 | unknown = [] |
|
1205 | unknown = [] | |
1206 | for h in heads: |
|
1206 | for h in heads: | |
1207 | if h not in m: |
|
1207 | if h not in m: | |
1208 | unknown.append(h) |
|
1208 | unknown.append(h) | |
1209 | else: |
|
1209 | else: | |
1210 | base[h] = 1 |
|
1210 | base[h] = 1 | |
1211 |
|
1211 | |||
1212 | if not unknown: |
|
1212 | if not unknown: | |
1213 | return [] |
|
1213 | return [] | |
1214 |
|
1214 | |||
1215 | req = dict.fromkeys(unknown) |
|
1215 | req = dict.fromkeys(unknown) | |
1216 | reqcnt = 0 |
|
1216 | reqcnt = 0 | |
1217 |
|
1217 | |||
1218 | # search through remote branches |
|
1218 | # search through remote branches | |
1219 | # a 'branch' here is a linear segment of history, with four parts: |
|
1219 | # a 'branch' here is a linear segment of history, with four parts: | |
1220 | # head, root, first parent, second parent |
|
1220 | # head, root, first parent, second parent | |
1221 | # (a branch always has two parents (or none) by definition) |
|
1221 | # (a branch always has two parents (or none) by definition) | |
1222 | unknown = remote.branches(unknown) |
|
1222 | unknown = remote.branches(unknown) | |
1223 | while unknown: |
|
1223 | while unknown: | |
1224 | r = [] |
|
1224 | r = [] | |
1225 | while unknown: |
|
1225 | while unknown: | |
1226 | n = unknown.pop(0) |
|
1226 | n = unknown.pop(0) | |
1227 | if n[0] in seen: |
|
1227 | if n[0] in seen: | |
1228 | continue |
|
1228 | continue | |
1229 |
|
1229 | |||
1230 | self.ui.debug(_("examining %s:%s\n") |
|
1230 | self.ui.debug(_("examining %s:%s\n") | |
1231 | % (short(n[0]), short(n[1]))) |
|
1231 | % (short(n[0]), short(n[1]))) | |
1232 | if n[0] == nullid: # found the end of the branch |
|
1232 | if n[0] == nullid: # found the end of the branch | |
1233 | pass |
|
1233 | pass | |
1234 | elif n in seenbranch: |
|
1234 | elif n in seenbranch: | |
1235 | self.ui.debug(_("branch already found\n")) |
|
1235 | self.ui.debug(_("branch already found\n")) | |
1236 | continue |
|
1236 | continue | |
1237 | elif n[1] and n[1] in m: # do we know the base? |
|
1237 | elif n[1] and n[1] in m: # do we know the base? | |
1238 | self.ui.debug(_("found incomplete branch %s:%s\n") |
|
1238 | self.ui.debug(_("found incomplete branch %s:%s\n") | |
1239 | % (short(n[0]), short(n[1]))) |
|
1239 | % (short(n[0]), short(n[1]))) | |
1240 | search.append(n) # schedule branch range for scanning |
|
1240 | search.append(n) # schedule branch range for scanning | |
1241 | seenbranch[n] = 1 |
|
1241 | seenbranch[n] = 1 | |
1242 | else: |
|
1242 | else: | |
1243 | if n[1] not in seen and n[1] not in fetch: |
|
1243 | if n[1] not in seen and n[1] not in fetch: | |
1244 | if n[2] in m and n[3] in m: |
|
1244 | if n[2] in m and n[3] in m: | |
1245 | self.ui.debug(_("found new changeset %s\n") % |
|
1245 | self.ui.debug(_("found new changeset %s\n") % | |
1246 | short(n[1])) |
|
1246 | short(n[1])) | |
1247 | fetch[n[1]] = 1 # earliest unknown |
|
1247 | fetch[n[1]] = 1 # earliest unknown | |
1248 | for p in n[2:4]: |
|
1248 | for p in n[2:4]: | |
1249 | if p in m: |
|
1249 | if p in m: | |
1250 | base[p] = 1 # latest known |
|
1250 | base[p] = 1 # latest known | |
1251 |
|
1251 | |||
1252 | for p in n[2:4]: |
|
1252 | for p in n[2:4]: | |
1253 | if p not in req and p not in m: |
|
1253 | if p not in req and p not in m: | |
1254 | r.append(p) |
|
1254 | r.append(p) | |
1255 | req[p] = 1 |
|
1255 | req[p] = 1 | |
1256 | seen[n[0]] = 1 |
|
1256 | seen[n[0]] = 1 | |
1257 |
|
1257 | |||
1258 | if r: |
|
1258 | if r: | |
1259 | reqcnt += 1 |
|
1259 | reqcnt += 1 | |
1260 | self.ui.debug(_("request %d: %s\n") % |
|
1260 | self.ui.debug(_("request %d: %s\n") % | |
1261 | (reqcnt, " ".join(map(short, r)))) |
|
1261 | (reqcnt, " ".join(map(short, r)))) | |
1262 | for p in xrange(0, len(r), 10): |
|
1262 | for p in xrange(0, len(r), 10): | |
1263 | for b in remote.branches(r[p:p+10]): |
|
1263 | for b in remote.branches(r[p:p+10]): | |
1264 | self.ui.debug(_("received %s:%s\n") % |
|
1264 | self.ui.debug(_("received %s:%s\n") % | |
1265 | (short(b[0]), short(b[1]))) |
|
1265 | (short(b[0]), short(b[1]))) | |
1266 | unknown.append(b) |
|
1266 | unknown.append(b) | |
1267 |
|
1267 | |||
1268 | # do binary search on the branches we found |
|
1268 | # do binary search on the branches we found | |
1269 | while search: |
|
1269 | while search: | |
1270 | n = search.pop(0) |
|
1270 | n = search.pop(0) | |
1271 | reqcnt += 1 |
|
1271 | reqcnt += 1 | |
1272 | l = remote.between([(n[0], n[1])])[0] |
|
1272 | l = remote.between([(n[0], n[1])])[0] | |
1273 | l.append(n[1]) |
|
1273 | l.append(n[1]) | |
1274 | p = n[0] |
|
1274 | p = n[0] | |
1275 | f = 1 |
|
1275 | f = 1 | |
1276 | for i in l: |
|
1276 | for i in l: | |
1277 | self.ui.debug(_("narrowing %d:%d %s\n") % (f, len(l), short(i))) |
|
1277 | self.ui.debug(_("narrowing %d:%d %s\n") % (f, len(l), short(i))) | |
1278 | if i in m: |
|
1278 | if i in m: | |
1279 | if f <= 2: |
|
1279 | if f <= 2: | |
1280 | self.ui.debug(_("found new branch changeset %s\n") % |
|
1280 | self.ui.debug(_("found new branch changeset %s\n") % | |
1281 | short(p)) |
|
1281 | short(p)) | |
1282 | fetch[p] = 1 |
|
1282 | fetch[p] = 1 | |
1283 | base[i] = 1 |
|
1283 | base[i] = 1 | |
1284 | else: |
|
1284 | else: | |
1285 | self.ui.debug(_("narrowed branch search to %s:%s\n") |
|
1285 | self.ui.debug(_("narrowed branch search to %s:%s\n") | |
1286 | % (short(p), short(i))) |
|
1286 | % (short(p), short(i))) | |
1287 | search.append((p, i)) |
|
1287 | search.append((p, i)) | |
1288 | break |
|
1288 | break | |
1289 | p, f = i, f * 2 |
|
1289 | p, f = i, f * 2 | |
1290 |
|
1290 | |||
1291 | # sanity check our fetch list |
|
1291 | # sanity check our fetch list | |
1292 | for f in fetch.keys(): |
|
1292 | for f in fetch.keys(): | |
1293 | if f in m: |
|
1293 | if f in m: | |
1294 | raise repo.RepoError(_("already have changeset ") + short(f[:4])) |
|
1294 | raise repo.RepoError(_("already have changeset ") + short(f[:4])) | |
1295 |
|
1295 | |||
1296 | if base.keys() == [nullid]: |
|
1296 | if base.keys() == [nullid]: | |
1297 | if force: |
|
1297 | if force: | |
1298 | self.ui.warn(_("warning: repository is unrelated\n")) |
|
1298 | self.ui.warn(_("warning: repository is unrelated\n")) | |
1299 | else: |
|
1299 | else: | |
1300 | raise util.Abort(_("repository is unrelated")) |
|
1300 | raise util.Abort(_("repository is unrelated")) | |
1301 |
|
1301 | |||
1302 | self.ui.debug(_("found new changesets starting at ") + |
|
1302 | self.ui.debug(_("found new changesets starting at ") + | |
1303 | " ".join([short(f) for f in fetch]) + "\n") |
|
1303 | " ".join([short(f) for f in fetch]) + "\n") | |
1304 |
|
1304 | |||
1305 | self.ui.debug(_("%d total queries\n") % reqcnt) |
|
1305 | self.ui.debug(_("%d total queries\n") % reqcnt) | |
1306 |
|
1306 | |||
1307 | return fetch.keys() |
|
1307 | return fetch.keys() | |
1308 |
|
1308 | |||
1309 | def findoutgoing(self, remote, base=None, heads=None, force=False): |
|
1309 | def findoutgoing(self, remote, base=None, heads=None, force=False): | |
1310 | """Return list of nodes that are roots of subsets not in remote |
|
1310 | """Return list of nodes that are roots of subsets not in remote | |
1311 |
|
1311 | |||
1312 | If base dict is specified, assume that these nodes and their parents |
|
1312 | If base dict is specified, assume that these nodes and their parents | |
1313 | exist on the remote side. |
|
1313 | exist on the remote side. | |
1314 | If a list of heads is specified, return only nodes which are heads |
|
1314 | If a list of heads is specified, return only nodes which are heads | |
1315 | or ancestors of these heads, and return a second element which |
|
1315 | or ancestors of these heads, and return a second element which | |
1316 | contains all remote heads which get new children. |
|
1316 | contains all remote heads which get new children. | |
1317 | """ |
|
1317 | """ | |
1318 | if base == None: |
|
1318 | if base == None: | |
1319 | base = {} |
|
1319 | base = {} | |
1320 | self.findincoming(remote, base, heads, force=force) |
|
1320 | self.findincoming(remote, base, heads, force=force) | |
1321 |
|
1321 | |||
1322 | self.ui.debug(_("common changesets up to ") |
|
1322 | self.ui.debug(_("common changesets up to ") | |
1323 | + " ".join(map(short, base.keys())) + "\n") |
|
1323 | + " ".join(map(short, base.keys())) + "\n") | |
1324 |
|
1324 | |||
1325 | remain = dict.fromkeys(self.changelog.nodemap) |
|
1325 | remain = dict.fromkeys(self.changelog.nodemap) | |
1326 |
|
1326 | |||
1327 | # prune everything remote has from the tree |
|
1327 | # prune everything remote has from the tree | |
1328 | del remain[nullid] |
|
1328 | del remain[nullid] | |
1329 | remove = base.keys() |
|
1329 | remove = base.keys() | |
1330 | while remove: |
|
1330 | while remove: | |
1331 | n = remove.pop(0) |
|
1331 | n = remove.pop(0) | |
1332 | if n in remain: |
|
1332 | if n in remain: | |
1333 | del remain[n] |
|
1333 | del remain[n] | |
1334 | for p in self.changelog.parents(n): |
|
1334 | for p in self.changelog.parents(n): | |
1335 | remove.append(p) |
|
1335 | remove.append(p) | |
1336 |
|
1336 | |||
1337 | # find every node whose parents have been pruned |
|
1337 | # find every node whose parents have been pruned | |
1338 | subset = [] |
|
1338 | subset = [] | |
1339 | # find every remote head that will get new children |
|
1339 | # find every remote head that will get new children | |
1340 | updated_heads = {} |
|
1340 | updated_heads = {} | |
1341 | for n in remain: |
|
1341 | for n in remain: | |
1342 | p1, p2 = self.changelog.parents(n) |
|
1342 | p1, p2 = self.changelog.parents(n) | |
1343 | if p1 not in remain and p2 not in remain: |
|
1343 | if p1 not in remain and p2 not in remain: | |
1344 | subset.append(n) |
|
1344 | subset.append(n) | |
1345 | if heads: |
|
1345 | if heads: | |
1346 | if p1 in heads: |
|
1346 | if p1 in heads: | |
1347 | updated_heads[p1] = True |
|
1347 | updated_heads[p1] = True | |
1348 | if p2 in heads: |
|
1348 | if p2 in heads: | |
1349 | updated_heads[p2] = True |
|
1349 | updated_heads[p2] = True | |
1350 |
|
1350 | |||
1351 | # this is the set of all roots we have to push |
|
1351 | # this is the set of all roots we have to push | |
1352 | if heads: |
|
1352 | if heads: | |
1353 | return subset, updated_heads.keys() |
|
1353 | return subset, updated_heads.keys() | |
1354 | else: |
|
1354 | else: | |
1355 | return subset |
|
1355 | return subset | |
1356 |
|
1356 | |||
1357 | def pull(self, remote, heads=None, force=False): |
|
1357 | def pull(self, remote, heads=None, force=False): | |
1358 | lock = self.lock() |
|
1358 | lock = self.lock() | |
1359 | try: |
|
1359 | try: | |
1360 | fetch = self.findincoming(remote, heads=heads, force=force) |
|
1360 | fetch = self.findincoming(remote, heads=heads, force=force) | |
1361 | if fetch == [nullid]: |
|
1361 | if fetch == [nullid]: | |
1362 | self.ui.status(_("requesting all changes\n")) |
|
1362 | self.ui.status(_("requesting all changes\n")) | |
1363 |
|
1363 | |||
1364 | if not fetch: |
|
1364 | if not fetch: | |
1365 | self.ui.status(_("no changes found\n")) |
|
1365 | self.ui.status(_("no changes found\n")) | |
1366 | return 0 |
|
1366 | return 0 | |
1367 |
|
1367 | |||
1368 | if heads is None: |
|
1368 | if heads is None: | |
1369 | cg = remote.changegroup(fetch, 'pull') |
|
1369 | cg = remote.changegroup(fetch, 'pull') | |
1370 | else: |
|
1370 | else: | |
1371 | if 'changegroupsubset' not in remote.capabilities: |
|
1371 | if 'changegroupsubset' not in remote.capabilities: | |
1372 | raise util.Abort(_("Partial pull cannot be done because other repository doesn't support changegroupsubset.")) |
|
1372 | raise util.Abort(_("Partial pull cannot be done because other repository doesn't support changegroupsubset.")) | |
1373 | cg = remote.changegroupsubset(fetch, heads, 'pull') |
|
1373 | cg = remote.changegroupsubset(fetch, heads, 'pull') | |
1374 | return self.addchangegroup(cg, 'pull', remote.url()) |
|
1374 | return self.addchangegroup(cg, 'pull', remote.url()) | |
1375 | finally: |
|
1375 | finally: | |
1376 | del lock |
|
1376 | del lock | |
1377 |
|
1377 | |||
1378 | def push(self, remote, force=False, revs=None): |
|
1378 | def push(self, remote, force=False, revs=None): | |
1379 | # there are two ways to push to remote repo: |
|
1379 | # there are two ways to push to remote repo: | |
1380 | # |
|
1380 | # | |
1381 | # addchangegroup assumes local user can lock remote |
|
1381 | # addchangegroup assumes local user can lock remote | |
1382 | # repo (local filesystem, old ssh servers). |
|
1382 | # repo (local filesystem, old ssh servers). | |
1383 | # |
|
1383 | # | |
1384 | # unbundle assumes local user cannot lock remote repo (new ssh |
|
1384 | # unbundle assumes local user cannot lock remote repo (new ssh | |
1385 | # servers, http servers). |
|
1385 | # servers, http servers). | |
1386 |
|
1386 | |||
1387 | if remote.capable('unbundle'): |
|
1387 | if remote.capable('unbundle'): | |
1388 | return self.push_unbundle(remote, force, revs) |
|
1388 | return self.push_unbundle(remote, force, revs) | |
1389 | return self.push_addchangegroup(remote, force, revs) |
|
1389 | return self.push_addchangegroup(remote, force, revs) | |
1390 |
|
1390 | |||
1391 | def prepush(self, remote, force, revs): |
|
1391 | def prepush(self, remote, force, revs): | |
1392 | base = {} |
|
1392 | base = {} | |
1393 | remote_heads = remote.heads() |
|
1393 | remote_heads = remote.heads() | |
1394 | inc = self.findincoming(remote, base, remote_heads, force=force) |
|
1394 | inc = self.findincoming(remote, base, remote_heads, force=force) | |
1395 |
|
1395 | |||
1396 | update, updated_heads = self.findoutgoing(remote, base, remote_heads) |
|
1396 | update, updated_heads = self.findoutgoing(remote, base, remote_heads) | |
1397 | if revs is not None: |
|
1397 | if revs is not None: | |
1398 | msng_cl, bases, heads = self.changelog.nodesbetween(update, revs) |
|
1398 | msng_cl, bases, heads = self.changelog.nodesbetween(update, revs) | |
1399 | else: |
|
1399 | else: | |
1400 | bases, heads = update, self.changelog.heads() |
|
1400 | bases, heads = update, self.changelog.heads() | |
1401 |
|
1401 | |||
1402 | if not bases: |
|
1402 | if not bases: | |
1403 | self.ui.status(_("no changes found\n")) |
|
1403 | self.ui.status(_("no changes found\n")) | |
1404 | return None, 1 |
|
1404 | return None, 1 | |
1405 | elif not force: |
|
1405 | elif not force: | |
1406 | # check if we're creating new remote heads |
|
1406 | # check if we're creating new remote heads | |
1407 | # to be a remote head after push, node must be either |
|
1407 | # to be a remote head after push, node must be either | |
1408 | # - unknown locally |
|
1408 | # - unknown locally | |
1409 | # - a local outgoing head descended from update |
|
1409 | # - a local outgoing head descended from update | |
1410 | # - a remote head that's known locally and not |
|
1410 | # - a remote head that's known locally and not | |
1411 | # ancestral to an outgoing head |
|
1411 | # ancestral to an outgoing head | |
1412 |
|
1412 | |||
1413 | warn = 0 |
|
1413 | warn = 0 | |
1414 |
|
1414 | |||
1415 | if remote_heads == [nullid]: |
|
1415 | if remote_heads == [nullid]: | |
1416 | warn = 0 |
|
1416 | warn = 0 | |
1417 | elif not revs and len(heads) > len(remote_heads): |
|
1417 | elif not revs and len(heads) > len(remote_heads): | |
1418 | warn = 1 |
|
1418 | warn = 1 | |
1419 | else: |
|
1419 | else: | |
1420 | newheads = list(heads) |
|
1420 | newheads = list(heads) | |
1421 | for r in remote_heads: |
|
1421 | for r in remote_heads: | |
1422 | if r in self.changelog.nodemap: |
|
1422 | if r in self.changelog.nodemap: | |
1423 | desc = self.changelog.heads(r, heads) |
|
1423 | desc = self.changelog.heads(r, heads) | |
1424 | l = [h for h in heads if h in desc] |
|
1424 | l = [h for h in heads if h in desc] | |
1425 | if not l: |
|
1425 | if not l: | |
1426 | newheads.append(r) |
|
1426 | newheads.append(r) | |
1427 | else: |
|
1427 | else: | |
1428 | newheads.append(r) |
|
1428 | newheads.append(r) | |
1429 | if len(newheads) > len(remote_heads): |
|
1429 | if len(newheads) > len(remote_heads): | |
1430 | warn = 1 |
|
1430 | warn = 1 | |
1431 |
|
1431 | |||
1432 | if warn: |
|
1432 | if warn: | |
1433 | self.ui.warn(_("abort: push creates new remote branches!\n")) |
|
1433 | self.ui.warn(_("abort: push creates new remote branches!\n")) | |
1434 | self.ui.status(_("(did you forget to merge?" |
|
1434 | self.ui.status(_("(did you forget to merge?" | |
1435 | " use push -f to force)\n")) |
|
1435 | " use push -f to force)\n")) | |
1436 |
return None, |
|
1436 | return None, 0 | |
1437 | elif inc: |
|
1437 | elif inc: | |
1438 | self.ui.warn(_("note: unsynced remote changes!\n")) |
|
1438 | self.ui.warn(_("note: unsynced remote changes!\n")) | |
1439 |
|
1439 | |||
1440 |
|
1440 | |||
1441 | if revs is None: |
|
1441 | if revs is None: | |
1442 | cg = self.changegroup(update, 'push') |
|
1442 | cg = self.changegroup(update, 'push') | |
1443 | else: |
|
1443 | else: | |
1444 | cg = self.changegroupsubset(update, revs, 'push') |
|
1444 | cg = self.changegroupsubset(update, revs, 'push') | |
1445 | return cg, remote_heads |
|
1445 | return cg, remote_heads | |
1446 |
|
1446 | |||
1447 | def push_addchangegroup(self, remote, force, revs): |
|
1447 | def push_addchangegroup(self, remote, force, revs): | |
1448 | lock = remote.lock() |
|
1448 | lock = remote.lock() | |
1449 | try: |
|
1449 | try: | |
1450 | ret = self.prepush(remote, force, revs) |
|
1450 | ret = self.prepush(remote, force, revs) | |
1451 | if ret[0] is not None: |
|
1451 | if ret[0] is not None: | |
1452 | cg, remote_heads = ret |
|
1452 | cg, remote_heads = ret | |
1453 | return remote.addchangegroup(cg, 'push', self.url()) |
|
1453 | return remote.addchangegroup(cg, 'push', self.url()) | |
1454 | return ret[1] |
|
1454 | return ret[1] | |
1455 | finally: |
|
1455 | finally: | |
1456 | del lock |
|
1456 | del lock | |
1457 |
|
1457 | |||
1458 | def push_unbundle(self, remote, force, revs): |
|
1458 | def push_unbundle(self, remote, force, revs): | |
1459 | # local repo finds heads on server, finds out what revs it |
|
1459 | # local repo finds heads on server, finds out what revs it | |
1460 | # must push. once revs transferred, if server finds it has |
|
1460 | # must push. once revs transferred, if server finds it has | |
1461 | # different heads (someone else won commit/push race), server |
|
1461 | # different heads (someone else won commit/push race), server | |
1462 | # aborts. |
|
1462 | # aborts. | |
1463 |
|
1463 | |||
1464 | ret = self.prepush(remote, force, revs) |
|
1464 | ret = self.prepush(remote, force, revs) | |
1465 | if ret[0] is not None: |
|
1465 | if ret[0] is not None: | |
1466 | cg, remote_heads = ret |
|
1466 | cg, remote_heads = ret | |
1467 | if force: remote_heads = ['force'] |
|
1467 | if force: remote_heads = ['force'] | |
1468 | return remote.unbundle(cg, remote_heads, 'push') |
|
1468 | return remote.unbundle(cg, remote_heads, 'push') | |
1469 | return ret[1] |
|
1469 | return ret[1] | |
1470 |
|
1470 | |||
1471 | def changegroupinfo(self, nodes): |
|
1471 | def changegroupinfo(self, nodes): | |
1472 | self.ui.note(_("%d changesets found\n") % len(nodes)) |
|
1472 | self.ui.note(_("%d changesets found\n") % len(nodes)) | |
1473 | if self.ui.debugflag: |
|
1473 | if self.ui.debugflag: | |
1474 | self.ui.debug(_("List of changesets:\n")) |
|
1474 | self.ui.debug(_("List of changesets:\n")) | |
1475 | for node in nodes: |
|
1475 | for node in nodes: | |
1476 | self.ui.debug("%s\n" % hex(node)) |
|
1476 | self.ui.debug("%s\n" % hex(node)) | |
1477 |
|
1477 | |||
1478 | def changegroupsubset(self, bases, heads, source): |
|
1478 | def changegroupsubset(self, bases, heads, source): | |
1479 | """This function generates a changegroup consisting of all the nodes |
|
1479 | """This function generates a changegroup consisting of all the nodes | |
1480 | that are descendents of any of the bases, and ancestors of any of |
|
1480 | that are descendents of any of the bases, and ancestors of any of | |
1481 | the heads. |
|
1481 | the heads. | |
1482 |
|
1482 | |||
1483 | It is fairly complex as determining which filenodes and which |
|
1483 | It is fairly complex as determining which filenodes and which | |
1484 | manifest nodes need to be included for the changeset to be complete |
|
1484 | manifest nodes need to be included for the changeset to be complete | |
1485 | is non-trivial. |
|
1485 | is non-trivial. | |
1486 |
|
1486 | |||
1487 | Another wrinkle is doing the reverse, figuring out which changeset in |
|
1487 | Another wrinkle is doing the reverse, figuring out which changeset in | |
1488 | the changegroup a particular filenode or manifestnode belongs to.""" |
|
1488 | the changegroup a particular filenode or manifestnode belongs to.""" | |
1489 |
|
1489 | |||
1490 | self.hook('preoutgoing', throw=True, source=source) |
|
1490 | self.hook('preoutgoing', throw=True, source=source) | |
1491 |
|
1491 | |||
1492 | # Set up some initial variables |
|
1492 | # Set up some initial variables | |
1493 | # Make it easy to refer to self.changelog |
|
1493 | # Make it easy to refer to self.changelog | |
1494 | cl = self.changelog |
|
1494 | cl = self.changelog | |
1495 | # msng is short for missing - compute the list of changesets in this |
|
1495 | # msng is short for missing - compute the list of changesets in this | |
1496 | # changegroup. |
|
1496 | # changegroup. | |
1497 | msng_cl_lst, bases, heads = cl.nodesbetween(bases, heads) |
|
1497 | msng_cl_lst, bases, heads = cl.nodesbetween(bases, heads) | |
1498 | self.changegroupinfo(msng_cl_lst) |
|
1498 | self.changegroupinfo(msng_cl_lst) | |
1499 | # Some bases may turn out to be superfluous, and some heads may be |
|
1499 | # Some bases may turn out to be superfluous, and some heads may be | |
1500 | # too. nodesbetween will return the minimal set of bases and heads |
|
1500 | # too. nodesbetween will return the minimal set of bases and heads | |
1501 | # necessary to re-create the changegroup. |
|
1501 | # necessary to re-create the changegroup. | |
1502 |
|
1502 | |||
1503 | # Known heads are the list of heads that it is assumed the recipient |
|
1503 | # Known heads are the list of heads that it is assumed the recipient | |
1504 | # of this changegroup will know about. |
|
1504 | # of this changegroup will know about. | |
1505 | knownheads = {} |
|
1505 | knownheads = {} | |
1506 | # We assume that all parents of bases are known heads. |
|
1506 | # We assume that all parents of bases are known heads. | |
1507 | for n in bases: |
|
1507 | for n in bases: | |
1508 | for p in cl.parents(n): |
|
1508 | for p in cl.parents(n): | |
1509 | if p != nullid: |
|
1509 | if p != nullid: | |
1510 | knownheads[p] = 1 |
|
1510 | knownheads[p] = 1 | |
1511 | knownheads = knownheads.keys() |
|
1511 | knownheads = knownheads.keys() | |
1512 | if knownheads: |
|
1512 | if knownheads: | |
1513 | # Now that we know what heads are known, we can compute which |
|
1513 | # Now that we know what heads are known, we can compute which | |
1514 | # changesets are known. The recipient must know about all |
|
1514 | # changesets are known. The recipient must know about all | |
1515 | # changesets required to reach the known heads from the null |
|
1515 | # changesets required to reach the known heads from the null | |
1516 | # changeset. |
|
1516 | # changeset. | |
1517 | has_cl_set, junk, junk = cl.nodesbetween(None, knownheads) |
|
1517 | has_cl_set, junk, junk = cl.nodesbetween(None, knownheads) | |
1518 | junk = None |
|
1518 | junk = None | |
1519 | # Transform the list into an ersatz set. |
|
1519 | # Transform the list into an ersatz set. | |
1520 | has_cl_set = dict.fromkeys(has_cl_set) |
|
1520 | has_cl_set = dict.fromkeys(has_cl_set) | |
1521 | else: |
|
1521 | else: | |
1522 | # If there were no known heads, the recipient cannot be assumed to |
|
1522 | # If there were no known heads, the recipient cannot be assumed to | |
1523 | # know about any changesets. |
|
1523 | # know about any changesets. | |
1524 | has_cl_set = {} |
|
1524 | has_cl_set = {} | |
1525 |
|
1525 | |||
1526 | # Make it easy to refer to self.manifest |
|
1526 | # Make it easy to refer to self.manifest | |
1527 | mnfst = self.manifest |
|
1527 | mnfst = self.manifest | |
1528 | # We don't know which manifests are missing yet |
|
1528 | # We don't know which manifests are missing yet | |
1529 | msng_mnfst_set = {} |
|
1529 | msng_mnfst_set = {} | |
1530 | # Nor do we know which filenodes are missing. |
|
1530 | # Nor do we know which filenodes are missing. | |
1531 | msng_filenode_set = {} |
|
1531 | msng_filenode_set = {} | |
1532 |
|
1532 | |||
1533 | junk = mnfst.index[mnfst.count() - 1] # Get around a bug in lazyindex |
|
1533 | junk = mnfst.index[mnfst.count() - 1] # Get around a bug in lazyindex | |
1534 | junk = None |
|
1534 | junk = None | |
1535 |
|
1535 | |||
1536 | # A changeset always belongs to itself, so the changenode lookup |
|
1536 | # A changeset always belongs to itself, so the changenode lookup | |
1537 | # function for a changenode is identity. |
|
1537 | # function for a changenode is identity. | |
1538 | def identity(x): |
|
1538 | def identity(x): | |
1539 | return x |
|
1539 | return x | |
1540 |
|
1540 | |||
1541 | # A function generating function. Sets up an environment for the |
|
1541 | # A function generating function. Sets up an environment for the | |
1542 | # inner function. |
|
1542 | # inner function. | |
1543 | def cmp_by_rev_func(revlog): |
|
1543 | def cmp_by_rev_func(revlog): | |
1544 | # Compare two nodes by their revision number in the environment's |
|
1544 | # Compare two nodes by their revision number in the environment's | |
1545 | # revision history. Since the revision number both represents the |
|
1545 | # revision history. Since the revision number both represents the | |
1546 | # most efficient order to read the nodes in, and represents a |
|
1546 | # most efficient order to read the nodes in, and represents a | |
1547 | # topological sorting of the nodes, this function is often useful. |
|
1547 | # topological sorting of the nodes, this function is often useful. | |
1548 | def cmp_by_rev(a, b): |
|
1548 | def cmp_by_rev(a, b): | |
1549 | return cmp(revlog.rev(a), revlog.rev(b)) |
|
1549 | return cmp(revlog.rev(a), revlog.rev(b)) | |
1550 | return cmp_by_rev |
|
1550 | return cmp_by_rev | |
1551 |
|
1551 | |||
1552 | # If we determine that a particular file or manifest node must be a |
|
1552 | # If we determine that a particular file or manifest node must be a | |
1553 | # node that the recipient of the changegroup will already have, we can |
|
1553 | # node that the recipient of the changegroup will already have, we can | |
1554 | # also assume the recipient will have all the parents. This function |
|
1554 | # also assume the recipient will have all the parents. This function | |
1555 | # prunes them from the set of missing nodes. |
|
1555 | # prunes them from the set of missing nodes. | |
1556 | def prune_parents(revlog, hasset, msngset): |
|
1556 | def prune_parents(revlog, hasset, msngset): | |
1557 | haslst = hasset.keys() |
|
1557 | haslst = hasset.keys() | |
1558 | haslst.sort(cmp_by_rev_func(revlog)) |
|
1558 | haslst.sort(cmp_by_rev_func(revlog)) | |
1559 | for node in haslst: |
|
1559 | for node in haslst: | |
1560 | parentlst = [p for p in revlog.parents(node) if p != nullid] |
|
1560 | parentlst = [p for p in revlog.parents(node) if p != nullid] | |
1561 | while parentlst: |
|
1561 | while parentlst: | |
1562 | n = parentlst.pop() |
|
1562 | n = parentlst.pop() | |
1563 | if n not in hasset: |
|
1563 | if n not in hasset: | |
1564 | hasset[n] = 1 |
|
1564 | hasset[n] = 1 | |
1565 | p = [p for p in revlog.parents(n) if p != nullid] |
|
1565 | p = [p for p in revlog.parents(n) if p != nullid] | |
1566 | parentlst.extend(p) |
|
1566 | parentlst.extend(p) | |
1567 | for n in hasset: |
|
1567 | for n in hasset: | |
1568 | msngset.pop(n, None) |
|
1568 | msngset.pop(n, None) | |
1569 |
|
1569 | |||
1570 | # This is a function generating function used to set up an environment |
|
1570 | # This is a function generating function used to set up an environment | |
1571 | # for the inner function to execute in. |
|
1571 | # for the inner function to execute in. | |
1572 | def manifest_and_file_collector(changedfileset): |
|
1572 | def manifest_and_file_collector(changedfileset): | |
1573 | # This is an information gathering function that gathers |
|
1573 | # This is an information gathering function that gathers | |
1574 | # information from each changeset node that goes out as part of |
|
1574 | # information from each changeset node that goes out as part of | |
1575 | # the changegroup. The information gathered is a list of which |
|
1575 | # the changegroup. The information gathered is a list of which | |
1576 | # manifest nodes are potentially required (the recipient may |
|
1576 | # manifest nodes are potentially required (the recipient may | |
1577 | # already have them) and total list of all files which were |
|
1577 | # already have them) and total list of all files which were | |
1578 | # changed in any changeset in the changegroup. |
|
1578 | # changed in any changeset in the changegroup. | |
1579 | # |
|
1579 | # | |
1580 | # We also remember the first changenode we saw any manifest |
|
1580 | # We also remember the first changenode we saw any manifest | |
1581 | # referenced by so we can later determine which changenode 'owns' |
|
1581 | # referenced by so we can later determine which changenode 'owns' | |
1582 | # the manifest. |
|
1582 | # the manifest. | |
1583 | def collect_manifests_and_files(clnode): |
|
1583 | def collect_manifests_and_files(clnode): | |
1584 | c = cl.read(clnode) |
|
1584 | c = cl.read(clnode) | |
1585 | for f in c[3]: |
|
1585 | for f in c[3]: | |
1586 | # This is to make sure we only have one instance of each |
|
1586 | # This is to make sure we only have one instance of each | |
1587 | # filename string for each filename. |
|
1587 | # filename string for each filename. | |
1588 | changedfileset.setdefault(f, f) |
|
1588 | changedfileset.setdefault(f, f) | |
1589 | msng_mnfst_set.setdefault(c[0], clnode) |
|
1589 | msng_mnfst_set.setdefault(c[0], clnode) | |
1590 | return collect_manifests_and_files |
|
1590 | return collect_manifests_and_files | |
1591 |
|
1591 | |||
1592 | # Figure out which manifest nodes (of the ones we think might be part |
|
1592 | # Figure out which manifest nodes (of the ones we think might be part | |
1593 | # of the changegroup) the recipient must know about and remove them |
|
1593 | # of the changegroup) the recipient must know about and remove them | |
1594 | # from the changegroup. |
|
1594 | # from the changegroup. | |
1595 | def prune_manifests(): |
|
1595 | def prune_manifests(): | |
1596 | has_mnfst_set = {} |
|
1596 | has_mnfst_set = {} | |
1597 | for n in msng_mnfst_set: |
|
1597 | for n in msng_mnfst_set: | |
1598 | # If a 'missing' manifest thinks it belongs to a changenode |
|
1598 | # If a 'missing' manifest thinks it belongs to a changenode | |
1599 | # the recipient is assumed to have, obviously the recipient |
|
1599 | # the recipient is assumed to have, obviously the recipient | |
1600 | # must have that manifest. |
|
1600 | # must have that manifest. | |
1601 | linknode = cl.node(mnfst.linkrev(n)) |
|
1601 | linknode = cl.node(mnfst.linkrev(n)) | |
1602 | if linknode in has_cl_set: |
|
1602 | if linknode in has_cl_set: | |
1603 | has_mnfst_set[n] = 1 |
|
1603 | has_mnfst_set[n] = 1 | |
1604 | prune_parents(mnfst, has_mnfst_set, msng_mnfst_set) |
|
1604 | prune_parents(mnfst, has_mnfst_set, msng_mnfst_set) | |
1605 |
|
1605 | |||
1606 | # Use the information collected in collect_manifests_and_files to say |
|
1606 | # Use the information collected in collect_manifests_and_files to say | |
1607 | # which changenode any manifestnode belongs to. |
|
1607 | # which changenode any manifestnode belongs to. | |
1608 | def lookup_manifest_link(mnfstnode): |
|
1608 | def lookup_manifest_link(mnfstnode): | |
1609 | return msng_mnfst_set[mnfstnode] |
|
1609 | return msng_mnfst_set[mnfstnode] | |
1610 |
|
1610 | |||
1611 | # A function generating function that sets up the initial environment |
|
1611 | # A function generating function that sets up the initial environment | |
1612 | # the inner function. |
|
1612 | # the inner function. | |
1613 | def filenode_collector(changedfiles): |
|
1613 | def filenode_collector(changedfiles): | |
1614 | next_rev = [0] |
|
1614 | next_rev = [0] | |
1615 | # This gathers information from each manifestnode included in the |
|
1615 | # This gathers information from each manifestnode included in the | |
1616 | # changegroup about which filenodes the manifest node references |
|
1616 | # changegroup about which filenodes the manifest node references | |
1617 | # so we can include those in the changegroup too. |
|
1617 | # so we can include those in the changegroup too. | |
1618 | # |
|
1618 | # | |
1619 | # It also remembers which changenode each filenode belongs to. It |
|
1619 | # It also remembers which changenode each filenode belongs to. It | |
1620 | # does this by assuming the a filenode belongs to the changenode |
|
1620 | # does this by assuming the a filenode belongs to the changenode | |
1621 | # the first manifest that references it belongs to. |
|
1621 | # the first manifest that references it belongs to. | |
1622 | def collect_msng_filenodes(mnfstnode): |
|
1622 | def collect_msng_filenodes(mnfstnode): | |
1623 | r = mnfst.rev(mnfstnode) |
|
1623 | r = mnfst.rev(mnfstnode) | |
1624 | if r == next_rev[0]: |
|
1624 | if r == next_rev[0]: | |
1625 | # If the last rev we looked at was the one just previous, |
|
1625 | # If the last rev we looked at was the one just previous, | |
1626 | # we only need to see a diff. |
|
1626 | # we only need to see a diff. | |
1627 | deltamf = mnfst.readdelta(mnfstnode) |
|
1627 | deltamf = mnfst.readdelta(mnfstnode) | |
1628 | # For each line in the delta |
|
1628 | # For each line in the delta | |
1629 | for f, fnode in deltamf.items(): |
|
1629 | for f, fnode in deltamf.items(): | |
1630 | f = changedfiles.get(f, None) |
|
1630 | f = changedfiles.get(f, None) | |
1631 | # And if the file is in the list of files we care |
|
1631 | # And if the file is in the list of files we care | |
1632 | # about. |
|
1632 | # about. | |
1633 | if f is not None: |
|
1633 | if f is not None: | |
1634 | # Get the changenode this manifest belongs to |
|
1634 | # Get the changenode this manifest belongs to | |
1635 | clnode = msng_mnfst_set[mnfstnode] |
|
1635 | clnode = msng_mnfst_set[mnfstnode] | |
1636 | # Create the set of filenodes for the file if |
|
1636 | # Create the set of filenodes for the file if | |
1637 | # there isn't one already. |
|
1637 | # there isn't one already. | |
1638 | ndset = msng_filenode_set.setdefault(f, {}) |
|
1638 | ndset = msng_filenode_set.setdefault(f, {}) | |
1639 | # And set the filenode's changelog node to the |
|
1639 | # And set the filenode's changelog node to the | |
1640 | # manifest's if it hasn't been set already. |
|
1640 | # manifest's if it hasn't been set already. | |
1641 | ndset.setdefault(fnode, clnode) |
|
1641 | ndset.setdefault(fnode, clnode) | |
1642 | else: |
|
1642 | else: | |
1643 | # Otherwise we need a full manifest. |
|
1643 | # Otherwise we need a full manifest. | |
1644 | m = mnfst.read(mnfstnode) |
|
1644 | m = mnfst.read(mnfstnode) | |
1645 | # For every file in we care about. |
|
1645 | # For every file in we care about. | |
1646 | for f in changedfiles: |
|
1646 | for f in changedfiles: | |
1647 | fnode = m.get(f, None) |
|
1647 | fnode = m.get(f, None) | |
1648 | # If it's in the manifest |
|
1648 | # If it's in the manifest | |
1649 | if fnode is not None: |
|
1649 | if fnode is not None: | |
1650 | # See comments above. |
|
1650 | # See comments above. | |
1651 | clnode = msng_mnfst_set[mnfstnode] |
|
1651 | clnode = msng_mnfst_set[mnfstnode] | |
1652 | ndset = msng_filenode_set.setdefault(f, {}) |
|
1652 | ndset = msng_filenode_set.setdefault(f, {}) | |
1653 | ndset.setdefault(fnode, clnode) |
|
1653 | ndset.setdefault(fnode, clnode) | |
1654 | # Remember the revision we hope to see next. |
|
1654 | # Remember the revision we hope to see next. | |
1655 | next_rev[0] = r + 1 |
|
1655 | next_rev[0] = r + 1 | |
1656 | return collect_msng_filenodes |
|
1656 | return collect_msng_filenodes | |
1657 |
|
1657 | |||
1658 | # We have a list of filenodes we think we need for a file, lets remove |
|
1658 | # We have a list of filenodes we think we need for a file, lets remove | |
1659 | # all those we now the recipient must have. |
|
1659 | # all those we now the recipient must have. | |
1660 | def prune_filenodes(f, filerevlog): |
|
1660 | def prune_filenodes(f, filerevlog): | |
1661 | msngset = msng_filenode_set[f] |
|
1661 | msngset = msng_filenode_set[f] | |
1662 | hasset = {} |
|
1662 | hasset = {} | |
1663 | # If a 'missing' filenode thinks it belongs to a changenode we |
|
1663 | # If a 'missing' filenode thinks it belongs to a changenode we | |
1664 | # assume the recipient must have, then the recipient must have |
|
1664 | # assume the recipient must have, then the recipient must have | |
1665 | # that filenode. |
|
1665 | # that filenode. | |
1666 | for n in msngset: |
|
1666 | for n in msngset: | |
1667 | clnode = cl.node(filerevlog.linkrev(n)) |
|
1667 | clnode = cl.node(filerevlog.linkrev(n)) | |
1668 | if clnode in has_cl_set: |
|
1668 | if clnode in has_cl_set: | |
1669 | hasset[n] = 1 |
|
1669 | hasset[n] = 1 | |
1670 | prune_parents(filerevlog, hasset, msngset) |
|
1670 | prune_parents(filerevlog, hasset, msngset) | |
1671 |
|
1671 | |||
1672 | # A function generator function that sets up the a context for the |
|
1672 | # A function generator function that sets up the a context for the | |
1673 | # inner function. |
|
1673 | # inner function. | |
1674 | def lookup_filenode_link_func(fname): |
|
1674 | def lookup_filenode_link_func(fname): | |
1675 | msngset = msng_filenode_set[fname] |
|
1675 | msngset = msng_filenode_set[fname] | |
1676 | # Lookup the changenode the filenode belongs to. |
|
1676 | # Lookup the changenode the filenode belongs to. | |
1677 | def lookup_filenode_link(fnode): |
|
1677 | def lookup_filenode_link(fnode): | |
1678 | return msngset[fnode] |
|
1678 | return msngset[fnode] | |
1679 | return lookup_filenode_link |
|
1679 | return lookup_filenode_link | |
1680 |
|
1680 | |||
1681 | # Now that we have all theses utility functions to help out and |
|
1681 | # Now that we have all theses utility functions to help out and | |
1682 | # logically divide up the task, generate the group. |
|
1682 | # logically divide up the task, generate the group. | |
1683 | def gengroup(): |
|
1683 | def gengroup(): | |
1684 | # The set of changed files starts empty. |
|
1684 | # The set of changed files starts empty. | |
1685 | changedfiles = {} |
|
1685 | changedfiles = {} | |
1686 | # Create a changenode group generator that will call our functions |
|
1686 | # Create a changenode group generator that will call our functions | |
1687 | # back to lookup the owning changenode and collect information. |
|
1687 | # back to lookup the owning changenode and collect information. | |
1688 | group = cl.group(msng_cl_lst, identity, |
|
1688 | group = cl.group(msng_cl_lst, identity, | |
1689 | manifest_and_file_collector(changedfiles)) |
|
1689 | manifest_and_file_collector(changedfiles)) | |
1690 | for chnk in group: |
|
1690 | for chnk in group: | |
1691 | yield chnk |
|
1691 | yield chnk | |
1692 |
|
1692 | |||
1693 | # The list of manifests has been collected by the generator |
|
1693 | # The list of manifests has been collected by the generator | |
1694 | # calling our functions back. |
|
1694 | # calling our functions back. | |
1695 | prune_manifests() |
|
1695 | prune_manifests() | |
1696 | msng_mnfst_lst = msng_mnfst_set.keys() |
|
1696 | msng_mnfst_lst = msng_mnfst_set.keys() | |
1697 | # Sort the manifestnodes by revision number. |
|
1697 | # Sort the manifestnodes by revision number. | |
1698 | msng_mnfst_lst.sort(cmp_by_rev_func(mnfst)) |
|
1698 | msng_mnfst_lst.sort(cmp_by_rev_func(mnfst)) | |
1699 | # Create a generator for the manifestnodes that calls our lookup |
|
1699 | # Create a generator for the manifestnodes that calls our lookup | |
1700 | # and data collection functions back. |
|
1700 | # and data collection functions back. | |
1701 | group = mnfst.group(msng_mnfst_lst, lookup_manifest_link, |
|
1701 | group = mnfst.group(msng_mnfst_lst, lookup_manifest_link, | |
1702 | filenode_collector(changedfiles)) |
|
1702 | filenode_collector(changedfiles)) | |
1703 | for chnk in group: |
|
1703 | for chnk in group: | |
1704 | yield chnk |
|
1704 | yield chnk | |
1705 |
|
1705 | |||
1706 | # These are no longer needed, dereference and toss the memory for |
|
1706 | # These are no longer needed, dereference and toss the memory for | |
1707 | # them. |
|
1707 | # them. | |
1708 | msng_mnfst_lst = None |
|
1708 | msng_mnfst_lst = None | |
1709 | msng_mnfst_set.clear() |
|
1709 | msng_mnfst_set.clear() | |
1710 |
|
1710 | |||
1711 | changedfiles = changedfiles.keys() |
|
1711 | changedfiles = changedfiles.keys() | |
1712 | changedfiles.sort() |
|
1712 | changedfiles.sort() | |
1713 | # Go through all our files in order sorted by name. |
|
1713 | # Go through all our files in order sorted by name. | |
1714 | for fname in changedfiles: |
|
1714 | for fname in changedfiles: | |
1715 | filerevlog = self.file(fname) |
|
1715 | filerevlog = self.file(fname) | |
1716 | # Toss out the filenodes that the recipient isn't really |
|
1716 | # Toss out the filenodes that the recipient isn't really | |
1717 | # missing. |
|
1717 | # missing. | |
1718 | if msng_filenode_set.has_key(fname): |
|
1718 | if msng_filenode_set.has_key(fname): | |
1719 | prune_filenodes(fname, filerevlog) |
|
1719 | prune_filenodes(fname, filerevlog) | |
1720 | msng_filenode_lst = msng_filenode_set[fname].keys() |
|
1720 | msng_filenode_lst = msng_filenode_set[fname].keys() | |
1721 | else: |
|
1721 | else: | |
1722 | msng_filenode_lst = [] |
|
1722 | msng_filenode_lst = [] | |
1723 | # If any filenodes are left, generate the group for them, |
|
1723 | # If any filenodes are left, generate the group for them, | |
1724 | # otherwise don't bother. |
|
1724 | # otherwise don't bother. | |
1725 | if len(msng_filenode_lst) > 0: |
|
1725 | if len(msng_filenode_lst) > 0: | |
1726 | yield changegroup.chunkheader(len(fname)) |
|
1726 | yield changegroup.chunkheader(len(fname)) | |
1727 | yield fname |
|
1727 | yield fname | |
1728 | # Sort the filenodes by their revision # |
|
1728 | # Sort the filenodes by their revision # | |
1729 | msng_filenode_lst.sort(cmp_by_rev_func(filerevlog)) |
|
1729 | msng_filenode_lst.sort(cmp_by_rev_func(filerevlog)) | |
1730 | # Create a group generator and only pass in a changenode |
|
1730 | # Create a group generator and only pass in a changenode | |
1731 | # lookup function as we need to collect no information |
|
1731 | # lookup function as we need to collect no information | |
1732 | # from filenodes. |
|
1732 | # from filenodes. | |
1733 | group = filerevlog.group(msng_filenode_lst, |
|
1733 | group = filerevlog.group(msng_filenode_lst, | |
1734 | lookup_filenode_link_func(fname)) |
|
1734 | lookup_filenode_link_func(fname)) | |
1735 | for chnk in group: |
|
1735 | for chnk in group: | |
1736 | yield chnk |
|
1736 | yield chnk | |
1737 | if msng_filenode_set.has_key(fname): |
|
1737 | if msng_filenode_set.has_key(fname): | |
1738 | # Don't need this anymore, toss it to free memory. |
|
1738 | # Don't need this anymore, toss it to free memory. | |
1739 | del msng_filenode_set[fname] |
|
1739 | del msng_filenode_set[fname] | |
1740 | # Signal that no more groups are left. |
|
1740 | # Signal that no more groups are left. | |
1741 | yield changegroup.closechunk() |
|
1741 | yield changegroup.closechunk() | |
1742 |
|
1742 | |||
1743 | if msng_cl_lst: |
|
1743 | if msng_cl_lst: | |
1744 | self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source) |
|
1744 | self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source) | |
1745 |
|
1745 | |||
1746 | return util.chunkbuffer(gengroup()) |
|
1746 | return util.chunkbuffer(gengroup()) | |
1747 |
|
1747 | |||
1748 | def changegroup(self, basenodes, source): |
|
1748 | def changegroup(self, basenodes, source): | |
1749 | """Generate a changegroup of all nodes that we have that a recipient |
|
1749 | """Generate a changegroup of all nodes that we have that a recipient | |
1750 | doesn't. |
|
1750 | doesn't. | |
1751 |
|
1751 | |||
1752 | This is much easier than the previous function as we can assume that |
|
1752 | This is much easier than the previous function as we can assume that | |
1753 | the recipient has any changenode we aren't sending them.""" |
|
1753 | the recipient has any changenode we aren't sending them.""" | |
1754 |
|
1754 | |||
1755 | self.hook('preoutgoing', throw=True, source=source) |
|
1755 | self.hook('preoutgoing', throw=True, source=source) | |
1756 |
|
1756 | |||
1757 | cl = self.changelog |
|
1757 | cl = self.changelog | |
1758 | nodes = cl.nodesbetween(basenodes, None)[0] |
|
1758 | nodes = cl.nodesbetween(basenodes, None)[0] | |
1759 | revset = dict.fromkeys([cl.rev(n) for n in nodes]) |
|
1759 | revset = dict.fromkeys([cl.rev(n) for n in nodes]) | |
1760 | self.changegroupinfo(nodes) |
|
1760 | self.changegroupinfo(nodes) | |
1761 |
|
1761 | |||
1762 | def identity(x): |
|
1762 | def identity(x): | |
1763 | return x |
|
1763 | return x | |
1764 |
|
1764 | |||
1765 | def gennodelst(revlog): |
|
1765 | def gennodelst(revlog): | |
1766 | for r in xrange(0, revlog.count()): |
|
1766 | for r in xrange(0, revlog.count()): | |
1767 | n = revlog.node(r) |
|
1767 | n = revlog.node(r) | |
1768 | if revlog.linkrev(n) in revset: |
|
1768 | if revlog.linkrev(n) in revset: | |
1769 | yield n |
|
1769 | yield n | |
1770 |
|
1770 | |||
1771 | def changed_file_collector(changedfileset): |
|
1771 | def changed_file_collector(changedfileset): | |
1772 | def collect_changed_files(clnode): |
|
1772 | def collect_changed_files(clnode): | |
1773 | c = cl.read(clnode) |
|
1773 | c = cl.read(clnode) | |
1774 | for fname in c[3]: |
|
1774 | for fname in c[3]: | |
1775 | changedfileset[fname] = 1 |
|
1775 | changedfileset[fname] = 1 | |
1776 | return collect_changed_files |
|
1776 | return collect_changed_files | |
1777 |
|
1777 | |||
1778 | def lookuprevlink_func(revlog): |
|
1778 | def lookuprevlink_func(revlog): | |
1779 | def lookuprevlink(n): |
|
1779 | def lookuprevlink(n): | |
1780 | return cl.node(revlog.linkrev(n)) |
|
1780 | return cl.node(revlog.linkrev(n)) | |
1781 | return lookuprevlink |
|
1781 | return lookuprevlink | |
1782 |
|
1782 | |||
1783 | def gengroup(): |
|
1783 | def gengroup(): | |
1784 | # construct a list of all changed files |
|
1784 | # construct a list of all changed files | |
1785 | changedfiles = {} |
|
1785 | changedfiles = {} | |
1786 |
|
1786 | |||
1787 | for chnk in cl.group(nodes, identity, |
|
1787 | for chnk in cl.group(nodes, identity, | |
1788 | changed_file_collector(changedfiles)): |
|
1788 | changed_file_collector(changedfiles)): | |
1789 | yield chnk |
|
1789 | yield chnk | |
1790 | changedfiles = changedfiles.keys() |
|
1790 | changedfiles = changedfiles.keys() | |
1791 | changedfiles.sort() |
|
1791 | changedfiles.sort() | |
1792 |
|
1792 | |||
1793 | mnfst = self.manifest |
|
1793 | mnfst = self.manifest | |
1794 | nodeiter = gennodelst(mnfst) |
|
1794 | nodeiter = gennodelst(mnfst) | |
1795 | for chnk in mnfst.group(nodeiter, lookuprevlink_func(mnfst)): |
|
1795 | for chnk in mnfst.group(nodeiter, lookuprevlink_func(mnfst)): | |
1796 | yield chnk |
|
1796 | yield chnk | |
1797 |
|
1797 | |||
1798 | for fname in changedfiles: |
|
1798 | for fname in changedfiles: | |
1799 | filerevlog = self.file(fname) |
|
1799 | filerevlog = self.file(fname) | |
1800 | nodeiter = gennodelst(filerevlog) |
|
1800 | nodeiter = gennodelst(filerevlog) | |
1801 | nodeiter = list(nodeiter) |
|
1801 | nodeiter = list(nodeiter) | |
1802 | if nodeiter: |
|
1802 | if nodeiter: | |
1803 | yield changegroup.chunkheader(len(fname)) |
|
1803 | yield changegroup.chunkheader(len(fname)) | |
1804 | yield fname |
|
1804 | yield fname | |
1805 | lookup = lookuprevlink_func(filerevlog) |
|
1805 | lookup = lookuprevlink_func(filerevlog) | |
1806 | for chnk in filerevlog.group(nodeiter, lookup): |
|
1806 | for chnk in filerevlog.group(nodeiter, lookup): | |
1807 | yield chnk |
|
1807 | yield chnk | |
1808 |
|
1808 | |||
1809 | yield changegroup.closechunk() |
|
1809 | yield changegroup.closechunk() | |
1810 |
|
1810 | |||
1811 | if nodes: |
|
1811 | if nodes: | |
1812 | self.hook('outgoing', node=hex(nodes[0]), source=source) |
|
1812 | self.hook('outgoing', node=hex(nodes[0]), source=source) | |
1813 |
|
1813 | |||
1814 | return util.chunkbuffer(gengroup()) |
|
1814 | return util.chunkbuffer(gengroup()) | |
1815 |
|
1815 | |||
1816 | def addchangegroup(self, source, srctype, url): |
|
1816 | def addchangegroup(self, source, srctype, url): | |
1817 | """add changegroup to repo. |
|
1817 | """add changegroup to repo. | |
1818 |
|
1818 | |||
1819 | return values: |
|
1819 | return values: | |
1820 | - nothing changed or no source: 0 |
|
1820 | - nothing changed or no source: 0 | |
1821 | - more heads than before: 1+added heads (2..n) |
|
1821 | - more heads than before: 1+added heads (2..n) | |
1822 | - less heads than before: -1-removed heads (-2..-n) |
|
1822 | - less heads than before: -1-removed heads (-2..-n) | |
1823 | - number of heads stays the same: 1 |
|
1823 | - number of heads stays the same: 1 | |
1824 | """ |
|
1824 | """ | |
1825 | def csmap(x): |
|
1825 | def csmap(x): | |
1826 | self.ui.debug(_("add changeset %s\n") % short(x)) |
|
1826 | self.ui.debug(_("add changeset %s\n") % short(x)) | |
1827 | return cl.count() |
|
1827 | return cl.count() | |
1828 |
|
1828 | |||
1829 | def revmap(x): |
|
1829 | def revmap(x): | |
1830 | return cl.rev(x) |
|
1830 | return cl.rev(x) | |
1831 |
|
1831 | |||
1832 | if not source: |
|
1832 | if not source: | |
1833 | return 0 |
|
1833 | return 0 | |
1834 |
|
1834 | |||
1835 | self.hook('prechangegroup', throw=True, source=srctype, url=url) |
|
1835 | self.hook('prechangegroup', throw=True, source=srctype, url=url) | |
1836 |
|
1836 | |||
1837 | changesets = files = revisions = 0 |
|
1837 | changesets = files = revisions = 0 | |
1838 |
|
1838 | |||
1839 | # write changelog data to temp files so concurrent readers will not see |
|
1839 | # write changelog data to temp files so concurrent readers will not see | |
1840 | # inconsistent view |
|
1840 | # inconsistent view | |
1841 | cl = self.changelog |
|
1841 | cl = self.changelog | |
1842 | cl.delayupdate() |
|
1842 | cl.delayupdate() | |
1843 | oldheads = len(cl.heads()) |
|
1843 | oldheads = len(cl.heads()) | |
1844 |
|
1844 | |||
1845 | tr = self.transaction() |
|
1845 | tr = self.transaction() | |
1846 | try: |
|
1846 | try: | |
1847 | trp = weakref.proxy(tr) |
|
1847 | trp = weakref.proxy(tr) | |
1848 | # pull off the changeset group |
|
1848 | # pull off the changeset group | |
1849 | self.ui.status(_("adding changesets\n")) |
|
1849 | self.ui.status(_("adding changesets\n")) | |
1850 | cor = cl.count() - 1 |
|
1850 | cor = cl.count() - 1 | |
1851 | chunkiter = changegroup.chunkiter(source) |
|
1851 | chunkiter = changegroup.chunkiter(source) | |
1852 | if cl.addgroup(chunkiter, csmap, trp, 1) is None: |
|
1852 | if cl.addgroup(chunkiter, csmap, trp, 1) is None: | |
1853 | raise util.Abort(_("received changelog group is empty")) |
|
1853 | raise util.Abort(_("received changelog group is empty")) | |
1854 | cnr = cl.count() - 1 |
|
1854 | cnr = cl.count() - 1 | |
1855 | changesets = cnr - cor |
|
1855 | changesets = cnr - cor | |
1856 |
|
1856 | |||
1857 | # pull off the manifest group |
|
1857 | # pull off the manifest group | |
1858 | self.ui.status(_("adding manifests\n")) |
|
1858 | self.ui.status(_("adding manifests\n")) | |
1859 | chunkiter = changegroup.chunkiter(source) |
|
1859 | chunkiter = changegroup.chunkiter(source) | |
1860 | # no need to check for empty manifest group here: |
|
1860 | # no need to check for empty manifest group here: | |
1861 | # if the result of the merge of 1 and 2 is the same in 3 and 4, |
|
1861 | # if the result of the merge of 1 and 2 is the same in 3 and 4, | |
1862 | # no new manifest will be created and the manifest group will |
|
1862 | # no new manifest will be created and the manifest group will | |
1863 | # be empty during the pull |
|
1863 | # be empty during the pull | |
1864 | self.manifest.addgroup(chunkiter, revmap, trp) |
|
1864 | self.manifest.addgroup(chunkiter, revmap, trp) | |
1865 |
|
1865 | |||
1866 | # process the files |
|
1866 | # process the files | |
1867 | self.ui.status(_("adding file changes\n")) |
|
1867 | self.ui.status(_("adding file changes\n")) | |
1868 | while 1: |
|
1868 | while 1: | |
1869 | f = changegroup.getchunk(source) |
|
1869 | f = changegroup.getchunk(source) | |
1870 | if not f: |
|
1870 | if not f: | |
1871 | break |
|
1871 | break | |
1872 | self.ui.debug(_("adding %s revisions\n") % f) |
|
1872 | self.ui.debug(_("adding %s revisions\n") % f) | |
1873 | fl = self.file(f) |
|
1873 | fl = self.file(f) | |
1874 | o = fl.count() |
|
1874 | o = fl.count() | |
1875 | chunkiter = changegroup.chunkiter(source) |
|
1875 | chunkiter = changegroup.chunkiter(source) | |
1876 | if fl.addgroup(chunkiter, revmap, trp) is None: |
|
1876 | if fl.addgroup(chunkiter, revmap, trp) is None: | |
1877 | raise util.Abort(_("received file revlog group is empty")) |
|
1877 | raise util.Abort(_("received file revlog group is empty")) | |
1878 | revisions += fl.count() - o |
|
1878 | revisions += fl.count() - o | |
1879 | files += 1 |
|
1879 | files += 1 | |
1880 |
|
1880 | |||
1881 | # make changelog see real files again |
|
1881 | # make changelog see real files again | |
1882 | cl.finalize(trp) |
|
1882 | cl.finalize(trp) | |
1883 |
|
1883 | |||
1884 | newheads = len(self.changelog.heads()) |
|
1884 | newheads = len(self.changelog.heads()) | |
1885 | heads = "" |
|
1885 | heads = "" | |
1886 | if oldheads and newheads != oldheads: |
|
1886 | if oldheads and newheads != oldheads: | |
1887 | heads = _(" (%+d heads)") % (newheads - oldheads) |
|
1887 | heads = _(" (%+d heads)") % (newheads - oldheads) | |
1888 |
|
1888 | |||
1889 | self.ui.status(_("added %d changesets" |
|
1889 | self.ui.status(_("added %d changesets" | |
1890 | " with %d changes to %d files%s\n") |
|
1890 | " with %d changes to %d files%s\n") | |
1891 | % (changesets, revisions, files, heads)) |
|
1891 | % (changesets, revisions, files, heads)) | |
1892 |
|
1892 | |||
1893 | if changesets > 0: |
|
1893 | if changesets > 0: | |
1894 | self.hook('pretxnchangegroup', throw=True, |
|
1894 | self.hook('pretxnchangegroup', throw=True, | |
1895 | node=hex(self.changelog.node(cor+1)), source=srctype, |
|
1895 | node=hex(self.changelog.node(cor+1)), source=srctype, | |
1896 | url=url) |
|
1896 | url=url) | |
1897 |
|
1897 | |||
1898 | tr.close() |
|
1898 | tr.close() | |
1899 | finally: |
|
1899 | finally: | |
1900 | del tr |
|
1900 | del tr | |
1901 |
|
1901 | |||
1902 | if changesets > 0: |
|
1902 | if changesets > 0: | |
1903 | # forcefully update the on-disk branch cache |
|
1903 | # forcefully update the on-disk branch cache | |
1904 | self.ui.debug(_("updating the branch cache\n")) |
|
1904 | self.ui.debug(_("updating the branch cache\n")) | |
1905 | self.branchcache = None |
|
1905 | self.branchcache = None | |
1906 | self.branchtags() |
|
1906 | self.branchtags() | |
1907 | self.hook("changegroup", node=hex(self.changelog.node(cor+1)), |
|
1907 | self.hook("changegroup", node=hex(self.changelog.node(cor+1)), | |
1908 | source=srctype, url=url) |
|
1908 | source=srctype, url=url) | |
1909 |
|
1909 | |||
1910 | for i in xrange(cor + 1, cnr + 1): |
|
1910 | for i in xrange(cor + 1, cnr + 1): | |
1911 | self.hook("incoming", node=hex(self.changelog.node(i)), |
|
1911 | self.hook("incoming", node=hex(self.changelog.node(i)), | |
1912 | source=srctype, url=url) |
|
1912 | source=srctype, url=url) | |
1913 |
|
1913 | |||
1914 | # never return 0 here: |
|
1914 | # never return 0 here: | |
1915 | if newheads < oldheads: |
|
1915 | if newheads < oldheads: | |
1916 | return newheads - oldheads - 1 |
|
1916 | return newheads - oldheads - 1 | |
1917 | else: |
|
1917 | else: | |
1918 | return newheads - oldheads + 1 |
|
1918 | return newheads - oldheads + 1 | |
1919 |
|
1919 | |||
1920 |
|
1920 | |||
1921 | def stream_in(self, remote): |
|
1921 | def stream_in(self, remote): | |
1922 | fp = remote.stream_out() |
|
1922 | fp = remote.stream_out() | |
1923 | l = fp.readline() |
|
1923 | l = fp.readline() | |
1924 | try: |
|
1924 | try: | |
1925 | resp = int(l) |
|
1925 | resp = int(l) | |
1926 | except ValueError: |
|
1926 | except ValueError: | |
1927 | raise util.UnexpectedOutput( |
|
1927 | raise util.UnexpectedOutput( | |
1928 | _('Unexpected response from remote server:'), l) |
|
1928 | _('Unexpected response from remote server:'), l) | |
1929 | if resp == 1: |
|
1929 | if resp == 1: | |
1930 | raise util.Abort(_('operation forbidden by server')) |
|
1930 | raise util.Abort(_('operation forbidden by server')) | |
1931 | elif resp == 2: |
|
1931 | elif resp == 2: | |
1932 | raise util.Abort(_('locking the remote repository failed')) |
|
1932 | raise util.Abort(_('locking the remote repository failed')) | |
1933 | elif resp != 0: |
|
1933 | elif resp != 0: | |
1934 | raise util.Abort(_('the server sent an unknown error code')) |
|
1934 | raise util.Abort(_('the server sent an unknown error code')) | |
1935 | self.ui.status(_('streaming all changes\n')) |
|
1935 | self.ui.status(_('streaming all changes\n')) | |
1936 | l = fp.readline() |
|
1936 | l = fp.readline() | |
1937 | try: |
|
1937 | try: | |
1938 | total_files, total_bytes = map(int, l.split(' ', 1)) |
|
1938 | total_files, total_bytes = map(int, l.split(' ', 1)) | |
1939 | except ValueError, TypeError: |
|
1939 | except ValueError, TypeError: | |
1940 | raise util.UnexpectedOutput( |
|
1940 | raise util.UnexpectedOutput( | |
1941 | _('Unexpected response from remote server:'), l) |
|
1941 | _('Unexpected response from remote server:'), l) | |
1942 | self.ui.status(_('%d files to transfer, %s of data\n') % |
|
1942 | self.ui.status(_('%d files to transfer, %s of data\n') % | |
1943 | (total_files, util.bytecount(total_bytes))) |
|
1943 | (total_files, util.bytecount(total_bytes))) | |
1944 | start = time.time() |
|
1944 | start = time.time() | |
1945 | for i in xrange(total_files): |
|
1945 | for i in xrange(total_files): | |
1946 | # XXX doesn't support '\n' or '\r' in filenames |
|
1946 | # XXX doesn't support '\n' or '\r' in filenames | |
1947 | l = fp.readline() |
|
1947 | l = fp.readline() | |
1948 | try: |
|
1948 | try: | |
1949 | name, size = l.split('\0', 1) |
|
1949 | name, size = l.split('\0', 1) | |
1950 | size = int(size) |
|
1950 | size = int(size) | |
1951 | except ValueError, TypeError: |
|
1951 | except ValueError, TypeError: | |
1952 | raise util.UnexpectedOutput( |
|
1952 | raise util.UnexpectedOutput( | |
1953 | _('Unexpected response from remote server:'), l) |
|
1953 | _('Unexpected response from remote server:'), l) | |
1954 | self.ui.debug('adding %s (%s)\n' % (name, util.bytecount(size))) |
|
1954 | self.ui.debug('adding %s (%s)\n' % (name, util.bytecount(size))) | |
1955 | ofp = self.sopener(name, 'w') |
|
1955 | ofp = self.sopener(name, 'w') | |
1956 | for chunk in util.filechunkiter(fp, limit=size): |
|
1956 | for chunk in util.filechunkiter(fp, limit=size): | |
1957 | ofp.write(chunk) |
|
1957 | ofp.write(chunk) | |
1958 | ofp.close() |
|
1958 | ofp.close() | |
1959 | elapsed = time.time() - start |
|
1959 | elapsed = time.time() - start | |
1960 | if elapsed <= 0: |
|
1960 | if elapsed <= 0: | |
1961 | elapsed = 0.001 |
|
1961 | elapsed = 0.001 | |
1962 | self.ui.status(_('transferred %s in %.1f seconds (%s/sec)\n') % |
|
1962 | self.ui.status(_('transferred %s in %.1f seconds (%s/sec)\n') % | |
1963 | (util.bytecount(total_bytes), elapsed, |
|
1963 | (util.bytecount(total_bytes), elapsed, | |
1964 | util.bytecount(total_bytes / elapsed))) |
|
1964 | util.bytecount(total_bytes / elapsed))) | |
1965 | self.invalidate() |
|
1965 | self.invalidate() | |
1966 | return len(self.heads()) + 1 |
|
1966 | return len(self.heads()) + 1 | |
1967 |
|
1967 | |||
1968 | def clone(self, remote, heads=[], stream=False): |
|
1968 | def clone(self, remote, heads=[], stream=False): | |
1969 | '''clone remote repository. |
|
1969 | '''clone remote repository. | |
1970 |
|
1970 | |||
1971 | keyword arguments: |
|
1971 | keyword arguments: | |
1972 | heads: list of revs to clone (forces use of pull) |
|
1972 | heads: list of revs to clone (forces use of pull) | |
1973 | stream: use streaming clone if possible''' |
|
1973 | stream: use streaming clone if possible''' | |
1974 |
|
1974 | |||
1975 | # now, all clients that can request uncompressed clones can |
|
1975 | # now, all clients that can request uncompressed clones can | |
1976 | # read repo formats supported by all servers that can serve |
|
1976 | # read repo formats supported by all servers that can serve | |
1977 | # them. |
|
1977 | # them. | |
1978 |
|
1978 | |||
1979 | # if revlog format changes, client will have to check version |
|
1979 | # if revlog format changes, client will have to check version | |
1980 | # and format flags on "stream" capability, and use |
|
1980 | # and format flags on "stream" capability, and use | |
1981 | # uncompressed only if compatible. |
|
1981 | # uncompressed only if compatible. | |
1982 |
|
1982 | |||
1983 | if stream and not heads and remote.capable('stream'): |
|
1983 | if stream and not heads and remote.capable('stream'): | |
1984 | return self.stream_in(remote) |
|
1984 | return self.stream_in(remote) | |
1985 | return self.pull(remote, heads) |
|
1985 | return self.pull(remote, heads) | |
1986 |
|
1986 | |||
1987 | # used to avoid circular references so destructors work |
|
1987 | # used to avoid circular references so destructors work | |
1988 | def aftertrans(files): |
|
1988 | def aftertrans(files): | |
1989 | renamefiles = [tuple(t) for t in files] |
|
1989 | renamefiles = [tuple(t) for t in files] | |
1990 | def a(): |
|
1990 | def a(): | |
1991 | for src, dest in renamefiles: |
|
1991 | for src, dest in renamefiles: | |
1992 | util.rename(src, dest) |
|
1992 | util.rename(src, dest) | |
1993 | return a |
|
1993 | return a | |
1994 |
|
1994 | |||
1995 | def instance(ui, path, create): |
|
1995 | def instance(ui, path, create): | |
1996 | return localrepository(ui, util.drop_scheme('file', path), create) |
|
1996 | return localrepository(ui, util.drop_scheme('file', path), create) | |
1997 |
|
1997 | |||
1998 | def islocal(path): |
|
1998 | def islocal(path): | |
1999 | return True |
|
1999 | return True |
@@ -1,78 +1,78 | |||||
1 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
1 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
2 | pushing to ../a |
|
2 | pushing to ../a | |
3 | searching for changes |
|
3 | searching for changes | |
4 | abort: push creates new remote branches! |
|
4 | abort: push creates new remote branches! | |
5 | (did you forget to merge? use push -f to force) |
|
5 | (did you forget to merge? use push -f to force) | |
6 | pulling from ../a |
|
6 | pulling from ../a | |
7 | searching for changes |
|
7 | searching for changes | |
8 | adding changesets |
|
8 | adding changesets | |
9 | adding manifests |
|
9 | adding manifests | |
10 | adding file changes |
|
10 | adding file changes | |
11 | added 1 changesets with 1 changes to 1 files (+1 heads) |
|
11 | added 1 changesets with 1 changes to 1 files (+1 heads) | |
12 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
12 | (run 'hg heads' to see heads, 'hg merge' to merge) | |
13 | pushing to ../a |
|
13 | pushing to ../a | |
14 | searching for changes |
|
14 | searching for changes | |
15 | abort: push creates new remote branches! |
|
15 | abort: push creates new remote branches! | |
16 | (did you forget to merge? use push -f to force) |
|
16 | (did you forget to merge? use push -f to force) | |
17 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
17 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
18 | (branch merge, don't forget to commit) |
|
18 | (branch merge, don't forget to commit) | |
19 | pushing to ../a |
|
19 | pushing to ../a | |
20 | searching for changes |
|
20 | searching for changes | |
21 | adding changesets |
|
21 | adding changesets | |
22 | adding manifests |
|
22 | adding manifests | |
23 | adding file changes |
|
23 | adding file changes | |
24 | added 2 changesets with 1 changes to 1 files |
|
24 | added 2 changesets with 1 changes to 1 files | |
25 | adding foo |
|
25 | adding foo | |
26 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
26 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
27 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
27 | 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 |
|
28 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
29 | merging foo |
|
29 | merging foo | |
30 | 0 files updated, 1 files merged, 0 files removed, 0 files unresolved |
|
30 | 0 files updated, 1 files merged, 0 files removed, 0 files unresolved | |
31 | (branch merge, don't forget to commit) |
|
31 | (branch merge, don't forget to commit) | |
32 | pushing to ../c |
|
32 | pushing to ../c | |
33 | searching for changes |
|
33 | searching for changes | |
34 | abort: push creates new remote branches! |
|
34 | abort: push creates new remote branches! | |
35 | (did you forget to merge? use push -f to force) |
|
35 | (did you forget to merge? use push -f to force) | |
36 | 0 |
|
36 | 1 | |
37 | pushing to ../c |
|
37 | pushing to ../c | |
38 | searching for changes |
|
38 | searching for changes | |
39 | no changes found |
|
39 | no changes found | |
40 | 0 |
|
40 | 0 | |
41 | pushing to ../c |
|
41 | pushing to ../c | |
42 | searching for changes |
|
42 | searching for changes | |
43 | abort: push creates new remote branches! |
|
43 | abort: push creates new remote branches! | |
44 | (did you forget to merge? use push -f to force) |
|
44 | (did you forget to merge? use push -f to force) | |
45 | 0 |
|
45 | 1 | |
46 | pushing to ../c |
|
46 | pushing to ../c | |
47 | searching for changes |
|
47 | searching for changes | |
48 | abort: push creates new remote branches! |
|
48 | abort: push creates new remote branches! | |
49 | (did you forget to merge? use push -f to force) |
|
49 | (did you forget to merge? use push -f to force) | |
50 | 0 |
|
50 | 1 | |
51 | pushing to ../c |
|
51 | pushing to ../c | |
52 | searching for changes |
|
52 | searching for changes | |
53 | adding changesets |
|
53 | adding changesets | |
54 | adding manifests |
|
54 | adding manifests | |
55 | adding file changes |
|
55 | adding file changes | |
56 | added 2 changesets with 2 changes to 1 files (+2 heads) |
|
56 | added 2 changesets with 2 changes to 1 files (+2 heads) | |
57 | 0 |
|
57 | 0 | |
58 | pushing to ../c |
|
58 | pushing to ../c | |
59 | searching for changes |
|
59 | searching for changes | |
60 | adding changesets |
|
60 | adding changesets | |
61 | adding manifests |
|
61 | adding manifests | |
62 | adding file changes |
|
62 | adding file changes | |
63 | added 1 changesets with 1 changes to 1 files (-1 heads) |
|
63 | added 1 changesets with 1 changes to 1 files (-1 heads) | |
64 | 0 |
|
64 | 0 | |
65 | pushing to ../e |
|
65 | pushing to ../e | |
66 | searching for changes |
|
66 | searching for changes | |
67 | adding changesets |
|
67 | adding changesets | |
68 | adding manifests |
|
68 | adding manifests | |
69 | adding file changes |
|
69 | adding file changes | |
70 | added 1 changesets with 1 changes to 1 files |
|
70 | added 1 changesets with 1 changes to 1 files | |
71 | 0 |
|
71 | 0 | |
72 | pushing to ../e |
|
72 | pushing to ../e | |
73 | searching for changes |
|
73 | searching for changes | |
74 | adding changesets |
|
74 | adding changesets | |
75 | adding manifests |
|
75 | adding manifests | |
76 | adding file changes |
|
76 | adding file changes | |
77 | added 1 changesets with 1 changes to 1 files |
|
77 | added 1 changesets with 1 changes to 1 files | |
78 | 0 |
|
78 | 0 |
General Comments 0
You need to be logged in to leave comments.
Login now