##// END OF EJS Templates
partial backout of 1e819576e926 and add tests (issue2131)...
Sune Foldager -
r10875:a9702c47 stable
parent child Browse files
Show More
@@ -1,2215 +1,2222 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 of the
6 6 # GNU General Public License version 2 or any later version.
7 7
8 8 from node import bin, hex, nullid, nullrev, short
9 9 from i18n import _
10 10 import repo, changegroup, subrepo
11 11 import changelog, dirstate, filelog, manifest, context
12 12 import lock, transaction, store, encoding
13 13 import util, extensions, hook, error
14 14 import match as match_
15 15 import merge as merge_
16 16 import tags as tags_
17 17 from lock import release
18 18 import weakref, stat, errno, os, time, inspect
19 19 propertycache = util.propertycache
20 20
21 21 class localrepository(repo.repository):
22 22 capabilities = set(('lookup', 'changegroupsubset', 'branchmap'))
23 23 supported = set('revlogv1 store fncache shared'.split())
24 24
25 25 def __init__(self, baseui, path=None, create=0):
26 26 repo.repository.__init__(self)
27 27 self.root = os.path.realpath(path)
28 28 self.path = os.path.join(self.root, ".hg")
29 29 self.origroot = path
30 30 self.opener = util.opener(self.path)
31 31 self.wopener = util.opener(self.root)
32 32 self.baseui = baseui
33 33 self.ui = baseui.copy()
34 34
35 35 try:
36 36 self.ui.readconfig(self.join("hgrc"), self.root)
37 37 extensions.loadall(self.ui)
38 38 except IOError:
39 39 pass
40 40
41 41 if not os.path.isdir(self.path):
42 42 if create:
43 43 if not os.path.exists(path):
44 44 os.mkdir(path)
45 45 os.mkdir(self.path)
46 46 requirements = ["revlogv1"]
47 47 if self.ui.configbool('format', 'usestore', True):
48 48 os.mkdir(os.path.join(self.path, "store"))
49 49 requirements.append("store")
50 50 if self.ui.configbool('format', 'usefncache', True):
51 51 requirements.append("fncache")
52 52 # create an invalid changelog
53 53 self.opener("00changelog.i", "a").write(
54 54 '\0\0\0\2' # represents revlogv2
55 55 ' dummy changelog to prevent using the old repo layout'
56 56 )
57 57 reqfile = self.opener("requires", "w")
58 58 for r in requirements:
59 59 reqfile.write("%s\n" % r)
60 60 reqfile.close()
61 61 else:
62 62 raise error.RepoError(_("repository %s not found") % path)
63 63 elif create:
64 64 raise error.RepoError(_("repository %s already exists") % path)
65 65 else:
66 66 # find requirements
67 67 requirements = set()
68 68 try:
69 69 requirements = set(self.opener("requires").read().splitlines())
70 70 except IOError, inst:
71 71 if inst.errno != errno.ENOENT:
72 72 raise
73 73 for r in requirements - self.supported:
74 74 raise error.RepoError(_("requirement '%s' not supported") % r)
75 75
76 76 self.sharedpath = self.path
77 77 try:
78 78 s = os.path.realpath(self.opener("sharedpath").read())
79 79 if not os.path.exists(s):
80 80 raise error.RepoError(
81 81 _('.hg/sharedpath points to nonexistent directory %s') % s)
82 82 self.sharedpath = s
83 83 except IOError, inst:
84 84 if inst.errno != errno.ENOENT:
85 85 raise
86 86
87 87 self.store = store.store(requirements, self.sharedpath, util.opener)
88 88 self.spath = self.store.path
89 89 self.sopener = self.store.opener
90 90 self.sjoin = self.store.join
91 91 self.opener.createmode = self.store.createmode
92 92 self.sopener.options = {}
93 93
94 94 # These two define the set of tags for this repository. _tags
95 95 # maps tag name to node; _tagtypes maps tag name to 'global' or
96 96 # 'local'. (Global tags are defined by .hgtags across all
97 97 # heads, and local tags are defined in .hg/localtags.) They
98 98 # constitute the in-memory cache of tags.
99 99 self._tags = None
100 100 self._tagtypes = None
101 101
102 102 self._branchcache = None # in UTF-8
103 103 self._branchcachetip = None
104 104 self.nodetagscache = None
105 105 self.filterpats = {}
106 106 self._datafilters = {}
107 107 self._transref = self._lockref = self._wlockref = None
108 108
109 109 @propertycache
110 110 def changelog(self):
111 111 c = changelog.changelog(self.sopener)
112 112 if 'HG_PENDING' in os.environ:
113 113 p = os.environ['HG_PENDING']
114 114 if p.startswith(self.root):
115 115 c.readpending('00changelog.i.a')
116 116 self.sopener.options['defversion'] = c.version
117 117 return c
118 118
119 119 @propertycache
120 120 def manifest(self):
121 121 return manifest.manifest(self.sopener)
122 122
123 123 @propertycache
124 124 def dirstate(self):
125 125 return dirstate.dirstate(self.opener, self.ui, self.root)
126 126
127 127 def __getitem__(self, changeid):
128 128 if changeid is None:
129 129 return context.workingctx(self)
130 130 return context.changectx(self, changeid)
131 131
132 132 def __contains__(self, changeid):
133 133 try:
134 134 return bool(self.lookup(changeid))
135 135 except error.RepoLookupError:
136 136 return False
137 137
138 138 def __nonzero__(self):
139 139 return True
140 140
141 141 def __len__(self):
142 142 return len(self.changelog)
143 143
144 144 def __iter__(self):
145 145 for i in xrange(len(self)):
146 146 yield i
147 147
148 148 def url(self):
149 149 return 'file:' + self.root
150 150
151 151 def hook(self, name, throw=False, **args):
152 152 return hook.hook(self.ui, self, name, throw, **args)
153 153
154 154 tag_disallowed = ':\r\n'
155 155
156 156 def _tag(self, names, node, message, local, user, date, extra={}):
157 157 if isinstance(names, str):
158 158 allchars = names
159 159 names = (names,)
160 160 else:
161 161 allchars = ''.join(names)
162 162 for c in self.tag_disallowed:
163 163 if c in allchars:
164 164 raise util.Abort(_('%r cannot be used in a tag name') % c)
165 165
166 166 for name in names:
167 167 self.hook('pretag', throw=True, node=hex(node), tag=name,
168 168 local=local)
169 169
170 170 def writetags(fp, names, munge, prevtags):
171 171 fp.seek(0, 2)
172 172 if prevtags and prevtags[-1] != '\n':
173 173 fp.write('\n')
174 174 for name in names:
175 175 m = munge and munge(name) or name
176 176 if self._tagtypes and name in self._tagtypes:
177 177 old = self._tags.get(name, nullid)
178 178 fp.write('%s %s\n' % (hex(old), m))
179 179 fp.write('%s %s\n' % (hex(node), m))
180 180 fp.close()
181 181
182 182 prevtags = ''
183 183 if local:
184 184 try:
185 185 fp = self.opener('localtags', 'r+')
186 186 except IOError:
187 187 fp = self.opener('localtags', 'a')
188 188 else:
189 189 prevtags = fp.read()
190 190
191 191 # local tags are stored in the current charset
192 192 writetags(fp, names, None, prevtags)
193 193 for name in names:
194 194 self.hook('tag', node=hex(node), tag=name, local=local)
195 195 return
196 196
197 197 try:
198 198 fp = self.wfile('.hgtags', 'rb+')
199 199 except IOError:
200 200 fp = self.wfile('.hgtags', 'ab')
201 201 else:
202 202 prevtags = fp.read()
203 203
204 204 # committed tags are stored in UTF-8
205 205 writetags(fp, names, encoding.fromlocal, prevtags)
206 206
207 207 if '.hgtags' not in self.dirstate:
208 208 self.add(['.hgtags'])
209 209
210 210 m = match_.exact(self.root, '', ['.hgtags'])
211 211 tagnode = self.commit(message, user, date, extra=extra, match=m)
212 212
213 213 for name in names:
214 214 self.hook('tag', node=hex(node), tag=name, local=local)
215 215
216 216 return tagnode
217 217
218 218 def tag(self, names, node, message, local, user, date):
219 219 '''tag a revision with one or more symbolic names.
220 220
221 221 names is a list of strings or, when adding a single tag, names may be a
222 222 string.
223 223
224 224 if local is True, the tags are stored in a per-repository file.
225 225 otherwise, they are stored in the .hgtags file, and a new
226 226 changeset is committed with the change.
227 227
228 228 keyword arguments:
229 229
230 230 local: whether to store tags in non-version-controlled file
231 231 (default False)
232 232
233 233 message: commit message to use if committing
234 234
235 235 user: name of user to use if committing
236 236
237 237 date: date tuple to use if committing'''
238 238
239 239 for x in self.status()[:5]:
240 240 if '.hgtags' in x:
241 241 raise util.Abort(_('working copy of .hgtags is changed '
242 242 '(please commit .hgtags manually)'))
243 243
244 244 self.tags() # instantiate the cache
245 245 self._tag(names, node, message, local, user, date)
246 246
247 247 def tags(self):
248 248 '''return a mapping of tag to node'''
249 249 if self._tags is None:
250 250 (self._tags, self._tagtypes) = self._findtags()
251 251
252 252 return self._tags
253 253
254 254 def _findtags(self):
255 255 '''Do the hard work of finding tags. Return a pair of dicts
256 256 (tags, tagtypes) where tags maps tag name to node, and tagtypes
257 257 maps tag name to a string like \'global\' or \'local\'.
258 258 Subclasses or extensions are free to add their own tags, but
259 259 should be aware that the returned dicts will be retained for the
260 260 duration of the localrepo object.'''
261 261
262 262 # XXX what tagtype should subclasses/extensions use? Currently
263 263 # mq and bookmarks add tags, but do not set the tagtype at all.
264 264 # Should each extension invent its own tag type? Should there
265 265 # be one tagtype for all such "virtual" tags? Or is the status
266 266 # quo fine?
267 267
268 268 alltags = {} # map tag name to (node, hist)
269 269 tagtypes = {}
270 270
271 271 tags_.findglobaltags(self.ui, self, alltags, tagtypes)
272 272 tags_.readlocaltags(self.ui, self, alltags, tagtypes)
273 273
274 274 # Build the return dicts. Have to re-encode tag names because
275 275 # the tags module always uses UTF-8 (in order not to lose info
276 276 # writing to the cache), but the rest of Mercurial wants them in
277 277 # local encoding.
278 278 tags = {}
279 279 for (name, (node, hist)) in alltags.iteritems():
280 280 if node != nullid:
281 281 tags[encoding.tolocal(name)] = node
282 282 tags['tip'] = self.changelog.tip()
283 283 tagtypes = dict([(encoding.tolocal(name), value)
284 284 for (name, value) in tagtypes.iteritems()])
285 285 return (tags, tagtypes)
286 286
287 287 def tagtype(self, tagname):
288 288 '''
289 289 return the type of the given tag. result can be:
290 290
291 291 'local' : a local tag
292 292 'global' : a global tag
293 293 None : tag does not exist
294 294 '''
295 295
296 296 self.tags()
297 297
298 298 return self._tagtypes.get(tagname)
299 299
300 300 def tagslist(self):
301 301 '''return a list of tags ordered by revision'''
302 302 l = []
303 303 for t, n in self.tags().iteritems():
304 304 try:
305 305 r = self.changelog.rev(n)
306 306 except:
307 307 r = -2 # sort to the beginning of the list if unknown
308 308 l.append((r, t, n))
309 309 return [(t, n) for r, t, n in sorted(l)]
310 310
311 311 def nodetags(self, node):
312 312 '''return the tags associated with a node'''
313 313 if not self.nodetagscache:
314 314 self.nodetagscache = {}
315 315 for t, n in self.tags().iteritems():
316 316 self.nodetagscache.setdefault(n, []).append(t)
317 317 return self.nodetagscache.get(node, [])
318 318
319 319 def _branchtags(self, partial, lrev):
320 320 # TODO: rename this function?
321 321 tiprev = len(self) - 1
322 322 if lrev != tiprev:
323 323 ctxgen = (self[r] for r in xrange(lrev + 1, tiprev + 1))
324 324 self._updatebranchcache(partial, ctxgen)
325 325 self._writebranchcache(partial, self.changelog.tip(), tiprev)
326 326
327 327 return partial
328 328
329 329 def branchmap(self):
330 330 '''returns a dictionary {branch: [branchheads]}'''
331 331 tip = self.changelog.tip()
332 332 if self._branchcache is not None and self._branchcachetip == tip:
333 333 return self._branchcache
334 334
335 335 oldtip = self._branchcachetip
336 336 self._branchcachetip = tip
337 337 if oldtip is None or oldtip not in self.changelog.nodemap:
338 338 partial, last, lrev = self._readbranchcache()
339 339 else:
340 340 lrev = self.changelog.rev(oldtip)
341 341 partial = self._branchcache
342 342
343 343 self._branchtags(partial, lrev)
344 344 # this private cache holds all heads (not just tips)
345 345 self._branchcache = partial
346 346
347 347 return self._branchcache
348 348
349 349 def branchtags(self):
350 350 '''return a dict where branch names map to the tipmost head of
351 351 the branch, open heads come before closed'''
352 352 bt = {}
353 353 for bn, heads in self.branchmap().iteritems():
354 354 tip = heads[-1]
355 355 for h in reversed(heads):
356 356 if 'close' not in self.changelog.read(h)[5]:
357 357 tip = h
358 358 break
359 359 bt[bn] = tip
360 360 return bt
361 361
362 362
363 363 def _readbranchcache(self):
364 364 partial = {}
365 365 try:
366 366 f = self.opener("branchheads.cache")
367 367 lines = f.read().split('\n')
368 368 f.close()
369 369 except (IOError, OSError):
370 370 return {}, nullid, nullrev
371 371
372 372 try:
373 373 last, lrev = lines.pop(0).split(" ", 1)
374 374 last, lrev = bin(last), int(lrev)
375 375 if lrev >= len(self) or self[lrev].node() != last:
376 376 # invalidate the cache
377 377 raise ValueError('invalidating branch cache (tip differs)')
378 378 for l in lines:
379 379 if not l:
380 380 continue
381 381 node, label = l.split(" ", 1)
382 382 partial.setdefault(label.strip(), []).append(bin(node))
383 383 except KeyboardInterrupt:
384 384 raise
385 385 except Exception, inst:
386 386 if self.ui.debugflag:
387 387 self.ui.warn(str(inst), '\n')
388 388 partial, last, lrev = {}, nullid, nullrev
389 389 return partial, last, lrev
390 390
391 391 def _writebranchcache(self, branches, tip, tiprev):
392 392 try:
393 393 f = self.opener("branchheads.cache", "w", atomictemp=True)
394 394 f.write("%s %s\n" % (hex(tip), tiprev))
395 395 for label, nodes in branches.iteritems():
396 396 for node in nodes:
397 397 f.write("%s %s\n" % (hex(node), label))
398 398 f.rename()
399 399 except (IOError, OSError):
400 400 pass
401 401
402 402 def _updatebranchcache(self, partial, ctxgen):
403 403 # collect new branch entries
404 404 newbranches = {}
405 405 for c in ctxgen:
406 406 newbranches.setdefault(c.branch(), []).append(c.node())
407 407 # if older branchheads are reachable from new ones, they aren't
408 408 # really branchheads. Note checking parents is insufficient:
409 409 # 1 (branch a) -> 2 (branch b) -> 3 (branch a)
410 410 for branch, newnodes in newbranches.iteritems():
411 411 bheads = partial.setdefault(branch, [])
412 412 bheads.extend(newnodes)
413 413 if len(bheads) < 2:
414 414 continue
415 415 newbheads = []
416 416 # starting from tip means fewer passes over reachable
417 417 while newnodes:
418 418 latest = newnodes.pop()
419 419 if latest not in bheads:
420 420 continue
421 421 minbhrev = self[min([self[bh].rev() for bh in bheads])].node()
422 422 reachable = self.changelog.reachable(latest, minbhrev)
423 423 bheads = [b for b in bheads if b not in reachable]
424 424 newbheads.insert(0, latest)
425 425 bheads.extend(newbheads)
426 426 partial[branch] = bheads
427 427
428 428 def lookup(self, key):
429 429 if isinstance(key, int):
430 430 return self.changelog.node(key)
431 431 elif key == '.':
432 432 return self.dirstate.parents()[0]
433 433 elif key == 'null':
434 434 return nullid
435 435 elif key == 'tip':
436 436 return self.changelog.tip()
437 437 n = self.changelog._match(key)
438 438 if n:
439 439 return n
440 440 if key in self.tags():
441 441 return self.tags()[key]
442 442 if key in self.branchtags():
443 443 return self.branchtags()[key]
444 444 n = self.changelog._partialmatch(key)
445 445 if n:
446 446 return n
447 447
448 448 # can't find key, check if it might have come from damaged dirstate
449 449 if key in self.dirstate.parents():
450 450 raise error.Abort(_("working directory has unknown parent '%s'!")
451 451 % short(key))
452 452 try:
453 453 if len(key) == 20:
454 454 key = hex(key)
455 455 except:
456 456 pass
457 457 raise error.RepoLookupError(_("unknown revision '%s'") % key)
458 458
459 459 def local(self):
460 460 return True
461 461
462 462 def join(self, f):
463 463 return os.path.join(self.path, f)
464 464
465 465 def wjoin(self, f):
466 466 return os.path.join(self.root, f)
467 467
468 468 def rjoin(self, f):
469 469 return os.path.join(self.root, util.pconvert(f))
470 470
471 471 def file(self, f):
472 472 if f[0] == '/':
473 473 f = f[1:]
474 474 return filelog.filelog(self.sopener, f)
475 475
476 476 def changectx(self, changeid):
477 477 return self[changeid]
478 478
479 479 def parents(self, changeid=None):
480 480 '''get list of changectxs for parents of changeid'''
481 481 return self[changeid].parents()
482 482
483 483 def filectx(self, path, changeid=None, fileid=None):
484 484 """changeid can be a changeset revision, node, or tag.
485 485 fileid can be a file revision or node."""
486 486 return context.filectx(self, path, changeid, fileid)
487 487
488 488 def getcwd(self):
489 489 return self.dirstate.getcwd()
490 490
491 491 def pathto(self, f, cwd=None):
492 492 return self.dirstate.pathto(f, cwd)
493 493
494 494 def wfile(self, f, mode='r'):
495 495 return self.wopener(f, mode)
496 496
497 497 def _link(self, f):
498 498 return os.path.islink(self.wjoin(f))
499 499
500 500 def _filter(self, filter, filename, data):
501 501 if filter not in self.filterpats:
502 502 l = []
503 503 for pat, cmd in self.ui.configitems(filter):
504 504 if cmd == '!':
505 505 continue
506 506 mf = match_.match(self.root, '', [pat])
507 507 fn = None
508 508 params = cmd
509 509 for name, filterfn in self._datafilters.iteritems():
510 510 if cmd.startswith(name):
511 511 fn = filterfn
512 512 params = cmd[len(name):].lstrip()
513 513 break
514 514 if not fn:
515 515 fn = lambda s, c, **kwargs: util.filter(s, c)
516 516 # Wrap old filters not supporting keyword arguments
517 517 if not inspect.getargspec(fn)[2]:
518 518 oldfn = fn
519 519 fn = lambda s, c, **kwargs: oldfn(s, c)
520 520 l.append((mf, fn, params))
521 521 self.filterpats[filter] = l
522 522
523 523 for mf, fn, cmd in self.filterpats[filter]:
524 524 if mf(filename):
525 525 self.ui.debug("filtering %s through %s\n" % (filename, cmd))
526 526 data = fn(data, cmd, ui=self.ui, repo=self, filename=filename)
527 527 break
528 528
529 529 return data
530 530
531 531 def adddatafilter(self, name, filter):
532 532 self._datafilters[name] = filter
533 533
534 534 def wread(self, filename):
535 535 if self._link(filename):
536 536 data = os.readlink(self.wjoin(filename))
537 537 else:
538 538 data = self.wopener(filename, 'r').read()
539 539 return self._filter("encode", filename, data)
540 540
541 541 def wwrite(self, filename, data, flags):
542 542 data = self._filter("decode", filename, data)
543 543 try:
544 544 os.unlink(self.wjoin(filename))
545 545 except OSError:
546 546 pass
547 547 if 'l' in flags:
548 548 self.wopener.symlink(data, filename)
549 549 else:
550 550 self.wopener(filename, 'w').write(data)
551 551 if 'x' in flags:
552 552 util.set_flags(self.wjoin(filename), False, True)
553 553
554 554 def wwritedata(self, filename, data):
555 555 return self._filter("decode", filename, data)
556 556
557 557 def transaction(self):
558 558 tr = self._transref and self._transref() or None
559 559 if tr and tr.running():
560 560 return tr.nest()
561 561
562 562 # abort here if the journal already exists
563 563 if os.path.exists(self.sjoin("journal")):
564 564 raise error.RepoError(
565 565 _("abandoned transaction found - run hg recover"))
566 566
567 567 # save dirstate for rollback
568 568 try:
569 569 ds = self.opener("dirstate").read()
570 570 except IOError:
571 571 ds = ""
572 572 self.opener("journal.dirstate", "w").write(ds)
573 573 self.opener("journal.branch", "w").write(self.dirstate.branch())
574 574
575 575 renames = [(self.sjoin("journal"), self.sjoin("undo")),
576 576 (self.join("journal.dirstate"), self.join("undo.dirstate")),
577 577 (self.join("journal.branch"), self.join("undo.branch"))]
578 578 tr = transaction.transaction(self.ui.warn, self.sopener,
579 579 self.sjoin("journal"),
580 580 aftertrans(renames),
581 581 self.store.createmode)
582 582 self._transref = weakref.ref(tr)
583 583 return tr
584 584
585 585 def recover(self):
586 586 lock = self.lock()
587 587 try:
588 588 if os.path.exists(self.sjoin("journal")):
589 589 self.ui.status(_("rolling back interrupted transaction\n"))
590 590 transaction.rollback(self.sopener, self.sjoin("journal"),
591 591 self.ui.warn)
592 592 self.invalidate()
593 593 return True
594 594 else:
595 595 self.ui.warn(_("no interrupted transaction available\n"))
596 596 return False
597 597 finally:
598 598 lock.release()
599 599
600 600 def rollback(self):
601 601 wlock = lock = None
602 602 try:
603 603 wlock = self.wlock()
604 604 lock = self.lock()
605 605 if os.path.exists(self.sjoin("undo")):
606 606 self.ui.status(_("rolling back last transaction\n"))
607 607 transaction.rollback(self.sopener, self.sjoin("undo"),
608 608 self.ui.warn)
609 609 util.rename(self.join("undo.dirstate"), self.join("dirstate"))
610 610 try:
611 611 branch = self.opener("undo.branch").read()
612 612 self.dirstate.setbranch(branch)
613 613 except IOError:
614 614 self.ui.warn(_("Named branch could not be reset, "
615 615 "current branch still is: %s\n")
616 616 % encoding.tolocal(self.dirstate.branch()))
617 617 self.invalidate()
618 618 self.dirstate.invalidate()
619 619 self.destroyed()
620 620 else:
621 621 self.ui.warn(_("no rollback information available\n"))
622 622 finally:
623 623 release(lock, wlock)
624 624
625 625 def invalidatecaches(self):
626 626 self._tags = None
627 627 self._tagtypes = None
628 628 self.nodetagscache = None
629 629 self._branchcache = None # in UTF-8
630 630 self._branchcachetip = None
631 631
632 632 def invalidate(self):
633 633 for a in "changelog manifest".split():
634 634 if a in self.__dict__:
635 635 delattr(self, a)
636 636 self.invalidatecaches()
637 637
638 638 def _lock(self, lockname, wait, releasefn, acquirefn, desc):
639 639 try:
640 640 l = lock.lock(lockname, 0, releasefn, desc=desc)
641 641 except error.LockHeld, inst:
642 642 if not wait:
643 643 raise
644 644 self.ui.warn(_("waiting for lock on %s held by %r\n") %
645 645 (desc, inst.locker))
646 646 # default to 600 seconds timeout
647 647 l = lock.lock(lockname, int(self.ui.config("ui", "timeout", "600")),
648 648 releasefn, desc=desc)
649 649 if acquirefn:
650 650 acquirefn()
651 651 return l
652 652
653 653 def lock(self, wait=True):
654 654 '''Lock the repository store (.hg/store) and return a weak reference
655 655 to the lock. Use this before modifying the store (e.g. committing or
656 656 stripping). If you are opening a transaction, get a lock as well.)'''
657 657 l = self._lockref and self._lockref()
658 658 if l is not None and l.held:
659 659 l.lock()
660 660 return l
661 661
662 662 l = self._lock(self.sjoin("lock"), wait, None, self.invalidate,
663 663 _('repository %s') % self.origroot)
664 664 self._lockref = weakref.ref(l)
665 665 return l
666 666
667 667 def wlock(self, wait=True):
668 668 '''Lock the non-store parts of the repository (everything under
669 669 .hg except .hg/store) and return a weak reference to the lock.
670 670 Use this before modifying files in .hg.'''
671 671 l = self._wlockref and self._wlockref()
672 672 if l is not None and l.held:
673 673 l.lock()
674 674 return l
675 675
676 676 l = self._lock(self.join("wlock"), wait, self.dirstate.write,
677 677 self.dirstate.invalidate, _('working directory of %s') %
678 678 self.origroot)
679 679 self._wlockref = weakref.ref(l)
680 680 return l
681 681
682 682 def _filecommit(self, fctx, manifest1, manifest2, linkrev, tr, changelist):
683 683 """
684 684 commit an individual file as part of a larger transaction
685 685 """
686 686
687 687 fname = fctx.path()
688 688 text = fctx.data()
689 689 flog = self.file(fname)
690 690 fparent1 = manifest1.get(fname, nullid)
691 691 fparent2 = fparent2o = manifest2.get(fname, nullid)
692 692
693 693 meta = {}
694 694 copy = fctx.renamed()
695 695 if copy and copy[0] != fname:
696 696 # Mark the new revision of this file as a copy of another
697 697 # file. This copy data will effectively act as a parent
698 698 # of this new revision. If this is a merge, the first
699 699 # parent will be the nullid (meaning "look up the copy data")
700 700 # and the second one will be the other parent. For example:
701 701 #
702 702 # 0 --- 1 --- 3 rev1 changes file foo
703 703 # \ / rev2 renames foo to bar and changes it
704 704 # \- 2 -/ rev3 should have bar with all changes and
705 705 # should record that bar descends from
706 706 # bar in rev2 and foo in rev1
707 707 #
708 708 # this allows this merge to succeed:
709 709 #
710 710 # 0 --- 1 --- 3 rev4 reverts the content change from rev2
711 711 # \ / merging rev3 and rev4 should use bar@rev2
712 712 # \- 2 --- 4 as the merge base
713 713 #
714 714
715 715 cfname = copy[0]
716 716 crev = manifest1.get(cfname)
717 717 newfparent = fparent2
718 718
719 719 if manifest2: # branch merge
720 720 if fparent2 == nullid or crev is None: # copied on remote side
721 721 if cfname in manifest2:
722 722 crev = manifest2[cfname]
723 723 newfparent = fparent1
724 724
725 725 # find source in nearest ancestor if we've lost track
726 726 if not crev:
727 727 self.ui.debug(" %s: searching for copy revision for %s\n" %
728 728 (fname, cfname))
729 729 for ancestor in self['.'].ancestors():
730 730 if cfname in ancestor:
731 731 crev = ancestor[cfname].filenode()
732 732 break
733 733
734 734 self.ui.debug(" %s: copy %s:%s\n" % (fname, cfname, hex(crev)))
735 735 meta["copy"] = cfname
736 736 meta["copyrev"] = hex(crev)
737 737 fparent1, fparent2 = nullid, newfparent
738 738 elif fparent2 != nullid:
739 739 # is one parent an ancestor of the other?
740 740 fparentancestor = flog.ancestor(fparent1, fparent2)
741 741 if fparentancestor == fparent1:
742 742 fparent1, fparent2 = fparent2, nullid
743 743 elif fparentancestor == fparent2:
744 744 fparent2 = nullid
745 745
746 746 # is the file changed?
747 747 if fparent2 != nullid or flog.cmp(fparent1, text) or meta:
748 748 changelist.append(fname)
749 749 return flog.add(text, meta, tr, linkrev, fparent1, fparent2)
750 750
751 751 # are just the flags changed during merge?
752 752 if fparent1 != fparent2o and manifest1.flags(fname) != fctx.flags():
753 753 changelist.append(fname)
754 754
755 755 return fparent1
756 756
757 757 def commit(self, text="", user=None, date=None, match=None, force=False,
758 758 editor=False, extra={}):
759 759 """Add a new revision to current repository.
760 760
761 761 Revision information is gathered from the working directory,
762 762 match can be used to filter the committed files. If editor is
763 763 supplied, it is called to get a commit message.
764 764 """
765 765
766 766 def fail(f, msg):
767 767 raise util.Abort('%s: %s' % (f, msg))
768 768
769 769 if not match:
770 770 match = match_.always(self.root, '')
771 771
772 772 if not force:
773 773 vdirs = []
774 774 match.dir = vdirs.append
775 775 match.bad = fail
776 776
777 777 wlock = self.wlock()
778 778 try:
779 779 p1, p2 = self.dirstate.parents()
780 780 wctx = self[None]
781 781
782 782 if (not force and p2 != nullid and match and
783 783 (match.files() or match.anypats())):
784 784 raise util.Abort(_('cannot partially commit a merge '
785 785 '(do not specify files or patterns)'))
786 786
787 787 changes = self.status(match=match, clean=force)
788 788 if force:
789 789 changes[0].extend(changes[6]) # mq may commit unchanged files
790 790
791 791 # check subrepos
792 792 subs = []
793 793 removedsubs = set()
794 794 for p in wctx.parents():
795 795 removedsubs.update(s for s in p.substate if match(s))
796 796 for s in wctx.substate:
797 797 removedsubs.discard(s)
798 798 if match(s) and wctx.sub(s).dirty():
799 799 subs.append(s)
800 800 if (subs or removedsubs) and '.hgsubstate' not in changes[0]:
801 801 changes[0].insert(0, '.hgsubstate')
802 802
803 803 # make sure all explicit patterns are matched
804 804 if not force and match.files():
805 805 matched = set(changes[0] + changes[1] + changes[2])
806 806
807 807 for f in match.files():
808 808 if f == '.' or f in matched or f in wctx.substate:
809 809 continue
810 810 if f in changes[3]: # missing
811 811 fail(f, _('file not found!'))
812 812 if f in vdirs: # visited directory
813 813 d = f + '/'
814 814 for mf in matched:
815 815 if mf.startswith(d):
816 816 break
817 817 else:
818 818 fail(f, _("no match under directory!"))
819 819 elif f not in self.dirstate:
820 820 fail(f, _("file not tracked!"))
821 821
822 822 if (not force and not extra.get("close") and p2 == nullid
823 823 and not (changes[0] or changes[1] or changes[2])
824 824 and self[None].branch() == self['.'].branch()):
825 825 return None
826 826
827 827 ms = merge_.mergestate(self)
828 828 for f in changes[0]:
829 829 if f in ms and ms[f] == 'u':
830 830 raise util.Abort(_("unresolved merge conflicts "
831 831 "(see hg resolve)"))
832 832
833 833 cctx = context.workingctx(self, (p1, p2), text, user, date,
834 834 extra, changes)
835 835 if editor:
836 836 cctx._text = editor(self, cctx, subs)
837 837 edited = (text != cctx._text)
838 838
839 839 # commit subs
840 840 if subs or removedsubs:
841 841 state = wctx.substate.copy()
842 842 for s in subs:
843 843 self.ui.status(_('committing subrepository %s\n') % s)
844 844 sr = wctx.sub(s).commit(cctx._text, user, date)
845 845 state[s] = (state[s][0], sr)
846 846 subrepo.writestate(self, state)
847 847
848 848 # Save commit message in case this transaction gets rolled back
849 849 # (e.g. by a pretxncommit hook). Leave the content alone on
850 850 # the assumption that the user will use the same editor again.
851 851 msgfile = self.opener('last-message.txt', 'wb')
852 852 msgfile.write(cctx._text)
853 853 msgfile.close()
854 854
855 855 try:
856 856 hookp1, hookp2 = hex(p1), (p2 != nullid and hex(p2) or '')
857 857 self.hook("precommit", throw=True, parent1=hookp1, parent2=hookp2)
858 858 ret = self.commitctx(cctx, True)
859 859 except:
860 860 if edited:
861 861 msgfn = self.pathto(msgfile.name[len(self.root)+1:])
862 862 self.ui.write(
863 863 _('note: commit message saved in %s\n') % msgfn)
864 864 raise
865 865
866 866 # update dirstate and mergestate
867 867 for f in changes[0] + changes[1]:
868 868 self.dirstate.normal(f)
869 869 for f in changes[2]:
870 870 self.dirstate.forget(f)
871 871 self.dirstate.setparents(ret)
872 872 ms.reset()
873 873 finally:
874 874 wlock.release()
875 875
876 876 self.hook("commit", node=hex(ret), parent1=hookp1, parent2=hookp2)
877 877 return ret
878 878
879 879 def commitctx(self, ctx, error=False):
880 880 """Add a new revision to current repository.
881 881 Revision information is passed via the context argument.
882 882 """
883 883
884 884 tr = lock = None
885 885 removed = ctx.removed()
886 886 p1, p2 = ctx.p1(), ctx.p2()
887 887 m1 = p1.manifest().copy()
888 888 m2 = p2.manifest()
889 889 user = ctx.user()
890 890
891 891 lock = self.lock()
892 892 try:
893 893 tr = self.transaction()
894 894 trp = weakref.proxy(tr)
895 895
896 896 # check in files
897 897 new = {}
898 898 changed = []
899 899 linkrev = len(self)
900 900 for f in sorted(ctx.modified() + ctx.added()):
901 901 self.ui.note(f + "\n")
902 902 try:
903 903 fctx = ctx[f]
904 904 new[f] = self._filecommit(fctx, m1, m2, linkrev, trp,
905 905 changed)
906 906 m1.set(f, fctx.flags())
907 907 except OSError, inst:
908 908 self.ui.warn(_("trouble committing %s!\n") % f)
909 909 raise
910 910 except IOError, inst:
911 911 errcode = getattr(inst, 'errno', errno.ENOENT)
912 912 if error or errcode and errcode != errno.ENOENT:
913 913 self.ui.warn(_("trouble committing %s!\n") % f)
914 914 raise
915 915 else:
916 916 removed.append(f)
917 917
918 918 # update manifest
919 919 m1.update(new)
920 920 removed = [f for f in sorted(removed) if f in m1 or f in m2]
921 921 drop = [f for f in removed if f in m1]
922 922 for f in drop:
923 923 del m1[f]
924 924 mn = self.manifest.add(m1, trp, linkrev, p1.manifestnode(),
925 925 p2.manifestnode(), (new, drop))
926 926
927 927 # update changelog
928 928 self.changelog.delayupdate()
929 929 n = self.changelog.add(mn, changed + removed, ctx.description(),
930 930 trp, p1.node(), p2.node(),
931 931 user, ctx.date(), ctx.extra().copy())
932 932 p = lambda: self.changelog.writepending() and self.root or ""
933 933 xp1, xp2 = p1.hex(), p2 and p2.hex() or ''
934 934 self.hook('pretxncommit', throw=True, node=hex(n), parent1=xp1,
935 935 parent2=xp2, pending=p)
936 936 self.changelog.finalize(trp)
937 937 tr.close()
938 938
939 939 if self._branchcache:
940 940 self.branchtags()
941 941 return n
942 942 finally:
943 943 del tr
944 944 lock.release()
945 945
946 946 def destroyed(self):
947 947 '''Inform the repository that nodes have been destroyed.
948 948 Intended for use by strip and rollback, so there's a common
949 949 place for anything that has to be done after destroying history.'''
950 950 # XXX it might be nice if we could take the list of destroyed
951 951 # nodes, but I don't see an easy way for rollback() to do that
952 952
953 953 # Ensure the persistent tag cache is updated. Doing it now
954 954 # means that the tag cache only has to worry about destroyed
955 955 # heads immediately after a strip/rollback. That in turn
956 956 # guarantees that "cachetip == currenttip" (comparing both rev
957 957 # and node) always means no nodes have been added or destroyed.
958 958
959 959 # XXX this is suboptimal when qrefresh'ing: we strip the current
960 960 # head, refresh the tag cache, then immediately add a new head.
961 961 # But I think doing it this way is necessary for the "instant
962 962 # tag cache retrieval" case to work.
963 963 self.invalidatecaches()
964 964
965 965 def walk(self, match, node=None):
966 966 '''
967 967 walk recursively through the directory tree or a given
968 968 changeset, finding all files matched by the match
969 969 function
970 970 '''
971 971 return self[node].walk(match)
972 972
973 973 def status(self, node1='.', node2=None, match=None,
974 974 ignored=False, clean=False, unknown=False):
975 975 """return status of files between two nodes or node and working directory
976 976
977 977 If node1 is None, use the first dirstate parent instead.
978 978 If node2 is None, compare node1 with working directory.
979 979 """
980 980
981 981 def mfmatches(ctx):
982 982 mf = ctx.manifest().copy()
983 983 for fn in mf.keys():
984 984 if not match(fn):
985 985 del mf[fn]
986 986 return mf
987 987
988 988 if isinstance(node1, context.changectx):
989 989 ctx1 = node1
990 990 else:
991 991 ctx1 = self[node1]
992 992 if isinstance(node2, context.changectx):
993 993 ctx2 = node2
994 994 else:
995 995 ctx2 = self[node2]
996 996
997 997 working = ctx2.rev() is None
998 998 parentworking = working and ctx1 == self['.']
999 999 match = match or match_.always(self.root, self.getcwd())
1000 1000 listignored, listclean, listunknown = ignored, clean, unknown
1001 1001
1002 1002 # load earliest manifest first for caching reasons
1003 1003 if not working and ctx2.rev() < ctx1.rev():
1004 1004 ctx2.manifest()
1005 1005
1006 1006 if not parentworking:
1007 1007 def bad(f, msg):
1008 1008 if f not in ctx1:
1009 1009 self.ui.warn('%s: %s\n' % (self.dirstate.pathto(f), msg))
1010 1010 match.bad = bad
1011 1011
1012 1012 if working: # we need to scan the working dir
1013 1013 subrepos = ctx1.substate.keys()
1014 1014 s = self.dirstate.status(match, subrepos, listignored,
1015 1015 listclean, listunknown)
1016 1016 cmp, modified, added, removed, deleted, unknown, ignored, clean = s
1017 1017
1018 1018 # check for any possibly clean files
1019 1019 if parentworking and cmp:
1020 1020 fixup = []
1021 1021 # do a full compare of any files that might have changed
1022 1022 for f in sorted(cmp):
1023 1023 if (f not in ctx1 or ctx2.flags(f) != ctx1.flags(f)
1024 1024 or ctx1[f].cmp(ctx2[f].data())):
1025 1025 modified.append(f)
1026 1026 else:
1027 1027 fixup.append(f)
1028 1028
1029 1029 if listclean:
1030 1030 clean += fixup
1031 1031
1032 1032 # update dirstate for files that are actually clean
1033 1033 if fixup:
1034 1034 try:
1035 1035 # updating the dirstate is optional
1036 1036 # so we don't wait on the lock
1037 1037 wlock = self.wlock(False)
1038 1038 try:
1039 1039 for f in fixup:
1040 1040 self.dirstate.normal(f)
1041 1041 finally:
1042 1042 wlock.release()
1043 1043 except error.LockError:
1044 1044 pass
1045 1045
1046 1046 if not parentworking:
1047 1047 mf1 = mfmatches(ctx1)
1048 1048 if working:
1049 1049 # we are comparing working dir against non-parent
1050 1050 # generate a pseudo-manifest for the working dir
1051 1051 mf2 = mfmatches(self['.'])
1052 1052 for f in cmp + modified + added:
1053 1053 mf2[f] = None
1054 1054 mf2.set(f, ctx2.flags(f))
1055 1055 for f in removed:
1056 1056 if f in mf2:
1057 1057 del mf2[f]
1058 1058 else:
1059 1059 # we are comparing two revisions
1060 1060 deleted, unknown, ignored = [], [], []
1061 1061 mf2 = mfmatches(ctx2)
1062 1062
1063 1063 modified, added, clean = [], [], []
1064 1064 for fn in mf2:
1065 1065 if fn in mf1:
1066 1066 if (mf1.flags(fn) != mf2.flags(fn) or
1067 1067 (mf1[fn] != mf2[fn] and
1068 1068 (mf2[fn] or ctx1[fn].cmp(ctx2[fn].data())))):
1069 1069 modified.append(fn)
1070 1070 elif listclean:
1071 1071 clean.append(fn)
1072 1072 del mf1[fn]
1073 1073 else:
1074 1074 added.append(fn)
1075 1075 removed = mf1.keys()
1076 1076
1077 1077 r = modified, added, removed, deleted, unknown, ignored, clean
1078 1078 [l.sort() for l in r]
1079 1079 return r
1080 1080
1081 1081 def add(self, list):
1082 1082 wlock = self.wlock()
1083 1083 try:
1084 1084 rejected = []
1085 1085 for f in list:
1086 1086 p = self.wjoin(f)
1087 1087 try:
1088 1088 st = os.lstat(p)
1089 1089 except:
1090 1090 self.ui.warn(_("%s does not exist!\n") % f)
1091 1091 rejected.append(f)
1092 1092 continue
1093 1093 if st.st_size > 10000000:
1094 1094 self.ui.warn(_("%s: up to %d MB of RAM may be required "
1095 1095 "to manage this file\n"
1096 1096 "(use 'hg revert %s' to cancel the "
1097 1097 "pending addition)\n")
1098 1098 % (f, 3 * st.st_size // 1000000, f))
1099 1099 if not (stat.S_ISREG(st.st_mode) or stat.S_ISLNK(st.st_mode)):
1100 1100 self.ui.warn(_("%s not added: only files and symlinks "
1101 1101 "supported currently\n") % f)
1102 1102 rejected.append(p)
1103 1103 elif self.dirstate[f] in 'amn':
1104 1104 self.ui.warn(_("%s already tracked!\n") % f)
1105 1105 elif self.dirstate[f] == 'r':
1106 1106 self.dirstate.normallookup(f)
1107 1107 else:
1108 1108 self.dirstate.add(f)
1109 1109 return rejected
1110 1110 finally:
1111 1111 wlock.release()
1112 1112
1113 1113 def forget(self, list):
1114 1114 wlock = self.wlock()
1115 1115 try:
1116 1116 for f in list:
1117 1117 if self.dirstate[f] != 'a':
1118 1118 self.ui.warn(_("%s not added!\n") % f)
1119 1119 else:
1120 1120 self.dirstate.forget(f)
1121 1121 finally:
1122 1122 wlock.release()
1123 1123
1124 1124 def remove(self, list, unlink=False):
1125 1125 if unlink:
1126 1126 for f in list:
1127 1127 try:
1128 1128 util.unlink(self.wjoin(f))
1129 1129 except OSError, inst:
1130 1130 if inst.errno != errno.ENOENT:
1131 1131 raise
1132 1132 wlock = self.wlock()
1133 1133 try:
1134 1134 for f in list:
1135 1135 if unlink and os.path.exists(self.wjoin(f)):
1136 1136 self.ui.warn(_("%s still exists!\n") % f)
1137 1137 elif self.dirstate[f] == 'a':
1138 1138 self.dirstate.forget(f)
1139 1139 elif f not in self.dirstate:
1140 1140 self.ui.warn(_("%s not tracked!\n") % f)
1141 1141 else:
1142 1142 self.dirstate.remove(f)
1143 1143 finally:
1144 1144 wlock.release()
1145 1145
1146 1146 def undelete(self, list):
1147 1147 manifests = [self.manifest.read(self.changelog.read(p)[0])
1148 1148 for p in self.dirstate.parents() if p != nullid]
1149 1149 wlock = self.wlock()
1150 1150 try:
1151 1151 for f in list:
1152 1152 if self.dirstate[f] != 'r':
1153 1153 self.ui.warn(_("%s not removed!\n") % f)
1154 1154 else:
1155 1155 m = f in manifests[0] and manifests[0] or manifests[1]
1156 1156 t = self.file(f).read(m[f])
1157 1157 self.wwrite(f, t, m.flags(f))
1158 1158 self.dirstate.normal(f)
1159 1159 finally:
1160 1160 wlock.release()
1161 1161
1162 1162 def copy(self, source, dest):
1163 1163 p = self.wjoin(dest)
1164 1164 if not (os.path.exists(p) or os.path.islink(p)):
1165 1165 self.ui.warn(_("%s does not exist!\n") % dest)
1166 1166 elif not (os.path.isfile(p) or os.path.islink(p)):
1167 1167 self.ui.warn(_("copy failed: %s is not a file or a "
1168 1168 "symbolic link\n") % dest)
1169 1169 else:
1170 1170 wlock = self.wlock()
1171 1171 try:
1172 1172 if self.dirstate[dest] in '?r':
1173 1173 self.dirstate.add(dest)
1174 1174 self.dirstate.copy(source, dest)
1175 1175 finally:
1176 1176 wlock.release()
1177 1177
1178 1178 def heads(self, start=None):
1179 1179 heads = self.changelog.heads(start)
1180 1180 # sort the output in rev descending order
1181 1181 heads = [(-self.changelog.rev(h), h) for h in heads]
1182 1182 return [n for (r, n) in sorted(heads)]
1183 1183
1184 1184 def branchheads(self, branch=None, start=None, closed=False):
1185 1185 '''return a (possibly filtered) list of heads for the given branch
1186 1186
1187 1187 Heads are returned in topological order, from newest to oldest.
1188 1188 If branch is None, use the dirstate branch.
1189 1189 If start is not None, return only heads reachable from start.
1190 1190 If closed is True, return heads that are marked as closed as well.
1191 1191 '''
1192 1192 if branch is None:
1193 1193 branch = self[None].branch()
1194 1194 branches = self.branchmap()
1195 1195 if branch not in branches:
1196 1196 return []
1197 1197 # the cache returns heads ordered lowest to highest
1198 1198 bheads = list(reversed(branches[branch]))
1199 1199 if start is not None:
1200 1200 # filter out the heads that cannot be reached from startrev
1201 1201 fbheads = set(self.changelog.nodesbetween([start], bheads)[2])
1202 1202 bheads = [h for h in bheads if h in fbheads]
1203 1203 if not closed:
1204 1204 bheads = [h for h in bheads if
1205 1205 ('close' not in self.changelog.read(h)[5])]
1206 1206 return bheads
1207 1207
1208 1208 def branches(self, nodes):
1209 1209 if not nodes:
1210 1210 nodes = [self.changelog.tip()]
1211 1211 b = []
1212 1212 for n in nodes:
1213 1213 t = n
1214 1214 while 1:
1215 1215 p = self.changelog.parents(n)
1216 1216 if p[1] != nullid or p[0] == nullid:
1217 1217 b.append((t, n, p[0], p[1]))
1218 1218 break
1219 1219 n = p[0]
1220 1220 return b
1221 1221
1222 1222 def between(self, pairs):
1223 1223 r = []
1224 1224
1225 1225 for top, bottom in pairs:
1226 1226 n, l, i = top, [], 0
1227 1227 f = 1
1228 1228
1229 1229 while n != bottom and n != nullid:
1230 1230 p = self.changelog.parents(n)[0]
1231 1231 if i == f:
1232 1232 l.append(n)
1233 1233 f = f * 2
1234 1234 n = p
1235 1235 i += 1
1236 1236
1237 1237 r.append(l)
1238 1238
1239 1239 return r
1240 1240
1241 1241 def findincoming(self, remote, base=None, heads=None, force=False):
1242 1242 """Return list of roots of the subsets of missing nodes from remote
1243 1243
1244 1244 If base dict is specified, assume that these nodes and their parents
1245 1245 exist on the remote side and that no child of a node of base exists
1246 1246 in both remote and self.
1247 1247 Furthermore base will be updated to include the nodes that exists
1248 1248 in self and remote but no children exists in self and remote.
1249 1249 If a list of heads is specified, return only nodes which are heads
1250 1250 or ancestors of these heads.
1251 1251
1252 1252 All the ancestors of base are in self and in remote.
1253 1253 All the descendants of the list returned are missing in self.
1254 1254 (and so we know that the rest of the nodes are missing in remote, see
1255 1255 outgoing)
1256 1256 """
1257 1257 return self.findcommonincoming(remote, base, heads, force)[1]
1258 1258
1259 1259 def findcommonincoming(self, remote, base=None, heads=None, force=False):
1260 1260 """Return a tuple (common, missing roots, heads) used to identify
1261 1261 missing nodes from remote.
1262 1262
1263 1263 If base dict is specified, assume that these nodes and their parents
1264 1264 exist on the remote side and that no child of a node of base exists
1265 1265 in both remote and self.
1266 1266 Furthermore base will be updated to include the nodes that exists
1267 1267 in self and remote but no children exists in self and remote.
1268 1268 If a list of heads is specified, return only nodes which are heads
1269 1269 or ancestors of these heads.
1270 1270
1271 1271 All the ancestors of base are in self and in remote.
1272 1272 """
1273 1273 m = self.changelog.nodemap
1274 1274 search = []
1275 1275 fetch = set()
1276 1276 seen = set()
1277 1277 seenbranch = set()
1278 1278 if base is None:
1279 1279 base = {}
1280 1280
1281 1281 if not heads:
1282 1282 heads = remote.heads()
1283 1283
1284 1284 if self.changelog.tip() == nullid:
1285 1285 base[nullid] = 1
1286 1286 if heads != [nullid]:
1287 1287 return [nullid], [nullid], list(heads)
1288 1288 return [nullid], [], []
1289 1289
1290 1290 # assume we're closer to the tip than the root
1291 1291 # and start by examining the heads
1292 1292 self.ui.status(_("searching for changes\n"))
1293 1293
1294 1294 unknown = []
1295 1295 for h in heads:
1296 1296 if h not in m:
1297 1297 unknown.append(h)
1298 1298 else:
1299 1299 base[h] = 1
1300 1300
1301 1301 heads = unknown
1302 1302 if not unknown:
1303 1303 return base.keys(), [], []
1304 1304
1305 1305 req = set(unknown)
1306 1306 reqcnt = 0
1307 1307
1308 1308 # search through remote branches
1309 1309 # a 'branch' here is a linear segment of history, with four parts:
1310 1310 # head, root, first parent, second parent
1311 1311 # (a branch always has two parents (or none) by definition)
1312 1312 unknown = remote.branches(unknown)
1313 1313 while unknown:
1314 1314 r = []
1315 1315 while unknown:
1316 1316 n = unknown.pop(0)
1317 1317 if n[0] in seen:
1318 1318 continue
1319 1319
1320 1320 self.ui.debug("examining %s:%s\n"
1321 1321 % (short(n[0]), short(n[1])))
1322 1322 if n[0] == nullid: # found the end of the branch
1323 1323 pass
1324 1324 elif n in seenbranch:
1325 1325 self.ui.debug("branch already found\n")
1326 1326 continue
1327 1327 elif n[1] and n[1] in m: # do we know the base?
1328 1328 self.ui.debug("found incomplete branch %s:%s\n"
1329 1329 % (short(n[0]), short(n[1])))
1330 1330 search.append(n[0:2]) # schedule branch range for scanning
1331 1331 seenbranch.add(n)
1332 1332 else:
1333 1333 if n[1] not in seen and n[1] not in fetch:
1334 1334 if n[2] in m and n[3] in m:
1335 1335 self.ui.debug("found new changeset %s\n" %
1336 1336 short(n[1]))
1337 1337 fetch.add(n[1]) # earliest unknown
1338 1338 for p in n[2:4]:
1339 1339 if p in m:
1340 1340 base[p] = 1 # latest known
1341 1341
1342 1342 for p in n[2:4]:
1343 1343 if p not in req and p not in m:
1344 1344 r.append(p)
1345 1345 req.add(p)
1346 1346 seen.add(n[0])
1347 1347
1348 1348 if r:
1349 1349 reqcnt += 1
1350 1350 self.ui.progress(_('searching'), reqcnt, unit=_('queries'))
1351 1351 self.ui.debug("request %d: %s\n" %
1352 1352 (reqcnt, " ".join(map(short, r))))
1353 1353 for p in xrange(0, len(r), 10):
1354 1354 for b in remote.branches(r[p:p + 10]):
1355 1355 self.ui.debug("received %s:%s\n" %
1356 1356 (short(b[0]), short(b[1])))
1357 1357 unknown.append(b)
1358 1358
1359 1359 # do binary search on the branches we found
1360 1360 while search:
1361 1361 newsearch = []
1362 1362 reqcnt += 1
1363 1363 self.ui.progress(_('searching'), reqcnt, unit=_('queries'))
1364 1364 for n, l in zip(search, remote.between(search)):
1365 1365 l.append(n[1])
1366 1366 p = n[0]
1367 1367 f = 1
1368 1368 for i in l:
1369 1369 self.ui.debug("narrowing %d:%d %s\n" % (f, len(l), short(i)))
1370 1370 if i in m:
1371 1371 if f <= 2:
1372 1372 self.ui.debug("found new branch changeset %s\n" %
1373 1373 short(p))
1374 1374 fetch.add(p)
1375 1375 base[i] = 1
1376 1376 else:
1377 1377 self.ui.debug("narrowed branch search to %s:%s\n"
1378 1378 % (short(p), short(i)))
1379 1379 newsearch.append((p, i))
1380 1380 break
1381 1381 p, f = i, f * 2
1382 1382 search = newsearch
1383 1383
1384 1384 # sanity check our fetch list
1385 1385 for f in fetch:
1386 1386 if f in m:
1387 1387 raise error.RepoError(_("already have changeset ")
1388 1388 + short(f[:4]))
1389 1389
1390 1390 if base.keys() == [nullid]:
1391 1391 if force:
1392 1392 self.ui.warn(_("warning: repository is unrelated\n"))
1393 1393 else:
1394 1394 raise util.Abort(_("repository is unrelated"))
1395 1395
1396 1396 self.ui.debug("found new changesets starting at " +
1397 1397 " ".join([short(f) for f in fetch]) + "\n")
1398 1398
1399 1399 self.ui.progress(_('searching'), None, unit=_('queries'))
1400 1400 self.ui.debug("%d total queries\n" % reqcnt)
1401 1401
1402 1402 return base.keys(), list(fetch), heads
1403 1403
1404 1404 def findoutgoing(self, remote, base=None, heads=None, force=False):
1405 1405 """Return list of nodes that are roots of subsets not in remote
1406 1406
1407 1407 If base dict is specified, assume that these nodes and their parents
1408 1408 exist on the remote side.
1409 1409 If a list of heads is specified, return only nodes which are heads
1410 1410 or ancestors of these heads, and return a second element which
1411 1411 contains all remote heads which get new children.
1412 1412 """
1413 1413 if base is None:
1414 1414 base = {}
1415 1415 self.findincoming(remote, base, heads, force=force)
1416 1416
1417 1417 self.ui.debug("common changesets up to "
1418 1418 + " ".join(map(short, base.keys())) + "\n")
1419 1419
1420 1420 remain = set(self.changelog.nodemap)
1421 1421
1422 1422 # prune everything remote has from the tree
1423 1423 remain.remove(nullid)
1424 1424 remove = base.keys()
1425 1425 while remove:
1426 1426 n = remove.pop(0)
1427 1427 if n in remain:
1428 1428 remain.remove(n)
1429 1429 for p in self.changelog.parents(n):
1430 1430 remove.append(p)
1431 1431
1432 1432 # find every node whose parents have been pruned
1433 1433 subset = []
1434 1434 # find every remote head that will get new children
1435 1435 updated_heads = set()
1436 1436 for n in remain:
1437 1437 p1, p2 = self.changelog.parents(n)
1438 1438 if p1 not in remain and p2 not in remain:
1439 1439 subset.append(n)
1440 1440 if heads:
1441 1441 if p1 in heads:
1442 1442 updated_heads.add(p1)
1443 1443 if p2 in heads:
1444 1444 updated_heads.add(p2)
1445 1445
1446 1446 # this is the set of all roots we have to push
1447 1447 if heads:
1448 1448 return subset, list(updated_heads)
1449 1449 else:
1450 1450 return subset
1451 1451
1452 1452 def pull(self, remote, heads=None, force=False):
1453 1453 lock = self.lock()
1454 1454 try:
1455 1455 common, fetch, rheads = self.findcommonincoming(remote, heads=heads,
1456 1456 force=force)
1457 1457 if not fetch:
1458 1458 self.ui.status(_("no changes found\n"))
1459 1459 return 0
1460 1460
1461 1461 if fetch == [nullid]:
1462 1462 self.ui.status(_("requesting all changes\n"))
1463 1463 elif heads is None and remote.capable('changegroupsubset'):
1464 1464 # issue1320, avoid a race if remote changed after discovery
1465 1465 heads = rheads
1466 1466
1467 1467 if heads is None:
1468 1468 cg = remote.changegroup(fetch, 'pull')
1469 1469 else:
1470 1470 if not remote.capable('changegroupsubset'):
1471 1471 raise util.Abort(_("Partial pull cannot be done because "
1472 1472 "other repository doesn't support "
1473 1473 "changegroupsubset."))
1474 1474 cg = remote.changegroupsubset(fetch, heads, 'pull')
1475 1475 return self.addchangegroup(cg, 'pull', remote.url())
1476 1476 finally:
1477 1477 lock.release()
1478 1478
1479 1479 def push(self, remote, force=False, revs=None):
1480 1480 # there are two ways to push to remote repo:
1481 1481 #
1482 1482 # addchangegroup assumes local user can lock remote
1483 1483 # repo (local filesystem, old ssh servers).
1484 1484 #
1485 1485 # unbundle assumes local user cannot lock remote repo (new ssh
1486 1486 # servers, http servers).
1487 1487
1488 1488 if remote.capable('unbundle'):
1489 1489 return self.push_unbundle(remote, force, revs)
1490 1490 return self.push_addchangegroup(remote, force, revs)
1491 1491
1492 1492 def prepush(self, remote, force, revs):
1493 1493 '''Analyze the local and remote repositories and determine which
1494 1494 changesets need to be pushed to the remote. Return a tuple
1495 1495 (changegroup, remoteheads). changegroup is a readable file-like
1496 1496 object whose read() returns successive changegroup chunks ready to
1497 1497 be sent over the wire. remoteheads is the list of remote heads.
1498 1498 '''
1499 1499 common = {}
1500 1500 remote_heads = remote.heads()
1501 1501 inc = self.findincoming(remote, common, remote_heads, force=force)
1502 1502
1503 1503 update, updated_heads = self.findoutgoing(remote, common, remote_heads)
1504 1504 msng_cl, bases, heads = self.changelog.nodesbetween(update, revs)
1505 1505
1506 1506 def checkbranch(lheads, rheads, branchname=None):
1507 1507 '''
1508 1508 check whether there are more local heads than remote heads on
1509 1509 a specific branch.
1510 1510
1511 1511 lheads: local branch heads
1512 1512 rheads: remote branch heads
1513 1513 '''
1514 1514
1515 1515 warn = 0
1516 1516
1517 1517 if len(lheads) > len(rheads):
1518 1518 warn = 1
1519 1519 else:
1520 # add local heads involved in the push
1521 updatelheads = [self.changelog.heads(x, lheads)
1522 for x in update]
1523 newheads = set(sum(updatelheads, [])) & set(lheads)
1524
1525 if not newheads:
1526 return True
1527
1520 1528 # add heads we don't have or that are not involved in the push
1521 newheads = set(lheads)
1522 1529 for r in rheads:
1523 1530 if r in self.changelog.nodemap:
1524 1531 desc = self.changelog.heads(r, heads)
1525 1532 l = [h for h in heads if h in desc]
1526 1533 if not l:
1527 1534 newheads.add(r)
1528 1535 else:
1529 1536 newheads.add(r)
1530 1537 if len(newheads) > len(rheads):
1531 1538 warn = 1
1532 1539
1533 1540 if warn:
1534 1541 if branchname is not None:
1535 1542 msg = _("abort: push creates new remote heads"
1536 1543 " on branch '%s'!\n") % branchname
1537 1544 else:
1538 1545 msg = _("abort: push creates new remote heads!\n")
1539 1546 self.ui.warn(msg)
1540 1547 if len(lheads) > len(rheads):
1541 1548 self.ui.status(_("(did you forget to merge?"
1542 1549 " use push -f to force)\n"))
1543 1550 else:
1544 1551 self.ui.status(_("(you should pull and merge or"
1545 1552 " use push -f to force)\n"))
1546 1553 return False
1547 1554 return True
1548 1555
1549 1556 if not bases:
1550 1557 self.ui.status(_("no changes found\n"))
1551 1558 return None, 1
1552 1559 elif not force:
1553 1560 # Check for each named branch if we're creating new remote heads.
1554 1561 # To be a remote head after push, node must be either:
1555 1562 # - unknown locally
1556 1563 # - a local outgoing head descended from update
1557 1564 # - a remote head that's known locally and not
1558 1565 # ancestral to an outgoing head
1559 1566 #
1560 1567 # New named branches cannot be created without --force.
1561 1568
1562 1569 if remote_heads != [nullid]:
1563 1570 if remote.capable('branchmap'):
1564 1571 remotebrheads = remote.branchmap()
1565 1572
1566 1573 if not revs:
1567 1574 localbrheads = self.branchmap()
1568 1575 else:
1569 1576 localbrheads = {}
1570 1577 ctxgen = (self[n] for n in msng_cl)
1571 1578 self._updatebranchcache(localbrheads, ctxgen)
1572 1579
1573 1580 newbranches = list(set(localbrheads) - set(remotebrheads))
1574 1581 if newbranches: # new branch requires --force
1575 1582 branchnames = ', '.join("%s" % b for b in newbranches)
1576 1583 self.ui.warn(_("abort: push creates "
1577 1584 "new remote branches: %s!\n")
1578 1585 % branchnames)
1579 1586 # propose 'push -b .' in the msg too?
1580 1587 self.ui.status(_("(use 'hg push -f' to force)\n"))
1581 1588 return None, 0
1582 1589 for branch, lheads in localbrheads.iteritems():
1583 1590 if branch in remotebrheads:
1584 1591 rheads = remotebrheads[branch]
1585 1592 if not checkbranch(lheads, rheads, branch):
1586 1593 return None, 0
1587 1594 else:
1588 1595 if not checkbranch(heads, remote_heads):
1589 1596 return None, 0
1590 1597
1591 1598 if inc:
1592 1599 self.ui.warn(_("note: unsynced remote changes!\n"))
1593 1600
1594 1601
1595 1602 if revs is None:
1596 1603 # use the fast path, no race possible on push
1597 1604 nodes = self.changelog.findmissing(common.keys())
1598 1605 cg = self._changegroup(nodes, 'push')
1599 1606 else:
1600 1607 cg = self.changegroupsubset(update, revs, 'push')
1601 1608 return cg, remote_heads
1602 1609
1603 1610 def push_addchangegroup(self, remote, force, revs):
1604 1611 lock = remote.lock()
1605 1612 try:
1606 1613 ret = self.prepush(remote, force, revs)
1607 1614 if ret[0] is not None:
1608 1615 cg, remote_heads = ret
1609 1616 return remote.addchangegroup(cg, 'push', self.url())
1610 1617 return ret[1]
1611 1618 finally:
1612 1619 lock.release()
1613 1620
1614 1621 def push_unbundle(self, remote, force, revs):
1615 1622 # local repo finds heads on server, finds out what revs it
1616 1623 # must push. once revs transferred, if server finds it has
1617 1624 # different heads (someone else won commit/push race), server
1618 1625 # aborts.
1619 1626
1620 1627 ret = self.prepush(remote, force, revs)
1621 1628 if ret[0] is not None:
1622 1629 cg, remote_heads = ret
1623 1630 if force:
1624 1631 remote_heads = ['force']
1625 1632 return remote.unbundle(cg, remote_heads, 'push')
1626 1633 return ret[1]
1627 1634
1628 1635 def changegroupinfo(self, nodes, source):
1629 1636 if self.ui.verbose or source == 'bundle':
1630 1637 self.ui.status(_("%d changesets found\n") % len(nodes))
1631 1638 if self.ui.debugflag:
1632 1639 self.ui.debug("list of changesets:\n")
1633 1640 for node in nodes:
1634 1641 self.ui.debug("%s\n" % hex(node))
1635 1642
1636 1643 def changegroupsubset(self, bases, heads, source, extranodes=None):
1637 1644 """Compute a changegroup consisting of all the nodes that are
1638 1645 descendents of any of the bases and ancestors of any of the heads.
1639 1646 Return a chunkbuffer object whose read() method will return
1640 1647 successive changegroup chunks.
1641 1648
1642 1649 It is fairly complex as determining which filenodes and which
1643 1650 manifest nodes need to be included for the changeset to be complete
1644 1651 is non-trivial.
1645 1652
1646 1653 Another wrinkle is doing the reverse, figuring out which changeset in
1647 1654 the changegroup a particular filenode or manifestnode belongs to.
1648 1655
1649 1656 The caller can specify some nodes that must be included in the
1650 1657 changegroup using the extranodes argument. It should be a dict
1651 1658 where the keys are the filenames (or 1 for the manifest), and the
1652 1659 values are lists of (node, linknode) tuples, where node is a wanted
1653 1660 node and linknode is the changelog node that should be transmitted as
1654 1661 the linkrev.
1655 1662 """
1656 1663
1657 1664 # Set up some initial variables
1658 1665 # Make it easy to refer to self.changelog
1659 1666 cl = self.changelog
1660 1667 # msng is short for missing - compute the list of changesets in this
1661 1668 # changegroup.
1662 1669 if not bases:
1663 1670 bases = [nullid]
1664 1671 msng_cl_lst, bases, heads = cl.nodesbetween(bases, heads)
1665 1672
1666 1673 if extranodes is None:
1667 1674 # can we go through the fast path ?
1668 1675 heads.sort()
1669 1676 allheads = self.heads()
1670 1677 allheads.sort()
1671 1678 if heads == allheads:
1672 1679 return self._changegroup(msng_cl_lst, source)
1673 1680
1674 1681 # slow path
1675 1682 self.hook('preoutgoing', throw=True, source=source)
1676 1683
1677 1684 self.changegroupinfo(msng_cl_lst, source)
1678 1685 # Some bases may turn out to be superfluous, and some heads may be
1679 1686 # too. nodesbetween will return the minimal set of bases and heads
1680 1687 # necessary to re-create the changegroup.
1681 1688
1682 1689 # Known heads are the list of heads that it is assumed the recipient
1683 1690 # of this changegroup will know about.
1684 1691 knownheads = set()
1685 1692 # We assume that all parents of bases are known heads.
1686 1693 for n in bases:
1687 1694 knownheads.update(cl.parents(n))
1688 1695 knownheads.discard(nullid)
1689 1696 knownheads = list(knownheads)
1690 1697 if knownheads:
1691 1698 # Now that we know what heads are known, we can compute which
1692 1699 # changesets are known. The recipient must know about all
1693 1700 # changesets required to reach the known heads from the null
1694 1701 # changeset.
1695 1702 has_cl_set, junk, junk = cl.nodesbetween(None, knownheads)
1696 1703 junk = None
1697 1704 # Transform the list into a set.
1698 1705 has_cl_set = set(has_cl_set)
1699 1706 else:
1700 1707 # If there were no known heads, the recipient cannot be assumed to
1701 1708 # know about any changesets.
1702 1709 has_cl_set = set()
1703 1710
1704 1711 # Make it easy to refer to self.manifest
1705 1712 mnfst = self.manifest
1706 1713 # We don't know which manifests are missing yet
1707 1714 msng_mnfst_set = {}
1708 1715 # Nor do we know which filenodes are missing.
1709 1716 msng_filenode_set = {}
1710 1717
1711 1718 junk = mnfst.index[len(mnfst) - 1] # Get around a bug in lazyindex
1712 1719 junk = None
1713 1720
1714 1721 # A changeset always belongs to itself, so the changenode lookup
1715 1722 # function for a changenode is identity.
1716 1723 def identity(x):
1717 1724 return x
1718 1725
1719 1726 # If we determine that a particular file or manifest node must be a
1720 1727 # node that the recipient of the changegroup will already have, we can
1721 1728 # also assume the recipient will have all the parents. This function
1722 1729 # prunes them from the set of missing nodes.
1723 1730 def prune_parents(revlog, hasset, msngset):
1724 1731 for r in revlog.ancestors(*[revlog.rev(n) for n in hasset]):
1725 1732 msngset.pop(revlog.node(r), None)
1726 1733
1727 1734 # Use the information collected in collect_manifests_and_files to say
1728 1735 # which changenode any manifestnode belongs to.
1729 1736 def lookup_manifest_link(mnfstnode):
1730 1737 return msng_mnfst_set[mnfstnode]
1731 1738
1732 1739 # A function generating function that sets up the initial environment
1733 1740 # the inner function.
1734 1741 def filenode_collector(changedfiles):
1735 1742 # This gathers information from each manifestnode included in the
1736 1743 # changegroup about which filenodes the manifest node references
1737 1744 # so we can include those in the changegroup too.
1738 1745 #
1739 1746 # It also remembers which changenode each filenode belongs to. It
1740 1747 # does this by assuming the a filenode belongs to the changenode
1741 1748 # the first manifest that references it belongs to.
1742 1749 def collect_msng_filenodes(mnfstnode):
1743 1750 r = mnfst.rev(mnfstnode)
1744 1751 if r - 1 in mnfst.parentrevs(r):
1745 1752 # If the previous rev is one of the parents,
1746 1753 # we only need to see a diff.
1747 1754 deltamf = mnfst.readdelta(mnfstnode)
1748 1755 # For each line in the delta
1749 1756 for f, fnode in deltamf.iteritems():
1750 1757 f = changedfiles.get(f, None)
1751 1758 # And if the file is in the list of files we care
1752 1759 # about.
1753 1760 if f is not None:
1754 1761 # Get the changenode this manifest belongs to
1755 1762 clnode = msng_mnfst_set[mnfstnode]
1756 1763 # Create the set of filenodes for the file if
1757 1764 # there isn't one already.
1758 1765 ndset = msng_filenode_set.setdefault(f, {})
1759 1766 # And set the filenode's changelog node to the
1760 1767 # manifest's if it hasn't been set already.
1761 1768 ndset.setdefault(fnode, clnode)
1762 1769 else:
1763 1770 # Otherwise we need a full manifest.
1764 1771 m = mnfst.read(mnfstnode)
1765 1772 # For every file in we care about.
1766 1773 for f in changedfiles:
1767 1774 fnode = m.get(f, None)
1768 1775 # If it's in the manifest
1769 1776 if fnode is not None:
1770 1777 # See comments above.
1771 1778 clnode = msng_mnfst_set[mnfstnode]
1772 1779 ndset = msng_filenode_set.setdefault(f, {})
1773 1780 ndset.setdefault(fnode, clnode)
1774 1781 return collect_msng_filenodes
1775 1782
1776 1783 # We have a list of filenodes we think we need for a file, lets remove
1777 1784 # all those we know the recipient must have.
1778 1785 def prune_filenodes(f, filerevlog):
1779 1786 msngset = msng_filenode_set[f]
1780 1787 hasset = set()
1781 1788 # If a 'missing' filenode thinks it belongs to a changenode we
1782 1789 # assume the recipient must have, then the recipient must have
1783 1790 # that filenode.
1784 1791 for n in msngset:
1785 1792 clnode = cl.node(filerevlog.linkrev(filerevlog.rev(n)))
1786 1793 if clnode in has_cl_set:
1787 1794 hasset.add(n)
1788 1795 prune_parents(filerevlog, hasset, msngset)
1789 1796
1790 1797 # A function generator function that sets up the a context for the
1791 1798 # inner function.
1792 1799 def lookup_filenode_link_func(fname):
1793 1800 msngset = msng_filenode_set[fname]
1794 1801 # Lookup the changenode the filenode belongs to.
1795 1802 def lookup_filenode_link(fnode):
1796 1803 return msngset[fnode]
1797 1804 return lookup_filenode_link
1798 1805
1799 1806 # Add the nodes that were explicitly requested.
1800 1807 def add_extra_nodes(name, nodes):
1801 1808 if not extranodes or name not in extranodes:
1802 1809 return
1803 1810
1804 1811 for node, linknode in extranodes[name]:
1805 1812 if node not in nodes:
1806 1813 nodes[node] = linknode
1807 1814
1808 1815 # Now that we have all theses utility functions to help out and
1809 1816 # logically divide up the task, generate the group.
1810 1817 def gengroup():
1811 1818 # The set of changed files starts empty.
1812 1819 changedfiles = {}
1813 1820 collect = changegroup.collector(cl, msng_mnfst_set, changedfiles)
1814 1821
1815 1822 # Create a changenode group generator that will call our functions
1816 1823 # back to lookup the owning changenode and collect information.
1817 1824 group = cl.group(msng_cl_lst, identity, collect)
1818 1825 cnt = 0
1819 1826 for chnk in group:
1820 1827 yield chnk
1821 1828 self.ui.progress(_('bundling changes'), cnt, unit=_('chunks'))
1822 1829 cnt += 1
1823 1830 self.ui.progress(_('bundling changes'), None, unit=_('chunks'))
1824 1831
1825 1832
1826 1833 # Figure out which manifest nodes (of the ones we think might be
1827 1834 # part of the changegroup) the recipient must know about and
1828 1835 # remove them from the changegroup.
1829 1836 has_mnfst_set = set()
1830 1837 for n in msng_mnfst_set:
1831 1838 # If a 'missing' manifest thinks it belongs to a changenode
1832 1839 # the recipient is assumed to have, obviously the recipient
1833 1840 # must have that manifest.
1834 1841 linknode = cl.node(mnfst.linkrev(mnfst.rev(n)))
1835 1842 if linknode in has_cl_set:
1836 1843 has_mnfst_set.add(n)
1837 1844 prune_parents(mnfst, has_mnfst_set, msng_mnfst_set)
1838 1845 add_extra_nodes(1, msng_mnfst_set)
1839 1846 msng_mnfst_lst = msng_mnfst_set.keys()
1840 1847 # Sort the manifestnodes by revision number.
1841 1848 msng_mnfst_lst.sort(key=mnfst.rev)
1842 1849 # Create a generator for the manifestnodes that calls our lookup
1843 1850 # and data collection functions back.
1844 1851 group = mnfst.group(msng_mnfst_lst, lookup_manifest_link,
1845 1852 filenode_collector(changedfiles))
1846 1853 cnt = 0
1847 1854 for chnk in group:
1848 1855 yield chnk
1849 1856 self.ui.progress(_('bundling manifests'), cnt, unit=_('chunks'))
1850 1857 cnt += 1
1851 1858 self.ui.progress(_('bundling manifests'), None, unit=_('chunks'))
1852 1859
1853 1860 # These are no longer needed, dereference and toss the memory for
1854 1861 # them.
1855 1862 msng_mnfst_lst = None
1856 1863 msng_mnfst_set.clear()
1857 1864
1858 1865 if extranodes:
1859 1866 for fname in extranodes:
1860 1867 if isinstance(fname, int):
1861 1868 continue
1862 1869 msng_filenode_set.setdefault(fname, {})
1863 1870 changedfiles[fname] = 1
1864 1871 # Go through all our files in order sorted by name.
1865 1872 cnt = 0
1866 1873 for fname in sorted(changedfiles):
1867 1874 filerevlog = self.file(fname)
1868 1875 if not len(filerevlog):
1869 1876 raise util.Abort(_("empty or missing revlog for %s") % fname)
1870 1877 # Toss out the filenodes that the recipient isn't really
1871 1878 # missing.
1872 1879 if fname in msng_filenode_set:
1873 1880 prune_filenodes(fname, filerevlog)
1874 1881 add_extra_nodes(fname, msng_filenode_set[fname])
1875 1882 msng_filenode_lst = msng_filenode_set[fname].keys()
1876 1883 else:
1877 1884 msng_filenode_lst = []
1878 1885 # If any filenodes are left, generate the group for them,
1879 1886 # otherwise don't bother.
1880 1887 if len(msng_filenode_lst) > 0:
1881 1888 yield changegroup.chunkheader(len(fname))
1882 1889 yield fname
1883 1890 # Sort the filenodes by their revision #
1884 1891 msng_filenode_lst.sort(key=filerevlog.rev)
1885 1892 # Create a group generator and only pass in a changenode
1886 1893 # lookup function as we need to collect no information
1887 1894 # from filenodes.
1888 1895 group = filerevlog.group(msng_filenode_lst,
1889 1896 lookup_filenode_link_func(fname))
1890 1897 for chnk in group:
1891 1898 self.ui.progress(
1892 1899 _('bundling files'), cnt, item=fname, unit=_('chunks'))
1893 1900 cnt += 1
1894 1901 yield chnk
1895 1902 if fname in msng_filenode_set:
1896 1903 # Don't need this anymore, toss it to free memory.
1897 1904 del msng_filenode_set[fname]
1898 1905 # Signal that no more groups are left.
1899 1906 yield changegroup.closechunk()
1900 1907 self.ui.progress(_('bundling files'), None, unit=_('chunks'))
1901 1908
1902 1909 if msng_cl_lst:
1903 1910 self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source)
1904 1911
1905 1912 return util.chunkbuffer(gengroup())
1906 1913
1907 1914 def changegroup(self, basenodes, source):
1908 1915 # to avoid a race we use changegroupsubset() (issue1320)
1909 1916 return self.changegroupsubset(basenodes, self.heads(), source)
1910 1917
1911 1918 def _changegroup(self, nodes, source):
1912 1919 """Compute the changegroup of all nodes that we have that a recipient
1913 1920 doesn't. Return a chunkbuffer object whose read() method will return
1914 1921 successive changegroup chunks.
1915 1922
1916 1923 This is much easier than the previous function as we can assume that
1917 1924 the recipient has any changenode we aren't sending them.
1918 1925
1919 1926 nodes is the set of nodes to send"""
1920 1927
1921 1928 self.hook('preoutgoing', throw=True, source=source)
1922 1929
1923 1930 cl = self.changelog
1924 1931 revset = set([cl.rev(n) for n in nodes])
1925 1932 self.changegroupinfo(nodes, source)
1926 1933
1927 1934 def identity(x):
1928 1935 return x
1929 1936
1930 1937 def gennodelst(log):
1931 1938 for r in log:
1932 1939 if log.linkrev(r) in revset:
1933 1940 yield log.node(r)
1934 1941
1935 1942 def lookuprevlink_func(revlog):
1936 1943 def lookuprevlink(n):
1937 1944 return cl.node(revlog.linkrev(revlog.rev(n)))
1938 1945 return lookuprevlink
1939 1946
1940 1947 def gengroup():
1941 1948 '''yield a sequence of changegroup chunks (strings)'''
1942 1949 # construct a list of all changed files
1943 1950 changedfiles = {}
1944 1951 mmfs = {}
1945 1952 collect = changegroup.collector(cl, mmfs, changedfiles)
1946 1953
1947 1954 cnt = 0
1948 1955 for chnk in cl.group(nodes, identity, collect):
1949 1956 self.ui.progress(_('bundling changes'), cnt, unit=_('chunks'))
1950 1957 cnt += 1
1951 1958 yield chnk
1952 1959 self.ui.progress(_('bundling changes'), None, unit=_('chunks'))
1953 1960
1954 1961 mnfst = self.manifest
1955 1962 nodeiter = gennodelst(mnfst)
1956 1963 cnt = 0
1957 1964 for chnk in mnfst.group(nodeiter, lookuprevlink_func(mnfst)):
1958 1965 self.ui.progress(_('bundling manifests'), cnt, unit=_('chunks'))
1959 1966 cnt += 1
1960 1967 yield chnk
1961 1968 self.ui.progress(_('bundling manifests'), None, unit=_('chunks'))
1962 1969
1963 1970 cnt = 0
1964 1971 for fname in sorted(changedfiles):
1965 1972 filerevlog = self.file(fname)
1966 1973 if not len(filerevlog):
1967 1974 raise util.Abort(_("empty or missing revlog for %s") % fname)
1968 1975 nodeiter = gennodelst(filerevlog)
1969 1976 nodeiter = list(nodeiter)
1970 1977 if nodeiter:
1971 1978 yield changegroup.chunkheader(len(fname))
1972 1979 yield fname
1973 1980 lookup = lookuprevlink_func(filerevlog)
1974 1981 for chnk in filerevlog.group(nodeiter, lookup):
1975 1982 self.ui.progress(
1976 1983 _('bundling files'), cnt, item=fname, unit=_('chunks'))
1977 1984 cnt += 1
1978 1985 yield chnk
1979 1986 self.ui.progress(_('bundling files'), None, unit=_('chunks'))
1980 1987
1981 1988 yield changegroup.closechunk()
1982 1989
1983 1990 if nodes:
1984 1991 self.hook('outgoing', node=hex(nodes[0]), source=source)
1985 1992
1986 1993 return util.chunkbuffer(gengroup())
1987 1994
1988 1995 def addchangegroup(self, source, srctype, url, emptyok=False):
1989 1996 """add changegroup to repo.
1990 1997
1991 1998 return values:
1992 1999 - nothing changed or no source: 0
1993 2000 - more heads than before: 1+added heads (2..n)
1994 2001 - less heads than before: -1-removed heads (-2..-n)
1995 2002 - number of heads stays the same: 1
1996 2003 """
1997 2004 def csmap(x):
1998 2005 self.ui.debug("add changeset %s\n" % short(x))
1999 2006 return len(cl)
2000 2007
2001 2008 def revmap(x):
2002 2009 return cl.rev(x)
2003 2010
2004 2011 if not source:
2005 2012 return 0
2006 2013
2007 2014 self.hook('prechangegroup', throw=True, source=srctype, url=url)
2008 2015
2009 2016 changesets = files = revisions = 0
2010 2017
2011 2018 # write changelog data to temp files so concurrent readers will not see
2012 2019 # inconsistent view
2013 2020 cl = self.changelog
2014 2021 cl.delayupdate()
2015 2022 oldheads = len(cl.heads())
2016 2023
2017 2024 tr = self.transaction()
2018 2025 try:
2019 2026 trp = weakref.proxy(tr)
2020 2027 # pull off the changeset group
2021 2028 self.ui.status(_("adding changesets\n"))
2022 2029 clstart = len(cl)
2023 2030 class prog(object):
2024 2031 step = _('changesets')
2025 2032 count = 1
2026 2033 ui = self.ui
2027 2034 def __call__(self):
2028 2035 self.ui.progress(self.step, self.count, unit=_('chunks'))
2029 2036 self.count += 1
2030 2037 pr = prog()
2031 2038 chunkiter = changegroup.chunkiter(source, progress=pr)
2032 2039 if cl.addgroup(chunkiter, csmap, trp) is None and not emptyok:
2033 2040 raise util.Abort(_("received changelog group is empty"))
2034 2041 clend = len(cl)
2035 2042 changesets = clend - clstart
2036 2043 self.ui.progress(_('changesets'), None)
2037 2044
2038 2045 # pull off the manifest group
2039 2046 self.ui.status(_("adding manifests\n"))
2040 2047 pr.step = _('manifests')
2041 2048 pr.count = 1
2042 2049 chunkiter = changegroup.chunkiter(source, progress=pr)
2043 2050 # no need to check for empty manifest group here:
2044 2051 # if the result of the merge of 1 and 2 is the same in 3 and 4,
2045 2052 # no new manifest will be created and the manifest group will
2046 2053 # be empty during the pull
2047 2054 self.manifest.addgroup(chunkiter, revmap, trp)
2048 2055 self.ui.progress(_('manifests'), None)
2049 2056
2050 2057 needfiles = {}
2051 2058 if self.ui.configbool('server', 'validate', default=False):
2052 2059 # validate incoming csets have their manifests
2053 2060 for cset in xrange(clstart, clend):
2054 2061 mfest = self.changelog.read(self.changelog.node(cset))[0]
2055 2062 mfest = self.manifest.readdelta(mfest)
2056 2063 # store file nodes we must see
2057 2064 for f, n in mfest.iteritems():
2058 2065 needfiles.setdefault(f, set()).add(n)
2059 2066
2060 2067 # process the files
2061 2068 self.ui.status(_("adding file changes\n"))
2062 2069 pr.step = 'files'
2063 2070 pr.count = 1
2064 2071 while 1:
2065 2072 f = changegroup.getchunk(source)
2066 2073 if not f:
2067 2074 break
2068 2075 self.ui.debug("adding %s revisions\n" % f)
2069 2076 fl = self.file(f)
2070 2077 o = len(fl)
2071 2078 chunkiter = changegroup.chunkiter(source, progress=pr)
2072 2079 if fl.addgroup(chunkiter, revmap, trp) is None:
2073 2080 raise util.Abort(_("received file revlog group is empty"))
2074 2081 revisions += len(fl) - o
2075 2082 files += 1
2076 2083 if f in needfiles:
2077 2084 needs = needfiles[f]
2078 2085 for new in xrange(o, len(fl)):
2079 2086 n = fl.node(new)
2080 2087 if n in needs:
2081 2088 needs.remove(n)
2082 2089 if not needs:
2083 2090 del needfiles[f]
2084 2091 self.ui.progress(_('files'), None)
2085 2092
2086 2093 for f, needs in needfiles.iteritems():
2087 2094 fl = self.file(f)
2088 2095 for n in needs:
2089 2096 try:
2090 2097 fl.rev(n)
2091 2098 except error.LookupError:
2092 2099 raise util.Abort(
2093 2100 _('missing file data for %s:%s - run hg verify') %
2094 2101 (f, hex(n)))
2095 2102
2096 2103 newheads = len(cl.heads())
2097 2104 heads = ""
2098 2105 if oldheads and newheads != oldheads:
2099 2106 heads = _(" (%+d heads)") % (newheads - oldheads)
2100 2107
2101 2108 self.ui.status(_("added %d changesets"
2102 2109 " with %d changes to %d files%s\n")
2103 2110 % (changesets, revisions, files, heads))
2104 2111
2105 2112 if changesets > 0:
2106 2113 p = lambda: cl.writepending() and self.root or ""
2107 2114 self.hook('pretxnchangegroup', throw=True,
2108 2115 node=hex(cl.node(clstart)), source=srctype,
2109 2116 url=url, pending=p)
2110 2117
2111 2118 # make changelog see real files again
2112 2119 cl.finalize(trp)
2113 2120
2114 2121 tr.close()
2115 2122 finally:
2116 2123 del tr
2117 2124
2118 2125 if changesets > 0:
2119 2126 # forcefully update the on-disk branch cache
2120 2127 self.ui.debug("updating the branch cache\n")
2121 2128 self.branchtags()
2122 2129 self.hook("changegroup", node=hex(cl.node(clstart)),
2123 2130 source=srctype, url=url)
2124 2131
2125 2132 for i in xrange(clstart, clend):
2126 2133 self.hook("incoming", node=hex(cl.node(i)),
2127 2134 source=srctype, url=url)
2128 2135
2129 2136 # never return 0 here:
2130 2137 if newheads < oldheads:
2131 2138 return newheads - oldheads - 1
2132 2139 else:
2133 2140 return newheads - oldheads + 1
2134 2141
2135 2142
2136 2143 def stream_in(self, remote):
2137 2144 fp = remote.stream_out()
2138 2145 l = fp.readline()
2139 2146 try:
2140 2147 resp = int(l)
2141 2148 except ValueError:
2142 2149 raise error.ResponseError(
2143 2150 _('Unexpected response from remote server:'), l)
2144 2151 if resp == 1:
2145 2152 raise util.Abort(_('operation forbidden by server'))
2146 2153 elif resp == 2:
2147 2154 raise util.Abort(_('locking the remote repository failed'))
2148 2155 elif resp != 0:
2149 2156 raise util.Abort(_('the server sent an unknown error code'))
2150 2157 self.ui.status(_('streaming all changes\n'))
2151 2158 l = fp.readline()
2152 2159 try:
2153 2160 total_files, total_bytes = map(int, l.split(' ', 1))
2154 2161 except (ValueError, TypeError):
2155 2162 raise error.ResponseError(
2156 2163 _('Unexpected response from remote server:'), l)
2157 2164 self.ui.status(_('%d files to transfer, %s of data\n') %
2158 2165 (total_files, util.bytecount(total_bytes)))
2159 2166 start = time.time()
2160 2167 for i in xrange(total_files):
2161 2168 # XXX doesn't support '\n' or '\r' in filenames
2162 2169 l = fp.readline()
2163 2170 try:
2164 2171 name, size = l.split('\0', 1)
2165 2172 size = int(size)
2166 2173 except (ValueError, TypeError):
2167 2174 raise error.ResponseError(
2168 2175 _('Unexpected response from remote server:'), l)
2169 2176 self.ui.debug('adding %s (%s)\n' % (name, util.bytecount(size)))
2170 2177 # for backwards compat, name was partially encoded
2171 2178 ofp = self.sopener(store.decodedir(name), 'w')
2172 2179 for chunk in util.filechunkiter(fp, limit=size):
2173 2180 ofp.write(chunk)
2174 2181 ofp.close()
2175 2182 elapsed = time.time() - start
2176 2183 if elapsed <= 0:
2177 2184 elapsed = 0.001
2178 2185 self.ui.status(_('transferred %s in %.1f seconds (%s/sec)\n') %
2179 2186 (util.bytecount(total_bytes), elapsed,
2180 2187 util.bytecount(total_bytes / elapsed)))
2181 2188 self.invalidate()
2182 2189 return len(self.heads()) + 1
2183 2190
2184 2191 def clone(self, remote, heads=[], stream=False):
2185 2192 '''clone remote repository.
2186 2193
2187 2194 keyword arguments:
2188 2195 heads: list of revs to clone (forces use of pull)
2189 2196 stream: use streaming clone if possible'''
2190 2197
2191 2198 # now, all clients that can request uncompressed clones can
2192 2199 # read repo formats supported by all servers that can serve
2193 2200 # them.
2194 2201
2195 2202 # if revlog format changes, client will have to check version
2196 2203 # and format flags on "stream" capability, and use
2197 2204 # uncompressed only if compatible.
2198 2205
2199 2206 if stream and not heads and remote.capable('stream'):
2200 2207 return self.stream_in(remote)
2201 2208 return self.pull(remote, heads)
2202 2209
2203 2210 # used to avoid circular references so destructors work
2204 2211 def aftertrans(files):
2205 2212 renamefiles = [tuple(t) for t in files]
2206 2213 def a():
2207 2214 for src, dest in renamefiles:
2208 2215 util.rename(src, dest)
2209 2216 return a
2210 2217
2211 2218 def instance(ui, path, create):
2212 2219 return localrepository(ui, util.drop_scheme('file', path), create)
2213 2220
2214 2221 def islocal(path):
2215 2222 return True
@@ -1,197 +1,267 b''
1 1 #!/bin/sh
2 2
3 echo "[extensions]" >> $HGRCPATH
4 echo "graphlog=" >> $HGRCPATH
5
3 6 mkdir a
4 7 cd a
5 8 hg init
6 9 echo foo > t1
7 10 hg add t1
8 11 hg commit -m "1" -d "1000000 0"
9 12
10 13 cd ..
11 14 hg clone a b
12 15
13 16 cd a
14 17 echo foo > t2
15 18 hg add t2
16 19 hg commit -m "2" -d "1000000 0"
17 20
18 21 cd ../b
19 22 echo foo > t3
20 23 hg add t3
21 24 hg commit -m "3" -d "1000000 0"
22 25
23 26 hg push ../a
24 27 hg pull ../a
25 28 hg push ../a
26 29 hg merge
27 30 hg commit -m "4" -d "1000000 0"
28 31 hg push ../a
29 32 cd ..
30 33
31 34 hg init c
32 35 cd c
33 36 for i in 0 1 2; do
34 37 echo $i >> foo
35 38 hg ci -Am $i -d "1000000 0"
36 39 done
37 40 cd ..
38 41
39 42 hg clone c d
40 43 cd d
41 44 for i in 0 1; do
42 45 hg co -C $i
43 46 echo d-$i >> foo
44 47 hg ci -m d-$i -d "1000000 0"
45 48 done
46 49
47 50 HGMERGE=true hg merge 3
48 51 hg ci -m c-d -d "1000000 0"
49 52
50 53 hg push ../c; echo $?
51 54 hg push -r 2 ../c; echo $?
52 55 hg push -r 3 ../c; echo $?
53 56 hg push -r 3 -r 4 ../c; echo $?
54 57 hg push -f -r 3 -r 4 ../c; echo $?
55 58 hg push -r 5 ../c; echo $?
56 59
57 60 # issue 450
58 61 hg init ../e
59 62 hg push -r 0 ../e ; echo $?
60 63 hg push -r 1 ../e ; echo $?
61 64
62 65 cd ..
63 66
64 67 # issue 736
65 68 echo % issue 736
66 69 hg init f
67 70 cd f
68 71 hg -q branch a
69 72 echo 0 > foo
70 73 hg -q ci -d "1000000 0" -Am 0
71 74 echo 1 > foo
72 75 hg -q ci -d "1000000 0" -m 1
73 76 hg -q up 0
74 77 echo 2 > foo
75 78 hg -q ci -d "1000000 0" -m 2
76 79 hg -q up 0
77 80 hg -q branch b
78 81 echo 3 > foo
79 82 hg -q ci -d "1000000 0" -m 3
80 83 cd ..
81 84
82 85 hg -q clone f g
83 86 cd g
84 87
85 88 echo % push on existing branch and new branch
86 89 hg -q up 1
87 90 echo 4 > foo
88 91 hg -q ci -d "1000000 0" -m 4
89 92 hg -q up 0
90 93 echo 5 > foo
91 94 hg -q branch c
92 95 hg -q ci -d "1000000 0" -m 5
93 96 hg push ../f; echo $?
94 97 hg push -r 4 -r 5 ../f; echo $?
95 98
96 99 echo % multiple new branches
97 100 hg -q branch d
98 101 echo 6 > foo
99 102 hg -q ci -d "1000000 0" -m 6
100 103 hg push ../f; echo $?
101 104 hg push -r 4 -r 6 ../f; echo $?
102 105 cd ../g
103 106
104 107 echo % fail on multiple head push
105 108 hg -q up 1
106 109 echo 7 > foo
107 110 hg -q ci -d "1000000 0" -m 7
108 111 hg push -r 4 -r 7 ../f; echo $?
109 112
110 113 echo % push replacement head on existing branches
111 114 hg -q up 3
112 115 echo 8 > foo
113 116 hg -q ci -d "1000000 0" -m 8
114 117 hg push -r 7 -r 8 ../f; echo $?
115 118
116 119 echo % merge of branch a to other branch b followed by unrelated push on branch a
117 120 hg -q up 7
118 121 HGMERGE=true hg -q merge 8
119 122 hg -q ci -d "1000000 0" -m 9
120 123 hg -q up 8
121 124 echo 10 > foo
122 125 hg -q ci -d "1000000 0" -m 10
123 126 hg push -r 9 ../f; echo $?
124 127 hg push -r 10 ../f; echo $?
125 128
126 129 echo % cheating the counting algorithm
127 130 hg -q up 9
128 131 HGMERGE=true hg -q merge 2
129 132 hg -q ci -d "1000000 0" -m 11
130 133 hg -q up 1
131 134 echo 12 > foo
132 135 hg -q ci -d "1000000 0" -m 12
133 136 hg push -r 11 -r 12 ../f; echo $?
134 137
135 138 echo % checking prepush logic does not allow silently pushing multiple new heads
136 139 cd ..
137 140 hg init h
138 141 echo init > h/init
139 142 hg -R h ci -Am init
140 143 echo a > h/a
141 144 hg -R h ci -Am a
142 145 hg clone h i
143 146 hg -R h up 0
144 147 echo b > h/b
145 148 hg -R h ci -Am b
146 149 hg -R i up 0
147 150 echo c > i/c
148 151 hg -R i ci -Am c
149 152 hg -R i push h
150 153 echo
151 154
152 155 echo % check prepush logic with merged branches
153 156 hg init j
154 157 hg -R j branch a
155 158 echo init > j/foo
156 159 hg -R j ci -Am init
157 160 hg clone j k
158 161 echo a1 > j/foo
159 162 hg -R j ci -m a1
160 163 hg -R k branch b
161 164 echo b > k/foo
162 165 hg -R k ci -m b
163 166 hg -R k up 0
164 167 hg -R k merge b
165 168 hg -R k ci -m merge
166 169 hg -R k push -r a j
167 170 echo
168 171
169 172 echo % prepush -r should not allow you to sneak in new heads
170 173 hg init l
171 174 cd l
172 175 echo a >> foo
173 176 hg -q add foo
174 177 hg -q branch a
175 178 hg -q ci -d '0 0' -ma
176 179 hg -q up null
177 180 echo a >> foo
178 181 hg -q add foo
179 182 hg -q branch b
180 183 hg -q ci -d '0 0' -mb
181 184 cd ..
182 185 hg -q clone l m -u a
183 186 cd m
184 187 hg -q merge b
185 188 hg -q ci -d '0 0' -mmb
186 189 hg -q up 0
187 190 echo a >> foo
188 191 hg -q ci -ma2
189 192 hg -q up 2
190 193 echo a >> foo
191 194 hg -q branch -f b
192 195 hg -q ci -d '0 0' -mb2
193 196 hg -q merge 3
194 197 hg -q ci -d '0 0' -mma
195 198 hg push ../l -b b
199 cd ..
200
201 echo % check prepush with new branch head on former topo non-head
202 hg init n
203 cd n
204 hg branch A
205 echo a >a
206 hg ci -Ama
207 hg branch B
208 echo b >b
209 hg ci -Amb
210 # b is now branch head of B, and a topological head
211 # a is now branch head of A, but not a topological head
212 hg clone . inner
213 cd inner
214 hg up B
215 echo b1 >b1
216 hg ci -Amb1
217 # in the clone b1 is now the head of B
218 cd ..
219 hg up 0
220 echo a2 >a2
221 hg ci -Ama2
222 # a2 is now the new branch head of A, and a new topological head
223 # it replaces a former inner branch head, so it should at most warn about A, not B
224 echo %% glog of local
225 hg glog --template "{rev}: {branches} {desc}\n"
226 echo %% glog of remote
227 hg glog -R inner --template "{rev}: {branches} {desc}\n"
228 echo %% outgoing
229 hg out inner --template "{rev}: {branches} {desc}\n"
230 hg push inner
231 cd ..
232
233 echo % check prepush with new branch head on former topo head
234 hg init o
235 cd o
236 hg branch A
237 echo a >a
238 hg ci -Ama
239 hg branch B
240 echo b >b
241 hg ci -Amb
242 # b is now branch head of B, and a topological head
243 hg up 0
244 echo a1 >a1
245 hg ci -Ama1
246 # a1 is now branch head of A, and a topological head
247 hg clone . inner
248 cd inner
249 hg up B
250 echo b1 >b1
251 hg ci -Amb1
252 # in the clone b1 is now the head of B
253 cd ..
254 echo a2 >a2
255 hg ci -Ama2
256 # a2 is now the new branch head of A, and a topological head
257 # it replaces a former topological and branch head, so this should not warn
258 echo %% glog of local
259 hg glog --template "{rev}: {branches} {desc}\n"
260 echo %% glog of remote
261 hg glog -R inner --template "{rev}: {branches} {desc}\n"
262 echo %% outgoing
263 hg out inner --template "{rev}: {branches} {desc}\n"
264 hg push inner
265 cd ..
196 266
197 267 exit 0
@@ -1,177 +1,256 b''
1 1 updating to branch default
2 2 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
3 3 pushing to ../a
4 4 searching for changes
5 5 abort: push creates new remote heads on branch 'default'!
6 6 (you should pull and merge or use push -f to force)
7 7 pulling from ../a
8 8 searching for changes
9 9 adding changesets
10 10 adding manifests
11 11 adding file changes
12 12 added 1 changesets with 1 changes to 1 files (+1 heads)
13 13 (run 'hg heads' to see heads, 'hg merge' to merge)
14 14 pushing to ../a
15 15 searching for changes
16 16 abort: push creates new remote heads on branch 'default'!
17 17 (did you forget to merge? use push -f to force)
18 18 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
19 19 (branch merge, don't forget to commit)
20 20 pushing to ../a
21 21 searching for changes
22 22 adding changesets
23 23 adding manifests
24 24 adding file changes
25 25 added 2 changesets with 1 changes to 1 files
26 26 adding foo
27 27 updating to branch default
28 28 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
29 29 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
30 30 created new head
31 31 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
32 32 created new head
33 33 merging foo
34 34 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
35 35 (branch merge, don't forget to commit)
36 36 pushing to ../c
37 37 searching for changes
38 38 abort: push creates new remote heads on branch 'default'!
39 39 (did you forget to merge? use push -f to force)
40 40 1
41 41 pushing to ../c
42 42 searching for changes
43 43 no changes found
44 44 0
45 45 pushing to ../c
46 46 searching for changes
47 47 abort: push creates new remote heads on branch 'default'!
48 48 (you should pull and merge or use push -f to force)
49 49 1
50 50 pushing to ../c
51 51 searching for changes
52 52 abort: push creates new remote heads on branch 'default'!
53 53 (did you forget to merge? use push -f to force)
54 54 1
55 55 pushing to ../c
56 56 searching for changes
57 57 adding changesets
58 58 adding manifests
59 59 adding file changes
60 60 added 2 changesets with 2 changes to 1 files (+2 heads)
61 61 0
62 62 pushing to ../c
63 63 searching for changes
64 64 adding changesets
65 65 adding manifests
66 66 adding file changes
67 67 added 1 changesets with 1 changes to 1 files (-1 heads)
68 68 0
69 69 pushing to ../e
70 70 searching for changes
71 71 adding changesets
72 72 adding manifests
73 73 adding file changes
74 74 added 1 changesets with 1 changes to 1 files
75 75 0
76 76 pushing to ../e
77 77 searching for changes
78 78 adding changesets
79 79 adding manifests
80 80 adding file changes
81 81 added 1 changesets with 1 changes to 1 files
82 82 0
83 83 % issue 736
84 84 % push on existing branch and new branch
85 85 pushing to ../f
86 86 searching for changes
87 87 abort: push creates new remote branches: c!
88 88 (use 'hg push -f' to force)
89 89 1
90 90 pushing to ../f
91 91 searching for changes
92 92 abort: push creates new remote branches: c!
93 93 (use 'hg push -f' to force)
94 94 1
95 95 % multiple new branches
96 96 pushing to ../f
97 97 searching for changes
98 98 abort: push creates new remote branches: c, d!
99 99 (use 'hg push -f' to force)
100 100 1
101 101 pushing to ../f
102 102 searching for changes
103 103 abort: push creates new remote branches: c, d!
104 104 (use 'hg push -f' to force)
105 105 1
106 106 % fail on multiple head push
107 107 pushing to ../f
108 108 searching for changes
109 109 abort: push creates new remote heads on branch 'a'!
110 110 (you should pull and merge or use push -f to force)
111 111 1
112 112 % push replacement head on existing branches
113 113 pushing to ../f
114 114 searching for changes
115 115 adding changesets
116 116 adding manifests
117 117 adding file changes
118 118 added 2 changesets with 2 changes to 1 files
119 119 0
120 120 % merge of branch a to other branch b followed by unrelated push on branch a
121 121 pushing to ../f
122 122 searching for changes
123 123 adding changesets
124 124 adding manifests
125 125 adding file changes
126 126 added 1 changesets with 1 changes to 1 files (-1 heads)
127 127 0
128 128 pushing to ../f
129 129 searching for changes
130 130 adding changesets
131 131 adding manifests
132 132 adding file changes
133 133 added 1 changesets with 1 changes to 1 files (+1 heads)
134 134 0
135 135 % cheating the counting algorithm
136 136 pushing to ../f
137 137 searching for changes
138 138 adding changesets
139 139 adding manifests
140 140 adding file changes
141 141 added 2 changesets with 2 changes to 1 files
142 142 0
143 143 % checking prepush logic does not allow silently pushing multiple new heads
144 144 adding init
145 145 adding a
146 146 updating to branch default
147 147 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
148 148 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
149 149 adding b
150 150 created new head
151 151 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
152 152 adding c
153 153 created new head
154 154 pushing to h
155 155 searching for changes
156 156 abort: push creates new remote heads on branch 'default'!
157 157 (you should pull and merge or use push -f to force)
158 158
159 159 % check prepush logic with merged branches
160 160 marked working directory as branch a
161 161 adding foo
162 162 updating to branch a
163 163 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
164 164 marked working directory as branch b
165 165 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
166 166 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
167 167 (branch merge, don't forget to commit)
168 168 pushing to j
169 169 searching for changes
170 170 abort: push creates new remote branches: b!
171 171 (use 'hg push -f' to force)
172 172
173 173 % prepush -r should not allow you to sneak in new heads
174 174 pushing to ../l
175 175 searching for changes
176 176 abort: push creates new remote heads on branch 'a'!
177 177 (did you forget to merge? use push -f to force)
178 % check prepush with new branch head on former topo non-head
179 marked working directory as branch A
180 adding a
181 marked working directory as branch B
182 adding b
183 updating to branch B
184 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
185 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
186 adding b1
187 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
188 adding a2
189 created new head
190 %% glog of local
191 @ 2: A a2
192 |
193 | o 1: B b
194 |/
195 o 0: A a
196
197 %% glog of remote
198 @ 2: B b1
199 |
200 o 1: B b
201 |
202 o 0: A a
203
204 %% outgoing
205 comparing with inner
206 searching for changes
207 2: A a2
208 pushing to inner
209 searching for changes
210 note: unsynced remote changes!
211 adding changesets
212 adding manifests
213 adding file changes
214 added 1 changesets with 1 changes to 1 files (+1 heads)
215 % check prepush with new branch head on former topo head
216 marked working directory as branch A
217 adding a
218 marked working directory as branch B
219 adding b
220 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
221 adding a1
222 created new head
223 updating to branch A
224 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
225 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
226 adding b1
227 adding a2
228 %% glog of local
229 @ 3: A a2
230 |
231 o 2: A a1
232 |
233 | o 1: B b
234 |/
235 o 0: A a
236
237 %% glog of remote
238 @ 3: B b1
239 |
240 | o 2: A a1
241 | |
242 o | 1: B b
243 |/
244 o 0: A a
245
246 %% outgoing
247 comparing with inner
248 searching for changes
249 3: A a2
250 pushing to inner
251 searching for changes
252 note: unsynced remote changes!
253 adding changesets
254 adding manifests
255 adding file changes
256 added 1 changesets with 1 changes to 1 files
General Comments 0
You need to be logged in to leave comments. Login now