Mon, 14 Dec 2015 20:47:22 -0500 merge: rework manifestmerge to use a matcher
Augie Fackler <augie@google.com> [Mon, 14 Dec 2015 20:47:22 -0500] rev 27346
merge: rework manifestmerge to use a matcher This opens the door to working slightly more closely with the manifest type and letting it optimize out some of the diff comparisons for us, and also makes life significantly easier for narrowhg.
Mon, 14 Dec 2015 20:37:41 -0500 merge: restate calculateupdates in terms of a matcher
Augie Fackler <augie@google.com> [Mon, 14 Dec 2015 20:37:41 -0500] rev 27345
merge: restate calculateupdates in terms of a matcher Once we get a matcher down into manifestmerge, we can make narrowhg work more easily and potentially let manifest.match().diff() do less work in manifestmerge.
Mon, 14 Dec 2015 18:54:03 -0500 merge: have merge.update use a matcher instead of partial fn
Augie Fackler <augie@google.com> [Mon, 14 Dec 2015 18:54:03 -0500] rev 27344
merge: have merge.update use a matcher instead of partial fn This is relatively rarely used functionality, but migrating this to a matcher will make future work on narrow clones more feasible.
Sat, 12 Dec 2015 09:57:05 -0800 treemanifest: don't iterate entire matching submanifests on match()
Martin von Zweigbergk <martinvonz@google.com> [Sat, 12 Dec 2015 09:57:05 -0800] rev 27343
treemanifest: don't iterate entire matching submanifests on match() Before 2773540c3650 (match: remove unnecessary optimization where visitdir() returns 'all', 2015-05-06), match.visitdir() used to return the special value 'all' to indicate that it was known that all subdirectories would also be included in the match. The purpose for that value was to avoid calling the matcher on all the paths. It turned out that calling the matcher was not a problem, so the special return value was removed and the code was simplified. However, if we use the same special value for not just avoiding calling the matcher on each file, but to avoid iterating over each file, it's a much bigger win. On commands like hg st --rev .^ --rev . dom/ we run the matcher (dom/) on the two manifests, then diff the narrowed manifest. If the size of the match is much larger than the size of the diff, this is wasteful. In the above case, we would end up iterating over the 15k-or-so files in dom/ for each of the manifests, only to later discover that they are mostly the same. This means that runningt the command above is usually slower than getting the status for the entire repo, because that code avoids calling treemanifest.match() and only calls treemanifest.diff(), which loads only what's needed for the diff. Let's fix this by reintroducing the 'all' value in match.visitdir() and making treemanifest.match() return a lazy copy of the manifest from dom/ and down (in the above case). This speeds up the above command on the Firefox repo from 0.357s to 0.137s (best of 5). The wider the match, the bigger the speedup.
Sat, 12 Dec 2015 20:59:37 -0800 pathencode: remove an unused assignment
Bryan O'Sullivan <bos@serpentine.com> [Sat, 12 Dec 2015 20:59:37 -0800] rev 27342
pathencode: remove an unused assignment
Sat, 12 Dec 2015 20:57:01 -0800 parsers: narrow scope of a variable to be less confusing
Bryan O'Sullivan <bos@serpentine.com> [Sat, 12 Dec 2015 20:57:01 -0800] rev 27341
parsers: narrow scope of a variable to be less confusing
Sat, 12 Dec 2015 20:10:33 -0800 manifest: fix formatting
Bryan O'Sullivan <bos@serpentine.com> [Sat, 12 Dec 2015 20:10:33 -0800] rev 27340
manifest: fix formatting One poor unfortunate line was hanging way off the right hand side of the universe. Rescued it.
Sat, 12 Dec 2015 13:39:29 -0500 parsers: use absolute_import
Gregory Szorc <gregory.szorc@gmail.com> [Sat, 12 Dec 2015 13:39:29 -0500] rev 27339
parsers: use absolute_import
Sat, 12 Dec 2015 13:46:32 -0500 osutil: use absolute_import
Gregory Szorc <gregory.szorc@gmail.com> [Sat, 12 Dec 2015 13:46:32 -0500] rev 27338
osutil: use absolute_import
Sat, 12 Dec 2015 13:37:56 -0500 mpatch: use absolute_import
Gregory Szorc <gregory.szorc@gmail.com> [Sat, 12 Dec 2015 13:37:56 -0500] rev 27337
mpatch: use absolute_import While I was here, I removed the try..except around importing cStringIO because cStringIO should always be importable on modern Python versions. We already do an unconditional import in other files.
Sat, 12 Dec 2015 13:35:41 -0500 diffhelpers: use absolute_import
Gregory Szorc <gregory.szorc@gmail.com> [Sat, 12 Dec 2015 13:35:41 -0500] rev 27336
diffhelpers: use absolute_import
Sat, 12 Dec 2015 13:34:55 -0500 bdiff: use absolute_import
Gregory Szorc <gregory.szorc@gmail.com> [Sat, 12 Dec 2015 13:34:55 -0500] rev 27335
bdiff: use absolute_import
Sat, 12 Dec 2015 13:33:47 -0500 base85: use absolute_import
Gregory Szorc <gregory.szorc@gmail.com> [Sat, 12 Dec 2015 13:33:47 -0500] rev 27334
base85: use absolute_import
Sat, 12 Dec 2015 13:32:25 -0500 destutil: use absolute_import
Gregory Szorc <gregory.szorc@gmail.com> [Sat, 12 Dec 2015 13:32:25 -0500] rev 27333
destutil: use absolute_import
Sat, 12 Dec 2015 13:30:47 -0500 obsolete: use absolute_import
Gregory Szorc <gregory.szorc@gmail.com> [Sat, 12 Dec 2015 13:30:47 -0500] rev 27332
obsolete: use absolute_import
Sat, 12 Dec 2015 13:27:31 -0500 contrib: ignore empty files in check-py3-compat.py
Gregory Szorc <gregory.szorc@gmail.com> [Sat, 12 Dec 2015 13:27:31 -0500] rev 27331
contrib: ignore empty files in check-py3-compat.py
Sat, 12 Dec 2015 13:23:29 -0500 doc: make gendoc.py module import policy aware
Gregory Szorc <gregory.szorc@gmail.com> [Sat, 12 Dec 2015 13:23:29 -0500] rev 27330
doc: make gendoc.py module import policy aware Without this, running gendoc.py during an install without C modules available (via `make local`) will result in an import failure because the default module load policy insists on C modules. We also remove the sys.path adjustment because it is no longer needed since our magic importer handles things.
Fri, 11 Dec 2015 17:45:19 -0600 merge with stable
Matt Mackall <mpm@selenic.com> [Fri, 11 Dec 2015 17:45:19 -0600] rev 27329
merge with stable
Fri, 11 Dec 2015 12:21:26 +0000 check-commit: add a test for the patch checking script in contrib
Pierre-Yves David <pierre-yves.david@fb.com> [Fri, 11 Dec 2015 12:21:26 +0000] rev 27328
check-commit: add a test for the patch checking script in contrib This introduces a test for the change introduced in 8f5735b4aca5.
Thu, 10 Dec 2015 21:33:55 -0800 match: use re2 in readpatternfile if possible
Bryan O'Sullivan <bos@serpentine.com> [Thu, 10 Dec 2015 21:33:55 -0800] rev 27327
match: use re2 in readpatternfile if possible This has a small, but measurable, effect on performance if a pattern file is very large. In an artificial test with 200,000 lines of pattern data, using re2 reduced read time by 200 milliseconds.
Thu, 10 Dec 2015 21:32:19 -0800 test-hgignore.t: add tests for comments
Bryan O'Sullivan <bos@serpentine.com> [Thu, 10 Dec 2015 21:32:19 -0800] rev 27326
test-hgignore.t: add tests for comments Although support for comments in hgignore files has existed for a while, it was previously untested.
Wed, 09 Dec 2015 05:56:54 +0000 help: fix help -c/help -e/help -k
timeless <timeless@mozdev.org> [Wed, 09 Dec 2015 05:56:54 +0000] rev 27325
help: fix help -c/help -e/help -k Before, hg help -c was the same as hg help, now it only shows commands. Before, hg help -e was the same as hg help, now it only shows extensions. Before, hg help -k crashed, now it shows all topics.
Wed, 09 Dec 2015 19:09:35 +0000 help: call filtercmd from topicmatch
timeless <timeless@mozdev.org> [Wed, 09 Dec 2015 19:09:35 +0000] rev 27324
help: call filtercmd from topicmatch update test coverage to explicitly define when help -c should list debug/deprecated items.
Wed, 09 Dec 2015 19:09:06 +0000 help: refactor filtercmd
timeless <timeless@mozdev.org> [Wed, 09 Dec 2015 19:09:06 +0000] rev 27323
help: refactor filtercmd
Mon, 30 Nov 2015 19:28:26 +0000 transplant: use Oxford comma
timeless <timeless@mozdev.org> [Mon, 30 Nov 2015 19:28:26 +0000] rev 27322
transplant: use Oxford comma
Wed, 09 Dec 2015 17:01:27 -0800 crecord: add dictionary to default return value of filterpatch
Laurent Charignon <lcharignon@fb.com> [Wed, 09 Dec 2015 17:01:27 -0800] rev 27321
crecord: add dictionary to default return value of filterpatch When committing interactively without changes, the user would get a ValueError exception. This patch adds a dictionary to the return value of filterpatch when there are no files to change.
Mon, 07 Dec 2015 21:42:50 +0900 paths: include #fragment again stable
Yuya Nishihara <yuya@tcha.org> [Mon, 07 Dec 2015 21:42:50 +0900] rev 27320
paths: include #fragment again Since 5f2a4fc3c4fa, #fragment was missing in "hg paths" output because path.loc was changed to a parsed URL. "hg paths" should use path.rawloc to show complete URLs.
Wed, 02 Dec 2015 16:12:15 -0800 discovery: properly filter changeset in 'peer.known' (issue4982)
Pierre-Yves David <pierre-yves.david@fb.com> [Wed, 02 Dec 2015 16:12:15 -0800] rev 27319
discovery: properly filter changeset in 'peer.known' (issue4982) The 'peer.known' call (handled at the repository level) was applying its own manual filtering (looking at phases) instead of relying on the repoview mechanism. This led to the discovery finding more "common" node that 'getbundle' was willing to recognised. From there, bad things happen, issue4982 is a symptom of it. While situations like described in issue4982 can still happen because of race conditions, fixing 'peer.known' is important for consistency in all cases. We update the code to use 'repoview' filtering. This lead to small changes in the tests for exchanging obsolescence marker because the discovery yields different results. The test affected in 'test-obsolete-changeset-exchange.t' is a test for issue4982 getting back to its expected state.
(0) -10000 -3000 -1000 -300 -100 -50 -28 +28 +50 +100 +300 +1000 +3000 +10000 tip