IODA
src/io/ObsFrameWrite.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_OBSFRAMEWRITE_H_
9 #define IO_OBSFRAMEWRITE_H_
10 
11 #include "eckit/config/LocalConfiguration.h"
12 
13 #include "ioda/distribution/Distribution.h"
14 #include "ioda/io/ObsFrame.h"
15 #include "ioda/ObsSpaceParameters.h"
16 
17 #include "oops/util/Logger.h"
18 #include "oops/util/ObjectCounter.h"
19 #include "oops/util/Printable.h"
20 
21 namespace ioda {
22 
23 /// \brief Implementation of ObsFrameWrite class
24 /// \details This class manages one frame of obs data (subset of locations) when
25 /// writing data to an ObsIo object. Currently, this is simply a transfer
26 /// of data, but in the future this will also manage stitching back the
27 /// data from multiple MPI tasks into one file.
28 /// \author Stephen Herbener (JCSDA)
29 
30 class ObsFrameWrite : public ObsFrame, private util::ObjectCounter<ObsFrameWrite> {
31  public:
32  /// \brief classname method for object counter
33  ///
34  /// \details This method is supplied for the ObjectCounter base class.
35  /// It defines a name to identify an object of this class
36  /// for reporting by OOPS.
37  static const std::string classname() {return "ioda::ObsFrameWrite";}
38 
39  explicit ObsFrameWrite(const ObsSpaceParameters & params);
40 
42 
43  /// \brief initialize for walking through the frames
44  /// \param varList source ObsGroup list of regular variables
45  /// \param dimVarList source ObsGroup list of dimension variable names
46  /// \param varDimMap source ObsGroup map showing variables with associated dimensions
47  /// \param maxVarSize source ObsGroup maximum variable size along the first dimension
48  void frameInit(const VarNameObjectList & varList,
49  const VarNameObjectList & dimVarList,
50  const VarDimMap & varDimMap, const Dimensions_t maxVarSize) override;
51 
52  /// \brief move to the next frame
53  void frameNext(const VarNameObjectList & varList) override;
54 
55  /// \brief true if a frame is available (not past end of frames)
56  bool frameAvailable() override;
57 
58  /// \brief return current frame starting index
59  /// \param varName name of variable
60  Dimensions_t frameStart() override;
61 
62  /// \brief return current frame count for variable
63  /// \details Variables can be of different sizes so it's possible that the
64  /// frame has moved past the end of some variables but not so for other
65  /// variables. When the frame is past the end of the given variable, this
66  /// routine returns a zero to indicate that we're done with this variable.
67  /// \param varName variable name
68  Dimensions_t frameCount(const std::string & varName) override;
69 
70  /// \brief write a frame variable
71  /// \details This function requires the caller to allocate the proper amount of
72  /// memory for the intput vector varData.
73  /// The following signatures are for different variable data types.
74  /// \param varName variable name
75  /// \param varData varible data
76  void writeFrameVar(const std::string & varName,
77  const std::vector<int> & varData);
78  void writeFrameVar(const std::string & varName,
79  const std::vector<float> & varData);
80  void writeFrameVar(const std::string & varName,
81  const std::vector<std::string> & varData);
82 
83  private:
84  //------------------ private data members ------------------------------
85 
86  //--------------------- private functions ------------------------------
87 
88  /// \brief copy dimension coordinate values from the frame to the ObsIo backend
89  /// \param srcVarContainer Has_Variables object from source
90  /// \param destVarContainer Has_Variables object from destination
91  /// \param dimVarList Map containing list of dimension variables
92  void copyObsIoDimCoords(const Has_Variables & srcVarContainer,
93  Has_Variables & destVarContainer,
94  const VarNameObjectList & dimVarList);
95 
96  /// \brief create set of variables from source variables and lists in the ObsIo backend
97  /// \param srcVarContainer Has_Variables object from source
98  /// \param destVarContainer Has_Variables object from destination
99  /// \param dimsAttachedToVars Map containing list of attached dims for each variable
100  void createObsIoVariables(const Has_Variables & srcVarContainer,
101  Has_Variables & destVarContainer,
102  const VarDimMap & dimsAttachedToVars);
103 
104  /// \brief set up frontend and backend selection objects for the given variable
105  /// \param varName ObsGroup variable name
106  /// \param feSelect Front end selection object
107  /// \param beSelect Back end selection object
108  void createFrameSelection(const std::string & varName, Selection & feSelect,
109  Selection & beSelect);
110 
111  /// \brief print routine for oops::Printable base class
112  /// \param ostream output stream
113  void print(std::ostream & os) const override;
114 
115  /// \brief write variable data into frame helper function
116  /// \param varName variable name
117  /// \param varData varible data
118  template<typename DataType>
119  void writeFrameVarHelper(const std::string & varName,
120  const std::vector<DataType> & varData) {
121  Dimensions_t frameCount = this->frameCount(varName);
122  if (frameCount > 0) {
123  Variable frameVar = obs_frame_.vars.open(varName);
124  std::vector<Dimensions_t> varShape = frameVar.getDimensions().dimsCur;
125 
126  // Form the selection objects for this variable
127  Selection varDataSelect = createMemSelection(varShape, frameCount);
128  Selection frameSelect = createEntireFrameSelection(varShape, frameCount);
129 
130  // Write the data into the frame
131  frameVar.write<DataType>(varData, varDataSelect, frameSelect);
132  }
133  }
134 };
135 
136 } // namespace ioda
137 
138 #endif // IO_OBSFRAMEWRITE_H_
This class exists inside of ioda::Group and provides the interface to manipulating Variables.
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
virtual void frameInit()
initialize frame for a read frame object
Definition: ObsFrame.h:99
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
ObsGroup obs_frame_
ObsGroup object (temporary storage for a single frame)
Definition: ObsFrame.h:164
Implementation of ObsFrameWrite class.
ObsFrameWrite(const ObsSpaceParameters &params)
void writeFrameVar(const std::string &varName, const std::vector< int > &varData)
write a frame variable
void print(std::ostream &os) const override
print routine for oops::Printable base class
static const std::string classname()
classname method for object counter
void writeFrameVarHelper(const std::string &varName, const std::vector< DataType > &varData)
write variable data into frame helper function
Dimensions_t frameCount(const std::string &varName) override
return current frame count for variable
void createObsIoVariables(const Has_Variables &srcVarContainer, Has_Variables &destVarContainer, const VarDimMap &dimsAttachedToVars)
create set of variables from source variables and lists in the ObsIo backend
void copyObsIoDimCoords(const Has_Variables &srcVarContainer, Has_Variables &destVarContainer, const VarNameObjectList &dimVarList)
copy dimension coordinate values from the frame to the ObsIo backend
void createFrameSelection(const std::string &varName, Selection &feSelect, Selection &beSelect)
set up frontend and backend selection objects for the given variable
bool frameAvailable() override
true if a frame is available (not past end of frames)
Dimensions_t frameStart() override
return current frame starting index
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
Has_Variables vars
Use this to access variables.
Definition: Group.h:123
virtual Variable open(const std::string &name) const
Open a Variable by name.
virtual Dimensions getDimensions() const
Definition: Variable.cpp:160
virtual Variable write(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all)
The fundamental write function. Backends overload this function to implement all write operations.
Definition: Variable.cpp:317
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
std::vector< Dimensions_t > dimsCur
The dimensions of the data.
Definition: Dimensions.h:23