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