OOPS
InterpolatorBase.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 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 #pragma once
9 
10 #include <map>
11 #include <memory>
12 #include <string>
13 #include <boost/noncopyable.hpp>
14 
15 #include "atlas/field.h"
16 #include "atlas/functionspace.h"
17 #include "eckit/config/Configuration.h"
18 #include "oops/util/Logger.h"
19 #include "oops/util/Printable.h"
20 
21 namespace eckit {
22  class Configuration;
23 }
24 
25 namespace oops {
26 
27 // -----------------------------------------------------------------------------
28 
29 /*! \brief Base class for Generic interpolation
30  *
31  * \details the **oops::InterpolatorBase** class provides a generic framework
32  * for interpolation.
33  *
34  */
35 
36 class InterpolatorBase : public util::Printable,
37  private boost::noncopyable {
38  public:
39  virtual ~InterpolatorBase() {}
40 
41  virtual void apply(const atlas::FieldSet &, atlas::FieldSet &) = 0;
42  virtual void apply(const atlas::Field &, atlas::Field &) = 0;
43 
44  virtual void apply_ad(const atlas::FieldSet &, atlas::FieldSet &) = 0;
45 
46  virtual int write(const eckit::Configuration &) {return 1;}
47 
48  private:
49  virtual void print(std::ostream &) const = 0;
50 };
51 
52 // -----------------------------------------------------------------------------
53 /// InterpolatorFactory: Factory for creating Interpolator objects
54 
56  public:
57  static InterpolatorBase * create(const eckit::Configuration &,
58  const atlas::FunctionSpace &,
59  const atlas::FunctionSpace &,
60  const atlas::field::FieldSetImpl * = nullptr);
61  virtual ~InterpolatorFactory() = default;
62  protected:
63  explicit InterpolatorFactory(const std::string &);
64  private:
65  virtual InterpolatorBase * make(const eckit::Configuration &,
66  const atlas::FunctionSpace &,
67  const atlas::FunctionSpace &,
68  const atlas::field::FieldSetImpl *) = 0;
69  static std::map < std::string, InterpolatorFactory * > & getMakers() {
70  static std::map < std::string, InterpolatorFactory * > makers_;
71  return makers_;
72  }
73 };
74 
75 // -----------------------------------------------------------------------------
76 /// Maker class for Interpolator Factory
77 ///
78 /// Used to instantiate concrete Interpolator objects of
79 /// derived type T
80 
81 template<class T>
83  virtual InterpolatorBase * make(const eckit::Configuration & conf,
84  const atlas::FunctionSpace & fs1,
85  const atlas::FunctionSpace & fs2,
86  const atlas::field::FieldSetImpl * masks)
87  { return new T(conf, fs1, fs2, masks); }
88  public:
89  explicit InterpolatorMaker(const std::string & name)
90  : InterpolatorFactory(name) {}
91 };
92 
93 
94 
95 // -----------------------------------------------------------------------------
96 
97 } // namespace oops
Base class for Generic interpolation.
virtual void apply(const atlas::FieldSet &, atlas::FieldSet &)=0
virtual void apply(const atlas::Field &, atlas::Field &)=0
virtual void print(std::ostream &) const =0
virtual void apply_ad(const atlas::FieldSet &, atlas::FieldSet &)=0
virtual int write(const eckit::Configuration &)
InterpolatorFactory: Factory for creating Interpolator objects.
static InterpolatorBase * create(const eckit::Configuration &, const atlas::FunctionSpace &, const atlas::FunctionSpace &, const atlas::field::FieldSetImpl *=nullptr)
virtual InterpolatorBase * make(const eckit::Configuration &, const atlas::FunctionSpace &, const atlas::FunctionSpace &, const atlas::field::FieldSetImpl *)=0
InterpolatorFactory(const std::string &)
Constructor for Interpolator Factory.
virtual ~InterpolatorFactory()=default
static std::map< std::string, InterpolatorFactory * > & getMakers()
virtual InterpolatorBase * make(const eckit::Configuration &conf, const atlas::FunctionSpace &fs1, const atlas::FunctionSpace &fs2, const atlas::field::FieldSetImpl *masks)
InterpolatorMaker(const std::string &name)
Definition: FieldL95.h:22
The namespace for the main oops code.