Libosmium  2.7.1
Fast and flexible C++ library for working with OpenStreetMap data
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 (http://osmcode.org/libosmium).
7 
8 Copyright 2013-2016 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 namespace osmium {
41 
42  class NodeRef;
43  class Way;
44 
45  namespace area {
46 
59 
60  protected:
61 
62  // Type of object we are currently working on
64 
65  // ID of the relation/way we are currently working on
67 
68  // Number of nodes in the area
69  size_t m_nodes;
70 
71  public:
72 
73  ProblemReporter() = default;
74 
75  virtual ~ProblemReporter() = default;
76 
83  void set_object(osmium::item_type object_type, osmium::object_id_type object_id) noexcept {
84  m_object_type = object_type;
85  m_object_id = object_id;
86  }
87 
88  void set_nodes(size_t nodes) noexcept {
89  m_nodes = nodes;
90  }
91 
92 // Disable "unused-parameter" warning, so that the compiler will not complain.
93 // We can't remove the parameter names, because then doxygen will complain.
94 #pragma GCC diagnostic push
95 #pragma GCC diagnostic ignored "-Wunused-parameter"
96 
105  }
106 
115  }
116 
128  virtual void report_intersection(osmium::object_id_type way1_id, osmium::Location way1_seg_start, osmium::Location way1_seg_end,
129  osmium::object_id_type way2_id, osmium::Location way2_seg_start, osmium::Location way2_seg_end, osmium::Location intersection) {
130  }
131 
141  virtual void report_duplicate_segment(const osmium::NodeRef& nr1, const osmium::NodeRef& nr2) {
142  }
143 
150  virtual void report_ring_not_closed(const osmium::NodeRef& nr, const osmium::Way* way = nullptr) {
151  }
152 
161  }
162 
171  }
172 
178  virtual void report_way_in_multiple_rings(const osmium::Way& way) {
179  }
180 
187  virtual void report_inner_with_same_tags(const osmium::Way& way) {
188  }
189 
196  virtual void report_way(const osmium::Way& way) {
197  }
198 
199 #pragma GCC diagnostic pop
200 
201  }; // class ProblemReporter
202 
203  } // namespace area
204 
205 } // namespace osmium
206 
207 #endif // OSMIUM_AREA_PROBLEM_REPORTER_HPP
osmium::object_id_type m_object_id
Definition: problem_reporter.hpp:66
virtual void report_way_in_multiple_rings(const osmium::Way &way)
Definition: problem_reporter.hpp:178
virtual void report_duplicate_node(osmium::object_id_type node_id1, osmium::object_id_type node_id2, osmium::Location location)
Definition: problem_reporter.hpp:104
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:170
item_type
Definition: item_type.hpp:43
virtual void report_way(const osmium::Way &way)
Definition: problem_reporter.hpp:196
Definition: entity_bits.hpp:70
Definition: way.hpp:65
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:160
Namespace for everything in the Osmium library.
Definition: assembler.hpp:66
Definition: problem_reporter.hpp:58
void set_object(osmium::item_type object_type, osmium::object_id_type object_id) noexcept
Definition: problem_reporter.hpp:83
osmium::item_type m_object_type
Definition: problem_reporter.hpp:63
int64_t object_id_type
Type for OSM object (node, way, or relation) IDs.
Definition: types.hpp:45
virtual void report_duplicate_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2)
Definition: problem_reporter.hpp:141
void set_nodes(size_t nodes) noexcept
Definition: problem_reporter.hpp:88
virtual void report_touching_ring(osmium::object_id_type node_id, osmium::Location location)
Definition: problem_reporter.hpp:114
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:128
Definition: location.hpp:80
virtual void report_ring_not_closed(const osmium::NodeRef &nr, const osmium::Way *way=nullptr)
Definition: problem_reporter.hpp:150
virtual ~ProblemReporter()=default
virtual void report_inner_with_same_tags(const osmium::Way &way)
Definition: problem_reporter.hpp:187
size_t m_nodes
Definition: problem_reporter.hpp:69
Definition: node_ref.hpp:50