26 std::shared_ptr<ioda::ObsStore::Has_Attributes> b_atts(
backend_->atts);
29 std::shared_ptr<ioda::ObsStore::Has_Attributes> b_impl_atts(
backend_->impl_atts);
38 auto backend_type =
backend_->dtype();
39 ObsTypeInfo typ{backend_type.first, backend_type.second};
44 auto typeBackend = std::dynamic_pointer_cast<ObsStore_Type>(lhs.
getBackend());
52 }
catch (std::bad_cast) {
60 }
catch (std::bad_cast) {
67 std::vector<Dimensions_t>
chunks;
78 if (!
impl_atts_.
exists(
"_szip"))
return std::tuple<bool, unsigned, unsigned>(
false, 0, 0);
79 std::vector<unsigned> sz;
81 Expects(sz.size() == 2);
82 return std::tuple<bool, unsigned, unsigned>(
true, sz[0], sz[1]);
87 std::vector<Dimensions_t> iodaDims =
backend_->get_dimensions();
88 std::size_t numElems = 1;
89 for (std::size_t i = 0; i < iodaDims.size(); ++i) {
90 numElems *= iodaDims[i];
94 std::vector<Dimensions_t> iodaMaxDims =
backend_->get_max_dimensions();
95 auto iodaRank = gsl::narrow<Dimensions_t>(iodaDims.size());
96 auto iodaNumElems = gsl::narrow<Dimensions_t>(numElems);
97 Dimensions dims(iodaDims, iodaMaxDims, iodaRank, iodaNumElems);
103 return Variable{shared_from_this()};
108 auto scaleBackendBase = scale.
get();
109 auto scaleBackendDerived = std::dynamic_pointer_cast<ObsStore_Variable_Backend>(scaleBackendBase);
110 backend_->attachDimensionScale(DimensionNumber, scaleBackendDerived->backend_);
112 return Variable{shared_from_this()};
117 auto scaleBackendBase = scale.
get();
118 auto scaleBackendDerived = std::dynamic_pointer_cast<ObsStore_Variable_Backend>(scaleBackendBase);
119 backend_->detachDimensionScale(DimensionNumber, scaleBackendDerived->backend_);
121 return Variable{shared_from_this()};
127 backend_->setIsDimensionScale(dimensionScaleName);
128 return Variable{shared_from_this()};
132 backend_->getDimensionScaleName(res);
133 return Variable{std::make_shared<ObsStore_Variable_Backend>(*
this)};
139 auto scaleBackendBase = scale.
get();
140 auto scaleBackendDerived = std::dynamic_pointer_cast<ObsStore_Variable_Backend>(scaleBackendBase);
141 return backend_->isDimensionScaleAttached(DimensionNumber, scaleBackendDerived->backend_);
148 auto typeBackend = std::dynamic_pointer_cast<ObsStore_Type>(in_memory_dataType.
getBackend());
150 std::size_t dtype_size = typeBackend->dtype_size();
164 std::size_t extSize = mem_selection.
extent().size();
165 std::vector<Dimensions_t> dim_sizes(extSize);
167 dim_sizes.push_back(data.size() / dtype_size);
169 for (std::size_t i = 0; i < extSize; ++i) {
170 dim_sizes[i] = mem_selection.
extent()[i];
181 std::size_t m_npts = m_select.
npoints();
182 std::size_t f_npts = f_select.
npoints();
184 throw Exception(
"Number of points from memory is greater than that of file",
ioda_Here())
185 .
add(
"m_select.npoints()", m_npts)
186 .
add(
"f_select.npoints()", f_npts);
189 return Variable{shared_from_this()};
196 auto typeBackend = std::dynamic_pointer_cast<ObsStore_Type>(in_memory_dataType.
getBackend());
198 std::size_t dtype_size = typeBackend->dtype_size();
212 std::size_t extSize = mem_selection.
extent().size();
213 std::vector<Dimensions_t> dim_sizes(extSize);
215 dim_sizes.push_back(data.size() / dtype_size);
217 for (std::size_t i = 0; i < extSize; ++i) {
218 dim_sizes[i] = mem_selection.
extent()[i];
229 std::size_t m_npts = m_select.
npoints();
230 std::size_t f_npts = f_select.
npoints();
232 throw Exception(
"Number of points from file is greater than that of memory",
ioda_Here())
233 .
add(
"m_select.npoints()", m_npts)
234 .
add(
"f_select.npoints()", f_npts);
239 return Variable{std::make_shared<ObsStore_Variable_Backend>(*
this)};
247 std::shared_ptr<ioda::ObsStore::Has_Variables> b)
263 auto b = std::make_shared<ObsStore_Variable_Backend>(res);
271 const Type& in_memory_dataType,
272 const std::vector<Dimensions_t>& dimensions,
273 const std::vector<Dimensions_t>& max_dimensions,
276 auto typeBackend = std::dynamic_pointer_cast<ObsStore_Type>(in_memory_dataType.
getBackend());
280 std::vector<Dimensions_t> max_dims;
281 if (max_dimensions.empty()) {
282 max_dims = dimensions;
284 max_dims = max_dimensions;
289 os_params.
dtype_size = typeBackend->dtype_size();
292 const auto fvdata_final =
params.finalize();
295 = gsl::make_span<char>((
char*)&(fvdata_final),
sizeof(fvdata_final));
300 auto b = std::make_shared<ObsStore_Variable_Backend>(res);
303 if (
params.chunk) b->impl_atts_.add<Dimensions_t>(
"_chunks",
params.getChunks(dimensions));
304 if (
params.gzip_) b->impl_atts_.add<
int>(
"_gzip",
params.gzip_level_);
306 b->impl_atts_.add<
unsigned>(
"_szip", {
params.szip_options_,
params.szip_PixelsPerBlock_});
Functions for ioda::Variable and ioda::Has_Variables backed by ObsStore.
std::vector< std::string > list() const final
return list of variables in this container
ObsStore_HasVariables_Backend()
Variable open(const std::string &name) const final
open variable (throws exception if not found)
std::shared_ptr< ioda::ObsStore::Has_Variables > backend_
ObsStore Has_Variables.
detail::Type_Provider * getTypeProvider() const final
return an ObsStore type marker
virtual ~ObsStore_HasVariables_Backend()
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 new variable
bool exists(const std::string &name) const final
return true if variable exists
void remove(const std::string &name) final
remove variable
static ObsStore_Type_Provider * instance()
create instance of a type provider for frontend
Type getType() const final
Encapsulate the internal ObsStore_Type object as a Type.
FillValueData_t getFillValue() const final
Get the fill value associated with the Variable.
bool isDimensionScale() const final
is this variable a dimension scale (ie, hold coordinate values)
virtual ~ObsStore_Variable_Backend()
Variable resize(const std::vector< Dimensions_t > &newDims) final
resize dimensions
std::pair< bool, int > getGZIPCompression() const final
Get GZIP compression information.
Variable write(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection, const Selection &file_selection) final
transfer data into the ObsStore Variable
std::shared_ptr< ioda::ObsStore::Variable > backend_
ObsStore Variable.
detail::Type_Provider * getTypeProvider() const final
return an ObsStore type marker
std::vector< Dimensions_t > getChunkSizes() const final
Get chunking information.
ObsStore_Variable_Backend()
Has_Attributes impl_atts_
Extra Attributes.
Variable setIsDimensionScale(const std::string &dimensionScaleName) final
set flag to denote this variable as a dimension scale
Dimensions getDimensions() const final
return dimensions of this variable
Variable attachDimensionScale(unsigned int DimensionNumber, const Variable &scale) final
attach dimension to this variable
bool hasFillValue() const final
Does the Variable have an associated fill value?
bool isDimensionScaleAttached(unsigned int DimensionNumber, const Variable &scale) const final
is the given dimension scale attached to the given dimension number
Variable read(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection, const Selection &file_selection) const final
transfer data from the ObsStore Variable
Variable detachDimensionScale(unsigned int DimensionNumber, const Variable &scale) final
detach dimensions to this variable
std::tuple< bool, unsigned, unsigned > getSZIPCompression() const final
Get SZIP compression information.
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 ...
std::size_t npoints() const
returns number of points in selection
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.
const DerivedHasAtts read(const std::string &attrname, gsl::span< DataType > data) const
Open and read an Attribute, for expected 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...
bool isA() const
Convenience function to check a Variable's storage type.
Has_Attributes atts
Attributes.
std::string getDimensionScaleName() const
Get the name of this Variable's defined dimension scale.
std::shared_ptr< Variable_Backend > get() const
Gets a handle to the underlying object that implements the backend functionality.
@ ObsStore
ObsStore in-memory.
Selection & extent(const VecDimensions_t &sz)
Provide the dimensions of the object that you are selecting from.
ObsTypes
ObsStore data type markers.
ioda::ObsStore::Selection createObsStoreSelection(const ioda::Selection &selection, const std::vector< Dimensions_t > &dim_sizes)
translate a ioda::Selection to and ObsStore Selection
std::pair< ioda::ObsStore::ObsTypes, std::size_t > ObsTypeInfo
Describes the dimensions of an Attribute or Variable.
parameters for creating a new variable
gsl::span< char > fill_value
detail::FillValueData_t fvdata
Used to specify Variable creation-time properties.
Container used to store and manipulate fill values.