36 H5I_type_t typ = H5Iget_type(
attr_());
38 return (typ == H5I_ATTR);
42 ssize_t sz = H5Aget_name(
attr_(), 0,
nullptr);
44 auto s = gsl::narrow<size_t>(sz);
45 std::vector<char> v(s + 1,
'\0');
46 sz = H5Aget_name(
attr_(), v.size(), v.data());
48 return std::string(v.data());
52 if (H5Awrite(
attr_(), in_memory_dataType(), data.data()) < 0)
57 auto typeBackend = std::dynamic_pointer_cast<HH_Type>(in_memory_dataType.
getBackend());
58 write(data, typeBackend->handle);
63 herr_t ret = H5Aread(
attr_(), in_memory_dataType(),
static_cast<void*
>(data.data()));
68 auto typeBackend = std::dynamic_pointer_cast<HH_Type>(in_memory_dataType.
getBackend());
69 read(data, typeBackend->handle);
72 std::make_shared<HH_Attribute>(*
this)};
77 auto ret = H5Tequal(ttype(), otype());
79 return (ret > 0) ? true :
false;
84 auto typeBackend = std::dynamic_pointer_cast<HH_Type>(lhs.
getBackend());
95 H5T_class_t cls_lhs = H5Tget_class(typeBackend->handle.get());
97 if (cls_lhs == H5T_STRING && cls_my == H5T_STRING)
return true;
99 return isA(typeBackend->handle);
100 }
catch (std::bad_cast) {
120 std::vector<hsize_t> dims;
122 hssize_t numPoints = H5Sget_simple_extent_npoints(
space()());
123 int dimensionality = H5Sget_simple_extent_ndims(
space()());
124 if (dimensionality < 0)
throw Exception(
"H5Sget_simple_extent_ndims failed.",
ioda_Here());
125 dims.resize(dimensionality);
126 if (H5Sget_simple_extent_dims(
space()(), dims.data(),
nullptr) < 0)
129 ret.
numElements = gsl::narrow<decltype(Dimensions::numElements)>(numPoints);
130 ret.
dimensionality = gsl::narrow<decltype(Dimensions::dimensionality)>(dimensionality);
131 for (
const auto& d : dims) ret.
dimsCur.push_back(gsl::narrow<Dimensions_t>(d));
132 for (
const auto& d : dims) ret.
dimsMax.push_back(gsl::narrow<Dimensions_t>(d));
Describe the dimensions of a ioda::Attribute or ioda::Variable.
HDF5 engine implementation of Attribute.
HDF5 engine implementation of ioda::detail::Type_Provider.
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.
bool isA() const
Convenience function to check an Attribute's storage type.
DataType read() const
Read a single value (convenience function).
std::string getName() const
detail::Type_Provider * getTypeProvider() const final
Query the backend and get the type provider.
Type getType() const final
Get HDF5-internal type, wrapped as a ioda::Type object.
Dimensions getDimensions() const final
Get Attribute's dimensions.
HH_hid_t internalType() const
Get HDF5-internal type.
Attribute write(gsl::span< char > data, const Type &in_memory_dataType) final
The fundamental write function. Backends overload this function to implement all write operations.
static HH_Type_Provider * instance()
This is the implementation of ioda::Type using HDF5. Do not use outside of IODA.
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...
Describes the dimensions of an Attribute or Variable.
std::vector< Dimensions_t > dimsCur
The dimensions of the data.
Dimensions_t dimensionality
The dimensionality (rank) of the data.
std::vector< Dimensions_t > dimsMax
This must always equal dimsCur for Attribute.
static void CloseP(hid_t *h)
static void CloseP(hid_t *h)