OOPS
oops/interface/GeometryIterator.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef OOPS_INTERFACE_GEOMETRYITERATOR_H_
12 #define OOPS_INTERFACE_GEOMETRYITERATOR_H_
13 
14 #include <iterator>
15 #include <memory>
16 #include <string>
17 
18 #include "eckit/geometry/Point2.h"
19 
20 #include "oops/util/Logger.h"
21 #include "oops/util/ObjectCounter.h"
22 #include "oops/util/Printable.h"
23 #include "oops/util/Timer.h"
24 
25 namespace oops {
26 
27 // -----------------------------------------------------------------------------
28 template<typename TRAIT>
29 class GeometryIterator: public std::iterator<std::forward_iterator_tag,
30  eckit::geometry::Point2>,
31  public util::Printable,
32  private util::ObjectCounter<GeometryIterator<TRAIT>> {
33  typedef typename TRAIT::GeometryIterator GeometryIterator_;
34 
35  public:
36  static const std::string classname() {return "oops::GeometryIterator";}
37 
39  explicit GeometryIterator(const GeometryIterator_&);
41 
42  bool operator==(const GeometryIterator&);
43  bool operator!=(const GeometryIterator&);
44  eckit::geometry::Point2 operator*() const;
46 
47 /// Interfacing
48  const GeometryIterator_ & geometryiter() const {return *geometryiter_;}
50 
51  private:
52  void print(std::ostream &) const;
53  std::unique_ptr<GeometryIterator_> geometryiter_;
54 };
55 
56 // -----------------------------------------------------------------------------
57 
58 template<typename TRAIT>
60  Log::trace() << "GeometryIterator<TRAIT>::GeometryIterator starting" << std::endl;
61  util::Timer timer(classname(), "GeometryIterator");
62  geometryiter_.reset(new GeometryIterator_(other.geometryiter()));
63  Log::trace() << "GeometryIterator<TRAIT>::GeometryIterator done" << std::endl;
64 }
65 
66 // -----------------------------------------------------------------------------
67 
68 template<typename TRAIT>
70  Log::trace() << "GeometryIterator<TRAIT>::GeometryIterator starting" << std::endl;
71  util::Timer timer(classname(), "GeometryIterator");
72  geometryiter_.reset(new GeometryIterator_(iter));
73  Log::trace() << "GeometryIterator<TRAIT>::GeometryIterator done" << std::endl;
74 }
75 
76 // -----------------------------------------------------------------------------
77 
78 template<typename TRAIT>
80  Log::trace() << "GeometryIterator<TRAIT>::~GeometryIterator starting" << std::endl;
81  util::Timer timer(classname(), "~GeometryIterator");
82  geometryiter_.reset();
83  Log::trace() << "GeometryIterator<TRAIT>::~GeometryIterator done" << std::endl;
84 }
85 
86 // -----------------------------------------------------------------------------
87 
88 template<typename TRAIT>
90  Log::trace() << "GeometryIterator<TRAIT>::operator== starting" << std::endl;
91  util::Timer timer(classname(), "operator==");
92  bool equals = (*geometryiter_ == other.geometryiter());
93  Log::trace() << "GeometryIterator<TRAIT>::operator== done" << std::endl;
94  return equals;
95 }
96 
97 // -----------------------------------------------------------------------------
98 
99 template<typename TRAIT>
101  Log::trace() << "GeometryIterator<TRAIT>::operator!= starting" << std::endl;
102  util::Timer timer(classname(), "operator!=");
103  bool notequals = (*geometryiter_ != other.geometryiter());
104  Log::trace() << "GeometryIterator<TRAIT>::operator!= done" << std::endl;
105  return notequals;
106 }
107 
108 
109 // -----------------------------------------------------------------------------
110 
111 template<typename TRAIT>
112 eckit::geometry::Point2 GeometryIterator<TRAIT>::operator*() const {
113  Log::trace() << "GeometryIterator<TRAIT>::operator* starting" << std::endl;
114  util::Timer timer(classname(), "operator*");
115  eckit::geometry::Point2 loc = *(*geometryiter_);
116  Log::trace() << "GeometryIterator<TRAIT>::operator* done" << std::endl;
117  return loc;
118 }
119 
120 // -----------------------------------------------------------------------------
121 
122 template<typename TRAIT>
124  Log::trace() << "GeometryIterator<TRAIT>::operator++ starting" << std::endl;
125  util::Timer timer(classname(), "operator++");
126  ++(*geometryiter_);
127  Log::trace() << "GeometryIterator<TRAIT>::operator++ done" << std::endl;
128  return *this;
129 }
130 
131 
132 // -----------------------------------------------------------------------------
133 
134 template<typename TRAIT>
135 void GeometryIterator<TRAIT>::print(std::ostream & os) const {
136  Log::trace() << "GeometryIterator<TRAIT>::print starting" << std::endl;
137  util::Timer timer(classname(), "print");
138  os << *geometryiter_;
139  Log::trace() << "GeometryIterator<TRAIT>::print done" << std::endl;
140 }
141 
142 
143 } // namespace oops
144 
145 #endif // OOPS_INTERFACE_GEOMETRYITERATOR_H_
bool operator!=(const GeometryIterator &)
eckit::geometry::Point2 operator*() const
void print(std::ostream &) const
const GeometryIterator_ & geometryiter() const
Interfacing.
bool operator==(const GeometryIterator &)
TRAIT::GeometryIterator GeometryIterator_
std::unique_ptr< GeometryIterator_ > geometryiter_
static const std::string classname()
GeometryIterator(const GeometryIterator &)
The namespace for the main oops code.