forked from osm2pgsql-dev/osm2pgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddle-ram.c
427 lines (358 loc) · 11.6 KB
/
middle-ram.c
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/* Implements the mid-layer processing for osm2pgsql
* using several arrays in RAM. This is fastest if you
* have sufficient RAM+Swap.
*
* This layer stores data read in from the planet.osm file
* and is then read by the backend processing code to
* emit the final geometry-enabled output formats
*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <libpq-fe.h>
#include "osmtypes.h"
#include "middle.h"
#include "middle-ram.h"
#include "output-pgsql.h"
/* Store +-20,000km Mercator co-ordinates as fixed point 32bit number with maximum precision */
/* Scale is chosen such that 40,000 * SCALE < 2^32 */
#define FIXED_POINT
static int scale = 100;
#define DOUBLE_TO_FIX(x) ((x) * scale)
#define FIX_TO_DOUBLE(x) (((double)x) / scale)
struct ramNode {
#ifdef FIXED_POINT
int lon;
int lat;
#else
double lon;
double lat;
#endif
};
struct ramWay {
struct keyval *tags;
int *ndids;
int pending;
};
struct ramRel {
struct keyval *tags;
struct member *members;
int member_count;
};
/* Object storage now uses 2 levels of storage arrays.
*
* - Low level storage of 2^16 (~65k) objects in an indexed array
* These are allocated dynamically when we need to first store data with
* an ID in this block
*
* - Fixed array of 2^(32 - 16) = 65k pointers to the dynamically allocated arrays.
*
* This allows memory usage to be efficient and scale dynamically without needing to
* hard code maximum IDs. We now support an ID range of -2^31 to +2^31.
* The negative IDs often occur in non-uploaded JOSM data or other data import scripts.
*
*/
#define BLOCK_SHIFT 14
#define PER_BLOCK (1 << BLOCK_SHIFT)
#define NUM_BLOCKS (1 << (32 - BLOCK_SHIFT))
static struct ramNode *nodes[NUM_BLOCKS];
static struct ramWay *ways[NUM_BLOCKS];
static struct ramRel *rels[NUM_BLOCKS];
static int node_blocks;
static int way_blocks;
static int way_out_count;
static int rel_out_count;
static inline int id2block(int id)
{
// + NUM_BLOCKS/2 allows for negative IDs
return (id >> BLOCK_SHIFT) + NUM_BLOCKS/2;
}
static inline int id2offset(int id)
{
return id & (PER_BLOCK-1);
}
static inline int block2id(int block, int offset)
{
return ((block - NUM_BLOCKS/2) << BLOCK_SHIFT) + offset;
}
#define UNUSED __attribute__ ((unused))
static int ram_nodes_set(int id, double lat, double lon, struct keyval *tags UNUSED)
{
int block = id2block(id);
int offset = id2offset(id);
if (!nodes[block]) {
nodes[block] = calloc(PER_BLOCK, sizeof(struct ramNode));
if (!nodes[block]) {
fprintf(stderr, "Error allocating nodes\n");
exit_nicely();
}
node_blocks++;
//fprintf(stderr, "\tnodes(%zuMb)\n", node_blocks * sizeof(struct ramNode) * PER_BLOCK / 1000000);
}
#ifdef FIXED_POINT
nodes[block][offset].lat = DOUBLE_TO_FIX(lat);
nodes[block][offset].lon = DOUBLE_TO_FIX(lon);
#else
nodes[block][offset].lat = lat;
nodes[block][offset].lon = lon;
#endif
return 0;
}
static int ram_nodes_get(struct osmNode *out, int id)
{
int block = id2block(id);
int offset = id2offset(id);
if (!nodes[block])
return 1;
if (!nodes[block][offset].lat && !nodes[block][offset].lon)
return 1;
#ifdef FIXED_POINT
out->lat = FIX_TO_DOUBLE(nodes[block][offset].lat);
out->lon = FIX_TO_DOUBLE(nodes[block][offset].lon);
#else
out->lat = nodes[block][offset].lat;
out->lon = nodes[block][offset].lon;
#endif
return 0;
}
static int ram_ways_set(int id, int *nds, int nd_count, struct keyval *tags, int pending)
{
int block = id2block(id);
int offset = id2offset(id);
struct keyval *p;
if (!ways[block]) {
ways[block] = calloc(PER_BLOCK, sizeof(struct ramWay));
if (!ways[block]) {
fprintf(stderr, "Error allocating ways\n");
exit_nicely();
}
way_blocks++;
//fprintf(stderr, "\tways(%zuMb)\n", way_blocks * sizeof(struct ramWay) * PER_BLOCK / 1000000);
}
if (ways[block][offset].ndids) {
free(ways[block][offset].ndids);
ways[block][offset].ndids = NULL;
}
/* Copy into length prefixed array */
ways[block][offset].ndids = malloc( (nd_count+1)*sizeof(int) );
memcpy( ways[block][offset].ndids+1, nds, nd_count*sizeof(int) );
ways[block][offset].ndids[0] = nd_count;
ways[block][offset].pending = pending;
if (!ways[block][offset].tags) {
p = malloc(sizeof(struct keyval));
if (p) {
initList(p);
ways[block][offset].tags = p;
} else {
fprintf(stderr, "%s malloc failed\n", __FUNCTION__);
exit_nicely();
}
} else
resetList(ways[block][offset].tags);
cloneList(ways[block][offset].tags, tags);
return 0;
}
static int ram_relations_set(int id, struct member *members, int member_count, struct keyval *tags)
{
struct keyval *p;
int block = id2block(id);
int offset = id2offset(id);
if (!rels[block]) {
rels[block] = calloc(PER_BLOCK, sizeof(struct ramRel));
if (!rels[block]) {
fprintf(stderr, "Error allocating rels\n");
exit_nicely();
}
}
if (!rels[block][offset].tags) {
p = malloc(sizeof(struct keyval));
if (p) {
initList(p);
rels[block][offset].tags = p;
} else {
fprintf(stderr, "%s malloc failed\n", __FUNCTION__);
exit_nicely();
}
} else
resetList(rels[block][offset].tags);
cloneList(rels[block][offset].tags, tags);
if (!rels[block][offset].members)
free( rels[block][offset].members );
struct member *ptr = malloc(sizeof(struct member) * member_count);
if (ptr) {
memcpy( ptr, members, sizeof(struct member) * member_count );
rels[block][offset].member_count = member_count;
rels[block][offset].members = ptr;
} else {
fprintf(stderr, "%s malloc failed\n", __FUNCTION__);
exit_nicely();
}
return 0;
}
static int ram_nodes_get_list(struct osmNode *nodes, int *ndids, int nd_count)
{
int i, count;
count = 0;
for( i=0; i<nd_count; i++ )
{
if (ram_nodes_get(&nodes[count], ndids[i]))
continue;
count++;
}
return count;
}
static void ram_iterate_relations(int (*callback)(int id, struct member *members, int member_count, struct keyval *tags, int))
{
int block, offset;
fprintf(stderr, "\n");
for(block=NUM_BLOCKS-1; block>=0; block--) {
if (!rels[block])
continue;
for (offset=0; offset < PER_BLOCK; offset++) {
if (rels[block][offset].members) {
int id = block2id(block, offset);
rel_out_count++;
if (rel_out_count % 1000 == 0)
fprintf(stderr, "\rWriting rel(%uk)", rel_out_count/1000);
callback(id, rels[block][offset].members, rels[block][offset].member_count, rels[block][offset].tags, 0);
}
free(rels[block][offset].members);
rels[block][offset].members = NULL;
resetList(rels[block][offset].tags);
free(rels[block][offset].tags);
rels[block][offset].tags=NULL;
}
free(rels[block]);
rels[block] = NULL;
}
fprintf(stderr, "\rWriting rel(%uk)\n", rel_out_count/1000);
}
static void ram_iterate_ways(int (*callback)(int id, struct keyval *tags, struct osmNode *nodes, int count, int exists))
{
int block, offset, ndCount = 0;
struct osmNode *nodes;
fprintf(stderr, "\n");
for(block=NUM_BLOCKS-1; block>=0; block--) {
if (!ways[block])
continue;
for (offset=0; offset < PER_BLOCK; offset++) {
if (ways[block][offset].ndids) {
way_out_count++;
if (way_out_count % 1000 == 0)
fprintf(stderr, "\rWriting way(%uk)", way_out_count/1000);
if (ways[block][offset].pending) {
/* First element contains number of nodes */
nodes = malloc( sizeof(struct osmNode) * ways[block][offset].ndids[0]);
ndCount = ram_nodes_get_list(nodes, ways[block][offset].ndids+1, ways[block][offset].ndids[0]);
if (nodes) {
int id = block2id(block, offset);
callback(id, ways[block][offset].tags, nodes, ndCount, 0);
free(nodes);
}
ways[block][offset].pending = 0;
}
if (ways[block][offset].tags) {
resetList(ways[block][offset].tags);
free(ways[block][offset].tags);
ways[block][offset].tags = NULL;
}
if (ways[block][offset].ndids) {
free(ways[block][offset].ndids);
ways[block][offset].ndids = NULL;
}
}
}
}
fprintf(stderr, "\rWriting way(%uk)\n", way_out_count/1000);
}
/* Caller must free nodes_ptr and resetList(tags_ptr) */
static int ram_ways_get( int id, struct keyval *tags_ptr, struct osmNode **nodes_ptr, int *count_ptr)
{
int block = id2block(id), offset = id2offset(id), ndCount = 0;
struct osmNode *nodes;
if (!ways[block])
return 1;
if (ways[block][offset].ndids) {
/* First element contains number of nodes */
nodes = malloc( sizeof(struct osmNode) * ways[block][offset].ndids[0]);
ndCount = ram_nodes_get_list(nodes, ways[block][offset].ndids+1, ways[block][offset].ndids[0]);
if (ndCount) {
cloneList( tags_ptr, ways[block][offset].tags );
*nodes_ptr = nodes;
*count_ptr = ndCount;
return 0;
}
}
return 1;
}
// Marks the way so that iterate ways skips it
static int ram_ways_done( int id )
{
int block = id2block(id), offset = id2offset(id);
if (!ways[block])
return 1;
ways[block][offset].pending = 0;
return 0;
}
static void ram_analyze(void)
{
/* No need */
}
static void ram_end(void)
{
/* No need */
}
static int ram_start(const struct output_options *options)
{
// latlong has a range of +-180, mercator +-20000
// The fixed poing scaling needs adjusting accordingly to
// be stored accurately in an int
scale = options->scale;
fprintf( stderr, "Mid: Ram, scale=%d\n", scale );
return 0;
}
static void ram_stop(void)
{
int i, j;
for (i=0; i<NUM_BLOCKS; i++) {
if (nodes[i]) {
free(nodes[i]);
nodes[i] = NULL;
}
if (ways[i]) {
for (j=0; j<PER_BLOCK; j++) {
if (ways[i][j].tags) {
resetList(ways[i][j].tags);
free(ways[i][j].tags);
}
if (ways[i][j].ndids)
free(ways[i][j].ndids);
}
free(ways[i]);
ways[i] = NULL;
}
}
}
struct middle_t mid_ram = {
.start = ram_start,
.stop = ram_stop,
.end = ram_end,
.cleanup = ram_stop,
.analyze = ram_analyze,
.nodes_set = ram_nodes_set,
#if 0
.nodes_get = ram_nodes_get,
#endif
.nodes_get_list = ram_nodes_get_list,
.ways_set = ram_ways_set,
.ways_get = ram_ways_get,
.ways_done = ram_ways_done,
.relations_set = ram_relations_set,
#if 0
.iterate_nodes = ram_iterate_nodes,
#endif
.iterate_ways = ram_iterate_ways,
.iterate_relations = ram_iterate_relations
};