IODA
ObsIoFactory.h
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 #ifndef IO_OBSIOFACTORY_H_
9 #define IO_OBSIOFACTORY_H_
10 
11 #include <map>
12 #include <memory>
13 #include <string>
14 #include <vector>
15 
16 #include <boost/make_unique.hpp>
17 
18 namespace ioda {
19 
20 class ObsIo;
21 class ObsIoParametersBase;
22 class ObsSpaceParameters;
23 
24 enum class ObsIoModes {
25  READ,
26  WRITE
27 };
28 
29 class ObsIoFactory {
30  public:
31  /// \brief Create and return a new instance of an ObsIo subclass.
32  ///
33  /// If \p mode is set to READ, the type of the instantiated subclass is determined by
34  /// the string returned by `parameters.top_level_.obsIoInParameters().type.value()`.
35  /// If \p mode is set to WRITE, an ObsIoFileCreate instance is returned unless
36  /// `parameters.top_level_.obsOutFile is not set, in which case an exception is thrown.
37  static std::shared_ptr<ObsIo> create(ObsIoModes mode,
38  const ObsSpaceParameters & parameters);
39 
40  /// \brief Create and return an instance of the subclass of ObsIoParametersBase
41  /// storing parameters of the specified type of ObsIo.
42  static std::unique_ptr<ObsIoParametersBase> createParameters(const std::string & name);
43 
44  /// \brief Return the names of all ObsIo subclasses that can be created by one of the
45  /// registered makers.
46  static std::vector<std::string> getMakerNames();
47 
48  virtual ~ObsIoFactory() = default;
49 
50  protected:
51  /// \brief Register a maker able to create instances of the specified ObsIo subclass.
52  explicit ObsIoFactory(const std::string &);
53 
54  private:
55  virtual std::shared_ptr<ObsIo> make(const ObsIoParametersBase & ioParameters,
56  const ObsSpaceParameters & obsSpaceParameters) = 0;
57 
58  virtual std::unique_ptr<ObsIoParametersBase> makeParameters() const = 0;
59 
60  static std::map<std::string, ObsIoFactory*> & getMakers();
61 
62  static ObsIoFactory& getMaker(const std::string &name);
63 };
64 
65 template <class T>
66 class ObsIoMaker : public ObsIoFactory {
67  private:
68  typedef typename T::Parameters_ Parameters_;
69 
70  public:
71  explicit ObsIoMaker(const std::string & name) : ObsIoFactory(name) {}
72 
73  std::shared_ptr<ObsIo> make(const ObsIoParametersBase & ioParameters,
74  const ObsSpaceParameters & obsSpaceParameters) override {
75  const auto &stronglyTypedIoParameters = dynamic_cast<const Parameters_&>(ioParameters);
76  return std::make_shared<T>(stronglyTypedIoParameters, obsSpaceParameters);
77  }
78 
79  std::unique_ptr<ObsIoParametersBase> makeParameters() const override {
80  return boost::make_unique<Parameters_>();
81  }
82 };
83 
84 } // namespace ioda
85 
86 #endif // IO_OBSIOFACTORY_H_
virtual ~ObsIoFactory()=default
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
ObsIoMaker(const std::string &name)
Definition: ObsIoFactory.h:71
T::Parameters_ Parameters_
Definition: ObsIoFactory.h:68
std::shared_ptr< ObsIo > make(const ObsIoParametersBase &ioParameters, const ObsSpaceParameters &obsSpaceParameters) override
Definition: ObsIoFactory.h:73
std::unique_ptr< ObsIoParametersBase > makeParameters() const override
Definition: ObsIoFactory.h:79
Base of classes storing the configuration parameters of ObsIo subclasses.
ObsIoModes
Definition: ObsIoFactory.h:24