forked from osm2pgsql-dev/osm2pgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.cpp
569 lines (495 loc) · 21.1 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
563
564
565
566
567
568
569
#include <exception>
#include <algorithm>
#include <cstring>
#include <cstdio>
#include <utility>
#include <time.h>
#include "options.hpp"
#include "table.hpp"
#include "taginfo.hpp"
#include "util.hpp"
#include "wkb.hpp"
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 && hstore_mode != HSTORE_ALL)
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%");
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), 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_wkb (" POSTGRES_OSMID_TYPE ") AS SELECT 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% CASCADE") % 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 UNLOGGED TABLE %1% (osm_id %2%,") % name % POSTGRES_OSMID_TYPE).str();
//first with the regular columns
for (auto const &column : columns) {
sql += (fmt("\"%1%\" %2%,") % column.name % column.type_name).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,";
}
sql += (fmt("way geometry(%1%,%2%) )") % type % srid).str();
// 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);
//slim mode needs this to be able to delete from tables in pending
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
auto res =
pgsql_exec_simple(sql_conn, PGRES_TUPLES_OK,
(fmt("SELECT * FROM %1% LIMIT 0") % name).str());
for (auto const &column : columns) {
if (PQfnumber(res.get(), ('"' + column.name + '"').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.name % name).str().c_str());
pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("ALTER TABLE %1% ADD COLUMN \"%2%\" %3%") % name % column.name % column.type_name).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_wkb (" POSTGRES_OSMID_TYPE ") AS SELECT way FROM %1% WHERE osm_id = $1") % name).str());
//generate column list for COPY
string cols = "osm_id,";
//first with the regular columns
for (auto const &column : columns) {
cols += (fmt("\"%1%\",") % column.name).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());
if (srid == "4326") {
/* libosmium assures validity of geometries in 4326, so the WHERE can be skipped.
Because we know the geom is already in 4326, no reprojection is needed for GeoHashing */
pgsql_exec_simple(
sql_conn, PGRES_COMMAND_OK,
(fmt("CREATE TABLE %1%_tmp %2% AS\n"
" SELECT * FROM %1%\n"
" ORDER BY ST_GeoHash(way,10)\n"
" COLLATE \"C\"") %
name % (table_space ? "TABLESPACE " + table_space.get() : ""))
.str());
} else {
/* osm2pgsql's transformation from 4326 to another projection could make a geometry invalid,
and these need to be filtered. Also, a transformation is needed for geohashing. */
pgsql_exec_simple(
sql_conn, PGRES_COMMAND_OK,
(fmt("CREATE TABLE %1%_tmp %2% AS\n"
" SELECT * FROM %1%\n"
" WHERE ST_IsValid(way)\n"
// clang-format off
" ORDER BY ST_GeoHash(ST_Transform(ST_Envelope(way),4326),10)\n"
// clang-format on
" COLLATE \"C\"") %
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());
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());
if (srid != "4326") {
pgsql_exec_simple(
sql_conn, PGRES_COMMAND_OK,
(fmt("CREATE OR REPLACE FUNCTION %1%_osm2pgsql_valid()\n"
"RETURNS TRIGGER AS $$\n"
"BEGIN\n"
" IF ST_IsValid(NEW.way) THEN \n"
" RETURN NEW;\n"
" END IF;\n"
" RETURN NULL;\n"
"END;"
"$$ LANGUAGE plpgsql;") %
name)
.str());
pgsql_exec_simple(
sql_conn, PGRES_COMMAND_OK,
(fmt("CREATE TRIGGER %1%_osm2pgsql_valid BEFORE INSERT OR UPDATE\n"
" ON %1%\n"
" FOR EACH ROW EXECUTE PROCEDURE %1%_osm2pgsql_valid();") %
name)
.str());
}
//pgsql_exec_simple(sql_conn, PGRES_COMMAND_OK, (fmt("ALTER TABLE %1% ADD CHECK (ST_IsValid(way));") % name).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("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()
{
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
pg_result_t res(PQgetResult(sql_conn));
if (PQresultStatus(res.get()) != PGRES_COMMAND_OK) {
throw std::runtime_error((fmt("result COPY_END for %1% failed: %2%\n") % name % PQerrorMessage(sql_conn)).str());
}
copyMode = false;
}
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_row(osmid_t id, taglist_t const &tags, std::string const &geom)
{
//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);
//add the geometry - encoding it to hex along the way
ewkb::writer_t::write_as_hex(buffer, geom);
//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 (auto const &column : columns) {
int idx;
if ((idx = tags.indexof(column.name)) >= 0) {
escape_type(tags[idx].value, column.type, 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, ColumnType type, string& dst) {
switch (type) {
case COLUMN_TYPE_INT:
{
// For integers we take the first number, or the average if it's a-b
long from, to;
int items = sscanf(value.c_str(), "%ld-%ld", &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");
}
break;
}
case COLUMN_TYPE_REAL:
/* 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
*/
{
string escaped(value);
std::replace(escaped.begin(), escaped.end(), ',', '.');
double from, to;
int items = sscanf(escaped.c_str(), "%lf-%lf", &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");
}
break;
}
case COLUMN_TYPE_TEXT:
//just a string
escape(value, dst);
break;
}
}
table_t::wkb_reader table_t::get_wkb_reader(const osmid_t id)
{
//cant get wkb 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_wkb will behave differently depending on the sql_conn
//each table has its own sql_connection with the get_way referring to the appropriate table
auto res =
pgsql_execPrepared(sql_conn, "get_wkb", 1,
(const char *const *)paramValues, PGRES_TUPLES_OK);
return wkb_reader(std::move(res));
}