From: Chris Patti <cpatti@gmail.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: Michael J Gruber <git@drmicha.warpmail.net>,
Jonathan Nieder <jrnieder@gmail.com>,
git@vger.kernel.org
Subject: Re: Odd results writing a Git pre-receive hook to syntax check PHP files.
Date: Wed, 1 Sep 2010 09:43:23 -0400 [thread overview]
Message-ID: <AANLkTi=GP-3QV+2cVUV1zCS_n2gPie_rBmBnbXgmmbgn@mail.gmail.com> (raw)
In-Reply-To: <7vk4n68hpk.fsf@alter.siamese.dyndns.org>
On Tue, Aug 31, 2010 at 7:50 PM, Junio C Hamano <gitster@pobox.com> wrote:
> Chris Patti <cpatti@gmail.com> writes:
>
>> function parseCommit($old_sha1,$new_sha1) {
>> # if this is the first commit on a new branch, $old_sha1 will
>> be a bunch of zeroes, and so
>> # git diff --raw will fail, since there's no old ref to
>> compare against. So, we parse the
>> # results of git diff-tree -root=$new_sha1 instead to get the
>> blob and filename we'll need.
>> if (detectNewBranch($old_sha1,$new_sha1)) {
>> $diffcmd="git diff-tree --root $new_sha1";
>
> This somehow feels wrong. If the tree of the new commit is flat without
> subdirectory, the above would do, but don't you need "diff-tree -r" here?
>
That's a good point, I'll try creating a subdirectory in my testing,
thanks for pointing this out.
>> $regex="/\:\w+ \w+ \w+ (\w+) \w (.+)/";
>> }
>> else {
>> $diffcmd="git diff --raw $old_sha1 $new_sha1";
>
> And you are better off using "diff-tree -r" here instead of "diff --raw"
> here as well, to keep the input to your parser for both cases uniform.
r> The parser would be easier that way, no?
>
>> $regex="/\:\d+ \d+ \w+... (\w+)... \w\t(.+)/";
>> }
>
As you can see, it's just the regex that differs, so I'm not sure what
you mean by 'parser'. The power of regular expressions handles this
quite nicely, but I'll definitely consider that for a simplifying
rewrite in the future.
-Chris
--
Christopher Patti - Geek At Large | GTalk: cpatti@gmail.com | AIM:
chrisfeohpatti | P: (260) 54PATTI
"Technology challenges art, art inspires technology." - John Lasseter, Pixar
next prev parent reply other threads:[~2010-09-01 13:43 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-27 21:07 Odd results writing a Git pre-receive hook to syntax check PHP files Chris Patti
2010-08-30 10:55 ` Michael J Gruber
2010-08-30 14:03 ` Chris Patti
2010-08-30 14:16 ` Jonathan Nieder
2010-08-30 14:24 ` Chris Patti
2010-08-30 14:34 ` Example git hooks (Re: Odd results writing a Git pre-receive hook to syntax check PHP files.) Jonathan Nieder
2010-08-31 1:57 ` Todd Zullinger
2010-08-31 13:11 ` Chris Patti
2010-08-31 21:14 ` Chris Patti
2010-08-30 14:30 ` Odd results writing a Git pre-receive hook to syntax check PHP files Michael J Gruber
2010-08-30 15:00 ` Chris Patti
2010-08-30 16:27 ` Chris Patti
2010-08-30 16:32 ` Sverre Rabbelier
2010-08-30 16:33 ` Jonathan Nieder
2010-08-30 17:37 ` Chris Patti
2010-08-30 19:10 ` Michael J Gruber
2010-08-31 21:06 ` Chris Patti
2010-08-31 23:50 ` Junio C Hamano
2010-09-01 13:43 ` Chris Patti [this message]
2010-09-02 14:34 ` Chris Patti
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='AANLkTi=GP-3QV+2cVUV1zCS_n2gPie_rBmBnbXgmmbgn@mail.gmail.com' \
--to=cpatti@gmail.com \
--cc=git@drmicha.warpmail.net \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jrnieder@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).