55 #if H5_VERSION_GE(1, 8, 0)
79 H5_index_t iteration_type);
109 const std::vector<std::vector<ref_t>>& new_dim_list);
127 const std::vector<ds_list_t>& ref_var_axis);
133 template <
class Inner>
137 size_t size()
const {
return obj.len; }
140 obj.p = (obj.p) ? H5resize_memory(obj.p, newlen *
sizeof(Inner))
141 : H5allocate_memory(newlen *
sizeof(Inner),
false);
152 Inner*
at(
size_t i) {
154 .
add(
"i", i).
add(
"obj.len", obj.len);
155 return operator[](i);
158 return &(
static_cast<Inner*
>(obj.p)[i]);
168 std::unique_ptr<hvl_t[]>
buf;
172 : buf(new hvl_t[sz]), typ{typ}, space{space}, sz{sz} {
174 for (
size_t i = 0; i < sz; i++) {
189 H5Dvlen_reclaim(typ.
get(), space.
get(), H5P_DEFAULT,
reinterpret_cast<void*
>(buf.get()));
HDF5 resource handles in C++.
The ioda exception class.
Exception & add(const std::string &key, const T value)
Add a key-value pair to the error message.
This is the implementation of Attributes using HDF5.
This is the implementation of Variables using HDF5.
A class to wrap HDF5's hid_t resource handles.
Common preprocessor definitions used throughout IODA.
#define IODA_HIDDEN
A tag used to tell the compiler that a symbol should not be listed, but it may be referenced from oth...
IODA_HIDDEN std::string getNameFromIdentifier(hid_t obj_id)
Gets a variable / group / link name from an id. Useful for debugging.
IODA_HIDDEN std::pair< bool, hsize_t > iterativeAttributeSearch(hid_t baseObject, const char *attname, H5_index_t iteration_type)
Linear search to find an attribute.
Inner * operator[](size_t i)
void resize(size_t newlen)
std::unique_ptr< hvl_t[]> buf
Vlen_data(Vlen_data &&)=delete
Vlen_data(const Vlen_data &)=delete
IODA_HIDDEN herr_t iterate_find_attr(hid_t loc_id, const char *name, void *op_data)
Callback function for H5Aiterate / H5Aiterate2 / H5Aiterate1.
IODA_HIDDEN void attr_update_reference_list(HH_Variable *scale, const std::vector< ds_list_t > &ref_var_axis)
Attribute REFERENCE_LIST update function.
IODA_HIDDEN HH_Attribute iterativeAttributeSearchAndOpen(hid_t baseObject, H5O_type_t objType, const char *attname)
Linear search to find and open an attribute, if it exists.
IODA_HIDDEN void attr_update_dimension_list(HH_Variable *var, const std::vector< std::vector< ref_t >> &new_dim_list)
Attribute DIMENSION_LIST update function.
IODA_HIDDEN H5_index_t getAttrCreationOrder(hid_t obj, H5O_type_t objType)
Determine attribute creation order for a dataset.
hvl_t & operator[](size_t idx)
Vlen_data operator=(Vlen_data &&)=delete
Vlen_data(size_t sz, HH_hid_t typ, HH_hid_t space)
Vlen_data operator=(const Vlen_data &)=delete
Data to pass to/from iterator classes.
A "view" of hvl_t objects. Adds C++ conveniences to an otherwise troublesome class.
Internal structure to encapsulate resources and prevent leaks.
Duplicate the HDF5 dataset list structure for REFERENCE_LISTs.