]> git.ipfire.org Git - thirdparty/git.git/commit - cache.h
checkout: avoid unnecessary match_pathspec calls
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Wed, 27 Mar 2013 05:58:21 +0000 (12:58 +0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 27 Mar 2013 15:53:15 +0000 (08:53 -0700)
commite721c1544f9166e8f08a7f8c0e6178ea3a45e255
treeed4045ef266521a7cf4e1bfb7d0591b1a6f79b28
parent7b592fadf1e23b10b913e0771b9f711770597266
checkout: avoid unnecessary match_pathspec calls

In checkout_paths() we do this

 - for all updated items, call match_pathspec
 - for all items, call match_pathspec (inside unmerge_cache)
 - for all items, call match_pathspec (for showing "path .. is unmerged)
 - for updated items, call match_pathspec and update paths

That's a lot of duplicate match_pathspec(s) and the function is not
exactly cheap to be called so many times, especially on large indexes.
This patch makes it call match_pathspec once per updated index entry,
save the result in ce_flags and reuse the results in the following
loops.

The changes in 0a1283b (checkout $tree $path: do not clobber local
changes in $path not in $tree - 2011-09-30) limit the affected paths
to ones we read from $tree. We do not do anything to other modified
entries in this case, so the "for all items" above could be modified
to "for all updated items". But..

The command's behavior now is modified slightly: unmerged entries that
match $path, but not updated by $tree, are now NOT touched.  Although
this should be considered a bug fix, not a regression. A new test is
added for this change.

And while at there, free ps_matched after use.

The following command is tested on webkit, 215k entries. The pattern
is chosen mainly to make match_pathspec sweat:

git checkout -- "*[a-zA-Z]*[a-zA-Z]*[a-zA-Z]*"

        before      after
real    0m3.493s    0m2.737s
user    0m2.239s    0m1.586s
sys     0m1.252s    0m1.151s

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/checkout.c
cache.h
resolve-undo.c
resolve-undo.h
t/t2022-checkout-paths.sh