3 namespace Nominatim\Setup;
5 require_once(CONST_BasePath.'/lib/setup/AddressLevelParser.php');
9 protected $iCacheMemory;
10 protected $iInstances;
11 protected $sModulePath;
14 protected $sIgnoreErrors;
15 protected $bEnableDiffUpdates;
16 protected $bEnableDebugStatements;
17 protected $bNoPartitions;
18 protected $oDB = null;
20 public function __construct(array $aCMDResult)
22 // by default, use all but one processor, but never more than 15.
23 $this->iInstances = isset($aCMDResult['threads'])
24 ? $aCMDResult['threads']
25 : (min(16, getProcessorCount()) - 1);
27 if ($this->iInstances < 1) {
28 $this->iInstances = 1;
29 warn('resetting threads to '.$this->iInstances);
32 // Assume we can steal all the cache memory in the box (unless told otherwise)
33 if (isset($aCMDResult['osm2pgsql-cache'])) {
34 $this->iCacheMemory = $aCMDResult['osm2pgsql-cache'];
36 $this->iCacheMemory = getCacheMemoryMB();
39 $this->sModulePath = CONST_Database_Module_Path;
40 info('module path: ' . $this->sModulePath);
42 // parse database string
43 $this->aDSNInfo = \Nominatim\DB::parseDSN(CONST_Database_DSN);
44 if (!isset($this->aDSNInfo['port'])) {
45 $this->aDSNInfo['port'] = 5432;
48 // setting member variables based on command line options stored in $aCMDResult
49 $this->bVerbose = $aCMDResult['verbose'];
51 //setting default values which are not set by the update.php array
52 if (isset($aCMDResult['ignore-errors'])) {
53 $this->sIgnoreErrors = $aCMDResult['ignore-errors'];
55 $this->sIgnoreErrors = false;
57 if (isset($aCMDResult['enable-debug-statements'])) {
58 $this->bEnableDebugStatements = $aCMDResult['enable-debug-statements'];
60 $this->bEnableDebugStatements = false;
62 if (isset($aCMDResult['no-partitions'])) {
63 $this->bNoPartitions = $aCMDResult['no-partitions'];
65 $this->bNoPartitions = false;
67 if (isset($aCMDResult['enable-diff-updates'])) {
68 $this->bEnableDiffUpdates = $aCMDResult['enable-diff-updates'];
70 $this->bEnableDiffUpdates = false;
74 public function createDB()
77 $oDB = new \Nominatim\DB;
79 if ($oDB->databaseExists()) {
80 fail('database already exists ('.CONST_Database_DSN.')');
83 $sCreateDBCmd = 'createdb -E UTF-8'
84 .' -p '.escapeshellarg($this->aDSNInfo['port'])
85 .' '.escapeshellarg($this->aDSNInfo['database']);
86 if (isset($this->aDSNInfo['username'])) {
87 $sCreateDBCmd .= ' -U '.escapeshellarg($this->aDSNInfo['username']);
90 if (isset($this->aDSNInfo['hostspec'])) {
91 $sCreateDBCmd .= ' -h '.escapeshellarg($this->aDSNInfo['hostspec']);
94 $result = $this->runWithPgEnv($sCreateDBCmd);
95 if ($result != 0) fail('Error executing external command: '.$sCreateDBCmd);
98 public function connect()
100 $this->oDB = new \Nominatim\DB();
101 $this->oDB->connect();
104 public function setupDB()
108 $fPostgresVersion = $this->oDB->getPostgresVersion();
109 echo 'Postgres version found: '.$fPostgresVersion."\n";
111 if ($fPostgresVersion < 9.03) {
112 fail('Minimum supported version of Postgresql is 9.3.');
115 $this->pgsqlRunScript('CREATE EXTENSION IF NOT EXISTS hstore');
116 $this->pgsqlRunScript('CREATE EXTENSION IF NOT EXISTS postgis');
118 $fPostgisVersion = $this->oDB->getPostgisVersion();
119 echo 'Postgis version found: '.$fPostgisVersion."\n";
121 if ($fPostgisVersion < 2.2) {
122 echo "Minimum required Postgis version 2.2\n";
126 $i = $this->oDB->getOne("select count(*) from pg_user where usename = '".CONST_Database_Web_User."'");
128 echo "\nERROR: Web user '".CONST_Database_Web_User."' does not exist. Create it with:\n";
129 echo "\n createuser ".CONST_Database_Web_User."\n\n";
133 // Try accessing the C module, so we know early if something is wrong
134 checkModulePresence(); // raises exception on failure
136 if (!file_exists(CONST_ExtraDataPath.'/country_osm_grid.sql.gz')) {
137 echo 'Error: you need to download the country_osm_grid first:';
138 echo "\n wget -O ".CONST_ExtraDataPath."/country_osm_grid.sql.gz https://www.nominatim.org/data/country_grid.sql.gz\n";
141 $this->pgsqlRunScriptFile(CONST_BasePath.'/data/country_name.sql');
142 $this->pgsqlRunScriptFile(CONST_ExtraDataPath.'/country_osm_grid.sql.gz');
143 $this->pgsqlRunScriptFile(CONST_BasePath.'/data/gb_postcode_table.sql');
144 $this->pgsqlRunScriptFile(CONST_BasePath.'/data/us_postcode_table.sql');
146 $sPostcodeFilename = CONST_BasePath.'/data/gb_postcode_data.sql.gz';
147 if (file_exists($sPostcodeFilename)) {
148 $this->pgsqlRunScriptFile($sPostcodeFilename);
150 warn('optional external GB postcode table file ('.$sPostcodeFilename.') not found. Skipping.');
153 $sPostcodeFilename = CONST_BasePath.'/data/us_postcode_data.sql.gz';
154 if (file_exists($sPostcodeFilename)) {
155 $this->pgsqlRunScriptFile($sPostcodeFilename);
157 warn('optional external US postcode table file ('.$sPostcodeFilename.') not found. Skipping.');
160 if ($this->bNoPartitions) {
161 $this->pgsqlRunScript('update country_name set partition = 0');
164 // the following will be needed by createFunctions later but
165 // is only defined in the subsequently called createTables
166 // Create dummies here that will be overwritten by the proper
167 // versions in create-tables.
168 $this->pgsqlRunScript('CREATE TABLE IF NOT EXISTS place_boundingbox ()');
169 $this->pgsqlRunScript('CREATE TYPE wikipedia_article_match AS ()', false);
172 public function importData($sOSMFile)
176 $osm2pgsql = CONST_Osm2pgsql_Binary;
177 if (!file_exists($osm2pgsql)) {
178 echo "Check CONST_Osm2pgsql_Binary in your local settings file.\n";
179 echo "Normally you should not need to set this manually.\n";
180 fail("osm2pgsql not found in '$osm2pgsql'");
183 $osm2pgsql .= ' -S '.escapeshellarg(CONST_Import_Style);
185 if (!is_null(CONST_Osm2pgsql_Flatnode_File) && CONST_Osm2pgsql_Flatnode_File) {
186 $osm2pgsql .= ' --flat-nodes '.escapeshellarg(CONST_Osm2pgsql_Flatnode_File);
189 if (CONST_Tablespace_Osm2pgsql_Data)
190 $osm2pgsql .= ' --tablespace-slim-data '.escapeshellarg(CONST_Tablespace_Osm2pgsql_Data);
191 if (CONST_Tablespace_Osm2pgsql_Index)
192 $osm2pgsql .= ' --tablespace-slim-index '.escapeshellarg(CONST_Tablespace_Osm2pgsql_Index);
193 if (CONST_Tablespace_Place_Data)
194 $osm2pgsql .= ' --tablespace-main-data '.escapeshellarg(CONST_Tablespace_Place_Data);
195 if (CONST_Tablespace_Place_Index)
196 $osm2pgsql .= ' --tablespace-main-index '.escapeshellarg(CONST_Tablespace_Place_Index);
197 $osm2pgsql .= ' -lsc -O gazetteer --hstore --number-processes 1';
198 $osm2pgsql .= ' -C '.escapeshellarg($this->iCacheMemory);
199 $osm2pgsql .= ' -P '.escapeshellarg($this->aDSNInfo['port']);
200 if (isset($this->aDSNInfo['username'])) {
201 $osm2pgsql .= ' -U '.escapeshellarg($this->aDSNInfo['username']);
203 if (isset($this->aDSNInfo['hostspec'])) {
204 $osm2pgsql .= ' -H '.escapeshellarg($this->aDSNInfo['hostspec']);
206 $osm2pgsql .= ' -d '.escapeshellarg($this->aDSNInfo['database']).' '.escapeshellarg($sOSMFile);
208 $this->runWithPgEnv($osm2pgsql);
210 if (!$this->sIgnoreErrors && !$this->oDB->getRow('select * from place limit 1')) {
215 public function createFunctions()
217 info('Create Functions');
219 // Try accessing the C module, so we know early if something is wrong
220 checkModulePresence(); // raises exception on failure
222 $this->createSqlFunctions();
225 public function createTables($bReverseOnly = false)
227 info('Create Tables');
229 $sTemplate = file_get_contents(CONST_BasePath.'/sql/tables.sql');
230 $sTemplate = str_replace('{www-user}', CONST_Database_Web_User, $sTemplate);
231 $sTemplate = $this->replaceTablespace(
233 CONST_Tablespace_Address_Data,
236 $sTemplate = $this->replaceTablespace(
237 '{ts:address-index}',
238 CONST_Tablespace_Address_Index,
241 $sTemplate = $this->replaceTablespace(
243 CONST_Tablespace_Search_Data,
246 $sTemplate = $this->replaceTablespace(
248 CONST_Tablespace_Search_Index,
251 $sTemplate = $this->replaceTablespace(
253 CONST_Tablespace_Aux_Data,
256 $sTemplate = $this->replaceTablespace(
258 CONST_Tablespace_Aux_Index,
262 $this->pgsqlRunScript($sTemplate, false);
265 $this->pgExec('DROP TABLE search_name');
268 $oAlParser = new AddressLevelParser(CONST_Address_Level_Config);
269 $oAlParser->createTable($this->oDB, 'address_levels');
272 public function createPartitionTables()
274 info('Create Partition Tables');
276 $sTemplate = file_get_contents(CONST_BasePath.'/sql/partition-tables.src.sql');
277 $sTemplate = $this->replaceTablespace(
279 CONST_Tablespace_Address_Data,
283 $sTemplate = $this->replaceTablespace(
284 '{ts:address-index}',
285 CONST_Tablespace_Address_Index,
289 $sTemplate = $this->replaceTablespace(
291 CONST_Tablespace_Search_Data,
295 $sTemplate = $this->replaceTablespace(
297 CONST_Tablespace_Search_Index,
301 $sTemplate = $this->replaceTablespace(
303 CONST_Tablespace_Aux_Data,
307 $sTemplate = $this->replaceTablespace(
309 CONST_Tablespace_Aux_Index,
313 $this->pgsqlRunPartitionScript($sTemplate);
316 public function createPartitionFunctions()
318 info('Create Partition Functions');
320 $sTemplate = file_get_contents(CONST_BasePath.'/sql/partition-functions.src.sql');
321 $this->pgsqlRunPartitionScript($sTemplate);
324 public function importWikipediaArticles()
326 $sWikiArticlesFile = CONST_Wikipedia_Data_Path.'/wikipedia_article.sql.bin';
327 $sWikiRedirectsFile = CONST_Wikipedia_Data_Path.'/wikipedia_redirect.sql.bin';
328 if (file_exists($sWikiArticlesFile)) {
329 info('Importing wikipedia articles');
330 $this->pgsqlRunDropAndRestore($sWikiArticlesFile);
332 warn('wikipedia article dump file not found - places will have default importance');
334 if (file_exists($sWikiRedirectsFile)) {
335 info('Importing wikipedia redirects');
336 $this->pgsqlRunDropAndRestore($sWikiRedirectsFile);
338 warn('wikipedia redirect dump file not found - some place importance values may be missing');
342 public function loadData($bDisableTokenPrecalc)
344 info('Drop old Data');
346 $this->pgExec('TRUNCATE word');
348 $this->pgExec('TRUNCATE placex');
350 $this->pgExec('TRUNCATE location_property_osmline');
352 $this->pgExec('TRUNCATE place_addressline');
354 $this->pgExec('TRUNCATE place_boundingbox');
356 $this->pgExec('TRUNCATE location_area');
358 if (!$this->dbReverseOnly()) {
359 $this->pgExec('TRUNCATE search_name');
362 $this->pgExec('TRUNCATE search_name_blank');
364 $this->pgExec('DROP SEQUENCE seq_place');
366 $this->pgExec('CREATE SEQUENCE seq_place start 100000');
369 $sSQL = 'select distinct partition from country_name';
370 $aPartitions = $this->oDB->getCol($sSQL);
372 if (!$this->bNoPartitions) $aPartitions[] = 0;
373 foreach ($aPartitions as $sPartition) {
374 $this->pgExec('TRUNCATE location_road_'.$sPartition);
378 // used by getorcreate_word_id to ignore frequent partial words
379 $sSQL = 'CREATE OR REPLACE FUNCTION get_maxwordfreq() RETURNS integer AS ';
380 $sSQL .= '$$ SELECT '.CONST_Max_Word_Frequency.' as maxwordfreq; $$ LANGUAGE SQL IMMUTABLE';
381 $this->pgExec($sSQL);
384 // pre-create the word list
385 if (!$bDisableTokenPrecalc) {
386 info('Loading word list');
387 $this->pgsqlRunScriptFile(CONST_BasePath.'/data/words.sql');
391 $sColumns = 'osm_type, osm_id, class, type, name, admin_level, address, extratags, geometry';
393 $aDBInstances = array();
394 $iLoadThreads = max(1, $this->iInstances - 1);
395 for ($i = 0; $i < $iLoadThreads; $i++) {
396 // https://secure.php.net/manual/en/function.pg-connect.php
397 $DSN = CONST_Database_DSN;
398 $DSN = preg_replace('/^pgsql:/', '', $DSN);
399 $DSN = preg_replace('/;/', ' ', $DSN);
400 $aDBInstances[$i] = pg_connect($DSN, PGSQL_CONNECT_FORCE_NEW);
401 pg_ping($aDBInstances[$i]);
404 for ($i = 0; $i < $iLoadThreads; $i++) {
405 $sSQL = "INSERT INTO placex ($sColumns) SELECT $sColumns FROM place WHERE osm_id % $iLoadThreads = $i";
406 $sSQL .= " and not (class='place' and type='houses' and osm_type='W'";
407 $sSQL .= " and ST_GeometryType(geometry) = 'ST_LineString')";
408 $sSQL .= ' and ST_IsValid(geometry)';
409 if ($this->bVerbose) echo "$sSQL\n";
410 if (!pg_send_query($aDBInstances[$i], $sSQL)) {
411 fail(pg_last_error($aDBInstances[$i]));
415 // last thread for interpolation lines
416 // https://secure.php.net/manual/en/function.pg-connect.php
417 $DSN = CONST_Database_DSN;
418 $DSN = preg_replace('/^pgsql:/', '', $DSN);
419 $DSN = preg_replace('/;/', ' ', $DSN);
420 $aDBInstances[$iLoadThreads] = pg_connect($DSN, PGSQL_CONNECT_FORCE_NEW);
421 pg_ping($aDBInstances[$iLoadThreads]);
422 $sSQL = 'insert into location_property_osmline';
423 $sSQL .= ' (osm_id, address, linegeo)';
424 $sSQL .= ' SELECT osm_id, address, geometry from place where ';
425 $sSQL .= "class='place' and type='houses' and osm_type='W' and ST_GeometryType(geometry) = 'ST_LineString'";
426 if ($this->bVerbose) echo "$sSQL\n";
427 if (!pg_send_query($aDBInstances[$iLoadThreads], $sSQL)) {
428 fail(pg_last_error($aDBInstances[$iLoadThreads]));
432 for ($i = 0; $i <= $iLoadThreads; $i++) {
433 while (($hPGresult = pg_get_result($aDBInstances[$i])) !== false) {
434 $resultStatus = pg_result_status($hPGresult);
435 // PGSQL_EMPTY_QUERY, PGSQL_COMMAND_OK, PGSQL_TUPLES_OK,
436 // PGSQL_COPY_OUT, PGSQL_COPY_IN, PGSQL_BAD_RESPONSE,
437 // PGSQL_NONFATAL_ERROR and PGSQL_FATAL_ERROR
438 // echo 'Query result ' . $i . ' is: ' . $resultStatus . "\n";
439 if ($resultStatus != PGSQL_COMMAND_OK && $resultStatus != PGSQL_TUPLES_OK) {
440 $resultError = pg_result_error($hPGresult);
441 echo '-- error text ' . $i . ': ' . $resultError . "\n";
447 fail('SQL errors loading placex and/or location_property_osmline tables');
450 for ($i = 0; $i < $this->iInstances; $i++) {
451 pg_close($aDBInstances[$i]);
455 info('Reanalysing database');
456 $this->pgsqlRunScript('ANALYSE');
458 $sDatabaseDate = getDatabaseDate($this->oDB);
459 $this->oDB->exec('TRUNCATE import_status');
460 if (!$sDatabaseDate) {
461 warn('could not determine database date.');
463 $sSQL = "INSERT INTO import_status (lastimportdate) VALUES('".$sDatabaseDate."')";
464 $this->oDB->exec($sSQL);
465 echo "Latest data imported from $sDatabaseDate.\n";
469 public function importTigerData()
471 info('Import Tiger data');
473 $aFilenames = glob(CONST_Tiger_Data_Path.'/*.sql');
474 info('Found '.count($aFilenames).' SQL files in path '.CONST_Tiger_Data_Path);
475 if (empty($aFilenames)) return;
477 $sTemplate = file_get_contents(CONST_BasePath.'/sql/tiger_import_start.sql');
478 $sTemplate = str_replace('{www-user}', CONST_Database_Web_User, $sTemplate);
479 $sTemplate = $this->replaceTablespace(
481 CONST_Tablespace_Aux_Data,
484 $sTemplate = $this->replaceTablespace(
486 CONST_Tablespace_Aux_Index,
489 $this->pgsqlRunScript($sTemplate, false);
491 $aDBInstances = array();
492 for ($i = 0; $i < $this->iInstances; $i++) {
493 // https://secure.php.net/manual/en/function.pg-connect.php
494 $DSN = CONST_Database_DSN;
495 $DSN = preg_replace('/^pgsql:/', '', $DSN);
496 $DSN = preg_replace('/;/', ' ', $DSN);
497 $aDBInstances[$i] = pg_connect($DSN, PGSQL_CONNECT_FORCE_NEW | PGSQL_CONNECT_ASYNC);
498 pg_ping($aDBInstances[$i]);
501 foreach ($aFilenames as $sFile) {
503 $hFile = fopen($sFile, 'r');
504 $sSQL = fgets($hFile, 100000);
507 for ($i = 0; $i < $this->iInstances; $i++) {
508 if (!pg_connection_busy($aDBInstances[$i])) {
509 while (pg_get_result($aDBInstances[$i]));
510 $sSQL = fgets($hFile, 100000);
512 if (!pg_send_query($aDBInstances[$i], $sSQL)) fail(pg_last_error($aDBInstances[$i]));
514 if ($iLines == 1000) {
527 for ($i = 0; $i < $this->iInstances; $i++) {
528 if (pg_connection_busy($aDBInstances[$i])) $bAnyBusy = true;
535 for ($i = 0; $i < $this->iInstances; $i++) {
536 pg_close($aDBInstances[$i]);
539 info('Creating indexes on Tiger data');
540 $sTemplate = file_get_contents(CONST_BasePath.'/sql/tiger_import_finish.sql');
541 $sTemplate = str_replace('{www-user}', CONST_Database_Web_User, $sTemplate);
542 $sTemplate = $this->replaceTablespace(
544 CONST_Tablespace_Aux_Data,
547 $sTemplate = $this->replaceTablespace(
549 CONST_Tablespace_Aux_Index,
552 $this->pgsqlRunScript($sTemplate, false);
555 public function calculatePostcodes($bCMDResultAll)
557 info('Calculate Postcodes');
558 $this->pgExec('TRUNCATE location_postcode');
560 $sSQL = 'INSERT INTO location_postcode';
561 $sSQL .= ' (place_id, indexed_status, country_code, postcode, geometry) ';
562 $sSQL .= "SELECT nextval('seq_place'), 1, country_code,";
563 $sSQL .= " upper(trim (both ' ' from address->'postcode')) as pc,";
564 $sSQL .= ' ST_Centroid(ST_Collect(ST_Centroid(geometry)))';
565 $sSQL .= ' FROM placex';
566 $sSQL .= " WHERE address ? 'postcode' AND address->'postcode' NOT SIMILAR TO '%(,|;)%'";
567 $sSQL .= ' AND geometry IS NOT null';
568 $sSQL .= ' GROUP BY country_code, pc';
569 $this->pgExec($sSQL);
571 // only add postcodes that are not yet available in OSM
572 $sSQL = 'INSERT INTO location_postcode';
573 $sSQL .= ' (place_id, indexed_status, country_code, postcode, geometry) ';
574 $sSQL .= "SELECT nextval('seq_place'), 1, 'us', postcode,";
575 $sSQL .= ' ST_SetSRID(ST_Point(x,y),4326)';
576 $sSQL .= ' FROM us_postcode WHERE postcode NOT IN';
577 $sSQL .= ' (SELECT postcode FROM location_postcode';
578 $sSQL .= " WHERE country_code = 'us')";
579 $this->pgExec($sSQL);
581 // add missing postcodes for GB (if available)
582 $sSQL = 'INSERT INTO location_postcode';
583 $sSQL .= ' (place_id, indexed_status, country_code, postcode, geometry) ';
584 $sSQL .= "SELECT nextval('seq_place'), 1, 'gb', postcode, geometry";
585 $sSQL .= ' FROM gb_postcode WHERE postcode NOT IN';
586 $sSQL .= ' (SELECT postcode FROM location_postcode';
587 $sSQL .= " WHERE country_code = 'gb')";
588 $this->pgExec($sSQL);
590 if (!$bCMDResultAll) {
591 $sSQL = "DELETE FROM word WHERE class='place' and type='postcode'";
592 $sSQL .= 'and word NOT IN (SELECT postcode FROM location_postcode)';
593 $this->pgExec($sSQL);
596 $sSQL = 'SELECT count(getorcreate_postcode_id(v)) FROM ';
597 $sSQL .= '(SELECT distinct(postcode) as v FROM location_postcode) p';
598 $this->pgExec($sSQL);
601 public function index($bIndexNoanalyse)
604 $sBaseCmd = CONST_InstallPath.'/nominatim/nominatim -i'
605 .' -d '.escapeshellarg($this->aDSNInfo['database'])
606 .' -P '.escapeshellarg($this->aDSNInfo['port'])
607 .' -t '.escapeshellarg($this->iInstances.$sOutputFile);
608 if (isset($this->aDSNInfo['hostspec'])) {
609 $sBaseCmd .= ' -H '.escapeshellarg($this->aDSNInfo['hostspec']);
611 if (isset($this->aDSNInfo['username'])) {
612 $sBaseCmd .= ' -U '.escapeshellarg($this->aDSNInfo['username']);
615 info('Index ranks 0 - 4');
616 $iStatus = $this->runWithPgEnv($sBaseCmd.' -R 4');
618 fail('error status ' . $iStatus . ' running nominatim!');
620 if (!$bIndexNoanalyse) $this->pgsqlRunScript('ANALYSE');
622 info('Index ranks 5 - 25');
623 $iStatus = $this->runWithPgEnv($sBaseCmd.' -r 5 -R 25');
625 fail('error status ' . $iStatus . ' running nominatim!');
627 if (!$bIndexNoanalyse) $this->pgsqlRunScript('ANALYSE');
629 info('Index ranks 26 - 30');
630 $iStatus = $this->runWithPgEnv($sBaseCmd.' -r 26');
632 fail('error status ' . $iStatus . ' running nominatim!');
635 info('Index postcodes');
636 $sSQL = 'UPDATE location_postcode SET indexed_status = 0';
637 $this->pgExec($sSQL);
640 public function createSearchIndices()
642 info('Create Search indices');
644 $sTemplate = file_get_contents(CONST_BasePath.'/sql/indices.src.sql');
645 if (!$this->dbReverseOnly()) {
646 $sTemplate .= file_get_contents(CONST_BasePath.'/sql/indices_search.src.sql');
648 $sTemplate = str_replace('{www-user}', CONST_Database_Web_User, $sTemplate);
649 $sTemplate = $this->replaceTablespace(
650 '{ts:address-index}',
651 CONST_Tablespace_Address_Index,
654 $sTemplate = $this->replaceTablespace(
656 CONST_Tablespace_Search_Index,
659 $sTemplate = $this->replaceTablespace(
661 CONST_Tablespace_Aux_Index,
664 $this->pgsqlRunScript($sTemplate);
667 public function createCountryNames()
669 info('Create search index for default country names');
671 $this->pgsqlRunScript("select getorcreate_country(make_standard_name('uk'), 'gb')");
672 $this->pgsqlRunScript("select getorcreate_country(make_standard_name('united states'), 'us')");
673 $this->pgsqlRunScript('select count(*) from (select getorcreate_country(make_standard_name(country_code), country_code) from country_name where country_code is not null) as x');
674 $this->pgsqlRunScript("select count(*) from (select getorcreate_country(make_standard_name(name->'name'), country_code) from country_name where name ? 'name') as x");
675 $sSQL = 'select count(*) from (select getorcreate_country(make_standard_name(v),'
676 .'country_code) from (select country_code, skeys(name) as k, svals(name) as v from country_name) x where k ';
677 if (CONST_Languages) {
680 foreach (explode(',', CONST_Languages) as $sLang) {
681 $sSQL .= $sDelim."'name:$sLang'";
686 // all include all simple name tags
687 $sSQL .= "like 'name:%'";
690 $this->pgsqlRunScript($sSQL);
693 public function drop()
695 info('Drop tables only required for updates');
697 // The implementation is potentially a bit dangerous because it uses
698 // a positive selection of tables to keep, and deletes everything else.
699 // Including any tables that the unsuspecting user might have manually
700 // created. USE AT YOUR OWN PERIL.
701 // tables we want to keep. everything else goes.
702 $aKeepTables = array(
708 'location_property*',
721 $aDropTables = array();
722 $aHaveTables = $this->oDB->getCol("SELECT tablename FROM pg_tables WHERE schemaname='public'");
724 foreach ($aHaveTables as $sTable) {
726 foreach ($aKeepTables as $sKeep) {
727 if (fnmatch($sKeep, $sTable)) {
732 if (!$bFound) array_push($aDropTables, $sTable);
734 foreach ($aDropTables as $sDrop) {
735 if ($this->bVerbose) echo "Dropping table $sDrop\n";
736 $this->oDB->exec("DROP TABLE IF EXISTS $sDrop CASCADE");
739 if (!is_null(CONST_Osm2pgsql_Flatnode_File) && CONST_Osm2pgsql_Flatnode_File) {
740 if (file_exists(CONST_Osm2pgsql_Flatnode_File)) {
741 if ($this->bVerbose) echo 'Deleting '.CONST_Osm2pgsql_Flatnode_File."\n";
742 unlink(CONST_Osm2pgsql_Flatnode_File);
747 private function pgsqlRunDropAndRestore($sDumpFile)
750 .' -p '.escapeshellarg($this->aDSNInfo['port'])
751 .' -d '.escapeshellarg($this->aDSNInfo['database'])
752 .' --no-owner -Fc --clean '.escapeshellarg($sDumpFile);
753 if ($this->oDB->getPostgresVersion() >= 9.04) {
754 $sCMD .= ' --if-exists';
756 if (isset($this->aDSNInfo['hostspec'])) {
757 $sCMD .= ' -h '.escapeshellarg($this->aDSNInfo['hostspec']);
759 if (isset($this->aDSNInfo['username'])) {
760 $sCMD .= ' -U '.escapeshellarg($this->aDSNInfo['username']);
763 $this->runWithPgEnv($sCMD);
766 private function pgsqlRunScript($sScript, $bfatal = true)
776 private function createSqlFunctions()
778 $sTemplate = file_get_contents(CONST_BasePath.'/sql/functions.sql');
779 $sTemplate = str_replace('{modulepath}', $this->sModulePath, $sTemplate);
780 if ($this->bEnableDiffUpdates) {
781 $sTemplate = str_replace('RETURN NEW; -- %DIFFUPDATES%', '--', $sTemplate);
783 if ($this->bEnableDebugStatements) {
784 $sTemplate = str_replace('--DEBUG:', '', $sTemplate);
786 if (CONST_Limit_Reindexing) {
787 $sTemplate = str_replace('--LIMIT INDEXING:', '', $sTemplate);
789 if (!CONST_Use_US_Tiger_Data) {
790 $sTemplate = str_replace('-- %NOTIGERDATA% ', '', $sTemplate);
792 if (!CONST_Use_Aux_Location_data) {
793 $sTemplate = str_replace('-- %NOAUXDATA% ', '', $sTemplate);
796 $sReverseOnly = $this->dbReverseOnly() ? 'true' : 'false';
797 $sTemplate = str_replace('%REVERSE-ONLY%', $sReverseOnly, $sTemplate);
799 $this->pgsqlRunScript($sTemplate);
802 private function pgsqlRunPartitionScript($sTemplate)
804 $sSQL = 'select distinct partition from country_name';
805 $aPartitions = $this->oDB->getCol($sSQL);
806 if (!$this->bNoPartitions) $aPartitions[] = 0;
808 preg_match_all('#^-- start(.*?)^-- end#ms', $sTemplate, $aMatches, PREG_SET_ORDER);
809 foreach ($aMatches as $aMatch) {
811 foreach ($aPartitions as $sPartitionName) {
812 $sResult .= str_replace('-partition-', $sPartitionName, $aMatch[1]);
814 $sTemplate = str_replace($aMatch[0], $sResult, $sTemplate);
817 $this->pgsqlRunScript($sTemplate);
820 private function pgsqlRunScriptFile($sFilename)
822 if (!file_exists($sFilename)) fail('unable to find '.$sFilename);
825 .' -p '.escapeshellarg($this->aDSNInfo['port'])
826 .' -d '.escapeshellarg($this->aDSNInfo['database']);
827 if (!$this->bVerbose) {
830 if (isset($this->aDSNInfo['hostspec'])) {
831 $sCMD .= ' -h '.escapeshellarg($this->aDSNInfo['hostspec']);
833 if (isset($this->aDSNInfo['username'])) {
834 $sCMD .= ' -U '.escapeshellarg($this->aDSNInfo['username']);
837 if (isset($this->aDSNInfo['password'])) {
838 $aProcEnv = array_merge(array('PGPASSWORD' => $this->aDSNInfo['password']), $_ENV);
841 if (preg_match('/\\.gz$/', $sFilename)) {
842 $aDescriptors = array(
843 0 => array('pipe', 'r'),
844 1 => array('pipe', 'w'),
845 2 => array('file', '/dev/null', 'a')
847 $hGzipProcess = proc_open('zcat '.escapeshellarg($sFilename), $aDescriptors, $ahGzipPipes);
848 if (!is_resource($hGzipProcess)) fail('unable to start zcat');
849 $aReadPipe = $ahGzipPipes[1];
850 fclose($ahGzipPipes[0]);
852 $sCMD .= ' -f '.escapeshellarg($sFilename);
853 $aReadPipe = array('pipe', 'r');
855 $aDescriptors = array(
857 1 => array('pipe', 'w'),
858 2 => array('file', '/dev/null', 'a')
861 $hProcess = proc_open($sCMD, $aDescriptors, $ahPipes, null, $aProcEnv);
862 if (!is_resource($hProcess)) fail('unable to start pgsql');
863 // TODO: error checking
864 while (!feof($ahPipes[1])) {
865 echo fread($ahPipes[1], 4096);
868 $iReturn = proc_close($hProcess);
870 fail("pgsql returned with error code ($iReturn)");
873 fclose($ahGzipPipes[1]);
874 proc_close($hGzipProcess);
878 private function replaceTablespace($sTemplate, $sTablespace, $sSql)
881 $sSql = str_replace($sTemplate, 'TABLESPACE "'.$sTablespace.'"', $sSql);
883 $sSql = str_replace($sTemplate, '', $sSql);
888 private function runWithPgEnv($sCmd)
890 if ($this->bVerbose) {
891 echo "Execute: $sCmd\n";
896 if (isset($this->aDSNInfo['password'])) {
897 $aProcEnv = array_merge(array('PGPASSWORD' => $this->aDSNInfo['password']), $_ENV);
900 return runWithEnv($sCmd, $aProcEnv);
904 * Execute the SQL command on the open database.
906 * @param string $sSQL SQL command to execute.
910 * @pre connect() must have been called.
912 private function pgExec($sSQL)
914 $this->oDB->exec($sSQL);
918 * Check if the database is in reverse-only mode.
920 * @return True if there is no search_name table and infrastructure.
922 private function dbReverseOnly()
924 return !($this->oDB->tableExists('search_name'));