29 namespace Selections {
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
VecDimensions_t dimension_indices_starts_
std::shared_ptr< InstantiatedSelection > SelectionBackend_t
VecDimensions_t offset_
The offset is a way to quickly shift the selection.
Selection & setOffset(const std::vector< Dimensions_t > &newOffset)
Shift the selection by an offset.
Selection(const VecDimensions_t &extent={}, SelectionState sel=SelectionState::ALL)
SelectionState
The "default" for the selection.
Selections::SelectionBackend_t concretize() const
Return the cached selection object.
Selection & extent(const VecDimensions_t &sz)
Provide the dimensions of the object that you are selecting from.
bool isConcretized() const
Is the selection already cached in the backend?
std::vector< VecDimensions_t > points_
static IODA_DL const Selection none
const VecDimensions_t & extent() const
VecDimensions_t dimension_indices_counts_
SelectionOperator
Selection enum.
virtual ~InstantiatedSelection()
const std::vector< SingleSelection > & getActions() const
std::vector< Dimensions_t > VecDimensions_t
void invalidate() const
Ditch the concretized selection.
VecDimensions_t extent_
The extent is the dimensions of the object that you are selecting from.
std::vector< SingleSelection > actions_
SingleSelection(SelectionOperator op, size_t dimension, const VecDimensions_t &indices_starts, const VecDimensions_t &indices_counts={})
SelectionState getDefault() const
SingleSelection(SelectionOperator op, const VecDimensions_t &start, const VecDimensions_t &count, const VecDimensions_t &stride={}, const VecDimensions_t &block={})
Selection & select(const SingleSelection &s)
Append a new selection.
static IODA_DL const Selection all
Selections::SelectionBackend_t backend_
Using an opaque object to implement a cache of the Selection for a backend.
const VecDimensions_t & getOffset() const
void concretize(Selections::SelectionBackend_t newobj) const
SingleSelection(SelectionOperator op, const std::vector< VecDimensions_t > &points)
Represents a hyperslab or a series of points in a selection, coupled with a SelectionOperator "action...
An opaque object used to store a selection for direct processing by a backend.