IODA
DistributionFactory.cc
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 #include "eckit/config/Configuration.h"
9 #include "ioda/distribution/DistributionFactory.h"
10 #include "oops/util/Logger.h"
11 
12 namespace ioda {
13 
14 // -----------------------------------------------------------------------------
15 
17  if (getMakers().find(name) != getMakers().end())
18  throw std::runtime_error(name + " already registered in the distribution factory");
19  getMakers()[name] = this;
20 }
21 
22 // -----------------------------------------------------------------------------
23 
24 std::unique_ptr<Distribution> DistributionFactory::create(const eckit::mpi::Comm & comm,
25  const eckit::Configuration & config) {
26  oops::Log::trace() << "Distribution::create starting" << std::endl;
27  const std::string id = config.getString("distribution", "RoundRobin");
28  typename std::map<std::string, DistributionFactory*>::iterator it = getMakers().find(id);
29  if (it == getMakers().end())
30  throw std::runtime_error(id + " does not exist in the distribution factory");
31  std::unique_ptr<Distribution> distribution = it->second->make(comm, config);
32  oops::Log::trace() << "Distribution::create done" << std::endl;
33  return distribution;
34 }
35 
36 // -----------------------------------------------------------------------------
37 
38 } // namespace ioda
static std::map< std::string, DistributionFactory * > & getMakers()
DistributionFactory(const std::string &name)
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...