From 5b66fb825576bc376413e7dc4f936b97ee5e5553 Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab Date: Mon, 10 Dec 2007 10:32:29 -0200 Subject: Improve check.pl to support gcc error style, and terse From: Mauro Carvalho Chehab With "make checkpatch", all c-compilation error parsers will be able to handle the error codes, allowing the user to navigate inside codingstyle errors as if they where generated by gcc. "make terse" will produce error codes using terse syntax, also common on development tools. Signed-off-by: Mauro Carvalho Chehab --- INSTALL | 9 ++++++ v4l/Makefile | 7 +++++ v4l/scripts/check.pl | 77 ++++++++++++++++++++++++++++++++++++++++++++++++---- 3 files changed, 88 insertions(+), 5 deletions(-) diff --git a/INSTALL b/INSTALL index 5812774d9..bad6ca80b 100644 --- a/INSTALL +++ b/INSTALL @@ -108,3 +108,12 @@ commit - commits the change, asking for a commit msg push - sends outgoing stuff to master repository checkemacs - checks codingstyle and reports to emacs + using "make checkemacs" at emacs compile menu, + will report the lines with errors inside emacs. + +checkpatch - checks codingstyle and reports using the same + format as c. This way, c error parsers will + handle it. + +checkterse - checks codingstyle and reports using terse + syntax, used on several compilaton tools. diff --git a/v4l/Makefile b/v4l/Makefile index f78842c70..60bf0b317 100644 --- a/v4l/Makefile +++ b/v4l/Makefile @@ -43,6 +43,7 @@ default:: config-compat.h Makefile.media links oss @echo Kernel build directory is $(OUTDIR) $(MAKE) -C $(OUTDIR) SUBDIRS=$(PWD) $(MYCFLAGS) modules ./scripts/rmmod.pl check +# $(MAKE) checkpatch ################################################# # Object specific rules @@ -399,6 +400,12 @@ push:: checkemacs:: scripts/check.pl +checketerse:: + scripts/check.pl -t + +checkpatch:: + scripts/check.pl -c + ################################################# # Help help:: diff --git a/v4l/scripts/check.pl b/v4l/scripts/check.pl index 3e6eb6e47..4958e281b 100755 --- a/v4l/scripts/check.pl +++ b/v4l/scripts/check.pl @@ -1,14 +1,46 @@ #!/usr/bin/perl +use Getopt::Std; +use strict; + +my $c_syntax=0; +my $fmt="--emacs"; + +my %opt; + +sub usage ($) +{ + my $name = shift; + printf "Usage: %s [] []\n". + "\t-c\tc style\n". + "\t-e\emacs style (default)\n". + "\t-t\terse style (default)\n". + "\t\tfile name to open. If file not specified, uses hg diff\n\n", $name; + + exit -1; +} + +if (not getopts('cet',\%opt) or defined $opt{'h'}) { + usage($0); +} my $cmd=shift; +if ($opt{'c'}) { + $c_syntax=1; +} + +if ($opt{'t'}) { + $fmt="--terse"; + $c_syntax=0; +} + if ($cmd) { $cmd="diff -upr /dev/null $cmd"; } else { $cmd="hg diff"; } -$checkpatch=$ENV{CHECKPATCH}; +my $checkpatch=$ENV{CHECKPATCH}; if (!$checkpatch) { $checkpatch="/lib/modules/`uname -r`/build/scripts/checkpatch.pl"; @@ -43,9 +75,44 @@ while () { } close IN; -open IN,"$cmd | $checkpatch -q --nosignoff --emacs -|"; -while () { - s|#[\d]+:\s*FILE:\s*|../|; - print "$_"; +open IN,"$cmd | $checkpatch -q --nosignoff $fmt -|"; + +my $err=""; +my $errline=""; +my $file=""; +my $ln_numb; + +my $pwd=`pwd`; +$pwd =~ s|/[^/]+\n$||; + +sub print_err() +{ + if ($err) { + printf STDERR "%s/%s: In '%s':\n", $pwd, $file, $errline; + printf STDERR "%s/%s:%d: %s\n", $pwd, $file, $ln_numb, $err; + $err=""; + } +} + +if ($c_syntax == 0) { + while () { + s|^#[\d]+:\s*FILE:\s*|../|; + print "$_"; + } +} else { + while () { + if (m/^\+(.*)\n/) { + $errline=$1; + } elsif (m/^\#\s*[\d]+\s*:\s*FILE:\s*([^\:]+)\:([\d]+)/) { + $file=$1; + $ln_numb=$2; + } elsif (m/^\-\s*\:\d+\:\s*(.*)\n/) { + print_err(); + $err = $1; + $err =~ s/WARNING/warning/; + } +# print "# $_"; + } } close IN; +print_err(); -- cgit v1.2.3