35 std::vector<std::string> res;
37 #if H5_VERSION_GE(1, 12, 0)
39 herr_t err = H5Oget_info1(
base_(), &info);
42 herr_t err = H5Oget_info(
base_(), &info);
46 res.resize(gsl::narrow<size_t>(info.num_attrs));
47 for (
size_t i = 0; i < res.size(); ++i) {
49 H5P_DEFAULT, H5P_DEFAULT),
58 #if H5_VERSION_GE(1, 12, 0)
60 herr_t err = H5Oget_info1(
base_(), &info);
63 herr_t err = H5Oget_info(
base_(), &info);
68 bool success = ret.first;
71 auto ret = H5Aexists(
base_(), attname.c_str());
78 herr_t err = H5Adelete(
base_(), attname.c_str());
83 #if H5_VERSION_GE(1, 12, 0)
85 herr_t err = H5Oget_info1(
base_(), &info);
88 herr_t err = H5Oget_info(
base_(), &info);
95 auto b = std::make_shared<HH_Attribute>(a);
99 auto ret = H5Aopen(
base_(),
name.c_str(), H5P_DEFAULT);
101 auto b = std::make_shared<HH_Attribute>(ret);
108 const std::vector<Dimensions_t>& dimensions) {
110 auto typeBackend = std::dynamic_pointer_cast<HH_Type>(in_memory_dataType.
getBackend());
111 std::vector<hsize_t> hDims;
112 hDims.reserve(dimensions.size());
113 for (
const auto& d : dimensions) hDims.push_back(gsl::narrow<hsize_t>(d));
115 hid_t space = (dimensions.empty())
116 ? H5Screate(H5S_SCALAR)
117 : H5Screate_simple(gsl::narrow<int>(hDims.size()), hDims.data(),
nullptr);
119 auto attI =
HH_hid_t(H5Acreate(
base_(), attrname.c_str(), typeBackend->handle(), dspace(),
120 H5P_DEFAULT, H5P_DEFAULT),
124 auto b = std::make_shared<HH_Attribute>(attI);
127 }
catch (std::bad_cast) {
128 std::throw_with_nested(
Exception(
"typeBackend is the wrong type. Expected HH_Type.",
133 auto ret = H5Arename(
base_(), oldName.c_str(), newName.c_str());
Describe the dimensions of a ioda::Attribute or ioda::Variable.
HDF5 engine implementation of Attribute.
HDF5 engine implementation of Has_Attributes.
HDF5 engine implementation of ioda::detail::Type_Provider.
Utility functions for HDF5.
This class represents attributes, which may be attached to both Variables and Groups.
The ioda exception class.
Represents the "type" (i.e. integer, string, float) of a piece of data.
This is the implementation of Attributes using HDF5.
std::string getName() const
bool exists(const std::string &attname) const final
Check if an attribute exists.
std::vector< std::string > list() const final
Attribute create(const std::string &attrname, const Type &in_memory_dataType, const std::vector< Dimensions_t > &dimensions={1}) final
Create an Attribute without setting its data.
detail::Type_Provider * getTypeProvider() const final
Query the backend and get the type provider.
void rename(const std::string &oldName, const std::string &newName) final
Rename an Attribute.
void remove(const std::string &attname) final
Delete an Attribute with the specified name.
static const hsize_t thresholdLinear
virtual ~HH_HasAttributes()
Attribute open(const std::string &name) const final
Open an attribute.
static HH_Type_Provider * instance()
A class to wrap HDF5's hid_t resource handles.
std::shared_ptr< Type_Backend > getBackend() const
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
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.
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 H5_index_t getAttrCreationOrder(hid_t obj, H5O_type_t objType)
Determine attribute creation order for a dataset.
static void CloseP(hid_t *h)
static void CloseP(hid_t *h)