Libosmium  2.14.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 
6 This file is part of Osmium (http://osmcode.org/libosmium).
7 
8 Copyright 2013-2018 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 
37 #include <osmium/osm/location.hpp>
38 #include <osmium/osm/types.hpp>
39 
40 #include <sstream>
41 #include <stdexcept>
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 
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("");
99  ProblemReporterStream::report_role_should_be_outer(way_id, seg_start, seg_end);
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
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
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_way_in_multiple_rings(const osmium::Way &way) override
Definition: problem_reporter_stream.hpp:111
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_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: entity_bits.hpp:72
void report_overlapping_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2) override
Definition: problem_reporter_exception.hpp:85
void report_way_in_multiple_rings(const osmium::Way &way) override
Definition: problem_reporter_exception.hpp:109
Definition: problem_reporter_stream.hpp:49
void report_overlapping_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2) override
Definition: problem_reporter_stream.hpp:86
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:73
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_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_invalid_location(osmium::object_id_type way_id, osmium::object_id_type node_id) override
Definition: problem_reporter_stream.hpp:121
Namespace for everything in the Osmium library.
Definition: assembler.hpp:53
void report_ring_not_closed(const osmium::NodeRef &nr, const osmium::Way *way) override
Definition: problem_reporter_exception.hpp:91
void report_inner_with_same_tags(const osmium::Way &way) override
Definition: problem_reporter_exception.hpp:115
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:101
int64_t object_id_type
Type for OSM object (node, way, or relation) IDs.
Definition: types.hpp:45
void report_duplicate_way(const osmium::Way &way) override
Definition: problem_reporter_exception.hpp:127
void report_duplicate_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2) override
Definition: problem_reporter_exception.hpp:79
Definition: location.hpp:273
void report_duplicate_segment(const osmium::NodeRef &nr1, const osmium::NodeRef &nr2) override
Definition: problem_reporter_stream.hpp:80
void report_ring_not_closed(const osmium::NodeRef &nr, const osmium::Way *way) override
Definition: problem_reporter_stream.hpp:92
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
void report_touching_ring(osmium::object_id_type node_id, osmium::Location location) override
Definition: problem_reporter_exception.hpp:66
void report_touching_ring(osmium::object_id_type node_id, osmium::Location location) override
Definition: problem_reporter_stream.hpp:68
Definition: node_ref.hpp:50
void report_inner_with_same_tags(const osmium::Way &way) override
Definition: problem_reporter_stream.hpp:116
void report_duplicate_way(const osmium::Way &way) override
Definition: problem_reporter_stream.hpp:126
Definition: problem_reporter_exception.hpp:50