提交 1f65f947 编写于 作者: A Andy Whitcroft 提交者: Linus Torvalds

checkpatch: add checks for question mark and colon spacing

Add checks for the question mark colon operator spacing, and also check
the other uses of colon.  Colon means a number of things:

 - it introduces the else part of the ?: operator,
 - it terminates a goto label,
 - it terminates the case value,
 - it separates the identifier from the bit size on bit fields, and
 - it is used to introduce option types in asm().
Signed-off-by: NAndy Whitcroft <apw@shadowen.org>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 d2506586
...@@ -689,17 +689,20 @@ sub cat_vet { ...@@ -689,17 +689,20 @@ sub cat_vet {
my $av_preprocessor = 0; my $av_preprocessor = 0;
my $av_pending; my $av_pending;
my @av_paren_type; my @av_paren_type;
my $av_pend_colon;
sub annotate_reset { sub annotate_reset {
$av_preprocessor = 0; $av_preprocessor = 0;
$av_pending = '_'; $av_pending = '_';
@av_paren_type = ('E'); @av_paren_type = ('E');
$av_pend_colon = 'O';
} }
sub annotate_values { sub annotate_values {
my ($stream, $type) = @_; my ($stream, $type) = @_;
my $res; my $res;
my $var = '_' x length($stream);
my $cur = $stream; my $cur = $stream;
print "$stream\n" if ($dbg_values > 1); print "$stream\n" if ($dbg_values > 1);
...@@ -784,7 +787,12 @@ sub annotate_values { ...@@ -784,7 +787,12 @@ sub annotate_values {
$av_pending = 'N'; $av_pending = 'N';
$type = 'N'; $type = 'N';
} elsif ($cur =~/^(return|case|else|goto)/o) { } elsif ($cur =~/^(case)/o) {
print "CASE($1)\n" if ($dbg_values > 1);
$av_pend_colon = 'C';
$type = 'N';
} elsif ($cur =~/^(return|else|goto)/o) {
print "KEYWORD($1)\n" if ($dbg_values > 1); print "KEYWORD($1)\n" if ($dbg_values > 1);
$type = 'N'; $type = 'N';
...@@ -809,6 +817,15 @@ sub annotate_values { ...@@ -809,6 +817,15 @@ sub annotate_values {
$type = 'V'; $type = 'V';
$av_pending = 'V'; $av_pending = 'V';
} elsif ($cur =~ /^($Ident\s*):/) {
if ($type eq 'E') {
$av_pend_colon = 'L';
} elsif ($type eq 'T') {
$av_pend_colon = 'B';
}
print "IDENT_COLON($1,$type>$av_pend_colon)\n" if ($dbg_values > 1);
$type = 'V';
} elsif ($cur =~ /^($Ident|$Constant)/o) { } elsif ($cur =~ /^($Ident|$Constant)/o) {
print "IDENT($1)\n" if ($dbg_values > 1); print "IDENT($1)\n" if ($dbg_values > 1);
$type = 'V'; $type = 'V';
...@@ -820,8 +837,24 @@ sub annotate_values { ...@@ -820,8 +837,24 @@ sub annotate_values {
} elsif ($cur =~/^(;|{|})/) { } elsif ($cur =~/^(;|{|})/) {
print "END($1)\n" if ($dbg_values > 1); print "END($1)\n" if ($dbg_values > 1);
$type = 'E'; $type = 'E';
$av_pend_colon = 'O';
} elsif ($cur =~ /^(\?)/o) {
print "QUESTION($1)\n" if ($dbg_values > 1);
$type = 'N';
} elsif ($cur =~ /^(:)/o) {
print "COLON($1,$av_pend_colon)\n" if ($dbg_values > 1);
substr($var, length($res), 1, $av_pend_colon);
if ($av_pend_colon eq 'C' || $av_pend_colon eq 'L') {
$type = 'E';
} else {
$type = 'N';
}
$av_pend_colon = 'O';
} elsif ($cur =~ /^(;|\?|:|\[)/o) { } elsif ($cur =~ /^(;|\[)/o) {
print "CLOSE($1)\n" if ($dbg_values > 1); print "CLOSE($1)\n" if ($dbg_values > 1);
$type = 'N'; $type = 'N';
...@@ -840,7 +873,7 @@ sub annotate_values { ...@@ -840,7 +873,7 @@ sub annotate_values {
} }
} }
return $res; return ($res, $var);
} }
sub possible { sub possible {
...@@ -1294,12 +1327,14 @@ sub process { ...@@ -1294,12 +1327,14 @@ sub process {
# Track the 'values' across context and added lines. # Track the 'values' across context and added lines.
my $opline = $line; $opline =~ s/^./ /; my $opline = $line; $opline =~ s/^./ /;
my $curr_values = annotate_values($opline . "\n", $prev_values); my ($curr_values, $curr_vars) =
annotate_values($opline . "\n", $prev_values);
$curr_values = $prev_values . $curr_values; $curr_values = $prev_values . $curr_values;
if ($dbg_values) { if ($dbg_values) {
my $outline = $opline; $outline =~ s/\t/ /g; my $outline = $opline; $outline =~ s/\t/ /g;
print "$linenr > .$outline\n"; print "$linenr > .$outline\n";
print "$linenr > $curr_values\n"; print "$linenr > $curr_values\n";
print "$linenr > $curr_vars\n";
} }
$prev_values = substr($curr_values, -1); $prev_values = substr($curr_values, -1);
...@@ -1490,7 +1525,8 @@ sub process { ...@@ -1490,7 +1525,8 @@ sub process {
<<=|>>=|<=|>=|==|!=| <<=|>>=|<=|>=|==|!=|
\+=|-=|\*=|\/=|%=|\^=|\|=|&=| \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
=>|->|<<|>>|<|>|=|!|~| =>|->|<<|>>|<|>|=|!|~|
&&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|% &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/|%|
\?|:
}x; }x;
my @elements = split(/($ops|;)/, $opline); my @elements = split(/($ops|;)/, $opline);
my $off = 0; my $off = 0;
...@@ -1554,6 +1590,9 @@ sub process { ...@@ -1554,6 +1590,9 @@ sub process {
# print "UNARY: <$op_left$op_type $is_unary $a:$op:$c> <$ca:$op:$cc> <$unary_ctx>\n"; # print "UNARY: <$op_left$op_type $is_unary $a:$op:$c> <$ca:$op:$cc> <$unary_ctx>\n";
#} #}
# Get the full operator variant.
my $opv = $op . substr($curr_vars, $off, 1);
# Ignore operators passed as parameters. # Ignore operators passed as parameters.
if ($op_type ne 'V' && if ($op_type ne 'V' &&
$ca =~ /\s$/ && $cc =~ /^\s*,/) { $ca =~ /\s$/ && $cc =~ /^\s*,/) {
...@@ -1571,8 +1610,10 @@ sub process { ...@@ -1571,8 +1610,10 @@ sub process {
# // is a comment # // is a comment
} elsif ($op eq '//') { } elsif ($op eq '//') {
# -> should have no spaces # No spaces for:
} elsif ($op eq '->') { # ->
# : when part of a bitfield
} elsif ($op eq '->' || $opv eq ':B') {
if ($ctx =~ /Wx.|.xW/) { if ($ctx =~ /Wx.|.xW/) {
ERROR("spaces prohibited around that '$op' $at\n" . $hereptr); ERROR("spaces prohibited around that '$op' $at\n" . $hereptr);
} }
...@@ -1628,11 +1669,33 @@ sub process { ...@@ -1628,11 +1669,33 @@ sub process {
$hereptr); $hereptr);
} }
# A colon needs no spaces before when it is
# terminating a case value or a label.
} elsif ($opv eq ':C' || $opv eq ':L') {
if ($ctx =~ /Wx./) {
ERROR("space prohibited before that '$op' $at\n" . $hereptr);
}
# All the others need spaces both sides. # All the others need spaces both sides.
} elsif ($ctx !~ /[EWC]x[CWE]/) { } elsif ($ctx !~ /[EWC]x[CWE]/) {
my $ok = 0;
# Ignore email addresses <foo@bar> # Ignore email addresses <foo@bar>
if (!($op eq '<' && $cb =~ /$;\S+\@\S+>/) && if (($op eq '<' &&
!($op eq '>' && $cb =~ /<\S+\@\S+$;/)) { $cc =~ /^\S+\@\S+>/) ||
($op eq '>' &&
$ca =~ /<\S+\@\S+$/))
{
$ok = 1;
}
# Ignore ?:
if (($opv eq ':O' && $ca =~ /\?$/) ||
($op eq '?' && $cc =~ /^:/)) {
$ok = 1;
}
if ($ok == 0) {
ERROR("spaces required around that '$op' $at\n" . $hereptr); ERROR("spaces required around that '$op' $at\n" . $hereptr);
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册