Libosmium  2.20.0
Fast and flexible C++ library for working with OpenStreetMap data
problem_reporter_exception.hpp
Go to the documentation of this file.
1#ifndef OSMIUM_AREA_PROBLEM_REPORTER_EXCEPTION_HPP
2#define OSMIUM_AREA_PROBLEM_REPORTER_EXCEPTION_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 <sstream>
41#include <stdexcept>
42
43namespace osmium {
44
45 class NodeRef;
46 class Way;
47
48 namespace area {
49
51
52 std::stringstream m_sstream;
53
54 public:
55
58 }
59
61 m_sstream.str("");
62 ProblemReporterStream::report_duplicate_node(node_id1, node_id2, location);
63 throw std::runtime_error{m_sstream.str()};
64 }
65
67 m_sstream.str("");
69 throw std::runtime_error{m_sstream.str()};
70 }
71
73 osmium::object_id_type way2_id, osmium::Location way2_seg_start, osmium::Location way2_seg_end, osmium::Location intersection) override {
74 m_sstream.str("");
75 ProblemReporterStream::report_intersection(way1_id, way1_seg_start, way1_seg_end, way2_id, way2_seg_start, way2_seg_end, intersection);
76 throw std::runtime_error{m_sstream.str()};
77 }
78
79 void report_duplicate_segment(const osmium::NodeRef& nr1, const osmium::NodeRef& nr2) override {
80 m_sstream.str("");
82 throw std::runtime_error{m_sstream.str()};
83 }
84
85 void report_overlapping_segment(const osmium::NodeRef& nr1, const osmium::NodeRef& nr2) override {
86 m_sstream.str("");
88 throw std::runtime_error{m_sstream.str()};
89 }
90
91 void report_ring_not_closed(const osmium::NodeRef& nr, const osmium::Way* way) override {
92 m_sstream.str("");
94 throw std::runtime_error{m_sstream.str()};
95 }
96
98 m_sstream.str("");
100 throw std::runtime_error{m_sstream.str()};
101 }
102
104 m_sstream.str("");
105 ProblemReporterStream::report_role_should_be_inner(way_id, seg_start, seg_end);
106 throw std::runtime_error{m_sstream.str()};
107 }
108
109 void report_way_in_multiple_rings(const osmium::Way& way) override {
110 m_sstream.str("");
112 throw std::runtime_error{m_sstream.str()};
113 }
114
115 void report_inner_with_same_tags(const osmium::Way& way) override {
116 m_sstream.str("");
118 throw std::runtime_error{m_sstream.str()};
119 }
120
122 m_sstream.str("");
124 throw std::runtime_error{m_sstream.str()};
125 }
126
127 void report_duplicate_way(const osmium::Way& way) override {
128 m_sstream.str("");
130 throw std::runtime_error{m_sstream.str()};
131 }
132
133 }; // class ProblemReporterException
134
135 } // namespace area
136
137} // namespace osmium
138
139#endif // OSMIUM_AREA_PROBLEM_REPORTER_EXCEPTION_HPP
Definition: location.hpp:271
Definition: node_ref.hpp:50
Definition: way.hpp:72
Definition: problem_reporter_exception.hpp:50
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_exception.hpp:72
ProblemReporterException()
Definition: problem_reporter_exception.hpp:56
void report_role_should_be_inner(osmium::object_id_type way_id, osmium::Location seg_start, osmium::Location seg_end) override
Definition: problem_reporter_exception.hpp:103
void report_duplicate_way(const osmium::Way &way) override
Definition: problem_reporter_exception.hpp:127
void report_duplicate_node(osmium::object_id_type node_id1, osmium::object_id_type node_id2, osmium::Location location) override
Definition: problem_reporter_exception.hpp:60
std::stringstream m_sstream
Definition: problem_reporter_exception.hpp:52
void report_invalid_location(osmium::object_id_type way_id, osmium::object_id_type node_id) override
Definition: problem_reporter_exception.hpp:121
void report_inner_with_same_tags(const osmium::Way &way) override
Definition: problem_reporter_exception.hpp:115
void report_duplicate_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2) override
Definition: problem_reporter_exception.hpp:79
void report_touching_ring(osmium::object_id_type node_id, osmium::Location location) override
Definition: problem_reporter_exception.hpp:66
void report_way_in_multiple_rings(const osmium::Way &way) override
Definition: problem_reporter_exception.hpp:109
void report_ring_not_closed(const osmium::NodeRef &nr, const osmium::Way *way) override
Definition: problem_reporter_exception.hpp:91
void report_overlapping_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2) override
Definition: problem_reporter_exception.hpp:85
void report_role_should_be_outer(osmium::object_id_type way_id, osmium::Location seg_start, osmium::Location seg_end) override
Definition: problem_reporter_exception.hpp:97
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
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
void report_overlapping_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2) override
Definition: problem_reporter_stream.hpp:86
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
@ 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