IODA
ObsIoFileCreate.cc
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 #include "ioda/Engines/Factory.h"
9 #include "ioda/io/ObsIoFileCreate.h"
10 
11 namespace ioda {
12 
13 static ObsIoMaker<ObsIoFileCreate> maker("FileCreate");
14 
15 //------------------------------ public functions --------------------------------
16 //--------------------------------------------------------------------------------
18  const ObsSpaceParameters & obsSpaceParams)
19  : ObsIo() {
20  Engines::BackendNames backendName;
22  Group backend;
23 
24  std::string fileName = ioParams.fileName;
25  oops::Log::trace() << "Constructing ObsIoFileCreate: Creating file for write: "
26  << fileName << std::endl;
27  backendName = Engines::BackendNames::Hdf5File;
28 
29  // Create an hdf5 file, and allow overwriting an existing file (for now)
30  // Tag on the rank number to the output file name to avoid collisions if running
31  // with multiple MPI tasks.
32  backendParams.fileName =
33  uniquifyFileName(fileName, obsSpaceParams.getMpiRank(), obsSpaceParams.getMpiTimeRank());
36 
37  // Create the backend and attach it to an ObsGroup
38  // Use the None DataLyoutPolicy for now to accommodate the current file format
39  backend = constructBackend(backendName, backendParams);
40  obs_group_ = ObsGroup::generate(backend, obsSpaceParams.getDimScales());
41 
42  // record maximum variable size
43  max_var_size_ = obsSpaceParams.getMaxVarSize();
44 
45  // record number of locations
47 }
48 
50 
51 //------------------------------ private functions ----------------------------------
52 //-----------------------------------------------------------------------------------
53 void ObsIoFileCreate::print(std::ostream & os) const {
54  os << "ObsIoFileCreate: " << std::endl;
55 }
56 
57 } // namespace ioda
Definitions for setting up backends with file and memory I/O.
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
oops::RequiredParameter< std::string > fileName
output obs file name
static ObsGroup generate(Group &emptyGroup, const NewDimensionScales_t &fundamentalDims, std::shared_ptr< const detail::DataLayoutPolicy > layout=nullptr)
Create an empty ObsGroup and populate it with the fundamental dimensions.
Definition: ObsGroup.cpp:72
ObsIoFileCreate(const Parameters_ &ioParams, const ObsSpaceParameters &obsSpaceParams)
void print(std::ostream &os) const override
print routine for oops::Printable base class
Dimensions_t max_var_size_
maximum variable size (ie, first dimension size)
Definition: ObsIo.h:97
Dimensions_t nlocs_
number of locations from source (file or generator)
Definition: ObsIo.h:100
ObsGroup obs_group_
ObsGroup object representing io source/destination.
Definition: ObsIo.h:94
int getMpiTimeRank() const
get the MPI rank number
std::size_t getMpiRank() const
get the MPI rank number
NewDimensionScales_t getDimScales() const
get a new dimension scale
Dimensions_t getMaxVarSize() const
get the maximum variable size
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
BackendNames
Backend names.
Definition: Factory.h:28
IODA_DL Group constructBackend(BackendNames name, BackendCreationParameters &params)
This is a simple factory style function that will instantiate a different backend based on a given na...
Definition: Factory.cpp:124
@ Hdf5File
HDF5 file access.
@ Truncate_If_Exists
If the file already exists, overwrite it.
static DistributionMaker< AtlasDistribution > maker(DIST_NAME)
std::string uniquifyFileName(const std::string &fileName, const std::size_t rankNum, const int timeRankNum)
uniquify the output file name
Definition: IodaUtils.cc:343
std::vector< Dimensions_t > dimsCur
The dimensions of the data.
Definition: Dimensions.h:23
Used to specify backend creation-time properties.
Definition: Factory.h:59