IODA
|
#include <ObsFrame.h>
Public Member Functions | |
ObsFrame (const ObsSpaceParameters ¶ms) | |
~ObsFrame () | |
Dimensions_t | ioMaxVarSize () const |
return number of maximum variable size (along first dimension) from ObsIo More... | |
Dimensions_t | ioNumLocs () const |
return number of locations from ObsIo More... | |
Dimensions_t | ioNumVars () const |
return number of regular variables from ObsIo More... | |
Dimensions_t | ioNumDimVars () const |
return number of dimension scale variables from ObsIo More... | |
Has_Variables & | vars () const |
return variables container from ObsIo More... | |
Has_Attributes & | atts () const |
return attributes container from ObsIo More... | |
const VarNameObjectList & | ioVarList () const |
return list of regular variables from ObsIo More... | |
const VarNameObjectList & | ioDimVarList () const |
return list of dimension scale variables from ObsIo More... | |
VarDimMap | ioVarDimMap () const |
return map from variables to their attached dimension scales More... | |
void | ioUpdateVarDimInfo () const |
update variable, dimension info in the ObsIo object More... | |
bool | ioIsVarDimByNlocs (const std::string &varName) const |
return true if variable is dimensioned by nlocs More... | |
virtual std::size_t | frameNumLocs () const |
return number of locations More... | |
virtual std::size_t | frameNumRecs () const |
return number of records More... | |
Dimensions_t | globalNumLocs () const |
return number of locations that were selected from ObsIo More... | |
Dimensions_t | globalNumLocsOutsideTimeWindow () const |
return number of locations from obs source that were outside the time window More... | |
virtual std::vector< std::size_t > | index () const |
return list of indices indicating which locations were selected from ObsIo More... | |
virtual std::vector< std::size_t > | recnums () const |
return list of record numbers from ObsIo More... | |
virtual void | frameInit () |
initialize frame for a read frame object More... | |
virtual void | frameInit (const VarNameObjectList &varList, const VarNameObjectList &varDimList, const VarDimMap &varDimMap, const Dimensions_t maxVarSize) |
initialize for a write frame object More... | |
virtual void | frameNext () |
move to the next frame for a read frame object More... | |
virtual void | frameNext (const VarNameObjectList &varList) |
move to the next frame for a write frame object More... | |
virtual bool | frameAvailable ()=0 |
true if a frame is available (not past end of frames) More... | |
virtual Dimensions_t | frameStart ()=0 |
return current frame starting index More... | |
virtual Dimensions_t | frameCount (const std::string &varName)=0 |
return current frame count for variable More... | |
virtual Dimensions_t | adjNlocsFrameStart () const |
return adjusted nlocs frame start More... | |
virtual Dimensions_t | adjNlocsFrameCount () const |
return adjusted nlocs frame count More... | |
Selection | createMemSelection (const std::vector< Dimensions_t > &varShape, const Dimensions_t frameCount) |
create selection object for accessing a memory buffer More... | |
Selection | createEntireFrameSelection (const std::vector< Dimensions_t > &varShape, const Dimensions_t frameCount) |
create selection object for accessing the entire frame variable More... | |
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 More... | |
Protected Member Functions | |
Selection | createObsIoSelection (const std::vector< Dimensions_t > &varShape, const Dimensions_t frameStart, const Dimensions_t frameCount) |
create selection object for accessing an ObsIo variable More... | |
void | createFrameFromObsGroup (const VarNameObjectList &varList, const VarNameObjectList &dimVarList, const VarDimMap &varDimMap) |
create a frame object based on dimensions and variables from a source ObsGroup More... | |
virtual void | print (std::ostream &os) const =0 |
print() for oops::Printable base class More... | |
Protected Attributes | |
std::shared_ptr< ObsIo > | obs_io_ |
ObsIo object. More... | |
ObsGroup | obs_frame_ |
ObsGroup object (temporary storage for a single frame) More... | |
Dimensions_t | nrecs_ |
number of records from source (file or generator) More... | |
Dimensions_t | nlocs_ |
number of locations from source (file or generator) More... | |
Dimensions_t | gnlocs_ |
total number of locations from source (file or generator) that were selected after the timing window filtering More... | |
Dimensions_t | gnlocs_outside_timewindow_ |
number of nlocs from the file (gnlocs) that are outside the time window More... | |
ObsSpaceParameters | params_ |
ObsIo parameter specs. More... | |
Dimensions_t | max_frame_size_ |
maximum frame size More... | |
Dimensions_t | max_var_size_ |
maximum variable size More... | |
Dimensions_t | frame_start_ |
current frame starting index More... | |
The ObsFrame class along with its subclasses are responsible for appying the timing window filtering, record number assignment (according to the obsgrouping specification) and the application of MPI distribution when transferring data from a source (file or generator) into memory. For data transfer in both directions (source to memory, and memory to destination), this class also provides a means for transferring data in chunks (first n locations, followed by second n locations, etc.) which for a transfer from a file to memory can be utilized to avoid reading in the whole file into memory before applying the filtering and distribution.
Definition at line 40 of file ObsFrame.h.
|
explicit |
Definition at line 20 of file ObsFrame.cc.
|
inline |
Definition at line 43 of file ObsFrame.h.
|
inlinevirtual |
return adjusted nlocs frame count
Reimplemented in ioda::ObsFrameRead.
Definition at line 136 of file ObsFrame.h.
|
inlinevirtual |
return adjusted nlocs frame start
Reimplemented in ioda::ObsFrameRead.
Definition at line 133 of file ObsFrame.h.
|
inline |
return attributes container from ObsIo
Definition at line 61 of file ObsFrame.h.
Selection ioda::ObsFrame::createEntireFrameSelection | ( | const std::vector< Dimensions_t > & | varShape, |
const Dimensions_t | frameCount | ||
) |
create selection object for accessing the entire frame variable
varShape | dimension sizes for variable being transferred |
frameCount | size of current frame |
Definition at line 49 of file ObsFrame.cc.
|
protected |
create a frame object based on dimensions and variables from a source ObsGroup
This function is used to set up a temprary ObsGroup based frame in memory which is to be used for processing and transferring data between ObsIo and ObsSpace variables. The two parameters dimVarList and varDimMap can be created with IodaUtils::collectVarDimInfo() in IodaUtils.h.
varList | source ObsGroup list of regular variables |
dimVarList | source ObsGroup list of dimension variable names |
varDimMap | source ObsGroup map showing variables with associated dimensions |
Definition at line 109 of file ObsFrame.cc.
Selection ioda::ObsFrame::createMemSelection | ( | const std::vector< Dimensions_t > & | varShape, |
const Dimensions_t | frameCount | ||
) |
create selection object for accessing a memory buffer
varShape | dimension sizes for variable being transferred |
frameCount | size of current frame |
Definition at line 26 of file ObsFrame.cc.
|
protected |
create selection object for accessing an ObsIo variable
varShape | dimension sizes for variable being transferred |
frameStart | starting index number for current frame |
frameCount | size of current frame |
Definition at line 91 of file ObsFrame.cc.
Selection ioda::ObsFrame::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
varShape | dimension sizes for variable being transferred |
frameStart | start of current frame for current variable |
frameCount | size of current frame |
Definition at line 72 of file ObsFrame.cc.
|
pure virtual |
true if a frame is available (not past end of frames)
Implemented in ioda::ObsFrameWrite, and ioda::ObsFrameRead.
|
pure virtual |
return current frame count for variable
Variables can be of different sizes so it's possible that the frame has moved past the end of some variables but not so for other variables. When the frame is past the end of the given variable, this routine returns a zero to indicate that we're done with this variable.
varName | variable name |
Implemented in ioda::ObsFrameWrite, and ioda::ObsFrameRead.
|
inlinevirtual |
initialize frame for a read frame object
Reimplemented in ioda::ObsFrameRead.
Definition at line 99 of file ObsFrame.h.
|
inlinevirtual |
initialize for a write frame object
varList | source ObsGroup list of regular variables |
dimVarList | source ObsGroup list of dimension variables |
varDimMap | source ObsGroup map showing variables with associated dimensions |
maxVarSize | source ObsGroup maximum variable size along the first dimension |
Reimplemented in ioda::ObsFrameWrite.
Definition at line 106 of file ObsFrame.h.
|
inlinevirtual |
move to the next frame for a read frame object
Reimplemented in ioda::ObsFrameRead.
Definition at line 111 of file ObsFrame.h.
|
inlinevirtual |
move to the next frame for a write frame object
varList | source ObsGroup list variable names |
Reimplemented in ioda::ObsFrameWrite.
Definition at line 115 of file ObsFrame.h.
|
inlinevirtual |
return number of locations
Definition at line 81 of file ObsFrame.h.
|
inlinevirtual |
return number of records
Definition at line 84 of file ObsFrame.h.
|
pure virtual |
return current frame starting index
varName | name of variable |
Implemented in ioda::ObsFrameWrite, and ioda::ObsFrameRead.
|
inline |
return number of locations that were selected from ObsIo
Definition at line 87 of file ObsFrame.h.
|
inline |
return number of locations from obs source that were outside the time window
Definition at line 90 of file ObsFrame.h.
|
inlinevirtual |
return list of indices indicating which locations were selected from ObsIo
Reimplemented in ioda::ObsFrameRead.
Definition at line 93 of file ObsFrame.h.
|
inline |
return list of dimension scale variables from ObsIo
Definition at line 67 of file ObsFrame.h.
|
inline |
return true if variable is dimensioned by nlocs
Definition at line 76 of file ObsFrame.h.
|
inline |
return number of maximum variable size (along first dimension) from ObsIo
Definition at line 46 of file ObsFrame.h.
|
inline |
return number of dimension scale variables from ObsIo
Definition at line 55 of file ObsFrame.h.
|
inline |
return number of locations from ObsIo
Definition at line 49 of file ObsFrame.h.
|
inline |
return number of regular variables from ObsIo
Definition at line 52 of file ObsFrame.h.
|
inline |
update variable, dimension info in the ObsIo object
Definition at line 73 of file ObsFrame.h.
|
inline |
return map from variables to their attached dimension scales
Definition at line 70 of file ObsFrame.h.
|
inline |
return list of regular variables from ObsIo
Definition at line 64 of file ObsFrame.h.
|
protectedpure virtual |
print() for oops::Printable base class
ostream | output stream |
Implemented in ioda::ObsFrameWrite, and ioda::ObsFrameRead.
|
inlinevirtual |
return list of record numbers from ObsIo
Reimplemented in ioda::ObsFrameRead.
Definition at line 96 of file ObsFrame.h.
|
inline |
return variables container from ObsIo
Definition at line 58 of file ObsFrame.h.
|
protected |
current frame starting index
Definition at line 189 of file ObsFrame.h.
|
protected |
total number of locations from source (file or generator) that were selected after the timing window filtering
Definition at line 174 of file ObsFrame.h.
|
protected |
number of nlocs from the file (gnlocs) that are outside the time window
Definition at line 177 of file ObsFrame.h.
|
protected |
maximum frame size
Definition at line 183 of file ObsFrame.h.
|
protected |
maximum variable size
Definition at line 186 of file ObsFrame.h.
|
protected |
number of locations from source (file or generator)
Definition at line 170 of file ObsFrame.h.
|
protected |
number of records from source (file or generator)
Definition at line 167 of file ObsFrame.h.
|
protected |
ObsGroup object (temporary storage for a single frame)
Definition at line 164 of file ObsFrame.h.
|
protected |
ObsIo object.
Definition at line 161 of file ObsFrame.h.
|
protected |
ObsIo parameter specs.
Definition at line 180 of file ObsFrame.h.