IODA
Selection.hpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020-2021 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 /*! \addtogroup ioda_internals_engines_obsstore
8  *
9  * @{
10  * \file Selection.hpp
11  * \brief Functions for ObsStore Selection
12  */
13 #pragma once
14 #include <cstring>
15 #include <gsl/gsl-lite.hpp>
16 #include <memory>
17 #include <string>
18 #include <typeindex>
19 #include <typeinfo>
20 #include <vector>
21 
22 #include "ioda/defs.h"
23 
24 namespace ioda {
25 namespace ObsStore {
26 /// \brief container of selection indices
27 /// \ingroup ioda_internals_engines_obsstore
28 typedef std::vector<std::size_t> SelectSpecs;
29 
30 /// \brief ObsStore selection modes
31 /// \ingroup ioda_internals_engines_obsstore
32 /// \details Selection mode meanings
33 /// ALL - select all points
34 /// INTERSECT - select points in intersection of dim indices
35 /// if dim indices are
36 /// dim 0: 1, 7, 8
37 /// dim 1: 2, 4, 10
38 /// then select the 9 points:
39 /// (1,2)
40 /// (1,4)
41 /// (1,10)
42 /// (7,2)
43 /// (7,4)
44 /// (7,10)
45 /// (8,2)
46 /// (8,4)
47 /// (8,10)
48 /// POINT - select points given by each entry in dim indices
49 /// if dim indices are
50 /// dim 0: 1, 7, 8
51 /// dim 1: 2, 4, 10
52 /// then select the 3 points:
53 /// (1,2)
54 /// (7,4)
55 /// (8,10)
56 enum class SelectionModes { ALL, INTERSECT, POINT };
57 
58 /// \ingroup ioda_internals_engines_obsstore
60 private:
61  /// \brief mode of selection
63 
64  /// \brief counter digits
65  std::vector<std::size_t> digits_;
66  /// \brief index to counter digit
67  std::size_t icount_ = 0;
68  /// \brief number of digits in counter
69  std::size_t ndigits_ = 0;
70  /// \brief size (range) for each digit place
71  std::vector<std::size_t> digit_sizes_;
72  /// \brief true when finished counting
73  bool counter_end_ = false;
74 
75 public:
76  SelectCounter();
77 
78  /// \brief allocate n digits for counter and set count to zero
79  /// \details Most significant digit is at the front (position 0) and
80  /// the least significant digit is at the back (position n-1).
81  void reset(const SelectionModes mode, const std::vector<std::size_t>& digit_sizes_);
82  /// \brief increment counter
83  void inc();
84  /// \brief returns true when inc attempts to go past final state of counter
85  bool finished() const;
86 
87  /// \brief return current counter value
88  const std::vector<std::size_t>& count() const;
89 };
90 
91 /// \ingroup ioda_internals_engines_obsstore
92 class Selection {
93 private:
94  /// \brief mode of selection (which impacts how linear memory is accessed)
96 
97  /// \brief end of selection for ALL mode
98  int end_ = 0;
99  /// \brief index value for ALL mode
100  int index_ = 0;
101 
102  /// \brief total number of points in selection
103  std::size_t npoints_ = 0;
104  /// \brief maximum allowed index value
105  std::size_t max_index_ = 0;
106 
107  /// \brief selection indices for each dimension
108  std::vector<SelectSpecs> dim_selects_;
109  /// \brief sizes of data dimensions (length is rank of dimensions)
110  std::vector<Dimensions_t> dim_sizes_;
111  /// \brief number of dimension selections per dimension
112  std::vector<std::size_t> dim_select_sizes_;
113 
114  /// \brief counter for generating linear memory indices
115  std::unique_ptr<SelectCounter> counter_;
116 
117 public:
118  Selection(const std::size_t start, const std::size_t npoints);
119  Selection(const SelectionModes mode, const std::vector<SelectSpecs>& dim_selects,
120  const std::vector<Dimensions_t>& dim_sizes);
122 
123  /// \brief returns selection mode
124  SelectionModes mode() const;
125 
126  /// \brief initializes iterator for walking through linear memory indices
127  void init_lin_indx();
128  /// \brief returns next linear memory index
129  std::size_t next_lin_indx();
130  /// \brief returns true when at the end of the linear memory indices
131  bool end_lin_indx() const;
132 
133  /// \brief returns number of points in selection
134  std::size_t npoints() const;
135 };
136 } // namespace ObsStore
137 } // namespace ioda
138 
139 /// @}
bool finished() const
returns true when inc attempts to go past final state of counter
const std::vector< std::size_t > & count() const
return current counter value
std::vector< std::size_t > digits_
counter digits
Definition: Selection.hpp:65
bool counter_end_
true when finished counting
Definition: Selection.hpp:73
std::size_t icount_
index to counter digit
Definition: Selection.hpp:67
SelectionModes mode_
mode of selection
Definition: Selection.hpp:62
void reset(const SelectionModes mode, const std::vector< std::size_t > &digit_sizes_)
allocate n digits for counter and set count to zero
std::size_t ndigits_
number of digits in counter
Definition: Selection.hpp:69
std::vector< std::size_t > digit_sizes_
size (range) for each digit place
Definition: Selection.hpp:71
std::size_t npoints() const
returns number of points in selection
int end_
end of selection for ALL mode
Definition: Selection.hpp:98
std::size_t npoints_
total number of points in selection
Definition: Selection.hpp:103
std::unique_ptr< SelectCounter > counter_
counter for generating linear memory indices
Definition: Selection.hpp:115
bool end_lin_indx() const
returns true when at the end of the linear memory indices
SelectionModes mode() const
returns selection mode
void init_lin_indx()
initializes iterator for walking through linear memory indices
std::vector< std::size_t > dim_select_sizes_
number of dimension selections per dimension
Definition: Selection.hpp:112
SelectionModes mode_
mode of selection (which impacts how linear memory is accessed)
Definition: Selection.hpp:95
std::vector< Dimensions_t > dim_sizes_
sizes of data dimensions (length is rank of dimensions)
Definition: Selection.hpp:110
int index_
index value for ALL mode
Definition: Selection.hpp:100
std::size_t max_index_
maximum allowed index value
Definition: Selection.hpp:105
std::size_t next_lin_indx()
returns next linear memory index
std::vector< SelectSpecs > dim_selects_
selection indices for each dimension
Definition: Selection.hpp:108
Common preprocessor definitions used throughout IODA.
@ ObsStore
ObsStore in-memory.
std::vector< std::size_t > SelectSpecs
container of selection indices
Definition: Selection.hpp:28
SelectionModes
ObsStore selection modes.
Definition: Selection.hpp:56