IODA
DistributionFactory.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017 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 DISTRIBUTION_DISTRIBUTIONFACTORY_H_
9 #define DISTRIBUTION_DISTRIBUTIONFACTORY_H_
10 
11 #include <string>
12 #include <vector>
13 #include <memory>
14 
15 #include "eckit/config/Configuration.h"
16 #include "eckit/geometry/Point2.h"
17 #include "ioda/distribution/Distribution.h"
18 
19 namespace ioda {
20 
21 // -----------------------------------------------------------------------------
22 
23 /// \brief Distribution factory.
25  public:
26  virtual ~DistributionFactory() = default;
27 
28  /// \brief Create a Distribution object implementing a particular method of distributing
29  /// observations across multiple process elements..
30  ///
31  /// This method creates an instance of the Distribution subclass indicated by the value of the
32  /// `distribution` option in `config`. If this option is not present, an instance of the
33  /// RoundRobin distribution is returned.
34  ///
35  /// \param[in] comm Local MPI communicator
36  /// \param[in] config Top-level ObsSpace configuration.
37  static std::unique_ptr<Distribution> create(const eckit::mpi::Comm & comm,
38  const eckit::Configuration & config);
39 
40  protected:
41  explicit DistributionFactory(const std::string &name);
42 
43  private:
44  virtual std::unique_ptr<Distribution> make(const eckit::mpi::Comm & comm,
45  const eckit::Configuration &config) = 0;
46 
47  static std::map < std::string, DistributionFactory * > & getMakers() {
48  static std::map < std::string, DistributionFactory * > makers_;
49  return makers_;
50  }
51 };
52 
53 // -----------------------------------------------------------------------------
54 
55 /// \brief A class able to instantiate objects of type T, which should be a subclass of
56 /// Distribution.
57 template<class T>
59  std::unique_ptr<Distribution> make(const eckit::mpi::Comm & comm,
60  const eckit::Configuration &config) override
61  { return std::unique_ptr<Distribution>(new T(comm, config)); }
62 
63  public:
64  explicit DistributionMaker(const std::string & name) : DistributionFactory(name) {}
65 };
66 
67 // ---------------------------------------------------------------------
68 
69 } // namespace ioda
70 
71 #endif // DISTRIBUTION_DISTRIBUTIONFACTORY_H_
Distribution factory.
static std::map< std::string, DistributionFactory * > & getMakers()
virtual ~DistributionFactory()=default
DistributionFactory(const std::string &name)
virtual std::unique_ptr< Distribution > make(const eckit::mpi::Comm &comm, const eckit::Configuration &config)=0
static std::unique_ptr< Distribution > create(const eckit::mpi::Comm &comm, const eckit::Configuration &config)
Create a Distribution object implementing a particular method of distributing observations across mul...
A class able to instantiate objects of type T, which should be a subclass of Distribution.
DistributionMaker(const std::string &name)
std::unique_ptr< Distribution > make(const eckit::mpi::Comm &comm, const eckit::Configuration &config) override