forked from MaZderMind/osm-history-splitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
softcut.hpp
331 lines (267 loc) · 11.3 KB
/
softcut.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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
#ifndef SPLITTER_SOFTCUT_HPP
#define SPLITTER_SOFTCUT_HPP
#include "cut.hpp"
#include "growing_bitset.hpp"
/*
Softcut 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 SoftcutExtractInfo : public ExtractInfo {
public:
growing_bitset node_tracker;
growing_bitset extra_node_tracker;
growing_bitset way_tracker;
growing_bitset relation_tracker;
SoftcutExtractInfo(const std::string& name, const osmium::io::File& file, const osmium::io::Header& header) :
ExtractInfo(name, file, header) {}
};
class SoftcutInfo : public CutInfo<SoftcutExtractInfo> {
public:
std::multimap<osmium::object_id_type, osmium::object_id_type> cascading_relations_tracker;
};
class SoftcutPassOne : public Cut<SoftcutInfo> {
osmium::object_id_type current_way_id;
std::set<osmium::object_id_type> current_way_nodes;
bool first_relation = true;
// - 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 write_way_extra_nodes() {
if (debug) {
std::cerr << "finished all versions of way " << current_way_id << ", checking for extra nodes\n";
}
for (const auto& extract : info->extracts) {
if (extract->way_tracker.get(current_way_id)) {
if (debug) {
std::cerr << "way had a node inside extract, recording extra nodes\n";
}
for (const auto id : current_way_nodes) {
extract->extra_node_tracker.set(id);
if (debug) {
std::cerr << " " << id;
}
}
if (debug) {
std::cerr << "\n";
}
}
}
}
public:
SoftcutPassOne(SoftcutInfo *info) : Cut<SoftcutInfo>(info), current_way_id(0), current_way_nodes() {
std::cout << "Start Softcut:\n";
for (const auto& extract : info->extracts) {
std::cout << "\textract " << extract->name << "\n";
}
if (debug) {
std::cerr << "\n\n=====softcut 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 << "softcut 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) {
// detect a new way
if (current_way_id != 0 && current_way_id != way.id()) {
write_way_extra_nodes();
current_way_nodes.clear();
}
current_way_id = way.id();
if (debug) {
std::cerr << "softcut way " << way.id() << " v" << way.version() << "\n";
}
for (const auto& node_ref : way.nodes()) {
current_way_nodes.insert(node_ref.ref());
}
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 (first_relation) {
write_way_extra_nodes();
first_relation = false;
}
if (debug) {
std::cerr << "softcut relation " << relation.id() << " v" << relation.version() << "\n";
}
for (const auto& extract : info->extracts) {
bool hit = false;
for (const auto& member : relation.members()) {
if (!hit && (
(member.type() == osmium::item_type::node && extract->node_tracker.get(member.ref())) ||
(member.type() == osmium::item_type::way && extract->way_tracker.get(member.ref())) ||
(member.type() == osmium::item_type::relation && extract->relation_tracker.get(member.ref()))
)) {
if (debug) std::cerr << "relation has a member (" << member.type() << " " << member.ref() << ") inside extract, recording in relation_tracker\n";
hit = true;
extract->relation_tracker.set(relation.id());
}
if (member.type() == osmium::item_type::relation) {
if (debug) {
std::cerr << "recording cascading-pair: " << member.ref() << " -> " << relation.id() << "\n";
}
info->cascading_relations_tracker.insert(std::make_pair(member.ref(), relation.id()));
}
}
if (hit) {
cascading_relations(extract, relation.id());
}
}
}
void cascading_relations(SoftcutExtractInfo *extract, osmium::object_id_type id) {
auto r = info->cascading_relations_tracker.equal_range(id);
for (auto it = r.first; it != r.second; ++it) {
if (debug) std::cerr << "\tcascading: " << it->second << "\n";
if (extract->relation_tracker.get(it->second)) {
continue;
}
extract->relation_tracker.set(it->second);
cascading_relations(extract, it->second);
}
}
}; // class SoftcutPassOne
class SoftcutPassTwo : public Cut<SoftcutInfo> {
public:
SoftcutPassTwo(SoftcutInfo *info) : Cut<SoftcutInfo>(info) {
if (debug) {
std::cerr << "\n\n=====softcut 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 << "softcut node " << node.id() << " v" << node.version() << "\n";
}
for (const auto& extract : info->extracts) {
if (extract->node_tracker.get(node.id()) ||
extract->extra_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 << "softcut 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 << "softcut relation " << relation.id() << " v" << relation.version() << "\n";
}
for (const auto& extract : info->extracts) {
if (extract->relation_tracker.get(relation.id())) {
extract->write(relation);
}
}
}
}; // class SoftcutPassTwo
#endif // SPLITTER_SOFTCUT_HPP