forked from osm2pgsql-dev/osm2pgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.cpp
562 lines (484 loc) · 20.3 KB
/
table.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
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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
#include "table.hpp"
#include "options.hpp"
#include "util.hpp"
#include <exception>
#include <algorithm>
#include <cstring>
#include <cstdio>
#include <utility>
#include <time.h>
using std::string;
typedef boost::format fmt;
#define BUFFER_SEND_SIZE 1024
table_t::table_t(const string& conninfo, const string& name, const string& type, const columns_t& columns, const hstores_t& hstore_columns,
const int srid, const bool append, const bool slim, const bool drop_temp, const int hstore_mode,
const bool enable_hstore_index, const boost::optional<string>& table_space, const boost::optional<string>& table_space_index) :
conninfo(conninfo), name(name), type(type), sql_conn(nullptr), copyMode(false), srid((fmt("%1%") % srid).str()),
append(append), slim(slim), drop_temp(drop_temp), hstore_mode(hstore_mode), enable_hstore_index(enable_hstore_index),
columns(columns), hstore_columns(hstore_columns), table_space(table_space), table_space_index(table_space_index)
{
//if we dont have any columns
if(columns.size() == 0)
throw std::runtime_error((fmt("No columns provided for table %1%") % name).str());
//nothing to copy to start with
buffer = "";
//we use these a lot, so instead of constantly allocating them we predefine these
single_fmt = fmt("%1%");
point_fmt = fmt("POINT(%.15g %.15g)");
del_fmt = fmt("DELETE FROM %1% WHERE osm_id = %2%");
}
table_t::table_t(const table_t& other):
conninfo(other.conninfo), name(other.name), type(other.type), sql_conn(nullptr), copyMode(false), buffer(), srid(other.srid),
append(other.append), slim(other.slim), drop_temp(other.drop_temp), hstore_mode(other.hstore_mode), enable_hstore_index(other.enable_hstore_index),
columns(other.columns), hstore_columns(other.hstore_columns), copystr(other.copystr), table_space(other.table_space),
table_space_index(other.table_space_index), single_fmt(other.single_fmt), point_fmt(other.point_fmt), del_fmt(other.del_fmt)
{
// if the other table has already started, then we want to execute
// the same stuff to get into the same state. but if it hasn't, then
// this would be premature.
if (other.sql_conn) {
connect();
//let postgres cache this query as it will presumably happen a lot
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("PREPARE get_wkt (" POSTGRES_OSMID_TYPE ") AS SELECT ST_AsText(way) FROM %1% WHERE osm_id = $1") % name).str());
//start the copy
begin();
pgsql_exec_simple(sql_conn, PGRES_COPY_IN, copystr);
copyMode = true;
}
}
table_t::~table_t()
{
teardown();
}
std::string const& table_t::get_name() {
return name;
}
void table_t::teardown()
{
if(sql_conn != nullptr)
{
PQfinish(sql_conn);
sql_conn = nullptr;
}
}
void table_t::begin()
{
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, "BEGIN");
}
void table_t::commit()
{
stop_copy();
fprintf(stderr, "Committing transaction for %s\n", name.c_str());
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, "COMMIT");
}
void table_t::connect()
{
//connect
PGconn* _conn = PQconnectdb(conninfo.c_str());
if (PQstatus(_conn) != CONNECTION_OK)
throw std::runtime_error((fmt("Connection to database failed: %1%\n") % PQerrorMessage(_conn)).str());
sql_conn = _conn;
//let commits happen faster by delaying when they actually occur
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, "SET synchronous_commit TO off;");
}
void table_t::start()
{
if(sql_conn)
throw std::runtime_error(name + " cannot start, its already started");
connect();
fprintf(stderr, "Setting up table: %s\n", name.c_str());
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, "SET client_min_messages = WARNING");
//we are making a new table
if (!append)
{
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("DROP TABLE IF EXISTS %1%") % name).str());
}
/* These _tmp tables can be left behind if we run out of disk space */
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("DROP TABLE IF EXISTS %1%_tmp") % name).str());
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, "RESET client_min_messages");
begin();
//making a new table
if (!append)
{
//define the new table
string sql = (fmt("CREATE TABLE %1% (osm_id %2%,") % name % POSTGRES_OSMID_TYPE).str();
//first with the regular columns
for(columns_t::const_iterator column = columns.begin(); column != columns.end(); ++column)
sql += (fmt("\"%1%\" %2%,") % column->first % column->second).str();
//then with the hstore columns
for(hstores_t::const_iterator hcolumn = hstore_columns.begin(); hcolumn != hstore_columns.end(); ++hcolumn)
sql += (fmt("\"%1%\" hstore,") % (*hcolumn)).str();
//add tags column
if (hstore_mode != HSTORE_NONE)
sql += "\"tags\" hstore)";
//or remove the last ", " from the end
else
sql[sql.length() - 1] = ')';
// The final tables are created with CREATE TABLE AS ... SELECT * FROM ...
// This means that they won't get this autovacuum setting, so it doesn't
// doesn't need to be RESET on these tables
sql += " WITH ( autovacuum_enabled = FALSE )";
//add the main table space
if (table_space)
sql += " TABLESPACE " + table_space.get();
//create the table
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, sql);
//add some constraints
pgsql_exec_simple(sql_conn, PGRES_TUPLES_OK, (fmt("SELECT AddGeometryColumn('%1%', 'way', %2%, '%3%', 2 )") % name % srid % type).str());
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("ALTER TABLE %1% ALTER COLUMN way SET NOT NULL") % name).str());
//slim mode needs this to be able to apply diffs
if (slim && !drop_temp) {
sql = (fmt("CREATE INDEX %1%_pkey ON %1% USING BTREE (osm_id)") % name).str();
if (table_space_index)
sql += " TABLESPACE " + table_space_index.get();
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, sql);
}
}//appending
else {
//check the columns against those in the existing table
std::shared_ptr<PGresult> res = pgsql_exec_simple(sql_conn, PGRES_TUPLES_OK, (fmt("SELECT * FROM %1% LIMIT 0") % name).str());
for(columns_t::const_iterator column = columns.begin(); column != columns.end(); ++column)
{
if(PQfnumber(res.get(), ('"' + column->first + '"').c_str()) < 0)
{
#if 0
throw std::runtime_error((fmt("Append failed. Column \"%1%\" is missing from \"%1%\"\n") % info.name).str());
#else
fprintf(stderr, "%s", (fmt("Adding new column \"%1%\" to \"%2%\"\n") % column->first % name).str().c_str());
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("ALTER TABLE %1% ADD COLUMN \"%2%\" %3%") % name % column->first % column->second).str());
#endif
}
//Note: we do not verify the type or delete unused columns
}
//TODO: check over hstore columns
//TODO: change the type of the geometry column if needed - this can only change to a more permissive type
}
//let postgres cache this query as it will presumably happen a lot
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("PREPARE get_wkt (" POSTGRES_OSMID_TYPE ") AS SELECT ST_AsText(way) FROM %1% WHERE osm_id = $1") % name).str());
//generate column list for COPY
string cols = "osm_id,";
//first with the regular columns
for(columns_t::const_iterator column = columns.begin(); column != columns.end(); ++column)
cols += (fmt("\"%1%\",") % column->first).str();
//then with the hstore columns
for(hstores_t::const_iterator hcolumn = hstore_columns.begin(); hcolumn != hstore_columns.end(); ++hcolumn)
cols += (fmt("\"%1%\",") % (*hcolumn)).str();
//add tags column and geom column
if (hstore_mode != HSTORE_NONE)
cols += "tags,way";
//or just the geom column
else
cols += "way";
//get into copy mode
copystr = (fmt("COPY %1% (%2%) FROM STDIN") % name % cols).str();
pgsql_exec_simple(sql_conn, PGRES_COPY_IN, copystr);
copyMode = true;
}
void table_t::stop()
{
stop_copy();
if (!append)
{
time_t start, end;
time(&start);
fprintf(stderr, "Sorting data and creating indexes for %s\n", name.c_str());
// Special handling for empty geometries because geohash chokes on
// empty geometries on postgis 1.5.
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("CREATE TABLE %1%_tmp %2% AS SELECT * FROM %1% ORDER BY CASE WHEN ST_IsEmpty(way) THEN NULL ELSE ST_GeoHash(ST_Transform(ST_Envelope(way),4326),10) END") % name % (table_space ? "TABLESPACE " + table_space.get() : "")).str());
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("DROP TABLE %1%") % name).str());
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("ALTER TABLE %1%_tmp RENAME TO %1%") % name).str());
// Re-add constraints if on 1.x. 2.0 has typemod, and they automatically come with CREATE TABLE AS
pgsql_exec_simple(sql_conn, PGRES_TUPLES_OK, (fmt("SELECT CASE WHEN PostGIS_Lib_Version() LIKE '1.%%' THEN Populate_Geometry_Columns('%1%'::regclass) ELSE 1 END;") % name).str());
fprintf(stderr, "Copying %s to cluster by geometry finished\n", name.c_str());
fprintf(stderr, "Creating geometry index on %s\n", name.c_str());
// Use fillfactor 100 for un-updatable imports
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("CREATE INDEX %1%_index ON %1% USING GIST (way) %2% %3%") % name %
(slim && !drop_temp ? "" : "WITH (FILLFACTOR=100)") %
(table_space_index ? "TABLESPACE " + table_space_index.get() : "")).str());
/* slim mode needs this to be able to apply diffs */
if (slim && !drop_temp)
{
fprintf(stderr, "Creating osm_id index on %s\n", name.c_str());
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("CREATE INDEX %1%_pkey ON %1% USING BTREE (osm_id) %2%") % name %
(table_space_index ? "TABLESPACE " + table_space_index.get() : "")).str());
}
/* Create hstore index if selected */
if (enable_hstore_index) {
fprintf(stderr, "Creating hstore indexes on %s\n", name.c_str());
if (hstore_mode != HSTORE_NONE) {
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("CREATE INDEX %1%_tags_index ON %1% USING GIN (tags) %2%") % name %
(table_space_index ? "TABLESPACE " + table_space_index.get() : "")).str());
}
for(size_t i = 0; i < hstore_columns.size(); ++i) {
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("CREATE INDEX %1%_hstore_%2%_index ON %1% USING GIN (\"%3%\") %4%") % name % i % hstore_columns[i] %
(table_space_index ? "TABLESPACE " + table_space_index.get() : "")).str());
}
}
fprintf(stderr, "Creating indexes on %s finished\n", name.c_str());
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("GRANT SELECT ON %1% TO PUBLIC") % name).str());
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("ANALYZE %1%") % name).str());
time(&end);
fprintf(stderr, "All indexes on %s created in %ds\n", name.c_str(), (int)(end - start));
}
teardown();
fprintf(stderr, "Completed %s\n", name.c_str());
}
void table_t::stop_copy()
{
PGresult* res;
int stop;
//we werent copying anyway
if(!copyMode)
return;
//if there is stuff left over in the copy buffer send it offand copy it before we stop
else if(buffer.length() != 0)
{
pgsql_CopyData(name.c_str(), sql_conn, buffer);
buffer.clear();
};
//stop the copy
stop = PQputCopyEnd(sql_conn, nullptr);
if (stop != 1)
throw std::runtime_error((fmt("stop COPY_END for %1% failed: %2%\n") % name % PQerrorMessage(sql_conn)).str());
//get the result
res = PQgetResult(sql_conn);
if (PQresultStatus(res) != PGRES_COMMAND_OK)
{
PQclear(res);
throw std::runtime_error((fmt("result COPY_END for %1% failed: %2%\n") % name % PQerrorMessage(sql_conn)).str());
}
PQclear(res);
copyMode = false;
}
void table_t::write_node(const osmid_t id, const taglist_t &tags, double lat, double lon)
{
write_wkt(id, tags, (point_fmt % lon % lat).str().c_str());
}
void table_t::delete_row(const osmid_t id)
{
stop_copy();
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (del_fmt % name % id).str());
}
void table_t::write_wkt(const osmid_t id, const taglist_t &tags, const char *wkt)
{
//add the osm id
buffer.append((single_fmt % id).str());
buffer.push_back('\t');
// used to remember which columns have been written out already.
std::vector<bool> used;
if (hstore_mode != HSTORE_NONE)
used.assign(tags.size(), false);
//get the regular columns' values
write_columns(tags, buffer, hstore_mode == HSTORE_NORM?&used:nullptr);
//get the hstore columns' values
write_hstore_columns(tags, buffer);
//get the key value pairs for the tags column
if (hstore_mode != HSTORE_NONE)
write_tags_column(tags, buffer, used);
//give the wkt an srid
buffer.append("SRID=");
buffer.append(srid);
buffer.push_back(';');
//add the wkt
buffer.append(wkt);
//we need \n because we are copying from stdin
buffer.push_back('\n');
//tell the db we are copying if for some reason we arent already
if (!copyMode)
{
pgsql_exec_simple(sql_conn, PGRES_COPY_IN, copystr);
copyMode = true;
}
//send all the data to postgres
if(buffer.length() > BUFFER_SEND_SIZE)
{
pgsql_CopyData(name.c_str(), sql_conn, buffer);
buffer.clear();
}
}
void table_t::write_columns(const taglist_t &tags, string& values, std::vector<bool> *used)
{
//for each column
for(columns_t::const_iterator column = columns.begin(); column != columns.end(); ++column)
{
int idx;
if ((idx = tags.indexof(column->first)) >= 0)
{
escape_type(tags[idx].value, column->second, values);
//remember we already used this one so we cant use again later in the hstore column
if (used)
(*used)[idx] = true;
}
else
values.append("\\N");
values.push_back('\t');
}
}
void table_t::write_tags_column(const taglist_t &tags, std::string& values,
const std::vector<bool> &used)
{
//iterate through the list of tags, first one is always null
bool added = false;
for (size_t i = 0; i < tags.size(); ++i)
{
const tag_t& xtag = tags[i];
//skip z_order tag and keys which have their own column
if (used[i] || ("z_order" == xtag.key))
continue;
//hstore ASCII representation looks like "key"=>"value"
if(added)
values.push_back(',');
escape4hstore(xtag.key.c_str(), values);
values.append("=>");
escape4hstore(xtag.value.c_str(), values);
//we did at least one so we need commas from here on out
added = true;
}
//finish the hstore column by placing a TAB into the data stream
values.push_back('\t');
}
/* write an hstore column to the database */
void table_t::write_hstore_columns(const taglist_t &tags, std::string& values)
{
//iterate over all configured hstore columns in the options
for(hstores_t::const_iterator hstore_column = hstore_columns.begin(); hstore_column != hstore_columns.end(); ++hstore_column)
{
bool added = false;
//iterate through the list of tags, first one is always null
for (taglist_t::const_iterator xtags = tags.begin(); xtags != tags.end(); ++xtags)
{
//check if the tag's key starts with the name of the hstore column
if(xtags->key.compare(0, hstore_column->size(), *hstore_column) == 0)
{
//generate the short key name, somehow pointer arithmetic works against the key string...
const char* shortkey = xtags->key.c_str() + hstore_column->size();
//and pack the shortkey with its value into the hstore
//hstore ASCII representation looks like "key"=>"value"
if(added)
values.push_back(',');
escape4hstore(shortkey, values);
values.append("=>");
escape4hstore(xtags->value.c_str(), values);
//we did at least one so we need commas from here on out
added = true;
}
}
//if you found not matching tags write a NUL
if(!added)
values.append("\\N");
//finish the column off with a tab
values.push_back('\t');
}
}
//create an escaped version of the string for hstore table insert
void table_t::escape4hstore(const char *src, string& dst)
{
dst.push_back('"');
for (size_t i = 0; i < strlen(src); ++i) {
switch (src[i]) {
case '\\':
dst.append("\\\\\\\\");
break;
case '"':
dst.append("\\\\\"");
break;
case '\t':
dst.append("\\\t");
break;
case '\r':
dst.append("\\\r");
break;
case '\n':
dst.append("\\\n");
break;
default:
dst.push_back(src[i]);
break;
}
}
dst.push_back('"');
}
/* Escape data appropriate to the type */
void table_t::escape_type(const string &value, const string &type, string& dst) {
// For integers we take the first number, or the average if it's a-b
if (type == "int4") {
int from, to;
int items = sscanf(value.c_str(), "%d-%d", &from, &to);
if (items == 1)
dst.append((single_fmt % from).str());
else if (items == 2)
dst.append((single_fmt % ((from + to) / 2)).str());
else
dst.append("\\N");
}
/* try to "repair" real values as follows:
* assume "," to be a decimal mark which need to be replaced by "."
* like int4 take the first number, or the average if it's a-b
* assume SI unit (meters)
* convert feet to meters (1 foot = 0.3048 meters)
* reject anything else
*/
else if (type == "real")
{
string escaped(value);
std::replace(escaped.begin(), escaped.end(), ',', '.');
float from, to;
int items = sscanf(escaped.c_str(), "%f-%f", &from, &to);
if (items == 1)
{
if (escaped.size() > 1 && escaped.substr(escaped.size() - 2).compare("ft") == 0)
from *= 0.3048;
dst.append((single_fmt % from).str());
}
else if (items == 2)
{
if (escaped.size() > 1 && escaped.substr(escaped.size() - 2).compare("ft") == 0)
{
from *= 0.3048;
to *= 0.3048;
}
dst.append((single_fmt % ((from + to) / 2)).str());
}
else
dst.append("\\N");
}//just a string
else
escape(value, dst);
}
std::unique_ptr<table_t::wkt_reader> table_t::get_wkt_reader(const osmid_t id)
{
//cant get wkt using the prepared statement without stopping the copy first
stop_copy();
char const *paramValues[1];
char tmp[16];
snprintf(tmp, sizeof(tmp), "%" PRIdOSMID, id);
paramValues[0] = tmp;
//the prepared statement get_wkt will behave differently depending on the sql_conn
//each table has its own sql_connection with the get_way referring to the appropriate table
PGresult* res = pgsql_execPrepared(sql_conn, "get_wkt", 1, (const char * const *)paramValues, PGRES_TUPLES_OK);
return std::unique_ptr<wkt_reader>(new wkt_reader(res));
}
table_t::wkt_reader::wkt_reader(PGresult* result):result(result), current(0)
{
count = PQntuples(result);
}
table_t::wkt_reader::~wkt_reader()
{
PQclear(result);
}
const char* table_t::wkt_reader::get_next()
{
if (current < count) {
return PQgetvalue(result, current++, 0);
}
return nullptr;
}
size_t table_t::wkt_reader::get_count() const
{
return count;
}
void table_t::wkt_reader::reset()
{
//NOTE: PQgetvalue doc doesn't say if you can call it multiple times with the same row col
current = 0;
}