IODA
ObsIoFactory.cc
Go to the documentation of this file.
1 /*
2  * (C) Crown copyright 2021, Met Office
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/io/ObsIo.h"
9 #include "ioda/io/ObsIoFactory.h"
10 #include "ioda/ObsSpaceParameters.h"
11 
12 #include "oops/util/AssociativeContainers.h"
13 #include "oops/util/Logger.h"
14 
15 namespace ioda {
16 
17 ObsIoFactory::ObsIoFactory(const std::string & name) {
18  if (getMakers().find(name) != getMakers().end()) {
19  throw std::runtime_error(name + " already registered in the ObsIo factory.");
20  }
21  getMakers()[name] = this;
22 }
23 
24 std::shared_ptr<ObsIo> ObsIoFactory::create(ObsIoModes mode,
25  const ObsSpaceParameters & parameters) {
26  oops::Log::trace() << "ObsIoFactory::create starting" << std::endl;
27 
28  std::string name;
29  const ObsIoParametersBase *ioParameters = nullptr;
30 
31  switch (mode) {
32  case ObsIoModes::READ:
33  name = parameters.top_level_.obsIoInParameters().type.value().value();
34  ioParameters = &parameters.top_level_.obsIoInParameters();
35  break;
36  case ObsIoModes::WRITE:
37  if (parameters.top_level_.obsOutFile.value() == boost::none)
38  throw eckit::BadValue("Cannot create output file: the 'obsdataout' option has not been set",
39  Here());
40  name = "FileCreate";
41  ioParameters = &parameters.top_level_.obsOutFile.value().value();
42  break;
43  default:
44  throw eckit::BadValue("Unknown mode", Here());
45  break;
46  }
47 
48  std::shared_ptr<ObsIo> ptr = getMaker(name).make(*ioParameters, parameters);
49  oops::Log::trace() << "ObsIoFactory::create done" << std::endl;
50  return ptr;
51 }
52 
53 std::unique_ptr<ObsIoParametersBase> ObsIoFactory::createParameters(const std::string &name) {
54  return getMaker(name).makeParameters();
55 }
56 
58  typename std::map<std::string, ObsIoFactory*>::iterator jloc = getMakers().find(name);
59 
60  if (jloc == getMakers().end()) {
61  std::string makerNameList;
62  for (const auto& makerDetails : getMakers()) makerNameList += "\n " + makerDetails.first;
63  throw eckit::BadParameter(name + " does not exist in ioda::ObsIoFactory. "
64  "Possible values:" + makerNameList, Here());
65  }
66 
67  return *jloc->second;
68 }
69 
70 std::vector<std::string> ObsIoFactory::getMakerNames() {
71  return oops::keys(getMakers());
72 }
73 
74 std::map <std::string, ObsIoFactory*> & ObsIoFactory::getMakers() {
75  static std::map <std::string, ObsIoFactory*> makers_;
76  return makers_;
77 }
78 
79 } // namespace ioda
ObsIoFactory(const std::string &)
Register a maker able to create instances of the specified ObsIo subclass.
Definition: ObsIoFactory.cc:17
static std::map< std::string, ObsIoFactory * > & getMakers()
Definition: ObsIoFactory.cc:74
virtual std::unique_ptr< ObsIoParametersBase > makeParameters() const =0
static ObsIoFactory & getMaker(const std::string &name)
Definition: ObsIoFactory.cc:57
static std::unique_ptr< ObsIoParametersBase > createParameters(const std::string &name)
Create and return an instance of the subclass of ObsIoParametersBase storing parameters of the specif...
Definition: ObsIoFactory.cc:53
virtual std::shared_ptr< ObsIo > make(const ObsIoParametersBase &ioParameters, const ObsSpaceParameters &obsSpaceParameters)=0
static std::shared_ptr< ObsIo > create(ObsIoModes mode, const ObsSpaceParameters &parameters)
Create and return a new instance of an ObsIo subclass.
Definition: ObsIoFactory.cc:24
static std::vector< std::string > getMakerNames()
Return the names of all ObsIo subclasses that can be created by one of the registered makers.
Definition: ObsIoFactory.cc:70
Base of classes storing the configuration parameters of ObsIo subclasses.
oops::OptionalParameter< std::string > type
Identifies the ObsIo subclass to use.
ObsTopLevelParameters top_level_
sub groups of parameters
oops::OptionalParameter< ObsFileOutParameters > obsOutFile
output specification by writing to a file
const ObsIoParametersBase & obsIoInParameters() const
parameters indicating where to load data from
ObsIoModes
Definition: ObsIoFactory.h:24