I have created h5dumpImport, an open source Mathematica Package that provides a platform independent way to import HDF5 (.h5) file's datasets with compound datatypes while hiding much of the HDF5 implementation from the user. The package with documentation, examples, and unit test is located here.
Currently, the h5dumpImport package does not directly import the HDF5 (.h5) file format. The h5dumpImport package imports an ASCII dump of a dataset generated by the h5dump command line tool.
Source code and pre-built binary distributions of the HDF5 Software which includes the h5dump command line tool can be found at the The HDF Group's website.
Basic Example
Needs["h5dumpImport`"]
datasets = Import["testData.h5", {"Datasets"}];
dumpFile = h5dump["/usr/bin/h5dump", "testData.h5", datasets[[1]]];
dumpImport = h5dumpImportNew[h5dumpImport[], dumpFile];
dumpImport.h5dumpImportData[All]
dumpImport.h5dumpImportClose[];
Results:
{{1, 11, 111, 1111, 11111, 111111, 1111111, 1.1, 11.11, "one"},
{2, 22, 222, 2222, 22222, 222222, 2222222, 2.2, 22.22, "two"},
{3, 33, 333, 3333, 33333, 333333, 3333333, 3.3, 33.33, "three"}}
Detailed installation instructions, usage information, and documentation, examples, and unit tests can be found here.