34 #if H5_VERSION_GE(1, 8, 0)
39 H5Aget_info_by_name(loc_id,
".",
name, &in_info, H5P_DEFAULT);)
40 H5A_info_t* info = &in_info;
46 if (
name ==
nullptr)
return -1;
56 if (objType != H5O_TYPE_DATASET && objType != H5O_TYPE_GROUP)
60 if (objType == H5O_TYPE_GROUP) {
61 H5I_type_t typ = H5Iget_type(obj);
63 if (typ == H5I_FILE)
return H5_INDEX_NAME;
66 unsigned crt_order_flags = 0;
68 = (objType == H5O_TYPE_DATASET) ? H5Dget_create_plist(obj) : H5Gget_create_plist(obj);
72 if (0 > H5Pget_attr_creation_order(createpl(), &crt_order_flags))
77 return (crt_order_flags & H5P_CRT_ORDER_TRACKED)
89 = H5Aiterate2(baseObject,
94 reinterpret_cast<void*
>(&opts)
96 if (append_ret < 0)
return std::pair<bool, hsize_t>(
false, -2);
97 return std::pair<bool, hsize_t>(opts.
success, opts.
idx);
101 const char* attname) {
105 bool searchSuccess = searchres.first;
106 hsize_t idx = searchres.second;
112 hid_t found_att = H5Aopen_by_idx(baseObject,
".", iteration_type, H5_ITER_NATIVE, idx,
113 H5P_DEFAULT, H5P_DEFAULT);
127 hid_t var_id = var->
get()();
131 hsize_t hdims[1] = {gsl::narrow<hsize_t>(dims.dimensionality)};
134 if ((sid = H5Screate_simple(1, hdims, NULL)).get() < 0)
138 if ((tid = H5Tvlen_create(H5T_STD_REF_OBJ)).get() < 0)
145 vector<hvl_t> dimlist_in_data(dims.dimensionality);
148 hid_t aid = H5Acreate(var_id, DIMENSION_LIST, tid(), sid(), H5P_DEFAULT, H5P_DEFAULT);
153 for (
auto & d : dimlist_in_data) {
159 if (H5Aread(aDimList.
get()(), tid(),
static_cast<void*
>(dimlist_in_data.data())) < 0)
164 vector<hvl_t> dimlist_out_data(dims.dimensionality);
168 for (
size_t dim = 0; dim < gsl::narrow<size_t>(dims.dimensionality); ++dim) {
170 const std::vector<ref_t>& newdims = new_dim_list[dim];
178 outdims.
resize(olddims.
size() + newdims.size());
179 for (
size_t i = 0; i < olddims.
size(); ++i) {
180 *outdims[i] = *olddims[i];
182 for (
size_t i = 0; i < newdims.size(); ++i) {
183 *outdims[i + olddims.
size()] = newdims[i];
189 herr_t write_success = H5Awrite(aDimList.
get()(), tid(),
static_cast<void*
>(dimlist_out_data.data()));
192 H5Dvlen_reclaim(tid.get(), sid.get(), H5P_DEFAULT,
reinterpret_cast<void*
>(dimlist_in_data.data()));
193 for (
size_t dim = 0; dim < gsl::narrow<size_t>(dims.dimensionality); ++dim) {
202 if (write_success < 0)
throw Exception(
"Failed to write DIMENSION_LIST.",
ioda_Here());
207 if (!tid.isValid()) {
209 if ((tid = H5Tcreate(H5T_COMPOUND,
sizeof(
ds_list_t))).get() < 0)
211 if (H5Tinsert(tid(),
"dataset", HOFFSET(
ds_list_t, ref), H5T_STD_REF_OBJ) < 0)
213 if (H5Tinsert(tid(),
"dimension", HOFFSET(
ds_list_t, dim_idx), H5T_NATIVE_INT) < 0)
223 const hsize_t hdims[1] = {numrefs};
225 if ((sid = H5Screate_simple(1, hdims, NULL)).get() < 0)
233 hid_t scale_id = scale->
get()();
238 vector<ds_list_t> oldrefs;
243 if (H5Aread(aDimListOld.
get()(), type(), oldrefs.data()) < 0)
250 vector<ds_list_t> refs = oldrefs;
251 refs.reserve(ref_var_axis.size() + oldrefs.size());
252 std::copy(ref_var_axis.begin(), ref_var_axis.end(), std::back_inserter(refs));
256 hid_t aid = H5Acreate(scale_id, REFERENCE_LIST, type(), sid(), H5P_DEFAULT, H5P_DEFAULT);
257 if (aid < 0)
throw Exception(
"Cannot create new REFERENCE_LIST attribute.",
ioda_Here());
259 if (H5Awrite(newAtt.
get()(), type(),
static_cast<void*
>(refs.data())) < 0)
264 ssize_t sz = H5Iget_name(obj_id,
nullptr, 0);
266 std::vector<char> data(sz + 1, 0);
267 ssize_t ret = H5Iget_name(obj_id, data.data(), data.size());
269 return std::string(data.data());
HDF5 engine implementation of Attribute.
Utility functions for HDF5.
HDF5 engine implementation of Variable.
HDF5 resource handles in C++.
The ioda exception class.
This is the implementation of Attributes using HDF5.
Dimensions getDimensions() const final
Get Attribute's dimensions.
This is the implementation of Variables using HDF5.
Dimensions getDimensions() const final
A class to wrap HDF5's hid_t resource handles.
virtual void remove(const std::string &attname)
Delete an Attribute with the specified name.
Has_Attributes atts
Attributes.
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.
void resize(size_t newlen)
HH_hid_t attr_reference_list_space(hsize_t numrefs)
HH_hid_t attr_reference_list_type()
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.
IODA_DL void copy(const ObjectSelection &from, ObjectSelection &to, const ScaleMapping &scale_map)
Generic data copying function.
static void CloseP(hid_t *h)
static void CloseP(hid_t *h)
static void CloseP(hid_t *h)
static void CloseP(hid_t *h)
Data to pass to/from iterator classes.
A "view" of hvl_t objects. Adds C++ conveniences to an otherwise troublesome class.
Duplicate the HDF5 dataset list structure for REFERENCE_LISTs.