35 class HH_HasVariables;
40 public std::enable_shared_from_this<HH_Variable> {
50 bool isVariable()
const;
60 Type getType() const final;
64 bool isA(
Type lhs) const final;
71 template <class DataType>
73 auto ttype = Types::GetType<DataType>(getTypeProvider());
81 bool isExactlyA(
HH_hid_t ttype)
const;
87 template <
class DataType>
89 auto ttype = Types::GetType<DataType>(getTypeProvider());
91 auto ret = H5Tequal(ttype(), otype());
92 if (ret < 0)
throw Exception(
"Cannot check type equality. General failure.",
ioda_Here());
93 return (ret > 0) ? true :
false;
99 static
bool hasFillValue(
HH_hid_t create_plist);
100 bool hasFillValue() const final;
103 static std::vector<Dimensions_t> getChunkSizes(
HH_hid_t create_plist, const
Dimensions& dims);
104 std::vector<Dimensions_t> getChunkSizes() const final;
105 static std::pair<
bool,
int> getGZIPCompression(
HH_hid_t create_plist);
106 std::pair<
bool,
int> getGZIPCompression() const final;
107 static std::tuple<
bool,
unsigned,
unsigned> getSZIPCompression(
HH_hid_t create_plist);
108 std::tuple<
bool,
unsigned,
unsigned> getSZIPCompression() const final;
112 Variable attachDimensionScale(
unsigned int DimensionNumber, const
Variable& scale) final;
113 Variable detachDimensionScale(
unsigned int DimensionNumber, const
Variable& scale) final;
114 bool isDimensionScale() const final;
115 Variable setIsDimensionScale(const std::
string& dimensionScaleName) final;
116 Variable getDimensionScaleName(std::
string& res) const final;
126 std::vector<std::vector<
Named_Variable>> getDimensionScaleMappings(
127 const std::vector<
Named_Variable>& scalesToQueryAgainst,
bool firstOnly,
128 const std::vector<
unsigned>& dimensionNumbers) const;
130 bool isDimensionScaleAttached(
unsigned int DimensionNumber, const
Variable& scale) const final;
132 std::vector<std::vector<
Named_Variable>> getDimensionScaleMappings(
134 bool firstOnly = true) const final;
136 Variable write(gsl::span<
char> data, const
Type& in_memory_dataType,
138 Variable read(gsl::span<
char> data, const
Type& in_memory_dataType,
147 bool doDims = true) const final;
Interfaces for ioda::Group and related classes.
HDF5 engine implementation of Attribute.
HDF5 resource handles in C++.
Dataspace selections for reading and writing ioda::Variable data.
Interfaces for ioda::Type and related classes.
The ioda exception class.
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
Represents the "type" (i.e. integer, string, float) of a piece of data.
This is the implementation of Variables using HDF5.
std::weak_ptr< const HH_HasVariables > container_
A class to wrap HDF5's hid_t resource handles.
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
Variable backends inherit from this.
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...
std::shared_ptr< InstantiatedSelection > SelectionBackend_t
T getFillValue(FillValueData_t &data)
Describes the dimensions of an Attribute or Variable.
A named pair of (variable_name, ioda::Variable).
Used to specify Variable creation-time properties.
Container used to store and manipulate fill values.