forked from osm2pgsql-dev/osm2pgsql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
node-persistent-cache-reader.cpp
140 lines (128 loc) · 4.48 KB
/
node-persistent-cache-reader.cpp
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
#include <cstdio>
#include <cstdlib>
#include <unistd.h>
#include <cstring>
#include <sys/wait.h>
#include <sys/time.h>
#include <memory>
#include "osmtypes.hpp"
#include "options.hpp"
#include "node-persistent-cache.hpp"
#include "node-ram-cache.hpp"
void test_get_node_list(std::shared_ptr<node_persistent_cache> cache,
int itterations, int max_size, int process_number) {
int i, j, node_cnt, node_cnt_total;
nodelist_t nodes;
struct timeval start, stop;
struct timeval start_overall, stop_overall;
idlist_t osmids;
node_cnt_total = 0;
gettimeofday(&start_overall, nullptr);
for (i = 0; i < itterations; i++) {
node_cnt = random() % max_size;
node_cnt_total += node_cnt;
printf("Process %i: Getting %i nodes....\n", process_number, node_cnt);
for (j = 0; j < node_cnt; j++) {
osmids.push_back(random() % (1 << 31));
}
gettimeofday(&start, nullptr);
cache->get_list(nodes,osmids);
gettimeofday(&stop, nullptr);
double duration = ((stop.tv_sec - start.tv_sec)*1000000.0 + (stop.tv_usec - start.tv_usec))/1000000.0;
printf("Process %i: Got nodes in %f at a rate of %f/s\n", process_number, duration, node_cnt / duration);
nodes.clear();
osmids.clear();
}
gettimeofday(&stop_overall, nullptr);
double duration = ((stop_overall.tv_sec - start_overall.tv_sec)*1000000.0 + (stop_overall.tv_usec - start_overall.tv_usec))/1000000.0;
printf("Process %i: Got a total of nodes in %f at a rate of %f/s\n", process_number, duration, node_cnt_total / duration);
}
int main(int argc, char *argv[]) {
int i,p;
options_t options;
osmNode node;
nodelist_t nodes;
struct timeval start;
idlist_t osmids;
int node_cnt;
options.append = true;
options.flat_node_cache_enabled = true;
options.flat_node_file = argv[1];
auto ram_cache = std::make_shared<node_ram_cache>(0, 10, options.scale);
std::shared_ptr<node_persistent_cache> cache;
if (argc > 3) {
cache.reset(new node_persistent_cache(&options, 1, true, ram_cache));
node_cnt = argc - 2;
for (i = 0; i < node_cnt; i++) {
osmids.push_back(strtoosmid(argv[2 + i], nullptr, 10));
}
cache->get_list(nodes, osmids);
for (i = 0; i < node_cnt; i++) {
printf("lat: %f / lon: %f\n", nodes[i].lat, nodes[i].lon);
}
} else if (argc == 2) {
char * state = (char *)malloc(sizeof(char)* 128);
gettimeofday(&start, nullptr);
initstate(start.tv_usec, state, 8);
setstate(state);
printf("Testing mode\n");
cache.reset(new node_persistent_cache(&options, 1, true, ram_cache));
test_get_node_list(cache, 10, 200, 0);
cache.reset();
#ifdef HAVE_FORK
printf("Testing using multiple processes\n");
int noProcs = 4;
int pid;
for (p = 1; p < noProcs; p++) {
pid=fork();
if (pid==0) {
break;
}
if (pid==-1) {
fprintf(stderr,"WARNING: Failed to fork helper processes. Falling back to only using %i \n", p);
exit(1);
}
}
gettimeofday(&start, nullptr);
initstate(start.tv_usec, state, 8);
setstate(state);
cache.reset(new node_persistent_cache(&options, 1, true, ram_cache));
test_get_node_list(cache, 10,200,p);
if (pid == 0) {
cache.reset();
fprintf(stderr,"Exiting process %i\n", p);
exit(0);
} else {
for (p = 0; p < noProcs; p++) wait(nullptr);
}
free(state);
fprintf(stderr, "\nAll child processes exited\n");
#endif
} else {
cache.reset(new node_persistent_cache(&options, 1, true, ram_cache));
if (strstr(argv[2],",") == nullptr) {
cache->get(&node, strtoosmid(argv[2], nullptr, 10));
printf("lat: %f / lon: %f\n", node.lat, node.lon);
} else {
char * node_list = (char *)malloc(sizeof(char) * (strlen(argv[2]) + 1));
strcpy(node_list,argv[2]);
node_cnt = 1;
strtok(node_list,",");
while (strtok(nullptr,",") != nullptr) node_cnt++;
printf("Processing %i nodes\n", node_cnt);
strcpy(node_list,argv[2]);
osmids.push_back(strtoosmid(strtok(node_list,","), nullptr, 10));
for (i = 1; i < node_cnt; i++) {
char * tmp = strtok(nullptr,",");
osmids.push_back(strtoosmid(tmp, nullptr, 10));
}
cache->get_list(nodes,osmids);
for (i = 0; i < node_cnt; i++) {
printf("lat: %f / lon: %f\n", nodes[i].lat, nodes[i].lon);
}
}
}
cache.reset();
ram_cache.reset();
return 0;
}