about summary refs log tree commit diff
path: root/scripts/begin-end-check.pl
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2007-07-12 18:26:36 +0000
committerJakub Jelinek <jakub@redhat.com>2007-07-12 18:26:36 +0000
commit0ecb606cb6cf65de1d9fc8a919bceb4be476c602 (patch)
tree2ea1f8305970753e4a657acb2ccc15ca3eec8e2c /scripts/begin-end-check.pl
parent7d58530341304d403a6626d7f7a1913165fe2f32 (diff)
downloadglibc-0ecb606cb6cf65de1d9fc8a919bceb4be476c602.tar.gz
glibc-0ecb606cb6cf65de1d9fc8a919bceb4be476c602.tar.xz
glibc-0ecb606cb6cf65de1d9fc8a919bceb4be476c602.zip
2.5-18.1
Diffstat (limited to 'scripts/begin-end-check.pl')
-rw-r--r--scripts/begin-end-check.pl47
1 files changed, 47 insertions, 0 deletions
diff --git a/scripts/begin-end-check.pl b/scripts/begin-end-check.pl
new file mode 100644
index 0000000000..1616931bb0
--- /dev/null
+++ b/scripts/begin-end-check.pl
@@ -0,0 +1,47 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+# Check __BEGIN_NAMESPACE ... __END_NAMESPACE pairing in an include file.
+
+my $code = 0;
+for my $path (@ARGV) {
+    my $localcode = 0;
+    my @stack;
+
+    open my $in, '<', $path
+        or die "open $path failed: $!";
+
+    while (<$in>) {
+        if ( /^\s*__BEGIN_(.*)\b/ ) {
+            push @stack, $1;
+        }
+        elsif ( /^\s*__END_(.*)\b/ ) {
+            if (@stack) {
+                my $tag = pop @stack;
+		if ($1 ne $tag) {
+                    print "$path:$.: BEGIN $tag paired with END $1\n";
+		    $localcode = 1;
+		}
+            }
+            else {
+                print "$path:$.: END $1 does not match a begin\n";
+		$localcode = 1;
+            }
+        }
+    }
+
+    if (@stack) {
+	print "$path: Unmatched begin tags " . join (' ', @stack) ."\n";
+	$localcode = 1;
+    }
+
+    if ($localcode == 0) {
+	print "$path: OK\n";
+    } else {
+	$code = $localcode;
+    }
+}
+
+exit $code;