Libosmium  2.12.2
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 
6 This file is part of Osmium (http://osmcode.org/libosmium).
7 
8 Copyright 2013-2017 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 <sstream>
37 #include <stdexcept>
38 
40 #include <osmium/osm/location.hpp>
41 #include <osmium/osm/types.hpp>
42 
43 namespace osmium {
44 
45  class NodeRef;
46  class Way;
47 
48  namespace area {
49 
51 
52  std::stringstream m_sstream;
53 
54  public:
55 
57  ProblemReporterStream(m_sstream) {
58  }
59 
60  ~ProblemReporterException() override = default;
61 
63  m_sstream.str("");
64  ProblemReporterStream::report_duplicate_node(node_id1, node_id2, location);
65  throw std::runtime_error{m_sstream.str()};
66  }
67 
69  m_sstream.str("");
71  throw std::runtime_error{m_sstream.str()};
72  }
73 
75  osmium::object_id_type way2_id, osmium::Location way2_seg_start, osmium::Location way2_seg_end, osmium::Location intersection) override {
76  m_sstream.str("");
77  ProblemReporterStream::report_intersection(way1_id, way1_seg_start, way1_seg_end, way2_id, way2_seg_start, way2_seg_end, intersection);
78  throw std::runtime_error{m_sstream.str()};
79  }
80 
81  void report_duplicate_segment(const osmium::NodeRef& nr1, const osmium::NodeRef& nr2) override {
82  m_sstream.str("");
84  throw std::runtime_error{m_sstream.str()};
85  }
86 
87  void report_ring_not_closed(const osmium::NodeRef& nr, const osmium::Way* way = nullptr) override {
88  m_sstream.str("");
90  throw std::runtime_error{m_sstream.str()};
91  }
92 
94  m_sstream.str("");
95  ProblemReporterStream::report_role_should_be_outer(way_id, seg_start, seg_end);
96  throw std::runtime_error{m_sstream.str()};
97  }
98 
100  m_sstream.str("");
101  ProblemReporterStream::report_role_should_be_inner(way_id, seg_start, seg_end);
102  throw std::runtime_error{m_sstream.str()};
103  }
104 
105  void report_way_in_multiple_rings(const osmium::Way& way) override {
106  m_sstream.str("");
108  throw std::runtime_error{m_sstream.str()};
109  }
110 
111  void report_inner_with_same_tags(const osmium::Way& way) override {
112  m_sstream.str("");
114  throw std::runtime_error{m_sstream.str()};
115  }
116 
118  m_sstream.str("");
120  throw std::runtime_error{m_sstream.str()};
121  }
122 
123  void report_duplicate_way(const osmium::Way& way) override {
124  m_sstream.str("");
126  throw std::runtime_error{m_sstream.str()};
127  }
128 
129  }; // class ProblemReporterException
130 
131  } // namespace area
132 
133 } // namespace osmium
134 
135 #endif // OSMIUM_AREA_PROBLEM_REPORTER_EXCEPTION_HPP
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:74
void report_invalid_location(osmium::object_id_type way_id, osmium::object_id_type node_id) override
Definition: problem_reporter_exception.hpp:117
void report_way_in_multiple_rings(const osmium::Way &way) override
Definition: problem_reporter_stream.hpp:107
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:99
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:93
~ProblemReporterException() override=default
Definition: entity_bits.hpp:72
void report_way_in_multiple_rings(const osmium::Way &way) override
Definition: problem_reporter_exception.hpp:105
Definition: problem_reporter_stream.hpp:49
Definition: way.hpp:72
std::stringstream m_sstream
Definition: problem_reporter_exception.hpp:52
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 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
void report_invalid_location(osmium::object_id_type way_id, osmium::object_id_type node_id) override
Definition: problem_reporter_stream.hpp:117
Namespace for everything in the Osmium library.
Definition: assembler.hpp:63
void report_inner_with_same_tags(const osmium::Way &way) override
Definition: problem_reporter_exception.hpp:111
ProblemReporterException()
Definition: problem_reporter_exception.hpp:56
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
void report_duplicate_way(const osmium::Way &way) override
Definition: problem_reporter_exception.hpp:123
void report_duplicate_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2) override
Definition: problem_reporter_exception.hpp:81
Definition: location.hpp:266
void report_duplicate_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2) override
Definition: problem_reporter_stream.hpp:82
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:62
void report_touching_ring(osmium::object_id_type node_id, osmium::Location location) override
Definition: problem_reporter_exception.hpp:68
void report_touching_ring(osmium::object_id_type node_id, osmium::Location location) override
Definition: problem_reporter_stream.hpp:70
Definition: node_ref.hpp:50
void report_inner_with_same_tags(const osmium::Way &way) override
Definition: problem_reporter_stream.hpp:112
void report_ring_not_closed(const osmium::NodeRef &nr, const osmium::Way *way=nullptr) override
Definition: problem_reporter_exception.hpp:87
void report_duplicate_way(const osmium::Way &way) override
Definition: problem_reporter_stream.hpp:122
Definition: problem_reporter_exception.hpp:50