IODA
ObsFrame.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2019 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 
8 #ifndef IO_OBSFRAME_H_
9 #define IO_OBSFRAME_H_
10 
11 #include <iostream>
12 #include <typeindex>
13 #include <typeinfo>
14 
15 #include "eckit/config/LocalConfiguration.h"
16 
17 #include "ioda/Misc/Dimensions.h"
18 #include "ioda/core/IodaUtils.h"
19 #include "ioda/io/ObsIo.h"
20 #include "ioda/ObsGroup.h"
21 #include "ioda/ObsSpaceParameters.h"
23 
24 #include "oops/util/Logger.h"
25 #include "oops/util/Printable.h"
26 
27 namespace ioda {
28 
29 /// \details The ObsFrame class along with its subclasses are responsible for appying
30 /// the timing window filtering, record number assignment (according to the obsgrouping
31 /// specification) and the application of MPI distribution when transferring data from a
32 /// source (file or generator) into memory. For data transfer in both directions (source to
33 /// memory, and memory to destination), this class also provides a means for transferring
34 /// data in chunks (first n locations, followed by second n locations, etc.) which for
35 /// a transfer from a file to memory can be utilized to avoid reading in the whole file
36 /// into memory before applying the filtering and distribution.
37 ///
38 /// \author Stephen Herbener (JCSDA)
39 
40 class ObsFrame : public util::Printable {
41  public:
42  explicit ObsFrame(const ObsSpaceParameters & params);
43  ~ObsFrame() {}
44 
45  /// \brief return number of maximum variable size (along first dimension) from ObsIo
46  Dimensions_t ioMaxVarSize() const {return obs_io_->maxVarSize();}
47 
48  /// \brief return number of locations from ObsIo
49  Dimensions_t ioNumLocs() const {return obs_io_->numLocs();}
50 
51  /// \brief return number of regular variables from ObsIo
52  Dimensions_t ioNumVars() const {return obs_io_->numVars();}
53 
54  /// \brief return number of dimension scale variables from ObsIo
55  Dimensions_t ioNumDimVars() const {return obs_io_->numDimVars();}
56 
57  /// \brief return variables container from ObsIo
58  Has_Variables & vars() const {return obs_io_->vars();}
59 
60  /// \brief return attributes container from ObsIo
61  Has_Attributes & atts() const {return obs_io_->atts();}
62 
63  /// \brief return list of regular variables from ObsIo
64  const VarNameObjectList & ioVarList() const {return obs_io_->varList();}
65 
66  /// \brief return list of dimension scale variables from ObsIo
67  const VarNameObjectList & ioDimVarList() const {return obs_io_->dimVarList();}
68 
69  /// \brief return map from variables to their attached dimension scales
70  VarDimMap ioVarDimMap() const {return obs_io_->varDimMap();}
71 
72  /// \brief update variable, dimension info in the ObsIo object
73  void ioUpdateVarDimInfo() const {obs_io_->updateVarDimInfo();}
74 
75  /// \brief return true if variable is dimensioned by nlocs
76  bool ioIsVarDimByNlocs(const std::string & varName) const {
77  return obs_io_->isVarDimByNlocs(varName);
78  }
79 
80  /// \brief return number of locations
81  virtual std::size_t frameNumLocs() const {return nlocs_;}
82 
83  /// \brief return number of records
84  virtual std::size_t frameNumRecs() const {return nrecs_;}
85 
86  /// \brief return number of locations that were selected from ObsIo
87  Dimensions_t globalNumLocs() const {return gnlocs_;}
88 
89  /// \brief return number of locations from obs source that were outside the time window
91 
92  /// \brief return list of indices indicating which locations were selected from ObsIo
93  virtual std::vector<std::size_t> index() const {return std::vector<std::size_t>{};}
94 
95  /// \brief return list of record numbers from ObsIo
96  virtual std::vector<std::size_t> recnums() const {return std::vector<std::size_t>{};}
97 
98  /// \brief initialize frame for a read frame object
99  virtual void frameInit() {}
100 
101  /// \brief initialize for a write frame object
102  /// \param varList source ObsGroup list of regular variables
103  /// \param dimVarList source ObsGroup list of dimension variables
104  /// \param varDimMap source ObsGroup map showing variables with associated dimensions
105  /// \param maxVarSize source ObsGroup maximum variable size along the first dimension
106  virtual void frameInit(const VarNameObjectList & varList,
107  const VarNameObjectList & varDimList,
108  const VarDimMap & varDimMap, const Dimensions_t maxVarSize) {}
109 
110  /// \brief move to the next frame for a read frame object
111  virtual void frameNext() {}
112 
113  /// \brief move to the next frame for a write frame object
114  /// \param varList source ObsGroup list variable names
115  virtual void frameNext(const VarNameObjectList & varList) {}
116 
117  /// \brief true if a frame is available (not past end of frames)
118  virtual bool frameAvailable() = 0;
119 
120  /// \brief return current frame starting index
121  /// \param varName name of variable
122  virtual Dimensions_t frameStart() = 0;
123 
124  /// \brief return current frame count for variable
125  /// \details Variables can be of different sizes so it's possible that the
126  /// frame has moved past the end of some variables but not so for other
127  /// variables. When the frame is past the end of the given variable, this
128  /// routine returns a zero to indicate that we're done with this variable.
129  /// \param varName variable name
130  virtual Dimensions_t frameCount(const std::string & varName) = 0;
131 
132  /// \brief return adjusted nlocs frame start
133  virtual Dimensions_t adjNlocsFrameStart() const {return 0;}
134 
135  /// \brief return adjusted nlocs frame count
136  virtual Dimensions_t adjNlocsFrameCount() const {return 0;}
137 
138  /// \brief create selection object for accessing a memory buffer
139  /// \param varShape dimension sizes for variable being transferred
140  /// \param frameCount size of current frame
141  Selection createMemSelection(const std::vector<Dimensions_t> & varShape,
142  const Dimensions_t frameCount);
143 
144  /// \brief create selection object for accessing the entire frame variable
145  /// \param varShape dimension sizes for variable being transferred
146  /// \param frameCount size of current frame
147  Selection createEntireFrameSelection(const std::vector<Dimensions_t> & varShape,
148  const Dimensions_t frameCount);
149 
150  /// \brief create selection object for accessing a frame from a whole variable
151  /// \param varShape dimension sizes for variable being transferred
152  /// \param frameStart start of current frame for current variable
153  /// \param frameCount size of current frame
154  Selection createVarSelection(const std::vector<Dimensions_t> & varShape,
155  const Dimensions_t frameStart,
156  const Dimensions_t frameCount);
157 
158  protected:
159  //------------------ protected data members ------------------------------
160  /// \brief ObsIo object
161  std::shared_ptr<ObsIo> obs_io_;
162 
163  /// \brief ObsGroup object (temporary storage for a single frame)
165 
166  /// \brief number of records from source (file or generator)
167  Dimensions_t nrecs_;
168 
169  /// \brief number of locations from source (file or generator)
170  Dimensions_t nlocs_;
171 
172  /// \brief total number of locations from source (file or generator) that were
173  /// selected after the timing window filtering
174  Dimensions_t gnlocs_;
175 
176  /// \brief number of nlocs from the file (gnlocs) that are outside the time window
178 
179  /// \brief ObsIo parameter specs
181 
182  /// \brief maximum frame size
183  Dimensions_t max_frame_size_;
184 
185  /// \brief maximum variable size
186  Dimensions_t max_var_size_;
187 
188  /// \brief current frame starting index
189  Dimensions_t frame_start_;
190 
191  //------------------ protected functions ----------------------------------
192 
193  /// \brief create selection object for accessing an ObsIo variable
194  /// \param varShape dimension sizes for variable being transferred
195  /// \param frameStart starting index number for current frame
196  /// \param frameCount size of current frame
197  Selection createObsIoSelection(const std::vector<Dimensions_t> & varShape,
198  const Dimensions_t frameStart,
199  const Dimensions_t frameCount);
200 
201  /// \brief create a frame object based on dimensions and variables from a source ObsGroup
202  /// \details This function is used to set up a temprary ObsGroup based frame in memory
203  /// which is to be used for processing and transferring data between ObsIo
204  /// and ObsSpace variables. The two parameters dimVarList and varDimMap can
205  /// be created with IodaUtils::collectVarDimInfo() in IodaUtils.h.
206  /// \param varList source ObsGroup list of regular variables
207  /// \param dimVarList source ObsGroup list of dimension variable names
208  /// \param varDimMap source ObsGroup map showing variables with associated dimensions
209  void createFrameFromObsGroup(const VarNameObjectList & varList,
210  const VarNameObjectList & dimVarList,
211  const VarDimMap & varDimMap);
212 
213  /// \brief print() for oops::Printable base class
214  /// \param ostream output stream
215  virtual void print(std::ostream & os) const = 0;
216 };
217 
218 } // namespace ioda
219 
220 #endif // IO_OBSFRAME_H_
Describe the dimensions of a ioda::Attribute or ioda::Variable.
Interfaces for ioda::ObsGroup and related classes.
Interfaces for ioda::Variable and related classes.
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
This class exists inside of ioda::Group and provides the interface to manipulating Variables.
bool ioIsVarDimByNlocs(const std::string &varName) const
return true if variable is dimensioned by nlocs
Definition: ObsFrame.h:76
Dimensions_t nlocs_
number of locations from source (file or generator)
Definition: ObsFrame.h:170
std::shared_ptr< ObsIo > obs_io_
ObsIo object.
Definition: ObsFrame.h:161
Selection createMemSelection(const std::vector< Dimensions_t > &varShape, const Dimensions_t frameCount)
create selection object for accessing a memory buffer
Definition: ObsFrame.cc:26
virtual void frameNext()
move to the next frame for a read frame object
Definition: ObsFrame.h:111
Dimensions_t ioMaxVarSize() const
return number of maximum variable size (along first dimension) from ObsIo
Definition: ObsFrame.h:46
Dimensions_t ioNumDimVars() const
return number of dimension scale variables from ObsIo
Definition: ObsFrame.h:55
virtual bool frameAvailable()=0
true if a frame is available (not past end of frames)
virtual void frameInit()
initialize frame for a read frame object
Definition: ObsFrame.h:99
virtual std::size_t frameNumLocs() const
return number of locations
Definition: ObsFrame.h:81
const VarNameObjectList & ioVarList() const
return list of regular variables from ObsIo
Definition: ObsFrame.h:64
void createFrameFromObsGroup(const VarNameObjectList &varList, const VarNameObjectList &dimVarList, const VarDimMap &varDimMap)
create a frame object based on dimensions and variables from a source ObsGroup
Definition: ObsFrame.cc:109
virtual Dimensions_t adjNlocsFrameStart() const
return adjusted nlocs frame start
Definition: ObsFrame.h:133
Dimensions_t max_frame_size_
maximum frame size
Definition: ObsFrame.h:183
virtual Dimensions_t frameCount(const std::string &varName)=0
return current frame count for variable
Dimensions_t ioNumVars() const
return number of regular variables from ObsIo
Definition: ObsFrame.h:52
Dimensions_t max_var_size_
maximum variable size
Definition: ObsFrame.h:186
VarDimMap ioVarDimMap() const
return map from variables to their attached dimension scales
Definition: ObsFrame.h:70
Dimensions_t ioNumLocs() const
return number of locations from ObsIo
Definition: ObsFrame.h:49
Dimensions_t globalNumLocs() const
return number of locations that were selected from ObsIo
Definition: ObsFrame.h:87
const VarNameObjectList & ioDimVarList() const
return list of dimension scale variables from ObsIo
Definition: ObsFrame.h:67
Selection createEntireFrameSelection(const std::vector< Dimensions_t > &varShape, const Dimensions_t frameCount)
create selection object for accessing the entire frame variable
Definition: ObsFrame.cc:49
Selection createVarSelection(const std::vector< Dimensions_t > &varShape, const Dimensions_t frameStart, const Dimensions_t frameCount)
create selection object for accessing a frame from a whole variable
Definition: ObsFrame.cc:72
Has_Attributes & atts() const
return attributes container from ObsIo
Definition: ObsFrame.h:61
Dimensions_t frame_start_
current frame starting index
Definition: ObsFrame.h:189
void ioUpdateVarDimInfo() const
update variable, dimension info in the ObsIo object
Definition: ObsFrame.h:73
virtual void frameInit(const VarNameObjectList &varList, const VarNameObjectList &varDimList, const VarDimMap &varDimMap, const Dimensions_t maxVarSize)
initialize for a write frame object
Definition: ObsFrame.h:106
virtual void frameNext(const VarNameObjectList &varList)
move to the next frame for a write frame object
Definition: ObsFrame.h:115
Selection createObsIoSelection(const std::vector< Dimensions_t > &varShape, const Dimensions_t frameStart, const Dimensions_t frameCount)
create selection object for accessing an ObsIo variable
Definition: ObsFrame.cc:91
ObsFrame(const ObsSpaceParameters &params)
Definition: ObsFrame.cc:20
Dimensions_t gnlocs_outside_timewindow_
number of nlocs from the file (gnlocs) that are outside the time window
Definition: ObsFrame.h:177
virtual Dimensions_t frameStart()=0
return current frame starting index
Dimensions_t globalNumLocsOutsideTimeWindow() const
return number of locations from obs source that were outside the time window
Definition: ObsFrame.h:90
Dimensions_t gnlocs_
total number of locations from source (file or generator) that were selected after the timing window ...
Definition: ObsFrame.h:174
virtual Dimensions_t adjNlocsFrameCount() const
return adjusted nlocs frame count
Definition: ObsFrame.h:136
virtual std::vector< std::size_t > recnums() const
return list of record numbers from ObsIo
Definition: ObsFrame.h:96
virtual void print(std::ostream &os) const =0
print() for oops::Printable base class
Has_Variables & vars() const
return variables container from ObsIo
Definition: ObsFrame.h:58
Dimensions_t nrecs_
number of records from source (file or generator)
Definition: ObsFrame.h:167
virtual std::vector< std::size_t > index() const
return list of indices indicating which locations were selected from ObsIo
Definition: ObsFrame.h:93
ObsSpaceParameters params_
ObsIo parameter specs.
Definition: ObsFrame.h:180
ObsGroup obs_frame_
ObsGroup object (temporary storage for a single frame)
Definition: ObsFrame.h:164
virtual std::size_t frameNumRecs() const
return number of records
Definition: ObsFrame.h:84
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
Definition: ObsGroup.h:32
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
Definition: Selection.h:48
std::vector< std::pair< std::string, Variable > > VarNameObjectList
typedef for holding list of variable names with associated variable object
Definition: IodaUtils.h:30
std::map< std::string, std::vector< std::string > > VarDimMap
typedef for holding dim names attached to variables
Definition: IodaUtils.h:36