Introduction to HDF5 HDF5 User Guide Other HDF5 documents and links |
And in this document, the
HDF5 Reference Manual
H5 H5A H5D H5E H5F H5G H5I H5P H5R H5S H5T H5Z Tools Datatypes |
The C Interfaces:
The FORTRAN90 Interfaces:
In general, each FORTRAN90 subroutine performs exactly the same task
as the corresponding C function. The links below go to the C function
descriptions, which serve as general descriptions for both. A button,
under Non-C API(s) at the end of the C function description,
opens an external browser window displaying the FORTRAN90-specific
information. You will probably want to adjust the size and location of
this external window so that both browser windows are visible and to
facilitate moving easily between them.
H5Dcreate
(hid_t loc_id
,
const char *name
,
hid_t type_id
,
hid_t space_id
,
hid_t create_plist_id
)
H5Dcreate
creates a data set with a name,
name
, in the file or in the group specified by
the identifier loc_id
.
The dataset has the datatype and dataspace identified by
type_id
and space_id
, respectively.
The specified datatype and dataspace are the datatype and
dataspace of the dataset as it will exist in the file,
which may be different than in application memory.
Dataset creation properties are specified by the argument
create_plist_id
.
Dataset names within a group are unique:
H5Dcreate
will return an error if a dataset with
the name specified in name
already exists at the
location specified in loc_id
.
create_plist_id
is a H5P_DATASET_CREATE
property list created with H5Pcreate()
and
initialized with the various functions described above.
H5Dcreate()
returns a dataset identifier for success
or negative for failure. The identifier should eventually be
closed by calling H5Dclose()
to release resources
it uses.
loc_id
name
type_id
space_id
create_plist_id
H5Dopen
(hid_t loc_id
,
const char *name
)
H5Dopen
opens an existing dataset for access in the file
or group specified in loc_id
. name
is
a dataset name and is used to identify the dataset in the file.
loc_id
name
H5Dget_space
(hid_t dataset_id
)
H5Dget_space
returns an identifier for a copy of the
dataspace for a dataset.
The dataspace identifier should be released with the
H5Sclose()
function.
dataset_id
H5Dget_type
(hid_t dataset_id
)
H5Dget_type
returns an identifier for a copy of the
datatype for a dataset.
The datatype should be released with the H5Tclose()
function.
If a dataset has a named datatype, then an identifier to the opened datatype is returned. Otherwise, the returned datatype is read-only. If atomization of the datatype fails, then the datatype is closed.
dataset_id
H5Dget_create_plist
(hid_t dataset_id
)
H5Dget_create_plist
returns an identifier for a
copy of the dataset creation property list for a dataset.
The creation property list identifier should be released with
the H5Pclose()
function.
dataset_id
H5Dget_storage_size
(hid_t dataset_id
)
H5Dget_storage_size
returns the amount of storage
that is required for the specified dataset, dataset_id
.
For chunked datasets, this is the number of allocated chunks times
the chunk size.
The return value may be zero if no data has been stored.
dataset_id
H5Dvlen_get_buf_size
(hid_t dataset_id
,
hid_t type_id
,
hid_t space_id
,
hsize_t *size
)
H5Dvlen_get_buf_size
determines the number of bytes
required to store the VL data from the dataset, using the
space_id
for the selection in the dataset on
disk and the type_id
for the memory representation
of the VL data in memory.
*size
is returned with the number of bytes
required to store the VL data in memory.
dataset_id
type_id
space_id
size
H5Dvlen_reclaim
(hid_t type_id
,
hid_t space_id
,
hid_t plist_id
,
void *buf
)
H5Dvlen_reclaim
reclaims memory buffers created to
store VL datatypes.
The type_id
must be the datatype stored in the buffer.
The space_id
describes the selection for the memory buffer
to free the VL datatypes within.
The plist_id
is the dataset transfer property list which
was used for the I/O transfer to create the buffer.
And buf
is the pointer to the buffer to be reclaimed.
The VL structures (hvl_t
) in the user's buffer are
modified to zero out the VL information after the memory has been reclaimed.
If nested VL datatypes were used to create the buffer, this routine frees them from the bottom up, releasing all the memory without creating memory leaks.
type_id
space_id
plist_id
buf
H5Dread
(hid_t dataset_id
,
hid_t mem_type_id
,
hid_t mem_space_id
,
hid_t file_space_id
,
hid_t xfer_plist_id
,
void * buf
)
buf
,
converting from
file datatype and dataspace to memory datatype and dataspace.
H5Dread
reads a (partial) dataset, specified by its
identifier dataset_id
, from the
file info an application memory buffer buf
.
Data transfer properties are defined by the argument
xfer_plist_id
.
The memory datatype of the (partial) dataset is identified by
the identifier mem_type_id
.
The part of the dataset to read is defined by
mem_space_id
and file_space_id
.
file_space_id
is used to specify only the selection within
the file dataset's dataspace. Any dataspace specified in file_space_id
is ignored by the library and the dataset's dataspace is always used.
file_space_id
can be the constant H5S_ALL
.
which indicates that the entire file dataspace, as defined by the
current dimensions of the dataset, is to be selected.
mem_space_id
is used to specify both the memory dataspace
and the selection within that dataspace.
mem_space_id
can be the constant H5S_ALL
,
in which case the file dataspace is used for the memory dataspace and
the selection defined with file_space_id
is used for the
selection within that dataspace.
The behavior of the library for the various combinations of valid
dataspace IDs and H5S_ALL for the mem_space_id
and the
file_space_id
parameters is described below:
mem_space_id
|
file_space_id
|
Behavior |
---|---|---|
valid dataspace ID | valid dataspace ID |
mem_space_id specifies the memory dataspace and the
selection within it.
file_space_id specifies the selection within the file
dataset's dataspace.
|
H5S_ALL | valid dataspace ID |
The file dataset's dataspace is used for the memory dataspace and the
selection specified with file_space_id specifies the
selection within it.
file_space_id specifies the selection within the file
dataset's dataspace.
|
valid dataspace ID | H5S_ALL |
mem_space_id specifies the memory dataspace and the
selection within it.
The selection within the file dataset's dataspace is set to the "all"
selection.
|
H5S_ALL | H5S_ALL | The file dataset's dataspace is used for the memory dataspace and the selection within the memory dataspace is set to the "all" selection. The selection within the file dataset's dataspace is set to the "all" selection. |
Setting an "all" selection indicates that the entire dataspace, as defined by the current dimensions of a dataspace, will be selected. The number of elements selected in the memory dataspace must match the number of elements selected in the file dataspace.
xfer_plist_id
can be the constant H5P_DEFAULT
.
in which case the default data transfer properties are used.
Datatype conversion takes place at the time of the read and is automatic. See the Data Conversion section of The Data Type Interface (H5T) in the HDF5 User's Guide for a discussion of data conversion, including the range of conversions currently supported by the HDF5 libraries.
dataset_id
mem_type_id
mem_space_id
file_space_id
xfer_plist_id
buf
H5Dwrite
(hid_t dataset_id
,
hid_t mem_type_id
,
hid_t mem_space_id
,
hid_t file_space_id
,
hid_t xfer_plist_id
,
const void * buf
)
buf
to
the specified dataset, converting from
memory datatype and dataspace to file datatype and dataspace.
H5Dwrite
writes a (partial) dataset, specified by its
identifier dataset_id
, from the
application memory buffer buf
into the file.
Data transfer properties are defined by the argument
xfer_plist_id
.
The memory datatype of the (partial) dataset is identified by
the identifier mem_type_id
.
The part of the dataset to write is defined by
mem_space_id
and file_space_id
.
file_space_id
is used to specify only the selection within
the file dataset's dataspace. Any dataspace specified in file_space_id
is ignored by the library and the dataset's dataspace is always used.
file_space_id
can be the constant H5S_ALL
.
which indicates that the entire file dataspace, as defined by the
current dimensions of the dataset, is to be selected.
mem_space_id
is used to specify both the memory dataspace
and the selection within that dataspace.
mem_space_id
can be the constant H5S_ALL
,
in which case the file dataspace is used for the memory dataspace and
the selection defined with file_space_id
is used for the
selection within that dataspace.
The behavior of the library for the various combinations of valid
dataspace IDs and H5S_ALL for the mem_space_id
and the
file_space_id
parameters is described below:
mem_space_id
|
file_space_id
|
Behavior |
---|---|---|
valid dataspace ID | valid dataspace ID |
mem_space_id specifies the memory dataspace and the
selection within it.
file_space_id specifies the selection within the file
dataset's dataspace.
|
H5S_ALL | valid dataspace ID |
The file dataset's dataspace is used for the memory dataspace and the
selection specified with file_space_id specifies the
selection within it.
file_space_id specifies the selection within the file
dataset's dataspace.
|
valid dataspace ID | H5S_ALL |
mem_space_id specifies the memory dataspace and the
selection within it.
The selection within the file dataset's dataspace is set to the "all"
selection.
|
H5S_ALL | H5S_ALL | The file dataset's dataspace is used for the memory dataspace and the selection within the memory dataspace is set to the "all" selection. The selection within the file dataset's dataspace is set to the "all" selection. |
Setting an "all" selection indicates that the entire dataspace, as defined by the current dimensions of a dataspace, will be selected. The number of elements selected in the memory dataspace must match the number of elements selected in the file dataspace.
xfer_plist_id
can be the constant H5P_DEFAULT
.
in which case the default data transfer properties are used.
Writing to an dataset will fail if the HDF5 file was not opened with write access permissions.
Datatype conversion takes place at the time of the write and is automatic. See the Data Conversion section of The Data Type Interface (H5T) in the HDF5 User's Guide for a discussion of data conversion, including the range of conversions currently supported by the HDF5 libraries.
dataset_id
mem_type_id
mem_space_id
file_space_id
xfer_plist_id
buf
H5Dextend
(hid_t dataset_id
,
const hsize_t * size
)
H5Dextend
verifies that the dataset is at least of size
size
.
The dimensionality of size
is the same as that of
the dataspace of the dataset being changed.
This function cannot be applied to a dataset with fixed dimensions.
dataset_id
size
H5Dclose
(hid_t dataset_id
)
H5Dclose
ends access to a dataset specified by
dataset_id
and releases resources used by it.
Further use of the dataset identifier is illegal in calls to
the dataset API.
dataset_id
H5Diterate
(
void *buf
,
hid_t type_id
,
hid_t space_id
,
H5D_operator_t operator
,
void *operator_data
)
H5Diterate
iterates over all the elements selected
in a memory buffer. The callback function is called once for each
element selected in the dataspace.
The selection in the dataspace is modified so that any elements
already iterated over are removed from the selection if the
iteration is interrupted (by the H5D_operator_t
function returning non-zero) before the iteration is complete;
the iteration may then be re-started by the user where it left off.
buf
type_id
buf
.
space_id
buf
.
Also contains the selection to iterate over.
operator
buf
iterated over.
operator_data
Introduction to HDF5 HDF5 User Guide Other HDF5 documents and links |
And in this document, the
HDF5 Reference Manual
H5 H5A H5D H5E H5F H5G H5I H5P H5R H5S H5T H5Z Tools Datatypes |