Retrieves the metadata for an object specified by an identifier
Procedure:
H5O_GET_INFO2 (loc_id, oinfo, fields)
Signature:
herr_t H5Oget_info2 ( hid_t loc_id, H5O_info1_t *oinfo, unsigned fields )
SUBROUTINE h5oget_info_f(object_id, object_info, hdferr, fields)
USE, INTRINSIC :: ISO_C_BINDING
IMPLICIT NONE
INTEGER(HID_T) , INTENT(IN) :: object_id
TYPE(h5o_info_t), INTENT(OUT), TARGET :: object_info
INTEGER , INTENT(OUT) :: hdferr
INTEGER , INTENT(IN), OPTIONAL :: fields
Parameters:
hid_t object_id | IN: Identifier for object of type specified by H5O_type_t; may be a file, group, dataset, named datatype or attribute identifier |
H5O_info1_t *oinfo | OUT: Buffer in which to return object information |
unsigned int fields | IN: Flags specifying the fields to include in oinfo |
Description:
H5O_GET_INFO2 specifies an object by its identifier, object_id
, and retrieves the metadata describing that object in oinfo
, an H5O_info1_t struct. This struct type is described in H5O_GET_INFO1.
The fields
parameter contains flags to determine which fields will be filled in in the H5O_info1_t struct returned in oinfo
. These flags are defined in the H5Opublic.h
file:
Flag | Purpose |
---|
H5O_INFO_BASIC | Fill in the fileno, addr, type, and rc fields |
H5O_INFO_TIME | Fill in the atime, mtime, ctime, and btime fields |
H5O_INFO_NUM_ATTRS | Fill in the num_attrs field |
H5O_INFO_HDR | Fill in the hdr field |
H5O_INFO_META_SIZE | Fill in the meta_size field |
H5O_INFO_ALL | H5O_INFO_BASIC | H5O_INFO_TIME | H5O_INFO_NUM_ATTRS | H5O_INFO_HDR | H5O_INFO_META_SIZE |
Note:
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
History:
Release | Change |
---|
1.10.3 | C function introduced in this release. |
--- Last Modified: February 19, 2020 | 03:13 PM