Libosmium  2.20.0
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
6This file is part of Osmium (https://osmcode.org/libosmium).
7
8Copyright 2013-2023 Jochen Topf <jochen@topf.org> and others (see README).
9
10Boost Software License - Version 1.0 - August 17th, 2003
11
12Permission is hereby granted, free of charge, to any person or organization
13obtaining a copy of the software and accompanying documentation covered by
14this license (the "Software") to use, reproduce, display, distribute,
15execute, and transmit the Software, and to prepare derivative works of the
16Software, and to permit third-parties to whom the Software is furnished to
17do so, all subject to the following:
18
19The copyright notices in the Software and this entire statement, including
20the above license grant, this restriction and the following disclaimer,
21must be included in all copies of the Software, in whole or in part, and
22all derivative works of the Software, unless such copies or derivative
23works are solely in the form of machine-executable object code generated by
24a source language processor.
25
26THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
29SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
30FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
31ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32DEALINGS IN THE SOFTWARE.
33
34*/
35
38#include <osmium/osm/types.hpp>
39
40#include <cstddef>
41
42namespace 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
79
80 ProblemReporter(ProblemReporter&&) noexcept = default;
81 ProblemReporter& operator=(ProblemReporter&&) noexcept = default;
82
83 virtual ~ProblemReporter() noexcept = default;
84
91 void set_object(osmium::item_type object_type, osmium::object_id_type object_id) noexcept {
92 m_object_type = object_type;
94 }
95
97 return m_object_id;
98 }
99
100 void set_nodes(size_t nodes) noexcept {
101 m_nodes = nodes;
102 }
103
104// Disable "unused-parameter" warning, so that the compiler will not complain.
105// We can't remove the parameter names, because then doxygen will complain.
106#pragma GCC diagnostic push
107#pragma GCC diagnostic ignored "-Wunused-parameter"
108
117 }
118
127 }
128
140 virtual void report_intersection(osmium::object_id_type way1_id, osmium::Location way1_seg_start, osmium::Location way1_seg_end,
141 osmium::object_id_type way2_id, osmium::Location way2_seg_start, osmium::Location way2_seg_end, osmium::Location intersection) {
142 }
143
153 virtual void report_duplicate_segment(const osmium::NodeRef& nr1, const osmium::NodeRef& nr2) {
154 }
155
165 virtual void report_overlapping_segment(const osmium::NodeRef& nr1, const osmium::NodeRef& nr2) {
166 }
167
174 virtual void report_ring_not_closed(const osmium::NodeRef& nr, const osmium::Way* way) {
175 }
176
185 }
186
195 }
196
202 virtual void report_way_in_multiple_rings(const osmium::Way& way) {
203 }
204
211 virtual void report_inner_with_same_tags(const osmium::Way& way) {
212 }
213
221 }
222
228 virtual void report_duplicate_way(const osmium::Way& way) {
229 }
230
237 virtual void report_way(const osmium::Way& way) {
238 }
239
240#pragma GCC diagnostic pop
241
242 }; // class ProblemReporter
243
244 } // namespace area
245
246} // namespace osmium
247
248#endif // OSMIUM_AREA_PROBLEM_REPORTER_HPP
Definition: location.hpp:271
Definition: node_ref.hpp:50
Definition: way.hpp:72
Definition: problem_reporter.hpp:60
void set_nodes(size_t nodes) noexcept
Definition: problem_reporter.hpp:100
void set_object(osmium::item_type object_type, osmium::object_id_type object_id) noexcept
Definition: problem_reporter.hpp:91
osmium::object_id_type m_object_id
Definition: problem_reporter.hpp:68
ProblemReporter & operator=(const ProblemReporter &)=default
virtual void report_duplicate_node(osmium::object_id_type node_id1, osmium::object_id_type node_id2, osmium::Location location)
Definition: problem_reporter.hpp:116
osmium::object_id_type object_id() const noexcept
Definition: problem_reporter.hpp:96
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:194
osmium::item_type m_object_type
Definition: problem_reporter.hpp:65
ProblemReporter(ProblemReporter &&) noexcept=default
virtual void report_way_in_multiple_rings(const osmium::Way &way)
Definition: problem_reporter.hpp:202
virtual void report_invalid_location(osmium::object_id_type way_id, osmium::object_id_type node_id)
Definition: problem_reporter.hpp:220
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:140
virtual void report_inner_with_same_tags(const osmium::Way &way)
Definition: problem_reporter.hpp:211
virtual void report_duplicate_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2)
Definition: problem_reporter.hpp:153
ProblemReporter(const ProblemReporter &)=default
size_t m_nodes
Definition: problem_reporter.hpp:71
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:184
virtual void report_duplicate_way(const osmium::Way &way)
Definition: problem_reporter.hpp:228
virtual void report_ring_not_closed(const osmium::NodeRef &nr, const osmium::Way *way)
Definition: problem_reporter.hpp:174
virtual void report_way(const osmium::Way &way)
Definition: problem_reporter.hpp:237
virtual void report_touching_ring(osmium::object_id_type node_id, osmium::Location location)
Definition: problem_reporter.hpp:126
virtual void report_overlapping_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2)
Definition: problem_reporter.hpp:165
@ area
Definition: entity_bits.hpp:72
Namespace for everything in the Osmium library.
Definition: assembler.hpp:53
int64_t object_id_type
Type for OSM object (node, way, or relation) IDs.
Definition: types.hpp:45
item_type
Definition: item_type.hpp:45