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