Libosmium  2.15.5
Fast and flexible C++ library for working with OpenStreetMap data
problem_reporter.hpp
Go to the documentation of this file.
1 #ifndef OSMIUM_AREA_PROBLEM_REPORTER_HPP
2 #define OSMIUM_AREA_PROBLEM_REPORTER_HPP
3 
4 /*
5 
6 This file is part of Osmium (https://osmcode.org/libosmium).
7 
8 Copyright 2013-2020 Jochen Topf <jochen@topf.org> and others (see README).
9 
10 Boost Software License - Version 1.0 - August 17th, 2003
11 
12 Permission is hereby granted, free of charge, to any person or organization
13 obtaining a copy of the software and accompanying documentation covered by
14 this license (the "Software") to use, reproduce, display, distribute,
15 execute, and transmit the Software, and to prepare derivative works of the
16 Software, and to permit third-parties to whom the Software is furnished to
17 do so, all subject to the following:
18 
19 The copyright notices in the Software and this entire statement, including
20 the above license grant, this restriction and the following disclaimer,
21 must be included in all copies of the Software, in whole or in part, and
22 all derivative works of the Software, unless such copies or derivative
23 works are solely in the form of machine-executable object code generated by
24 a source language processor.
25 
26 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
29 SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
30 FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
31 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32 DEALINGS IN THE SOFTWARE.
33 
34 */
35 
36 #include <osmium/osm/item_type.hpp>
37 #include <osmium/osm/location.hpp>
38 #include <osmium/osm/types.hpp>
39 
40 #include <cstddef>
41 
42 namespace osmium {
43 
44  class NodeRef;
45  class Way;
46 
47  namespace area {
48 
61 
62  protected:
63 
64  // Type of object we are currently working on
66 
67  // ID of the relation/way we are currently working on
69 
70  // Number of nodes in the area
71  size_t m_nodes = 0;
72 
73  public:
74 
75  ProblemReporter() = default;
76 
77  ProblemReporter(const ProblemReporter&) = default;
78  ProblemReporter& operator=(const ProblemReporter&) = default;
79 
80  ProblemReporter(ProblemReporter&&) noexcept = default;
81  ProblemReporter& operator=(ProblemReporter&&) noexcept = default;
82 
83  virtual ~ProblemReporter() = default;
84 
91  void set_object(osmium::item_type object_type, osmium::object_id_type object_id) noexcept {
92  m_object_type = object_type;
93  m_object_id = object_id;
94  }
95 
96  void set_nodes(size_t nodes) noexcept {
97  m_nodes = nodes;
98  }
99 
100 // Disable "unused-parameter" warning, so that the compiler will not complain.
101 // We can't remove the parameter names, because then doxygen will complain.
102 #pragma GCC diagnostic push
103 #pragma GCC diagnostic ignored "-Wunused-parameter"
104 
113  }
114 
123  }
124 
136  virtual void report_intersection(osmium::object_id_type way1_id, osmium::Location way1_seg_start, osmium::Location way1_seg_end,
137  osmium::object_id_type way2_id, osmium::Location way2_seg_start, osmium::Location way2_seg_end, osmium::Location intersection) {
138  }
139 
149  virtual void report_duplicate_segment(const osmium::NodeRef& nr1, const osmium::NodeRef& nr2) {
150  }
151 
161  virtual void report_overlapping_segment(const osmium::NodeRef& nr1, const osmium::NodeRef& nr2) {
162  }
163 
170  virtual void report_ring_not_closed(const osmium::NodeRef& nr, const osmium::Way* way) {
171  }
172 
181  }
182 
191  }
192 
198  virtual void report_way_in_multiple_rings(const osmium::Way& way) {
199  }
200 
207  virtual void report_inner_with_same_tags(const osmium::Way& way) {
208  }
209 
217  }
218 
224  virtual void report_duplicate_way(const osmium::Way& way) {
225  }
226 
233  virtual void report_way(const osmium::Way& way) {
234  }
235 
236 #pragma GCC diagnostic pop
237 
238  }; // class ProblemReporter
239 
240  } // namespace area
241 
242 } // namespace osmium
243 
244 #endif // OSMIUM_AREA_PROBLEM_REPORTER_HPP
osmium::area::ProblemReporter
Definition: problem_reporter.hpp:60
osmium::area::ProblemReporter::operator=
ProblemReporter & operator=(const ProblemReporter &)=default
osmium::area::ProblemReporter::report_invalid_location
virtual void report_invalid_location(osmium::object_id_type way_id, osmium::object_id_type node_id)
Definition: problem_reporter.hpp:216
osmium::area::ProblemReporter::set_nodes
void set_nodes(size_t nodes) noexcept
Definition: problem_reporter.hpp:96
osmium::area::ProblemReporter::report_role_should_be_outer
virtual void report_role_should_be_outer(osmium::object_id_type way_id, osmium::Location seg_start, osmium::Location seg_end)
Definition: problem_reporter.hpp:180
types.hpp
osmium::area::ProblemReporter::report_inner_with_same_tags
virtual void report_inner_with_same_tags(const osmium::Way &way)
Definition: problem_reporter.hpp:207
osmium::object_id_type
int64_t object_id_type
Type for OSM object (node, way, or relation) IDs.
Definition: types.hpp:45
osmium::area::ProblemReporter::report_duplicate_segment
virtual void report_duplicate_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2)
Definition: problem_reporter.hpp:149
osmium::area::ProblemReporter::report_way_in_multiple_rings
virtual void report_way_in_multiple_rings(const osmium::Way &way)
Definition: problem_reporter.hpp:198
osmium
Namespace for everything in the Osmium library.
Definition: assembler.hpp:53
osmium::area::ProblemReporter::report_way
virtual void report_way(const osmium::Way &way)
Definition: problem_reporter.hpp:233
osmium::item_type::undefined
@ undefined
osmium::osm_entity_bits::area
@ area
Definition: entity_bits.hpp:72
osmium::area::ProblemReporter::set_object
void set_object(osmium::item_type object_type, osmium::object_id_type object_id) noexcept
Definition: problem_reporter.hpp:91
osmium::area::ProblemReporter::report_ring_not_closed
virtual void report_ring_not_closed(const osmium::NodeRef &nr, const osmium::Way *way)
Definition: problem_reporter.hpp:170
osmium::Way
Definition: way.hpp:72
location.hpp
osmium::area::ProblemReporter::report_role_should_be_inner
virtual void report_role_should_be_inner(osmium::object_id_type way_id, osmium::Location seg_start, osmium::Location seg_end)
Definition: problem_reporter.hpp:190
osmium::area::ProblemReporter::ProblemReporter
ProblemReporter()=default
osmium::area::ProblemReporter::m_object_type
osmium::item_type m_object_type
Definition: problem_reporter.hpp:65
osmium::area::ProblemReporter::report_intersection
virtual void report_intersection(osmium::object_id_type way1_id, osmium::Location way1_seg_start, osmium::Location way1_seg_end, osmium::object_id_type way2_id, osmium::Location way2_seg_start, osmium::Location way2_seg_end, osmium::Location intersection)
Definition: problem_reporter.hpp:136
osmium::Location
Definition: location.hpp:271
osmium::area::ProblemReporter::m_nodes
size_t m_nodes
Definition: problem_reporter.hpp:71
osmium::area::ProblemReporter::report_touching_ring
virtual void report_touching_ring(osmium::object_id_type node_id, osmium::Location location)
Definition: problem_reporter.hpp:122
osmium::area::ProblemReporter::report_duplicate_node
virtual void report_duplicate_node(osmium::object_id_type node_id1, osmium::object_id_type node_id2, osmium::Location location)
Definition: problem_reporter.hpp:112
osmium::area::ProblemReporter::report_duplicate_way
virtual void report_duplicate_way(const osmium::Way &way)
Definition: problem_reporter.hpp:224
osmium::area::ProblemReporter::report_overlapping_segment
virtual void report_overlapping_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2)
Definition: problem_reporter.hpp:161
item_type.hpp
osmium::NodeRef
Definition: node_ref.hpp:50
osmium::item_type
item_type
Definition: item_type.hpp:43
osmium::area::ProblemReporter::m_object_id
osmium::object_id_type m_object_id
Definition: problem_reporter.hpp:68