OOPS
oops/interface/Locations.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2020-2020 UCAR.
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  * In applying this licence, ECMWF does not waive the privileges and immunities
8  * granted to it by virtue of its status as an intergovernmental organisation nor
9  * does it submit to any jurisdiction.
10  */
11 
12 #ifndef OOPS_INTERFACE_LOCATIONS_H_
13 #define OOPS_INTERFACE_LOCATIONS_H_
14 
15 #include <memory>
16 #include <string>
17 #include <utility>
18 
19 #include "eckit/mpi/Comm.h"
20 
21 #include "oops/util/Logger.h"
22 #include "oops/util/ObjectCounter.h"
23 #include "oops/util/Printable.h"
24 #include "oops/util/Timer.h"
25 
26 namespace eckit {
27  class Configuration;
28 }
29 
30 namespace oops {
31 
32 // -----------------------------------------------------------------------------
33 /// \brief Locations of observations for observation operator
34 template <typename OBS>
35 class Locations : public util::Printable,
36  private util::ObjectCounter<Locations<OBS> > {
37  typedef typename OBS::Locations Locations_;
38  public:
39  static const std::string classname() {return "oops::Locations";}
40 
41  /// Constructor from the pointer returned by ObsOperator::locations()
42  explicit Locations(std::unique_ptr<Locations_>);
43  /// Constructor used in tests
44  Locations(const eckit::Configuration &, const eckit::mpi::Comm &);
45 
46  /// Destructor and copy/move constructor and assignments
47  ~Locations();
48  Locations(const Locations &) = delete;
49  Locations(Locations &&);
50  Locations & operator=(const Locations &) = delete;
52 
53  /// Interfacing
54  const Locations_ & locations() const {return *locs_;}
55 
56  private:
57  void print(std::ostream &) const;
58  std::unique_ptr<const Locations_> locs_;
59 };
60 
61 // -----------------------------------------------------------------------------
62 
63 template <typename OBS>
64 Locations<OBS>::Locations(std::unique_ptr<Locations_> locs) : locs_(std::move(locs)) {
65  Log::trace() << "Locations<OBS>::Locations constructed" << std::endl;
66 }
67 
68 // -----------------------------------------------------------------------------
69 
70 template <typename OBS>
71 Locations<OBS>::Locations(const eckit::Configuration & conf, const eckit::mpi::Comm & comm) {
72  Log::trace() << "Locations<OBS>::Locations starting" << std::endl;
73  util::Timer timer(classname(), "Locations");
74  locs_.reset(new Locations_(conf, comm));
75  Log::trace() << "Locations<OBS>::Locations done" << std::endl;
76 }
77 
78 // -----------------------------------------------------------------------------
79 
80 template <typename OBS>
82  Log::trace() << "Locations<OBS>::~Locations starting" << std::endl;
83  util::Timer timer(classname(), "~Locations");
84  locs_.reset();
85  Log::trace() << "Locations<OBS>::~Locations done" << std::endl;
86 }
87 
88 // -----------------------------------------------------------------------------
89 
90 template <typename OBS>
91 Locations<OBS>::Locations(Locations && other): locs_(std::move(other.locs_)) {
92  util::Timer timer(classname(), "Locations");
93  Log::trace() << "Locations<OBS> moved" << std::endl;
94 }
95 
96 // -----------------------------------------------------------------------------
97 
98 template <typename OBS>
100  Log::trace() << "Locations<OBS>::operator= starting" << std::endl;
101  util::Timer timer(classname(), "operator=");
102  locs_ = std::move(other.locs_);
103  Log::trace() << "Locations<OBS>::operator= done" << std::endl;
104  return *this;
105 }
106 
107 // -----------------------------------------------------------------------------
108 
109 template<typename OBS>
110 void Locations<OBS>::print(std::ostream & os) const {
111  Log::trace() << "Locations<OBS>::print starting" << std::endl;
112  util::Timer timer(classname(), "print");
113  os << *locs_;
114  Log::trace() << "Locations<OBS>::print done" << std::endl;
115 }
116 
117 // -----------------------------------------------------------------------------
118 
119 } // namespace oops
120 
121 #endif // OOPS_INTERFACE_LOCATIONS_H_
Locations of observations for observation operator.
const Locations_ & locations() const
Interfacing.
static const std::string classname()
Locations & operator=(const Locations &)=delete
std::unique_ptr< const Locations_ > locs_
~Locations()
Destructor and copy/move constructor and assignments.
void print(std::ostream &) const
Locations(const Locations &)=delete
Locations(std::unique_ptr< Locations_ >)
Constructor from the pointer returned by ObsOperator::locations()
Definition: FieldL95.h:22
The namespace for the main oops code.