![]() |
HDF5
1.8.23
C-API Reference
|
Use the functions in this module to manage HDF5 references. Referents can be HDF5 objects, attributes, and selections on datasets a.k.a. dataset regions.
Create | Read |
---|---|
20 if ((file = H5Fcreate("reference.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) == H5I_INVALID_HID) {
29 if ((dset = H5Dcreate(file, "data", H5T_STD_I32LE, fspace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) ==
34 if (H5Sselect_all(fspace) < 0 || H5Rcreate_region(file, "data", fspace, H5P_DEFAULT, &ref) < 0) {
hid_t H5Fcreate(const char *filename, unsigned flags, hid_t fcpl_id, hid_t fapl_id) Creates an HDF5 file. hid_t H5Screate_simple(int rank, const hsize_t dims[], const hsize_t maxdims[]) Creates a new simple dataspace and opens it for access. | hid_t H5Aopen(hid_t obj_id, const char *attr_name, hid_t aapl_id) Opens an attribute for an object specified by object identifier and attribute name. hid_t H5Fopen(const char *filename, unsigned flags, hid_t fapl_id) Opens an existing HDF5 file. |
Update | Delete |
Macros | |
#define | H5Rget_obj_type H5Rget_obj_type2 |
Functions | |
herr_t | H5Rcreate (void *ref, hid_t loc_id, const char *name, H5R_type_t ref_type, hid_t space_id) |
Creates a reference. More... | |
hid_t | H5Rdereference (hid_t dataset, H5R_type_t ref_type, const void *ref) |
Opens the HDF5 object referenced. More... | |
hid_t | H5Rget_region (hid_t dataset, H5R_type_t ref_type, const void *ref) |
Sets up a dataspace and selection as specified by a region reference. More... | |
herr_t | H5Rget_obj_type2 (hid_t id, H5R_type_t ref_type, const void *_ref, H5O_type_t *obj_type) |
Retrieves the type of object that an object reference points to. More... | |
ssize_t | H5Rget_name (hid_t loc_id, H5R_type_t ref_type, const void *ref, char *name, size_t size) |
Retrieves a name for a referenced object. More... | |
H5G_obj_t | H5Rget_obj_type1 (hid_t id, H5R_type_t ref_type, const void *ref) |
Retrieves the type of object that an object reference points to. More... | |
#define H5Rget_obj_type H5Rget_obj_type2 |
H5Rget_obj_type() is a macro that is mapped to either H5Rget_obj_type1() or H5Rget_obj_type2() or H5R_get_obj_type3().
herr_t H5Rcreate | ( | void * | ref, |
hid_t | loc_id, | ||
const char * | name, | ||
H5R_type_t | ref_type, | ||
hid_t | space_id | ||
) |
Creates a reference.
[out] | ref | Reference created by the function call |
[in] | loc_id | Location identifier used to locate the object being pointed to |
[in] | name | Name of object at location loc_id |
[in] | ref_type | Type of reference |
[in] | space_id | Dataspace identifier with selection. Used only for dataset region references; pass as -1 if reference is an object reference, i.e., of type H5R_OBJECT |
H5Rcreate() creates the reference, ref
, of the type specified in ref_type
, pointing to the object name
located at loc_id
.
The HDF5 library maps the void type specified above for ref
to the type specified in ref_type
, which will be one of the following:
The parameters loc_id
and name
are used to locate the object.
The parameter space_id
identifies the dataset region that a dataset region reference points to. This parameter is used only with dataset region references and should be set to -1 if the reference is an object reference, H5R_OBJECT.
hid_t H5Rdereference | ( | hid_t | dataset, |
H5R_type_t | ref_type, | ||
const void * | ref | ||
) |
Opens the HDF5 object referenced.
[in] | dataset | Dataset identifier |
[in] | ref_type | The reference type of ref |
[in] | ref | Reference to open |
Given a reference, ref
, to an object or a region in an object, H5Rdereference1() opens that object and returns an identifier.
The parameter obj_id
must be a valid identifier for an object in the HDF5 file containing the referenced object, including the file identifier.
The parameter ref_type
specifies the reference type of the reference ref
. ref_type
may contain either of the following values:
The object opened with this function should be closed when it is no longer needed so that resource leaks will not develop. Use the appropriate close function such as H5Oclose() or H5Dclose() for datasets.
ssize_t H5Rget_name | ( | hid_t | loc_id, |
H5R_type_t | ref_type, | ||
const void * | ref, | ||
char * | name, | ||
size_t | size | ||
) |
Retrieves a name for a referenced object.
[in] | loc_id | Identifier for the file containing the reference or for any object in that file |
[in] | ref_type | Type of reference |
[in] | ref | An object or dataset region reference |
[out] | name | A buffer to place the name of the referenced object or dataset region. If NULL , then this call will return the size in bytes of the name. |
[in] | size | The size of the name buffer. When the size is passed in, the NULL terminator needs to be included. |
H5Rget_name() retrieves a name for the object identified by ref
.
loc_id
is used to identify the file containing the reference. It can be the file identifier for the file containing the reference or an identifier for any object in that file.
H5R_type_t is the reference type of ref
. Valid values include the following:
ref
is the reference for which the target object’s name is sought.
If ref
is an object reference, name
will be returned with a name for the referenced object. If ref
is a dataset region reference, name
will contain a name for the object containing the referenced region.
Up to size
characters of the name are returned in name
; additional characters, if any, are not returned to the user application.
If the length of the name, which determines the required value of size
, is unknown, a preliminary H5Rget_name() call can be made. The return value of this call will be the size of the object name. That value can then be assigned to size
for a second H5Rget_name() call, which will retrieve the actual name.
If there is no name associated with the object identifier or if the name
is NULL
, H5Rget_name() returns the size of the name
buffer (the size does not include the NULL
terminator).
Note that an object in an HDF5 file may have multiple paths if there are multiple links pointing to it. This function may return any one of these paths.
H5G_obj_t H5Rget_obj_type1 | ( | hid_t | id, |
H5R_type_t | ref_type, | ||
const void * | ref | ||
) |
Retrieves the type of object that an object reference points to.
[in] | id | The dataset containing the reference object or the group containing that dataset |
[in] | ref_type | Type of reference to query |
[in] | ref | Reference to query |
Given an object reference, ref
, H5Rget_obj_type1() returns the type of the referenced object.
A reference type is the type of reference, either an object reference or a dataset region reference. An object reference points to an HDF5 object while a dataset region reference points to a defined region within a dataset.
The referenced object is the object the reference points to. The referenced object type, or the type of the referenced object, is the type of the object that the reference points to.
The location identifier, id
, is the identifier for either the dataset containing the object reference or the group containing that dataset.
Valid reference types, to pass in as ref_type
, include the following:
If the application does not already know the object reference type, that can be determined with three preliminary calls:
When the function completes successfully, it returns one of the following valid object type values (defined in H5Gpublic.h):
herr_t H5Rget_obj_type2 | ( | hid_t | id, |
H5R_type_t | ref_type, | ||
const void * | _ref, | ||
H5O_type_t * | obj_type | ||
) |
Retrieves the type of object that an object reference points to.
[in] | id | The dataset containing the reference object or the group containing that dataset |
[in] | ref_type | Type of reference to query |
[in] | _ref | Reference to query |
[out] | obj_type | Type of referenced object |
Given an object reference, ref
, H5Rget_obj_type2() returns the type of the referenced object in obj_type
.
A reference type is the type of reference, either an object reference or a dataset region reference. An object reference points to an HDF5 object while a dataset region reference points to a defined region within a dataset.
The referenced object is the object the reference points to. The referenced object type, or the type of the referenced object, is the type of the object that the reference points to.
The location identifier, id
, is the identifier for either the dataset containing the object reference or the group containing that dataset.
Valid reference types, to pass in as ref_type
, include the following:
If the application does not already know the object reference type, that can be determined with three preliminary calls:
When the function completes successfully, it returns one of the following valid object type values (defined in H5Opublic.h):
hid_t H5Rget_region | ( | hid_t | dataset, |
H5R_type_t | ref_type, | ||
const void * | ref | ||
) |
Sets up a dataspace and selection as specified by a region reference.
[in] | dataset | File identifier or identifier for any object in the file containing the referenced region |
[in] | ref_type | Reference type of ref , which must be H5R_DATASET_REGION |
[in] | ref | Region reference to open |
H5Rget_region() creates a copy of the dataspace of the dataset pointed to by a region reference, ref
, and defines a selection matching the selection pointed to by ref within the dataspace copy.
dataset
is used to identify the file containing the referenced region; it can be a file identifier or an identifier for any object in the file.
The parameter ref_type
specifies the reference type of ref
and must contain the value H5R_DATASET_REGION.
Use H5Sclose() to release the dataspace identifier returned by this function when the identifier is no longer needed.