Object
hdf.object.HObject
hdf.object.h5.H5MetaDataContainer
- All Implemented Interfaces:
MetaDataContainer
,Serializable
An class that provides general I/O operations for object metadata
attached to an object. For example, reading metadata content from the file
into memory or writing metadata content from memory into the file.
- Version:
- 2.0 4/2/2018
- Author:
- Peter X. Cao, Jordan T. Henderson
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionprotected List
The list of attributes of this data object.protected HObject
The HObject to which this MetaDataContainer is attachedFields inherited from class hdf.object.HObject
fileFormat, linkTargetObjName, oid, SEPARATOR
-
Constructor Summary
ConstructorDescriptionH5MetaDataContainer
(FileFormat theFile, String name, String path, HObject parent) Constructs an HDF5 group with specific name, path, and parent.H5MetaDataContainer
(FileFormat theFile, String name, String path, HObject parent, long[] oid) Deprecated.Not for public use in the future. -
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Removes all of the elements from metadata list.void
close
(long tid) Closes access to the object.Retrieves the object's attributeList.Retrieves the object's metadata, such as attributes, from the file.getMetadata
(int... attrPropList) Retrieves the object's metadata, such as attributes, from the file.int
Retrieves the object's number of attributes.boolean
Check if the object has any attributes attached.long
open()
Opens an existing object such as a dataset or group for access.void
removeMetadata
(Object metadata) Deletes an existing piece of metadata from this object.void
setObjectAttributeSize
(int objectAttributes) Updates the object's number of attributes.void
updateMetadata
(Object metadata) Updates an existing piece of metadata attached to this object.void
writeMetadata
(Object metadata) Writes a specific piece of metadata (such as an attribute) into the file.Methods inherited from class hdf.object.HObject
createFullname, debug, equals, equals, equalsOID, getFID, getFile, getFileFormat, getFullName, getLinkTargetObjName, getName, getOID, getPath, hashCode, setFullname, setLinkTargetObjName, setName, setPath, toString
-
Field Details
-
parentObject
The HObject to which this MetaDataContainer is attached -
attributeList
The list of attributes of this data object. Members of the list are instance of Attribute.
-
-
Constructor Details
-
H5MetaDataContainer
Constructs an HDF5 group with specific name, path, and parent.- Parameters:
theFile
- the file which containing the group.name
- the name of this group, e.g. "grp01".path
- the full path of this group, e.g. "/groups/".parent
- the parent of this group.
-
H5MetaDataContainer
@Deprecated public H5MetaDataContainer(FileFormat theFile, String name, String path, HObject parent, long[] oid) Deprecated.Not for public use in the future.- Parameters:
theFile
- the file which containing the group.name
- the name of this group, e.g. "grp01".path
- the full path of this group, e.g. "/groups/".parent
- the parent of this group.oid
- the oid of this group.
-
-
Method Details
-
clear
Removes all of the elements from metadata list. The list should be empty after this call returns.- Specified by:
clear
in interfaceMetaDataContainer
-
getAttributeList
-
getObjectAttributeSize
Retrieves the object's number of attributes.- Returns:
- the list size.
-
setObjectAttributeSize
Updates the object's number of attributes.- Parameters:
objectAttributes
- the number of attributes for an object.
-
getMetadata
Retrieves the object's metadata, such as attributes, from the file. Metadata, such as attributes, is stored in a List.- Specified by:
getMetadata
in interfaceMetaDataContainer
- Returns:
- the list of metadata objects.
- Throws:
Exception
- if the metadata can not be retrieved
-
getMetadata
Retrieves the object's metadata, such as attributes, from the file. Metadata, such as attributes, is stored in a List.- Parameters:
attrPropList
- the list of properties to get- Returns:
- the list of metadata objects.
- Throws:
Exception
- if the metadata can not be retrieved
-
writeMetadata
Writes a specific piece of metadata (such as an attribute) into the file. If an HDF5 attribute exists in the file, this method updates its value. If the attribute does not exist in the file, it creates the attribute in the file and attaches it to the object. It will fail to write a new attribute to the object where an attribute with the same name already exists. To update the value of an existing attribute in the file, one needs to get the instance of the attribute by getMetadata(), change its values, then use writeMetadata() to write the value.- Specified by:
writeMetadata
in interfaceMetaDataContainer
- Parameters:
metadata
- the metadata to write.- Throws:
Exception
- if the metadata can not be written
-
removeMetadata
Deletes an existing piece of metadata from this object.- Specified by:
removeMetadata
in interfaceMetaDataContainer
- Parameters:
metadata
- the metadata to delete.- Throws:
Exception
- if the metadata can not be removed
-
updateMetadata
Updates an existing piece of metadata attached to this object.- Specified by:
updateMetadata
in interfaceMetaDataContainer
- Parameters:
metadata
- the metadata to update.- Throws:
Exception
- if the metadata can not be updated
-
hasAttribute
Check if the object has any attributes attached.- Specified by:
hasAttribute
in interfaceMetaDataContainer
- Returns:
- true if it has any attributes, false otherwise.
-
open
Description copied from class:HObject
Opens an existing object such as a dataset or group for access. The return value is an object identifier obtained by implementing classes such as H5.H5Dopen(). This function is needed to allow other objects to be able to access the object. For instance, H5File class uses the open() function to obtain object identifier for copyAttributes(long src_id, long dst_id) and other purposes. The open() function should be used in pair with close(long) function. -
close
Description copied from class:HObject
Closes access to the object. Sub-classes must implement this interface because different data objects have their own ways of how the data resources are closed. For example, H5Group.close() calls the hdf.hdf5lib.H5.H5Gclose() method and closes the group resource specified by the group id.
-