15 #include "nominatim.h"
17 #include "postgresql.h"
21 void nominatim_export(int rank_min, int rank_max, const char *conninfo, const char *structuredoutputfile)
23 xmlTextWriterPtr writer;
29 PGresult * resSectors;
37 const char *paramValues[2];
44 Oid pg_prepare_params[2];
46 conn = PQconnectdb(conninfo);
47 if (PQstatus(conn) != CONNECTION_OK) {
48 fprintf(stderr, "Connection to database failed: %s\n", PQerrorMessage(conn));
52 pg_prepare_params[0] = PG_OID_INT4;
53 res = PQprepare(conn, "index_sectors",
54 "select geometry_sector,count(*) from placex where rank_search = $1 and indexed_status = 0 group by geometry_sector order by geometry_sector",
55 1, pg_prepare_params);
56 if (PQresultStatus(res) != PGRES_COMMAND_OK) exit(EXIT_FAILURE);
59 pg_prepare_params[0] = PG_OID_INT4;
60 pg_prepare_params[1] = PG_OID_INT4;
61 res = PQprepare(conn, "index_sector_places",
62 "select place_id from placex where rank_search = $1 and geometry_sector = $2",
63 2, pg_prepare_params);
64 if (PQresultStatus(res) != PGRES_COMMAND_OK) exit(EXIT_FAILURE);
67 nominatim_exportCreatePreparedQueries(conn);
69 // Create the output file
70 writer = nominatim_exportXMLStart(structuredoutputfile);
72 for (rank = rank_min; rank <= rank_max; rank++)
74 printf("Starting rank %d\n", rank);
76 paramRank = PGint32(rank);
77 paramValues[0] = (char *)¶mRank;
78 paramLengths[0] = sizeof(paramRank);
80 resSectors = PQexecPrepared(conn, "index_sectors", 1, paramValues, paramLengths, paramFormats, 1);
81 if (PQresultStatus(resSectors) != PGRES_TUPLES_OK)
83 fprintf(stderr, "index_sectors: SELECT failed: %s", PQerrorMessage(conn));
87 if (PQftype(resSectors, 0) != PG_OID_INT4)
89 fprintf(stderr, "Sector value has unexpected type\n");
93 if (PQftype(resSectors, 1) != PG_OID_INT8)
95 fprintf(stderr, "Sector value has unexpected type\n");
101 for (iSector = 0; iSector < PQntuples(resSectors); iSector++)
103 sector = PGint32(*((uint32_t *)PQgetvalue(resSectors, iSector, 0)));
105 // Get all the place_id's for this sector
106 paramRank = PGint32(rank);
107 paramValues[0] = (char *)¶mRank;
108 paramLengths[0] = sizeof(paramRank);
110 paramSector = PGint32(sector);
111 paramValues[1] = (char *)¶mSector;
112 paramLengths[1] = sizeof(paramSector);
114 resPlaces = PQexecPrepared(conn, "index_sector_places", 2, paramValues, paramLengths, paramFormats, 1);
115 if (PQresultStatus(resPlaces) != PGRES_TUPLES_OK)
117 fprintf(stderr, "index_sector_places: SELECT failed: %s", PQerrorMessage(conn));
121 if (PQftype(resPlaces, 0) != PG_OID_INT4)
123 fprintf(stderr, "Place_id value has unexpected type\n");
128 tuples = PQntuples(resPlaces);
129 for(i = 0; i < tuples; i++)
131 nominatim_exportPlace(PGint32(*((uint32_t *)PQgetvalue(resPlaces, i, 0))), conn, writer, NULL);
133 if (rankTotalDone%1000 == 0) printf("Done %i (k)\n", rankTotalDone/1000);
140 nominatim_exportXMLEnd(writer);
145 void nominatim_exportCreatePreparedQueries(PGconn * conn)
147 Oid pg_prepare_params[2];
150 pg_prepare_params[0] = PG_OID_INT8;
151 res = PQprepare(conn, "placex_details",
152 "select osm_type, osm_id, class, type, name, housenumber, country_code, ST_AsText(geometry), admin_level, rank_address, rank_search from placex where place_id = $1",
153 1, pg_prepare_params);
154 if (PQresultStatus(res) != PGRES_COMMAND_OK)
156 fprintf(stderr, "Error preparing placex_details: %s", PQerrorMessage(conn));
161 pg_prepare_params[0] = PG_OID_INT8;
162 res = PQprepare(conn, "placex_address",
163 "select osm_type,osm_id,class,type,distance,cached_rank_address,isaddress from place_addressline join placex on (address_place_id = placex.place_id) where place_addressline.place_id = $1 and address_place_id != place_addressline.place_id order by cached_rank_address asc",
164 1, pg_prepare_params);
165 if (PQresultStatus(res) != PGRES_COMMAND_OK)
167 fprintf(stderr, "Error preparing placex_address: %s", PQerrorMessage(conn));
172 pg_prepare_params[0] = PG_OID_INT8;
173 res = PQprepare(conn, "placex_names",
174 "select (each(name)).key,(each(name)).value from (select name from placex where place_id = $1) as x",
175 1, pg_prepare_params);
176 if (PQresultStatus(res) != PGRES_COMMAND_OK)
178 fprintf(stderr, "Error preparing placex_names: %s", PQerrorMessage(conn));
183 pg_prepare_params[0] = PG_OID_INT8;
184 res = PQprepare(conn, "placex_extratags",
185 "select (each(extratags)).key,(each(extratags)).value from (select extratags from placex where place_id = $1) as x",
186 1, pg_prepare_params);
187 if (PQresultStatus(res) != PGRES_COMMAND_OK)
189 fprintf(stderr, "Error preparing placex_extratags: %s", PQerrorMessage(conn));
195 xmlTextWriterPtr nominatim_exportXMLStart(const char *structuredoutputfile)
197 xmlTextWriterPtr writer;
199 writer = xmlNewTextWriterFilename(structuredoutputfile, 0);
202 fprintf(stderr, "Unable to open %s\n", structuredoutputfile);
205 xmlTextWriterSetIndent(writer, 1);
206 if (xmlTextWriterStartDocument(writer, NULL, "UTF8", NULL) < 0)
208 fprintf(stderr, "xmlTextWriterStartDocument failed\n");
211 if (xmlTextWriterStartElement(writer, BAD_CAST "osmStructured") < 0)
213 fprintf(stderr, "xmlTextWriterStartElement failed\n");
216 if (xmlTextWriterWriteAttribute(writer, BAD_CAST "version", BAD_CAST "0.1") < 0)
218 fprintf(stderr, "xmlTextWriterWriteAttribute failed\n");
221 if (xmlTextWriterWriteAttribute(writer, BAD_CAST "generator", BAD_CAST "Nominatim") < 0)
223 fprintf(stderr, "xmlTextWriterWriteAttribute failed\n");
226 if (xmlTextWriterStartElement(writer, BAD_CAST "add") < 0)
228 fprintf(stderr, "xmlTextWriterStartElement failed\n");
235 void nominatim_exportXMLEnd(xmlTextWriterPtr writer)
238 if (xmlTextWriterEndElement(writer) < 0)
240 fprintf(stderr, "xmlTextWriterEndElement failed\n");
243 // End <osmStructured>
244 if (xmlTextWriterEndElement(writer) < 0)
246 fprintf(stderr, "xmlTextWriterEndElement failed\n");
249 if (xmlTextWriterEndDocument(writer) < 0)
251 fprintf(stderr, "xmlTextWriterEndDocument failed\n");
254 xmlFreeTextWriter(writer);
258 * Requirements: the prepared queries must exist
260 void nominatim_exportPlace(uint64_t place_id, PGconn * conn, xmlTextWriterPtr writer, pthread_mutex_t * writer_mutex)
264 PGresult * resAddress;
265 PGresult * resExtraTags;
269 const char * paramValues[1];
272 uint64_t paramPlaceID;
275 paramPlaceID = PGint64(place_id);
276 paramValues[0] = (char *)¶mPlaceID;
277 paramLengths[0] = sizeof(paramPlaceID);
280 res = PQexecPrepared(conn, "placex_details", 1, paramValues, paramLengths, paramFormats, 0);
281 if (PQresultStatus(res) != PGRES_TUPLES_OK)
283 fprintf(stderr, "placex_details: SELECT failed: %s", PQerrorMessage(conn));
288 resNames = PQexecPrepared(conn, "placex_names", 1, paramValues, paramLengths, paramFormats, 0);
289 if (PQresultStatus(resNames) != PGRES_TUPLES_OK)
291 fprintf(stderr, "placex_names: SELECT failed: %s", PQerrorMessage(conn));
296 resAddress = PQexecPrepared(conn, "placex_address", 1, paramValues, paramLengths, paramFormats, 0);
297 if (PQresultStatus(resAddress) != PGRES_TUPLES_OK)
299 fprintf(stderr, "placex_address: SELECT failed: %s", PQerrorMessage(conn));
304 resExtraTags = PQexecPrepared(conn, "placex_extratags", 1, paramValues, paramLengths, paramFormats, 0);
305 if (PQresultStatus(resExtraTags) != PGRES_TUPLES_OK)
307 fprintf(stderr, "placex_extratags: SELECT failed: %s", PQerrorMessage(conn));
308 PQclear(resExtraTags);
312 if (writer_mutex) pthread_mutex_lock( writer_mutex );
314 xmlTextWriterStartElement(writer, BAD_CAST "feature");
315 xmlTextWriterWriteFormatAttribute(writer, BAD_CAST "place_id", "%li", place_id);
316 xmlTextWriterWriteAttribute(writer, BAD_CAST "type", BAD_CAST PQgetvalue(res, 0, 0));
317 xmlTextWriterWriteAttribute(writer, BAD_CAST "id", BAD_CAST PQgetvalue(res, 0, 1));
318 xmlTextWriterWriteAttribute(writer, BAD_CAST "key", BAD_CAST PQgetvalue(res, 0, 2));
319 xmlTextWriterWriteAttribute(writer, BAD_CAST "value", BAD_CAST PQgetvalue(res, 0, 3));
320 xmlTextWriterWriteAttribute(writer, BAD_CAST "rank", BAD_CAST PQgetvalue(res, 0, 9));
321 xmlTextWriterWriteAttribute(writer, BAD_CAST "importance", BAD_CAST PQgetvalue(res, 0, 10));
323 if (PQntuples(resNames))
325 xmlTextWriterStartElement(writer, BAD_CAST "names");
327 for(i = 0; i < PQntuples(resNames); i++)
329 xmlTextWriterStartElement(writer, BAD_CAST "name");
330 xmlTextWriterWriteAttribute(writer, BAD_CAST "type", BAD_CAST PQgetvalue(resNames, i, 0));
331 xmlTextWriterWriteString(writer, BAD_CAST PQgetvalue(resNames, i, 1));
332 xmlTextWriterEndElement(writer);
335 xmlTextWriterEndElement(writer);
338 if (PQgetvalue(res, 0, 5) && strlen(PQgetvalue(res, 0, 5)))
340 xmlTextWriterStartElement(writer, BAD_CAST "houseNumber");
341 xmlTextWriterWriteString(writer, BAD_CAST PQgetvalue(res, 0, 5));
342 xmlTextWriterEndElement(writer);
345 if (PQgetvalue(res, 0, 8) && strlen(PQgetvalue(res, 0, 8)))
347 xmlTextWriterStartElement(writer, BAD_CAST "adminLevel");
348 xmlTextWriterWriteString(writer, BAD_CAST PQgetvalue(res, 0, 8));
349 xmlTextWriterEndElement(writer);
352 if (PQgetvalue(res, 0, 6) && strlen(PQgetvalue(res, 0, 6)))
354 xmlTextWriterStartElement(writer, BAD_CAST "countryCode");
355 xmlTextWriterWriteString(writer, BAD_CAST PQgetvalue(res, 0, 6));
356 xmlTextWriterEndElement(writer);
359 if (PQntuples(resAddress) > 0)
361 xmlTextWriterStartElement(writer, BAD_CAST "address");
362 for(i = 0; i < PQntuples(resAddress); i++)
364 xmlTextWriterStartElement(writer, BAD_CAST getRankLabel(atoi(PQgetvalue(resAddress, i, 5))));
365 xmlTextWriterWriteAttribute(writer, BAD_CAST "rank", BAD_CAST PQgetvalue(resAddress, i, 5));
366 xmlTextWriterWriteAttribute(writer, BAD_CAST "type", BAD_CAST PQgetvalue(resAddress, i, 0));
367 xmlTextWriterWriteAttribute(writer, BAD_CAST "id", BAD_CAST PQgetvalue(resAddress, i, 1));
368 xmlTextWriterWriteAttribute(writer, BAD_CAST "key", BAD_CAST PQgetvalue(resAddress, i, 2));
369 xmlTextWriterWriteAttribute(writer, BAD_CAST "value", BAD_CAST PQgetvalue(resAddress, i, 3));
370 xmlTextWriterWriteAttribute(writer, BAD_CAST "distance", BAD_CAST PQgetvalue(resAddress, i, 4));
371 xmlTextWriterWriteAttribute(writer, BAD_CAST "isaddress", BAD_CAST PQgetvalue(resAddress, i, 6));
372 xmlTextWriterEndElement(writer);
374 xmlTextWriterEndElement(writer);
377 if (PQntuples(resExtraTags))
379 xmlTextWriterStartElement(writer, BAD_CAST "tags");
381 for(i = 0; i < PQntuples(resExtraTags); i++)
383 xmlTextWriterStartElement(writer, BAD_CAST "tag");
384 xmlTextWriterWriteAttribute(writer, BAD_CAST "type", BAD_CAST PQgetvalue(resExtraTags, i, 0));
385 xmlTextWriterWriteString(writer, BAD_CAST PQgetvalue(resExtraTags, i, 1));
386 xmlTextWriterEndElement(writer);
389 xmlTextWriterEndElement(writer);
393 xmlTextWriterStartElement(writer, BAD_CAST "osmGeometry");
394 xmlTextWriterWriteString(writer, BAD_CAST PQgetvalue(res, 0, 7));
395 xmlTextWriterEndElement(writer);
397 xmlTextWriterEndElement(writer); // </feature>
399 if (writer_mutex) pthread_mutex_unlock( writer_mutex );
406 const char * getRankLabel(int rank)
444 return "neighborhood";