forked from MaZderMind/osm-history-splitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simplecut.hpp
255 lines (201 loc) · 8.64 KB
/
simplecut.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
#ifndef SPLITTER_SIMPLECUT_HPP
#define SPLITTER_SIMPLECUT_HPP
#include "cut.hpp"
#include "growing_bitset.hpp"
/*
Simplecut Algorithm
- walk over all node-versions
- walk over all bboxes
- if the current node-version is inside the bbox
- record its id in the bboxes node-tracker
- initialize the current-way-id to 0
- walk over all way-versions
- if current-way-id != 0 and current-way-id != the id of the currently iterated way (in other words: this is a different way)
- walk over all bboxes
- if the way-id is in the bboxes way-id-tracker (in other words: the way is in the output)
- append all nodes of the current-way-nodes set to the extra-node-tracker
- clear the current-way-nodes set
- update the current-way-id
- walk over all way-nodes
- append the node-ids to the current-way-nodes set
- walk over all bboxes
- walk over all way-nodes
- if the way-node is recorded in the bboxes node-tracker
- record its id in the bboxes way-id-tracker
- after all ways
- walk over all bboxes
- if the way-id is in the bboxes way-id-tracker (in other words: the way is in the output)
- append all nodes of the current-way-nodes set to the extra-node-tracker
- walk over all relation-versions
- walk over all bboxes
- walk over all relation-members
- if the relation-member is recorded in the bboxes node- or way-tracker
- record its id in the bboxes relation-tracker
Second Pass
- walk over all node-versions
- walk over all bboxes
- if the node-id is recorded in the bboxes node-tracker or in the extra-node-tracker
- send the node to the bboxes writer
- walk over all way-versions
- walk over all bboxes
- if the way-id is recorded in the bboxes way-tracker
- send the way to the bboxes writer
- walk over all relation-versions
- walk over all bboxes
- if the relation-id is recorded in the bboxes relation-tracker
- send the relation to the bboxes writer
features:
- if an object is in the extract, all versions of it are there
- ways and relations are not changed
- ways are reference-complete
disadvantages
- dual pass
- needs more RAM: 350 MB per BBOX
- ((1400000000÷8)+(1400000000÷8)+(130000000÷8)+(1500000÷8))÷1024÷1024 MB
- relations will have dead references
*/
class SimplecutExtractInfo : public ExtractInfo {
public:
growing_bitset node_tracker;
growing_bitset way_tracker;
growing_bitset relation_tracker;
SimplecutExtractInfo(const std::string& name, const osmium::io::File& file, const osmium::io::Header& header) :
ExtractInfo(name, file, header) {}
};
class SimplecutInfo : public CutInfo<SimplecutExtractInfo> {
};
class SimplecutPassOne : public Cut<SimplecutInfo> {
// - walk over all bboxes
// - if the way-id is in the bboxes way-id-tracker (in other words: the way is in the output)
// - append all nodes of the current-way-nodes set to the extra-node-tracker
public:
SimplecutPassOne(SimplecutInfo *info) : Cut<SimplecutInfo>(info){
std::cout << "Start Simplecut:\n";
for (const auto& extract : info->extracts) {
std::cout << "\textract " << extract->name << "\n";
}
std::cout << "\n\n=====simplecut first-pass=====\n\n";
}
// - walk over all node-versions
// - walk over all bboxes
// - if the current node-version is inside the bbox
// - record its id in the bboxes node-tracker
void node(const osmium::Node& node) {
if (debug) {
std::cerr << "simplecut node " << node.id() << " v" << node.version() << "\n";
}
for (const auto& extract : info->extracts) {
if (extract->contains(node)) {
if (debug) std::cerr << "node is in extract, recording in node_tracker\n";
extract->node_tracker.set(node.id());
}
}
}
// - initialize the current-way-id to 0
// - walk over all way-versions
// - if current-way-id != 0 and current-way-id != the id of the currently iterated way (in other words: this is a different way)
// - walk over all bboxes
// - if the way-id is in the bboxes way-id-tracker (in other words: the way is in the output)
// - append all nodes of the current-way-nodes set to the extra-node-tracker
// - clear the current-way-nodes set
// - update the current-way-id
// - walk over all way-nodes
// - append the node-ids to the current-way-nodes set
// - walk over all bboxes
// - walk over all way-nodes
// - if the way-node is recorded in the bboxes node-tracker
// - record its id in the bboxes way-id-tracker
//
// - after all ways
// - walk over all bboxes
// - if the way-id is in the bboxes way-id-tracker (in other words: the way is in the output)
// - append all nodes of the current-way-nodes set to the extra-node-tracker
void way(const osmium::Way& way) {
if (debug) {
std::cerr << "simplecut way " << way.id() << " v" << way.version() << "\n";
}
for (const auto& extract : info->extracts) {
for (const auto& node_ref : way.nodes()) {
if (extract->node_tracker.get(node_ref.ref())) {
if (debug) {
std::cerr << "way has a node (" << node_ref.ref() << ") inside extract, recording in way_tracker\n";
}
extract->way_tracker.set(way.id());
break;
}
}
}
}
// - walk over all relation-versions
// - walk over all bboxes
// - walk over all relation-members
// - if the relation-member is recorded in the bboxes node- or way-tracker
// - record its id in the bboxes relation-tracker
void relation(const osmium::Relation& relation) {
if (debug) {
std::cerr << "simplecut relation " << relation.id() << " v" << relation.version() << "\n";
}
for (const auto& extract : info->extracts) {
for (const auto& member : relation.members()) {
if ((member.type() == osmium::item_type::node && extract->node_tracker.get(member.ref())) ||
(member.type() == osmium::item_type::way && extract->way_tracker.get(member.ref()))) {
if (debug) std::cerr << "relation has a member (" << member.type() << " " << member.ref() << ") inside extract, recording in relation_tracker\n";
extract->relation_tracker.set(relation.id());
break;
}
}
}
}
}; // class SimplecutPassOne
class SimplecutPassTwo : public Cut<SimplecutInfo> {
public:
SimplecutPassTwo(SimplecutInfo *info) : Cut<SimplecutInfo>(info) {
if (debug) {
std::cerr << "simplecut second-pass init\n";
}
std::cout << "\n\n=====simplecut second-pass=====\n\n";
}
// - walk over all node-versions
// - walk over all bboxes
// - if the node-id is recorded in the bboxes node-tracker or in the extra-node-tracker
// - send the node to the bboxes writer
void node(const osmium::Node& node) {
if (debug) {
std::cerr << "simplecut node " << node.id() << " v" << node.version() << "\n";
}
for (const auto& extract : info->extracts) {
if (extract->node_tracker.get(node.id())) {
extract->write(node);
}
}
}
// - walk over all way-versions
// - walk over all bboxes
// - if the way-id is recorded in the bboxes way-tracker
// - send the way to the bboxes writer
void way(const osmium::Way& way) {
if (debug) {
std::cerr << "simplecut way " << way.id() << " v" << way.version() << "\n";
}
for (const auto& extract : info->extracts) {
if (extract->way_tracker.get(way.id())) {
extract->write(way);
}
}
}
// - walk over all relation-versions
// - walk over all bboxes
// - if the relation-id is recorded in the bboxes relation-tracker
// - send the relation to the bboxes writer
void relation(const osmium::Relation& relation) {
if (debug) {
std::cerr << "simplecut relation " << relation.id() << " v" << relation.version() << "\n";
}
for (const auto& extract : info->extracts) {
if (extract->relation_tracker.get(relation.id())) {
extract->write(relation);
}
}
}
}; // class SimplecutPassTwo
#endif // SPLITTER_SIMPLECUT_HPP