Libosmium  2.20.0
Fast and flexible C++ library for working with OpenStreetMap data
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
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
40#include <osmium/osm/types.hpp>
41#include <osmium/osm/way.hpp>
42
43#include <ostream>
44
45namespace 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 void header(const char* msg) {
60 *m_out << "DATA PROBLEM: " << msg << " on " << item_type_to_char(m_object_type) << m_object_id << " (with " << m_nodes << " nodes): ";
61 }
62
64 header("duplicate node");
65 *m_out << "node_id1=" << node_id1 << " node_id2=" << node_id2 << " location=" << location << "\n";
66 }
67
69 header("touching ring");
70 *m_out << "node_id=" << node_id << " location=" << location << "\n";
71 }
72
74 osmium::object_id_type way2_id, osmium::Location way2_seg_start, osmium::Location way2_seg_end, osmium::Location intersection) override {
75 header("intersection");
76 *m_out << "way1_id=" << way1_id << " way1_seg_start=" << way1_seg_start << " way1_seg_end=" << way1_seg_end
77 << " way2_id=" << way2_id << " way2_seg_start=" << way2_seg_start << " way2_seg_end=" << way2_seg_end << " intersection=" << intersection << "\n";
78 }
79
80 void report_duplicate_segment(const osmium::NodeRef& nr1, const osmium::NodeRef& nr2) override {
81 header("duplicate segment");
82 *m_out << "node_id1=" << nr1.ref() << " location1=" << nr1.location()
83 << " node_id2=" << nr2.ref() << " location2=" << nr2.location() << "\n";
84 }
85
86 void report_overlapping_segment(const osmium::NodeRef& nr1, const osmium::NodeRef& nr2) override {
87 header("overlapping segment");
88 *m_out << "node_id1=" << nr1.ref() << " location1=" << nr1.location()
89 << " node_id2=" << nr2.ref() << " location2=" << nr2.location() << "\n";
90 }
91
92 void report_ring_not_closed(const osmium::NodeRef& nr, const osmium::Way* way) override {
93 header("ring not closed");
94 *m_out << "node_id=" << nr.ref() << " location=" << nr.location();
95 if (way) {
96 *m_out << " on way " << way->id();
97 }
98 *m_out << "\n";
99 }
100
102 header("role should be outer");
103 *m_out << "way_id=" << way_id << " seg_start=" << seg_start << " seg_end=" << seg_end << "\n";
104 }
105
107 header("role should be inner");
108 *m_out << "way_id=" << way_id << " seg_start=" << seg_start << " seg_end=" << seg_end << "\n";
109 }
110
111 void report_way_in_multiple_rings(const osmium::Way& way) override {
112 header("way in multiple rings");
113 *m_out << "way_id=" << way.id() << '\n';
114 }
115
116 void report_inner_with_same_tags(const osmium::Way& way) override {
117 header("inner way with same tags as relation or outer");
118 *m_out << "way_id=" << way.id() << '\n';
119 }
120
122 header("invalid location");
123 *m_out << "way_id=" << way_id << " node_id=" << node_id << '\n';
124 }
125
126 void report_duplicate_way(const osmium::Way& way) override {
127 header("duplicate way");
128 *m_out << "way_id=" << way.id() << '\n';
129 }
130
131 }; // class ProblemReporterStream
132
133 } // namespace area
134
135} // namespace osmium
136
137#endif // OSMIUM_AREA_PROBLEM_REPORTER_STREAM_HPP
Definition: location.hpp:271
Definition: node_ref.hpp:50
constexpr osmium::object_id_type ref() const noexcept
Definition: node_ref.hpp:71
osmium::Location & location() noexcept
Definition: node_ref.hpp:85
Definition: way.hpp:72
Definition: problem_reporter_stream.hpp:49
void report_touching_ring(osmium::object_id_type node_id, osmium::Location location) override
Definition: problem_reporter_stream.hpp:68
void report_duplicate_way(const osmium::Way &way) override
Definition: problem_reporter_stream.hpp:126
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:106
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:101
ProblemReporterStream(std::ostream &out)
Definition: problem_reporter_stream.hpp:55
void report_inner_with_same_tags(const osmium::Way &way) override
Definition: problem_reporter_stream.hpp:116
void report_duplicate_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2) override
Definition: problem_reporter_stream.hpp:80
void report_invalid_location(osmium::object_id_type way_id, osmium::object_id_type node_id) override
Definition: problem_reporter_stream.hpp:121
std::ostream * m_out
Definition: problem_reporter_stream.hpp:51
void report_overlapping_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2) override
Definition: problem_reporter_stream.hpp:86
void header(const char *msg)
Definition: problem_reporter_stream.hpp:59
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:63
void report_ring_not_closed(const osmium::NodeRef &nr, const osmium::Way *way) override
Definition: problem_reporter_stream.hpp:92
void report_way_in_multiple_rings(const osmium::Way &way) override
Definition: problem_reporter_stream.hpp:111
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:73
Definition: problem_reporter.hpp:60
osmium::object_id_type m_object_id
Definition: problem_reporter.hpp:68
osmium::item_type m_object_type
Definition: problem_reporter.hpp:65
size_t m_nodes
Definition: problem_reporter.hpp:71
@ 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
char item_type_to_char(const item_type type) noexcept
Definition: item_type.hpp:122