IODA
Selection.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020-2021 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /*! \addtogroup ioda_cxx_variable
9  *
10  * @{
11  * \file Selection.h
12  * \brief Dataspace selections for reading and writing ioda::Variable data.
13  */
14 #include <memory>
15 #include <utility>
16 #include <vector>
17 
18 #include "ioda/defs.h"
19 
20 namespace ioda {
21 class Variable;
22 /// \brief Selection enum
23 /// \ingroup ioda_cxx_variable
25 /// \brief The "default" for the selection.
26 /// \ingroup ioda_cxx_variable
27 enum class SelectionState { ALL, NONE };
28 
29 namespace Selections {
30 
31 /// @brief An opaque object used to store a selection for direct processing by a backend.
34 };
35 typedef std::shared_ptr<InstantiatedSelection> SelectionBackend_t;
36 } // namespace Selections
37 
38 /// \brief A Selection represents the bounds of the data, in ioda or in userspace, that
39 /// you are reading or writing.
40 /// \ingroup ioda_cxx_variable
41 ///
42 /// It is made of a series of SingleSelection objects.
43 /// Each of these objects represents a selection operation that filters the range that
44 /// came before.
45 ///
46 /// \note In user-space, you need to specify the bounds of your multi-dimensional storage
47 /// container. Use the extent function to do this.
48 class Selection {
49 public:
50  typedef std::vector<Dimensions_t> VecDimensions_t;
51  /// \brief Represents a hyperslab or a series of points in a selection, coupled with
52  /// a SelectionOperator "action".
53  /// \see SelectionOperator
54  /// \see Selection
55  /// \details There are three types of selections that you can make.
56  /// 1) A hyperslab selection, where you can define the bounds using
57  /// a start point, a span (count), stride, and block. For details
58  /// of what these all mean, see the HDF5 documentation.
59  /// 2) Individual points.
60  /// 3) Axis + indices along the axis. You select a fundamental axis
61  /// (e.g. location, channel), and then list the indices along
62  /// that axis that you want to select.
63  /// \note SelectionOperator can be a bit troublesome for case #3.
64  /// If the result is not what you would naturally expect,
65  /// please read the code and file an issue.
66  /// \note Case 3 might not be supported on the HDF5 backend. Requires HDF5 version >= 1.12.0.
67  struct SingleSelection {
69  // Selection type 1: hyperslab
71  // Selection type 2: individual points
72  std::vector<VecDimensions_t> points_;
73  // Selection type 3: axis + indices along axis
74  size_t dimension_;
76  // Constructors
78  const VecDimensions_t& count, const VecDimensions_t& stride = {},
79  const VecDimensions_t& block = {})
80  : op_(op), start_(start), count_(count), stride_(stride), block_(block), dimension_(0) {}
81  SingleSelection(SelectionOperator op, const std::vector<VecDimensions_t>& points)
82  : op_(op), points_(points), dimension_(0) {}
83  SingleSelection(SelectionOperator op, size_t dimension, const VecDimensions_t& indices_starts,
84  const VecDimensions_t& indices_counts = {})
85  : op_(op),
86  dimension_(dimension),
87  dimension_indices_starts_(indices_starts),
88  dimension_indices_counts_(indices_counts) {}
90  };
91 
93  : default_(sel), extent_(extent) {}
95  /// Shift the selection by an offset.
96  Selection& setOffset(const std::vector<Dimensions_t>& newOffset) {
97  backend_.reset();
98  offset_ = newOffset;
99  return *this;
100  }
101  const VecDimensions_t& getOffset() const { return offset_; }
102  /// Append a new selection
104  backend_.reset();
105  actions_.push_back(s);
106  return *this;
107  }
108  const std::vector<SingleSelection>& getActions() const { return actions_; }
109  SelectionState getDefault() const { return default_; }
110  /// Provide the dimensions of the object that you are selecting from.
112  backend_.reset();
113  extent_ = sz;
114  return *this;
115  }
116  const VecDimensions_t& extent() const { return extent_; }
117 
118  /// @brief Talk to the backend and generate the appropriate selection object.
119  /// @return The instantiated backend selection object.
121  /// @brief Return the cached selection object
122  /// @return The cached selection, if any.
124  inline void concretize(Selections::SelectionBackend_t newobj) const { backend_ = newobj; }
125  /// @brief Is the selection already cached in the backend?
126  /// @return true if yes, false if no.
127  bool isConcretized() const { return backend_.use_count() > 0; }
128  /// @brief Ditch the concretized selection.
129  void invalidate() const { backend_.reset(); }
130 
131  static IODA_DL const Selection all;
132  static IODA_DL const Selection none;
133 
134 private:
135  /// @brief Using an opaque object to implement a cache of the Selection for a backend.
136  /// @details This allows the selection to be reused without expensive repetitive
137  /// recomputation. Any new manipulation invalidates backend_.
139 
141  std::vector<SingleSelection> actions_;
142  /// The offset is a way to quickly shift the selection.
144  /// The extent is the dimensions of the object that you are selecting from.
146 };
147 
148 
149 
150 
151 } // namespace ioda
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
Definition: Selection.h:48
Variables store data!
Definition: Variable.h:680
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
VecDimensions_t dimension_indices_starts_
Definition: Selection.h:75
std::shared_ptr< InstantiatedSelection > SelectionBackend_t
Definition: Selection.h:35
VecDimensions_t offset_
The offset is a way to quickly shift the selection.
Definition: Selection.h:143
Selection & setOffset(const std::vector< Dimensions_t > &newOffset)
Shift the selection by an offset.
Definition: Selection.h:96
Selection(const VecDimensions_t &extent={}, SelectionState sel=SelectionState::ALL)
Definition: Selection.h:92
SelectionState
The "default" for the selection.
Definition: Selection.h:27
Selections::SelectionBackend_t concretize() const
Return the cached selection object.
Definition: Selection.h:123
Selection & extent(const VecDimensions_t &sz)
Provide the dimensions of the object that you are selecting from.
Definition: Selection.h:111
bool isConcretized() const
Is the selection already cached in the backend?
Definition: Selection.h:127
std::vector< VecDimensions_t > points_
Definition: Selection.h:72
static IODA_DL const Selection none
Definition: Selection.h:132
const VecDimensions_t & extent() const
Definition: Selection.h:116
VecDimensions_t dimension_indices_counts_
Definition: Selection.h:75
SelectionOperator
Selection enum.
Definition: Selection.h:24
const std::vector< SingleSelection > & getActions() const
Definition: Selection.h:108
std::vector< Dimensions_t > VecDimensions_t
Definition: Selection.h:50
void invalidate() const
Ditch the concretized selection.
Definition: Selection.h:129
VecDimensions_t extent_
The extent is the dimensions of the object that you are selecting from.
Definition: Selection.h:145
std::vector< SingleSelection > actions_
Definition: Selection.h:141
SingleSelection(SelectionOperator op, size_t dimension, const VecDimensions_t &indices_starts, const VecDimensions_t &indices_counts={})
Definition: Selection.h:83
SelectionState getDefault() const
Definition: Selection.h:109
SingleSelection(SelectionOperator op, const VecDimensions_t &start, const VecDimensions_t &count, const VecDimensions_t &stride={}, const VecDimensions_t &block={})
Definition: Selection.h:77
Selection & select(const SingleSelection &s)
Append a new selection.
Definition: Selection.h:103
SelectionState default_
Definition: Selection.h:140
static IODA_DL const Selection all
Definition: Selection.h:131
Selections::SelectionBackend_t backend_
Using an opaque object to implement a cache of the Selection for a backend.
Definition: Selection.h:138
const VecDimensions_t & getOffset() const
Definition: Selection.h:101
void concretize(Selections::SelectionBackend_t newobj) const
Definition: Selection.h:124
SingleSelection(SelectionOperator op, const std::vector< VecDimensions_t > &points)
Definition: Selection.h:81
Represents a hyperslab or a series of points in a selection, coupled with a SelectionOperator "action...
Definition: Selection.h:67
An opaque object used to store a selection for direct processing by a backend.
Definition: Selection.h:32