34 const Vec_t& max_dims, std::shared_ptr<HH_Type> data_type) {
43 for (
const auto& d : dims)
dims_.push_back(gsl::narrow<hsize_t>(d));
45 if (dims.size() < max_dims.size())
throw;
46 for (
size_t i = 0; i < max_dims.size(); ++i) {
50 max_dims_.push_back(gsl::narrow<hsize_t>(dims[i]));
52 max_dims_.push_back(gsl::narrow<hsize_t>(max_dims[i]));
68 std::vector<hsize_t> hcs(chunksizes.size());
69 for (
size_t i = 0; i < chunksizes.size(); ++i) {
70 hcs[i] = gsl::narrow<hsize_t>(
71 (chunksizes[i] > 0) ? chunksizes[i] :
dims_[i]);
72 if (hcs[i] == 0)
throw;
79 if (H5Pset_chunk(
dcp_(),
static_cast<int>(hcs.size()), hcs.data()) < 0)
throw;
101 if (0 > H5Pset_fill_value(
dcp_(), data_type->handle(), &(fvdata)))
throw;
108 hid_t space = (
dims_.empty()) ? H5Screate(H5S_SCALAR)
109 : H5Screate_simple(gsl::narrow<int>(
dims_.size()),
dims_.data(),
111 if (space < 0)
throw;
125 if (H5Pset_create_intermediate_group(res.
get(), 1) < 0)
throw;
Convenience classes for constructing ObsSpaces and setting up new Dimension Scales.
HDF5 engine implementation of Has_Variables.
HDF5 engine implementation of ioda::detail::Type_Provider.
HDF5 engine variable creation parameters.
HDF5 resource handles in C++.
A class to wrap HDF5's hid_t resource handles.
static HH_hid_t datasetAccessPlist()
The default dataset access property list. Currently a nullop.
VariableCreation(const VariableCreationParameters &p, const Vec_t &dims, const Vec_t &max_dims, std::shared_ptr< HH_Type > data_type)
Manages property lists for HDF5 variable creation.
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.
std::vector< ioda::Dimensions_t > Vec_t
constexpr int Unlimited
Specifies that a dimension is resizable to infinity.
constexpr int Unspecified
Specifies that a dimension has no specified size. Tells ioda to figure it out from elsewhere.
Used to specify Variable creation-time properties.
unsigned int szip_PixelsPerBlock_
detail::FillValueData_t fillValue_
unsigned int szip_options_
std::vector< Dimensions_t > getChunks(const std::vector< Dimensions_t > &cur_dims) const
bool chunk
Do we chunk this variable? Required for extendible / compressible Variables.
Order-obeying filter insertions and replacements.
void setSZIP(unsigned int optm, unsigned int ppb)
void setGZIP(unsigned int level)
static void CloseP(hid_t *h)
static void CloseP(hid_t *h)
static void CloseP(hid_t *h)
FillValueUnion_t finalize() const