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
|
|
|
# Copyright by the Board of Trustees of the University of Illinois.
|
|
|
|
# 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;
|
|
|
|
|
|
|
|
# Looks for lines emitted by H5O_open() and H5O_close() and tries to
|
|
|
|
# determine which objects were not properly closed.
|
|
|
|
|
|
|
|
while (<>) {
|
|
|
|
next unless /^([<>])(0x[\da-f]+|\d+)$/;
|
|
|
|
my ($op, $addr) = ($1, $2);
|
|
|
|
|
|
|
|
if ($op eq ">") {
|
|
|
|
# Open object
|
|
|
|
$obj{$addr} += 1;
|
|
|
|
} else {
|
|
|
|
# Close object
|
|
|
|
die unless $obj{$addr}>0;
|
|
|
|
$obj{$addr} -= 1;
|
|
|
|
delete $obj{$addr} unless $obj{$addr};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (sort keys %obj) {
|
|
|
|
printf "%3d %s\n", $obj{$_}, $_;
|
|
|
|
}
|
|
|
|
|
|
|
|
exit 0;
|