HDF5 2.0.0.2ad0391
API Reference
|
The HDF5 library contains a number of debugging features to make programmers' lives easier including the ability to print detailed error messages, check invariant conditions, display timings and other statistics.
Error messages are normally displayed automatically on the standard error stream and include a stack trace of the library including file names, line numbers, and function names. The application has complete control over how error messages are displayed and can disable the display on a permanent or temporary basis. Refer to the documentation for the H5E error handling package.
Unless NDEBUG is defined during compiling, the library will include code to verify that invariant conditions have the expected values. When a problem is detected the library will display the file and line number within the library and the invariant condition that failed. A core dump may be generated for post mortem debugging. The code to perform these checks can be included on a per-package bases.
The library can be configured to accumulate certain statistics about things like cache performance, datatype conversion, data space conversion, and data filters. The code is included on a per-package basis and enabled at runtime by an environment variable.
Tracing API calls has been removed from the library.
The statistics can be displayed on any output stream (including streams opened by the shell) with output from different packages even going to different streams.
By default any API function that fails will print an error stack to the standard error stream.
The error handling package (H5E) is described elsewhere.
To include checks for invariant conditions the library should be configured with –disable-production, the default for versions before 1.2. The library designers have made every attempt to handle error conditions gracefully but an invariant condition assertion may fail in certain cases. The output from a failure usually looks something like this:
Code to accumulate statistics is included at compile time by using the –enable-debug configure switch. The switch can be followed by an equal sign and a comma-separated list of package names or else a default list is used.
Name | Default | Description |
---|---|---|
a | No | Attributes |
ac | Yes | Meta data cache |
b | Yes | B-Trees |
d | Yes | Datasets |
e | Yes | Error handling |
f | Yes | Files |
g | Yes | Groups |
hg | Yes | Global heap |
hl | No | Local heaps |
i | Yes | Interface abstraction |
mf | No | File memory management |
mm | Yes | Library memory management |
o | No | Object headers and messages |
p | Yes | Property lists |
s | Yes | Data spaces |
t | Yes | Datatypes |
v | Yes | Vectors |
z | Yes | Raw data filters |
In addition to including the code at compile time the application must enable each package at runtime. This is done by listing the package names in the HDF5_DEBUG environment variable. That variable may also contain file descriptor numbers (the default is '2') which control the output for all following packages up to the next file number. The word 'all' refers to all packages. Any word my be preceded by a minus sign to turn debugging off for the package.
all | This causes debugging output from all packages to be sent to the standard error stream. |
all -t -s | Debugging output for all packages except datatypes and data spaces will appear on the standard error stream. |
-all ac 255 t,s | This disables all debugging even if the default was to debug something, then output from the meta data cache is send to the standard error stream and output from data types and spaces is sent to file descriptor 255 which should be redirected by the shell. |
The components of the HDF5_DEBUG value may be separated by any non-lowercase letter.