Please, help us to better know about our user community by answering the following short survey: https://www.hdfgroup.org/website-survey/
HDF5  1.10.10-1
H5R

Detailed Description

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.

Macros

#define H5Rdereference   H5Rdereference2
 
#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 H5Rdereference2 (hid_t obj_id, hid_t oapl_id, 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...
 
hid_t H5Rdereference1 (hid_t obj_id, H5R_type_t ref_type, const void *ref)
 Opens the HDF5 object referenced. More...
 

Macro Definition Documentation

◆ H5Rdereference

#define H5Rdereference   H5Rdereference2

H5Rdereference() is a macro that is mapped to either H5Rdereference1() or H5Rdereference2().

See also
API Compatibility Macros

◆ H5Rget_obj_type

#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().

See also
API Compatibility Macros

Function Documentation

◆ H5Rcreate()

herr_t H5Rcreate ( void *  ref,
hid_t  loc_id,
const char *  name,
H5R_type_t  ref_type,
hid_t  space_id 
)

Creates a reference.


Parameters
[out]refReference created by the function call
[in]loc_idLocation identifier used to locate the object being pointed to
[in]nameName of object at location loc_id
[in]ref_typeType of reference
[in]space_idDataspace identifier with selection. Used only for dataset region references; pass as -1 if reference is an object reference, i.e., of type H5R_OBJECT
Returns
Returns a non-negative value if successful; otherwise returns a negative value.

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.

Since
1.8.0

◆ H5Rdereference1()

hid_t H5Rdereference1 ( hid_t  obj_id,
H5R_type_t  ref_type,
const void *  ref 
)

Opens the HDF5 object referenced.


Parameters
[in]obj_idObject identifier
[in]ref_typeThe reference type of ref
[in]refReference to open
Returns
Returns identifier of referenced object if successful; otherwise returns a negative value.
Deprecated:
This function has been renamed from H5Rdereference() and is deprecated in favor of the macro H5Rdereference() or the function H5Rdereference2().

H5Rdereference1() opens an object or a region in an object and returns an identifier to that object, given a reference, ref.

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.

Version
1.10.0 Function H5Rdereference() renamed to H5Rdereference1() and deprecated in this release.
Since
1.8.0

◆ H5Rdereference2()

hid_t H5Rdereference2 ( hid_t  obj_id,
hid_t  oapl_id,
H5R_type_t  ref_type,
const void *  ref 
)

Opens the HDF5 object referenced.


Parameters
[in]obj_idObject identifier
[in]oapl_idObject access property list identifier
[in]ref_typeThe reference type of ref
[in]refReference to open
Returns
Returns identifier of referenced object if successful; otherwise returns a negative value.

H5Rdereference2() opens an object or a region in an object and returns an identifier to that object, given a reference, ref.

The parameter obj_id must be a valid identifier for the HDF5 file containing the referenced object or for any object in that HDF5 file.

The parameter oapl_id is an object access property list identifier for the referenced object. The access property list must be of the same type as the object being referenced, that is a group, dataset, or datatype property list.

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.

Since
1.10.0

◆ H5Rget_name()

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.


Parameters
[in]loc_idIdentifier for the file containing the reference or for any object in that file
[in]ref_typeType of reference
[in]refAn object or dataset region reference
[out]nameA 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]sizeThe size of the name buffer. When the size is passed in, the NULL terminator needs to be included.
Returns
Returns the length of the name if successful, returning 0 (zero) if no name is associated with the identifier. Otherwise returns a negative value.

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.

Since
1.8.0

◆ H5Rget_obj_type1()

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.


Parameters
[in]idThe dataset containing the reference object or the group containing that dataset
[in]ref_typeType of reference to query
[in]refReference to query
Returns
Returns a valid object type if successful; otherwise returns a negative value (H5G_UNKNOWN).
Deprecated:
This function has been renamed from H5Rget_obj_type() and is deprecated in favor of the macro H5Rget_obj_type() or the function H5Rget_obj_type2().

H5Rget_obj_type1() returns the type of the referenced object, given an object reference.

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):

Version
1.8.0 Function H5Rget_obj_type() renamed to H5Rget_obj_type1() and deprecated in this release.
Since
1.6.0

◆ H5Rget_obj_type2()

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.


Parameters
[in]idThe dataset containing the reference object or the group containing that dataset
[in]ref_typeType of reference to query
[in]_refReference to query
[out]obj_typeType of referenced object
Returns
Returns a non-negative value if successful; otherwise returns a negative value.

H5Rget_obj_type2() returns the type of the referenced object in obj_type, given an object reference, ref.

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):

Since
1.8.0

◆ H5Rget_region()

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.


Parameters
[in]datasetFile identifier or identifier for any object in the file containing the referenced region
[in]ref_typeReference type of ref, which must be H5R_DATASET_REGION
[in]refRegion reference to open
Returns
Returns a valid dataspace identifier if successful; otherwise returns a negative value.

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.

H5G_RESERVED_5
@ H5G_RESERVED_5
Definition: H5Gpublic.h:458
H5R_BADTYPE
@ H5R_BADTYPE
Definition: H5Rpublic.h:53
H5G_UNKNOWN
@ H5G_UNKNOWN
Definition: H5Gpublic.h:452
H5O_TYPE_DATASET
@ H5O_TYPE_DATASET
Definition: H5Opublic.h:104
H5O_TYPE_GROUP
@ H5O_TYPE_GROUP
Definition: H5Opublic.h:103
H5G_RESERVED_7
@ H5G_RESERVED_7
Definition: H5Gpublic.h:460
H5R_DATASET_REGION
@ H5R_DATASET_REGION
Definition: H5Rpublic.h:55
H5G_RESERVED_6
@ H5G_RESERVED_6
Definition: H5Gpublic.h:459
H5R_OBJECT
@ H5R_OBJECT
Definition: H5Rpublic.h:54
H5O_TYPE_UNKNOWN
@ H5O_TYPE_UNKNOWN
Definition: H5Opublic.h:102
H5G_TYPE
@ H5G_TYPE
Definition: H5Gpublic.h:455
H5G_LINK
@ H5G_LINK
Definition: H5Gpublic.h:456
H5G_UDLINK
@ H5G_UDLINK
Definition: H5Gpublic.h:457
H5O_TYPE_NTYPES
@ H5O_TYPE_NTYPES
Definition: H5Opublic.h:106
H5O_TYPE_NAMED_DATATYPE
@ H5O_TYPE_NAMED_DATATYPE
Definition: H5Opublic.h:105
H5R_type_t
H5R_type_t
Definition: H5Rpublic.h:52
H5G_GROUP
@ H5G_GROUP
Definition: H5Gpublic.h:453
H5G_DATASET
@ H5G_DATASET
Definition: H5Gpublic.h:454
H5G_obj_t
H5G_obj_t
Definition: H5Gpublic.h:451
H5R_MAXTYPE
@ H5R_MAXTYPE
Definition: H5Rpublic.h:56
H5O_type_t
H5O_type_t
Definition: H5Opublic.h:101