46 : base_(grp), fileroot_(fileroot) {}
56 if (fratts.
exists(
"_NCProperties"))
58 else if (fratts.
exists(
"_ioda_layout"))
65 for (
size_t i = 0; i < paths.size(); ++i) {
67 htri_t linkExists = H5Lexists(
base_(), p.c_str(), H5P_DEFAULT);
70 .
add(
"dsetname", dsetname);
71 if (linkExists == 0)
return false;
73 #if H5_VERSION_GE(1, 12, 0)
75 herr_t err = H5Oget_info_by_name1(
base_(), dsetname.c_str(), &oinfo,
79 herr_t err = H5Oget_info_by_name(
base_(), dsetname.c_str(), &oinfo,
83 return (oinfo.type == H5O_type_t::H5O_TYPE_DATASET);
87 auto ret = H5Ldelete(
base_(),
name.c_str(), H5P_DEFAULT);
92 hid_t dsetid = H5Dopen(
base_(),
name.c_str(), H5P_DEFAULT);
96 auto b = std::make_shared<HH_Variable>(
103 std::vector<std::string> res;
105 herr_t e = H5Gget_info(
base_(), &info);
107 res.reserve(gsl::narrow<size_t>(info.nlinks));
108 for (hsize_t i = 0; i < info.nlinks; ++i) {
111 = H5Lget_name_by_idx(
base_(),
".", H5_INDEX_NAME, H5_ITER_NATIVE, i, NULL, 0, H5P_DEFAULT);
113 std::vector<char> vName(szName + 1,
'\0');
114 if (H5Lget_name_by_idx(
base_(),
".", H5_INDEX_NAME, H5_ITER_NATIVE,
115 i, vName.data(), szName + 1,H5P_DEFAULT) < 0)
119 #if H5_VERSION_GE(1, 12, 0)
121 herr_t err = H5Oget_info_by_idx1(
base_(),
".", H5_INDEX_NAME, H5_ITER_NATIVE,
122 i, &oinfo, H5P_DEFAULT);
125 herr_t err = H5Oget_info_by_idx(
base_(),
".", H5_INDEX_NAME, H5_ITER_NATIVE,
126 i, &oinfo, H5P_DEFAULT);
129 if (err < 0)
continue;
130 if (oinfo.type == H5O_type_t::H5O_TYPE_DATASET) res.emplace_back(std::string(vName.data()));
136 const std::vector<Dimensions_t>& dimensions,
137 const std::vector<Dimensions_t>& max_dimensions,
140 auto typeBackend = std::dynamic_pointer_cast<HH_Type>(in_memory_dataType.
getBackend());
149 typeBackend->handle(),
164 auto b = std::make_shared<HH_Variable>(res, shared_from_this());
169 if (
params.fillValue_.set_) {
170 Attribute fv = var.atts.create(
"_FillValue", in_memory_dataType);
172 fv.
write(gsl::make_span<char>(
173 const_cast<char*
>(
reinterpret_cast<const char*
>(&fvdata)),
179 catch (std::bad_cast&) {
180 std::throw_with_nested(
Exception(
"in_memory_dataType was constructed using the wrong backend.",
ioda_Here()));
187 const std::vector<std::pair<
Variable, std::vector<Variable>>>& mapping) {
189 using std::make_pair;
191 using std::shared_ptr;
197 vector<pair<shared_ptr<HH_Variable>, vector<shared_ptr<HH_Variable>>>> hmapping;
198 hmapping.reserve(mapping.size());
199 for (
const auto& m : mapping) {
200 auto scaleVarBackend = std::dynamic_pointer_cast<HH_Variable>(m.first.get());
201 vector<shared_ptr<HH_Variable>> varsBackend;
202 varsBackend.reserve(m.second.size());
203 for (
const auto& v : m.second) {
204 varsBackend.push_back(std::dynamic_pointer_cast<HH_Variable>(v.get()));
206 hmapping.emplace_back(make_pair(scaleVarBackend, varsBackend));
215 map<hid_t, ref_t> HIDtoVarRef;
216 auto EmplaceVarRef = [&HIDtoVarRef](
const shared_ptr<HH_Variable> &v) ->
void {
218 herr_t err = H5Rcreate(&ref, v->get()(),
".", H5R_OBJECT, -1);
220 HIDtoVarRef[v->get()()] = ref;
222 for (
const auto& m : hmapping) {
223 EmplaceVarRef(m.first);
224 for (
const auto& v : m.second) EmplaceVarRef(v);
232 vector<pair<shared_ptr<HH_Variable>, vector<vector<ref_t>>>> VarToScaleMap;
235 shared_ptr<HH_Variable> scale;
236 vector<ds_list_t> vars;
238 map<haddr_t, VarMapData> ScaleToVarMap;
240 for (
auto& m : hmapping) {
241 shared_ptr<HH_Variable> v = m.first;
242 const vector<shared_ptr<HH_Variable>>& scales = m.second;
243 vector<vector<ref_t>> refScalesForVar(gsl::narrow<size_t>(v->getDimensions().dimensionality));
244 for (
unsigned i = 0; i < gsl::narrow<unsigned>(scales.size()); ++i) {
245 if (i >= refScalesForVar.size()) {
249 hid_t scale_ht = scales[i]->get()();
250 #if H5_VERSION_GE(1, 12, 0)
255 if (H5Oget_info1(scale_ht, &info) < 0)
throw Exception(
"H5Oget_info failed.",
ioda_Here());
258 refScalesForVar[i].emplace_back(HIDtoVarRef.at(scale_ht));
260 if (!ScaleToVarMap.count(info.addr))
263 newdata.scale = scales[i];
264 ScaleToVarMap.emplace(make_pair(info.addr, newdata));
267 ScaleToVarMap[info.addr].vars.push_back(
ds_list_t{HIDtoVarRef.at(v->get()()), i});
269 VarToScaleMap.emplace_back(make_pair(v, refScalesForVar));
276 for (
auto& var_scale : VarToScaleMap) {
277 auto& var = var_scale.first;
278 auto& scales = var_scale.second;
283 for (
auto& scale_var : ScaleToVarMap) {
284 auto& scale_addr = scale_var.first;
285 auto& scale = scale_var.second.scale;
286 auto& vars = scale_var.second.vars;
Convenience classes for constructing ObsSpaces and setting up new Dimension Scales.
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 Has_Variables.
HDF5 engine implementation of ioda::detail::Type_Provider.
Utility functions for HDF5.
HDF5 engine variable creation parameters.
HDF5 engine implementation of Variable.
HDF5 resource handles in C++.
This class represents attributes, which may be attached to both Variables and Groups.
The ioda exception class.
Exception & add(const std::string &key, const T value)
Add a key-value pair to the error message.
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
Represents the "type" (i.e. integer, string, float) of a piece of data.
virtual Attribute_Implementation write(gsl::span< char > data, const Type &type)
The fundamental write function. Backends overload this function to implement all write operations.
Variable create(const std::string &name, const Type &in_memory_dataType, const std::vector< Dimensions_t > &dimensions={1}, const std::vector< Dimensions_t > &max_dimensions={}, const VariableCreationParameters ¶ms=VariableCreationParameters()) final
Create a Variable without setting its data.
bool exists(const std::string &name) const final
Does a Variable with the specified name exist?
std::vector< std::string > list() const final
FillValuePolicy getFillValuePolicy() const final
Get the fill value policy used for Variables within this Group.
detail::Type_Provider * getTypeProvider() const final
Query the backend and get the type provider.
Variable open(const std::string &name) const final
Open a Variable by name.
void attachDimensionScales(const std::vector< std::pair< Variable, std::vector< Variable >>> &mapping) final
HDF5-optimized collective variable version of attachDimensionScales.
virtual ~HH_HasVariables()
void remove(const std::string &name) final
Delete an Attribute with the specified name.
static HH_Type_Provider * instance()
A class to wrap HDF5's hid_t resource handles.
This encapsulates dataset creation parameters. Used for generating HDF5 property lists for variable c...
static HH_hid_t datasetAccessPlist()
The default dataset access property list. Currently a nullop.
HH_hid_t datasetCreationPlist() const
Generates a dataset creation property list, which encodes the chunking options, compression,...
static HH_hid_t linkCreationPlist()
The ioda-default link creation property list. @detail This just sets a property to create missing int...
HH_hid_t dataspace() const
Generate a dataspace for the constructor-provided dimensions and max dimensions.
virtual bool exists(const std::string &attname) const
Does an Attribute with the specified name exist?
std::shared_ptr< Type_Backend > getBackend() const
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
IODA_DL std::string condensePaths(const std::vector< std::string > &p, size_t start=0, size_t end=std::string::npos)
The inverse of splitPaths. Concatenate strings, separating with '/'.
IODA_DL std::vector< std::string > splitPaths(const std::string &p)
Split a string based on occurances of the '/' character.
FillValuePolicy
This option describes the default fill values that will be used if the user does not manually specify...
@ HDF5
Set all fill values to zero or null strings.
@ NETCDF4
Use NetCDF4 default fill values. This is the default option for ioda files.
IODA_HIDDEN std::string getNameFromIdentifier(hid_t obj_id)
Gets a variable / group / link name from an id. Useful for debugging.
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 void attr_update_dimension_list(HH_Variable *var, const std::vector< std::vector< ref_t >> &new_dim_list)
Attribute DIMENSION_LIST update function.
Used to specify Variable creation-time properties.
static void CloseP(hid_t *h)
Duplicate the HDF5 dataset list structure for REFERENCE_LISTs.