From: Stefan Beller <hidden> Date: 2016-06-15 23:07:15
Instead of redirecting all grep output to /dev/null, we can just
pass in -q instead. This preserves the exit code behavior, but is faster.
As grep returns true if it finds at least one match, grep can exit promptly
after finding the first line and doesn't need to find more occurrences
which would be redirected to /dev/null anyways.
This is true for the gnu version of grep. I am not sure if all
versions of grep support this optimization. In case it is not,
we'd revert this patch.
Signed-off-by: Stefan Beller <redacted>
---
git-bisect.sh | 5 ++---
git-rebase--interactive.sh | 2 +-
git-rebase.sh | 2 +-
3 files changed, 4 insertions(+), 5 deletions(-)
@@ -519,8 +519,7 @@ exit code \$res from '\$command' is < 0 or >= 128" >&2cat"$GIT_DIR/BISECT_RUN"-ifsane_grep"first $TERM_BAD commit could be any of""$GIT_DIR/BISECT_RUN"\->/dev/null+ifsane_grep-q"first $TERM_BAD commit could be any of""$GIT_DIR/BISECT_RUN"thengettextln"bisect run cannot continue any more">&2exit$res
@@ -533,7 +532,7 @@ exit code \$res from '\$command' is < 0 or >= 128" >&2exit$resfi-ifsane_grep"is the first $TERM_BAD commit""$GIT_DIR/BISECT_RUN">/dev/null+ifsane_grep-q"is the first $TERM_BAD commit""$GIT_DIR/BISECT_RUN"thengettextln"bisect run success"exit0;
@@ -1225,7 +1225,7 @@ thengitrev-list$revisions|whilereadrevdo-iftest-f"$rewritten"/$rev&&test"$(sane_grep"$rev""$state_dir"/not-cherry-picks)"=""+iftest-f"$rewritten"/$rev&&test"$(sane_grep-q"$rev""$state_dir"/not-cherry-picks)"then# Use -f2 because if rev-list is telling us this commit is# not worthwhile, we don't want to track its multiple heads,
From: Mikael Magnusson <hidden> Date: 2016-06-15 23:07:16
On Mon, Nov 16, 2015 at 10:43 PM, Stefan Beller [off-list ref] wrote:
Instead of redirecting all grep output to /dev/null, we can just
pass in -q instead. This preserves the exit code behavior, but is faster.
As grep returns true if it finds at least one match, grep can exit promptly
after finding the first line and doesn't need to find more occurrences
which would be redirected to /dev/null anyways.
This is true for the gnu version of grep. I am not sure if all
versions of grep support this optimization. In case it is not,
we'd revert this patch.
From: Stefan Beller <hidden> Date: 2016-06-15 23:07:16
+cc Andrey Rybak, who I credit for finding the reasoning below (he
sent to me privately,
without cc'ing the list)
On Mon, Nov 16, 2015 at 4:59 PM, Mikael Magnusson [off-list ref] wrote:
On Mon, Nov 16, 2015 at 10:43 PM, Stefan Beller [off-list ref] wrote:
quoted
Instead of redirecting all grep output to /dev/null, we can just
pass in -q instead. This preserves the exit code behavior, but is faster.
As grep returns true if it finds at least one match, grep can exit promptly
after finding the first line and doesn't need to find more occurrences
which would be redirected to /dev/null anyways.
This is true for the gnu version of grep. I am not sure if all
versions of grep support this optimization. In case it is not,
we'd revert this patch.
-q
--quiet
--silent
Quiet; do not write anything to standard output. Exit immediately with
zero status if any match is found, even if an error was detected. Also
see the -s or --no-messages option. (-q is specified by POSIX.)
-s
--no-messages
Suppress error messages about nonexistent or unreadable files.
Portability note: unlike GNU grep, 7th Edition Unix grep did not
conform to POSIX, because it lacked -q and its -s option behaved like
GNU grep's -q option.1
USG-style grep also lacked -q but its -s option behaved like GNU
grep's. Portable shell scripts should avoid both -q and -s and should
redirect standard and error output to /dev/null instead. (-s is
specified by POSIX.)
Reading that in full, I think my patch is a bad idea.
From http://www.gnu.org/software/grep/manual/grep.html :
[...]
Portability note: unlike GNU grep, 7th Edition Unix grep did not
conform to POSIX, because it lacked -q and its -s option behaved like
GNU grep's -q option.1
USG-style grep also lacked -q but its -s option behaved like GNU
grep's. Portable shell scripts should avoid both -q and -s and should
redirect standard and error output to /dev/null instead. (-s is
specified by POSIX.)
I wonder what the current state of "most" systems is. 7th Edition Unix
is probably old enough for us not to worry about. :)
For the git project, being in POSIX is not an automatic pass for a
feature. We care about real systems. I note that we do have quite a bit
of "grep -q" in the test scripts, but not in the actual git-scripts.
This came up as recently as 2008 (e.g., aadbe44), but I don't recall
anybody complaining recently. Perhaps Solaris grep finally grew a "-q"
option. Or maybe nobody runs the tests there anymore.
Since this is an optimization, I'd be more interested if we had numbers
for the improvement. Are these files really big enough that grepping the
rest of the file is noticeable versus the cost of starting grep in the
first place?
If this is something measurable, we might be able to make it a build
flag (e.g., by wrapping these grep invocations in a shell function in
git-sh-setup.sh, and picking the implementation at build time).
-Peff