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_stream.hpp
Go to the documentation of this file.
1 #ifndef OSMIUM_AREA_PROBLEM_REPORTER_STREAM_HPP
2 #define OSMIUM_AREA_PROBLEM_REPORTER_STREAM_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 <ostream>
37 
39 #include <osmium/osm/item_type.hpp>
40 #include <osmium/osm/location.hpp>
41 #include <osmium/osm/node_ref.hpp>
42 #include <osmium/osm/types.hpp>
43 #include <osmium/osm/way.hpp>
44 
45 namespace osmium {
46 
47  namespace area {
48 
50 
51  std::ostream* m_out;
52 
53  public:
54 
55  explicit ProblemReporterStream(std::ostream& out) :
56  m_out(&out) {
57  }
58 
59  ~ProblemReporterStream() override = default;
60 
61  void header(const char* msg) {
62  *m_out << "DATA PROBLEM: " << msg << " on " << item_type_to_char(m_object_type) << m_object_id << " (with " << m_nodes << " nodes): ";
63  }
64 
66  header("duplicate node");
67  *m_out << "node_id1=" << node_id1 << " node_id2=" << node_id2 << " location=" << location << "\n";
68  }
69 
71  header("touching ring");
72  *m_out << "node_id=" << node_id << " location=" << location << "\n";
73  }
74 
76  osmium::object_id_type way2_id, osmium::Location way2_seg_start, osmium::Location way2_seg_end, osmium::Location intersection) override {
77  header("intersection");
78  *m_out << "way1_id=" << way1_id << " way1_seg_start=" << way1_seg_start << " way1_seg_end=" << way1_seg_end
79  << " way2_id=" << way2_id << " way2_seg_start=" << way2_seg_start << " way2_seg_end=" << way2_seg_end << " intersection=" << intersection << "\n";
80  }
81 
82  void report_duplicate_segment(const osmium::NodeRef& nr1, const osmium::NodeRef& nr2) override {
83  header("duplicate segment");
84  *m_out << "node_id1=" << nr1.ref() << " location1=" << nr1.location()
85  << " node_id2=" << nr2.ref() << " location2=" << nr2.location() << "\n";
86  }
87 
88  void report_ring_not_closed(const osmium::NodeRef& nr, const osmium::Way* way = nullptr) override {
89  header("ring not closed");
90  *m_out << "node_id=" << nr.ref() << " location=" << nr.location();
91  if (way) {
92  *m_out << " on way " << way->id();
93  }
94  *m_out << "\n";
95  }
96 
98  header("role should be outer");
99  *m_out << "way_id=" << way_id << " seg_start=" << seg_start << " seg_end=" << seg_end << "\n";
100  }
101 
103  header("role should be inner");
104  *m_out << "way_id=" << way_id << " seg_start=" << seg_start << " seg_end=" << seg_end << "\n";
105  }
106 
107  void report_way_in_multiple_rings(const osmium::Way& way) override {
108  header("way in multiple rings");
109  *m_out << "way_id=" << way.id() << '\n';
110  }
111 
112  void report_inner_with_same_tags(const osmium::Way& way) override {
113  header("inner way with same tags as relation or outer");
114  *m_out << "way_id=" << way.id() << '\n';
115  }
116 
117  }; // class ProblemReporterStream
118 
119  } // namespace area
120 
121 } // namespace osmium
122 
123 #endif // OSMIUM_AREA_PROBLEM_REPORTER_STREAM_HPP
osmium::object_id_type m_object_id
Definition: problem_reporter.hpp:66
~ProblemReporterStream() override=default
void report_way_in_multiple_rings(const osmium::Way &way) override
Definition: problem_reporter_stream.hpp:107
std::ostream * m_out
Definition: problem_reporter_stream.hpp:51
ProblemReporterStream(std::ostream &out)
Definition: problem_reporter_stream.hpp:55
Definition: entity_bits.hpp:70
Definition: problem_reporter_stream.hpp:49
Definition: way.hpp:65
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) override
Definition: problem_reporter_stream.hpp:75
void header(const char *msg)
Definition: problem_reporter_stream.hpp:61
constexpr osmium::object_id_type ref() const noexcept
Definition: node_ref.hpp:65
void report_duplicate_node(osmium::object_id_type node_id1, osmium::object_id_type node_id2, osmium::Location location) override
Definition: problem_reporter_stream.hpp:65
void report_role_should_be_inner(osmium::object_id_type way_id, osmium::Location seg_start, osmium::Location seg_end) override
Definition: problem_reporter_stream.hpp:102
Namespace for everything in the Osmium library.
Definition: assembler.hpp:66
Definition: problem_reporter.hpp:58
osmium::item_type m_object_type
Definition: problem_reporter.hpp:63
void report_role_should_be_outer(osmium::object_id_type way_id, osmium::Location seg_start, osmium::Location seg_end) override
Definition: problem_reporter_stream.hpp:97
int64_t object_id_type
Type for OSM object (node, way, or relation) IDs.
Definition: types.hpp:45
void report_ring_not_closed(const osmium::NodeRef &nr, const osmium::Way *way=nullptr) override
Definition: problem_reporter_stream.hpp:88
Definition: location.hpp:80
osmium::Location & location() noexcept
Definition: node_ref.hpp:79
void report_duplicate_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2) override
Definition: problem_reporter_stream.hpp:82
object_id_type id() const noexcept
Get ID of this object.
Definition: object.hpp:112
char item_type_to_char(const item_type type) noexcept
Definition: item_type.hpp:124
void report_touching_ring(osmium::object_id_type node_id, osmium::Location location) override
Definition: problem_reporter_stream.hpp:70
size_t m_nodes
Definition: problem_reporter.hpp:69
Definition: node_ref.hpp:50
void report_inner_with_same_tags(const osmium::Way &way) override
Definition: problem_reporter_stream.hpp:112