2019-10-04 00:12:32 +08:00
|
|
|
#!/usr/bin/env perl
|
2005-10-22 23:35:28 +08:00
|
|
|
#
|
2007-02-15 06:25:02 +08:00
|
|
|
# Copyright by The HDF Group.
|
2005-10-22 23:35:28 +08:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This file is part of HDF5. The full HDF5 copyright notice, including
|
|
|
|
# terms governing use, modification, and redistribution, is contained in
|
2017-04-18 03:32:16 +08:00
|
|
|
# the COPYING file, which can be found at the root of the source code
|
2021-02-17 22:52:36 +08:00
|
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
2017-04-18 03:32:16 +08:00
|
|
|
# If you do not have access to either file, you may request a copy from
|
|
|
|
# help@hdfgroup.org.
|
2005-10-22 23:35:28 +08:00
|
|
|
#
|
1998-07-18 03:03:43 +08:00
|
|
|
require 5.003;
|
|
|
|
|
2019-10-04 00:12:32 +08:00
|
|
|
use warnings;
|
|
|
|
|
1998-07-18 03:03:43 +08:00
|
|
|
# Purpose: insures that API functions aren't called internally.
|
|
|
|
# Usage: checkapi H5*.c
|
2013-05-22 01:30:54 +08:00
|
|
|
my $filename = "";
|
|
|
|
my $lastname = "";
|
1998-07-18 03:03:43 +08:00
|
|
|
|
2013-05-22 01:30:54 +08:00
|
|
|
if(<>) {
|
|
|
|
while (<>) {
|
|
|
|
if($ARGV =~ /\//) {
|
|
|
|
($filename) = ($ARGV =~ /^.*\/([A-Za-z0-9_]*)\.c$/);
|
|
|
|
} else {
|
|
|
|
($filename) = ($ARGV =~ /([A-Za-z0-9_]*)\.c$/);
|
|
|
|
}
|
1998-07-18 03:03:43 +08:00
|
|
|
|
2013-05-22 01:30:54 +08:00
|
|
|
if($filename =~ /H5FDmulti|H5FDstdio/) {
|
|
|
|
if($filename ne $lastname) {
|
|
|
|
print "$ARGV is exempt from checking\n";
|
|
|
|
$lastname = $filename;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
# Get rid of comments by removing the inside part.
|
|
|
|
s|/\*.*?\*/||g;
|
|
|
|
if ($in_comment) {
|
|
|
|
if (/\*\//) {
|
|
|
|
s|.*?\*/||;
|
|
|
|
$in_comment = 0;
|
|
|
|
} else {
|
|
|
|
$_="\n";
|
|
|
|
}
|
|
|
|
} elsif (m|/\*|) {
|
|
|
|
s|/\*.*||;
|
|
|
|
$in_comment = 1;
|
|
|
|
}
|
1998-07-18 03:03:43 +08:00
|
|
|
|
2013-05-22 01:30:54 +08:00
|
|
|
# Remove character strings
|
|
|
|
s/\\.//g; # remove escaped characters
|
|
|
|
s/\".*?\"//g; # remove string constants
|
1998-07-18 03:03:43 +08:00
|
|
|
|
2013-05-22 01:30:54 +08:00
|
|
|
# Disregard the following hits
|
|
|
|
next if /^H5/;
|
|
|
|
next if /^\#/;
|
|
|
|
next if /FUNC_ENTER(_NOINIT)*/;
|
1998-07-18 03:03:43 +08:00
|
|
|
|
2013-05-22 01:30:54 +08:00
|
|
|
next unless /(H5[A-Z]{1,2}[a-z]\w*)/;
|
|
|
|
print "$ARGV:$.: $1\n";
|
|
|
|
}
|
|
|
|
} continue {
|
|
|
|
close ARGV if eof; # reset line number
|
|
|
|
}
|
1998-07-18 03:03:43 +08:00
|
|
|
}
|
2013-05-22 01:30:54 +08:00
|
|
|
|