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.'/wikimedia_importance.sql.gz';
327 if (file_exists($sWikiArticlesFile)) {
328 info('Importing wikipedia articles and redirects');
329 $this->pgsqlRunDropAndRestore($sWikiArticlesFile);
331 warn('wikipedia importance dump file not found - places will have default importance');
335 public function loadData($bDisableTokenPrecalc)
337 info('Drop old Data');
339 $this->pgExec('TRUNCATE word');
341 $this->pgExec('TRUNCATE placex');
343 $this->pgExec('TRUNCATE location_property_osmline');
345 $this->pgExec('TRUNCATE place_addressline');
347 $this->pgExec('TRUNCATE place_boundingbox');
349 $this->pgExec('TRUNCATE location_area');
351 if (!$this->dbReverseOnly()) {
352 $this->pgExec('TRUNCATE search_name');
355 $this->pgExec('TRUNCATE search_name_blank');
357 $this->pgExec('DROP SEQUENCE seq_place');
359 $this->pgExec('CREATE SEQUENCE seq_place start 100000');
362 $sSQL = 'select distinct partition from country_name';
363 $aPartitions = $this->oDB->getCol($sSQL);
365 if (!$this->bNoPartitions) $aPartitions[] = 0;
366 foreach ($aPartitions as $sPartition) {
367 $this->pgExec('TRUNCATE location_road_'.$sPartition);
371 // used by getorcreate_word_id to ignore frequent partial words
372 $sSQL = 'CREATE OR REPLACE FUNCTION get_maxwordfreq() RETURNS integer AS ';
373 $sSQL .= '$$ SELECT '.CONST_Max_Word_Frequency.' as maxwordfreq; $$ LANGUAGE SQL IMMUTABLE';
374 $this->pgExec($sSQL);
377 // pre-create the word list
378 if (!$bDisableTokenPrecalc) {
379 info('Loading word list');
380 $this->pgsqlRunScriptFile(CONST_BasePath.'/data/words.sql');
384 $sColumns = 'osm_type, osm_id, class, type, name, admin_level, address, extratags, geometry';
386 $aDBInstances = array();
387 $iLoadThreads = max(1, $this->iInstances - 1);
388 for ($i = 0; $i < $iLoadThreads; $i++) {
389 // https://secure.php.net/manual/en/function.pg-connect.php
390 $DSN = CONST_Database_DSN;
391 $DSN = preg_replace('/^pgsql:/', '', $DSN);
392 $DSN = preg_replace('/;/', ' ', $DSN);
393 $aDBInstances[$i] = pg_connect($DSN, PGSQL_CONNECT_FORCE_NEW);
394 pg_ping($aDBInstances[$i]);
397 for ($i = 0; $i < $iLoadThreads; $i++) {
398 $sSQL = "INSERT INTO placex ($sColumns) SELECT $sColumns FROM place WHERE osm_id % $iLoadThreads = $i";
399 $sSQL .= " and not (class='place' and type='houses' and osm_type='W'";
400 $sSQL .= " and ST_GeometryType(geometry) = 'ST_LineString')";
401 $sSQL .= ' and ST_IsValid(geometry)';
402 if ($this->bVerbose) echo "$sSQL\n";
403 if (!pg_send_query($aDBInstances[$i], $sSQL)) {
404 fail(pg_last_error($aDBInstances[$i]));
408 // last thread for interpolation lines
409 // https://secure.php.net/manual/en/function.pg-connect.php
410 $DSN = CONST_Database_DSN;
411 $DSN = preg_replace('/^pgsql:/', '', $DSN);
412 $DSN = preg_replace('/;/', ' ', $DSN);
413 $aDBInstances[$iLoadThreads] = pg_connect($DSN, PGSQL_CONNECT_FORCE_NEW);
414 pg_ping($aDBInstances[$iLoadThreads]);
415 $sSQL = 'insert into location_property_osmline';
416 $sSQL .= ' (osm_id, address, linegeo)';
417 $sSQL .= ' SELECT osm_id, address, geometry from place where ';
418 $sSQL .= "class='place' and type='houses' and osm_type='W' and ST_GeometryType(geometry) = 'ST_LineString'";
419 if ($this->bVerbose) echo "$sSQL\n";
420 if (!pg_send_query($aDBInstances[$iLoadThreads], $sSQL)) {
421 fail(pg_last_error($aDBInstances[$iLoadThreads]));
425 for ($i = 0; $i <= $iLoadThreads; $i++) {
426 while (($hPGresult = pg_get_result($aDBInstances[$i])) !== false) {
427 $resultStatus = pg_result_status($hPGresult);
428 // PGSQL_EMPTY_QUERY, PGSQL_COMMAND_OK, PGSQL_TUPLES_OK,
429 // PGSQL_COPY_OUT, PGSQL_COPY_IN, PGSQL_BAD_RESPONSE,
430 // PGSQL_NONFATAL_ERROR and PGSQL_FATAL_ERROR
431 // echo 'Query result ' . $i . ' is: ' . $resultStatus . "\n";
432 if ($resultStatus != PGSQL_COMMAND_OK && $resultStatus != PGSQL_TUPLES_OK) {
433 $resultError = pg_result_error($hPGresult);
434 echo '-- error text ' . $i . ': ' . $resultError . "\n";
440 fail('SQL errors loading placex and/or location_property_osmline tables');
443 for ($i = 0; $i < $this->iInstances; $i++) {
444 pg_close($aDBInstances[$i]);
448 info('Reanalysing database');
449 $this->pgsqlRunScript('ANALYSE');
451 $sDatabaseDate = getDatabaseDate($this->oDB);
452 $this->oDB->exec('TRUNCATE import_status');
453 if (!$sDatabaseDate) {
454 warn('could not determine database date.');
456 $sSQL = "INSERT INTO import_status (lastimportdate) VALUES('".$sDatabaseDate."')";
457 $this->oDB->exec($sSQL);
458 echo "Latest data imported from $sDatabaseDate.\n";
462 public function importTigerData()
464 info('Import Tiger data');
466 $aFilenames = glob(CONST_Tiger_Data_Path.'/*.sql');
467 info('Found '.count($aFilenames).' SQL files in path '.CONST_Tiger_Data_Path);
468 if (empty($aFilenames)) return;
470 $sTemplate = file_get_contents(CONST_BasePath.'/sql/tiger_import_start.sql');
471 $sTemplate = str_replace('{www-user}', CONST_Database_Web_User, $sTemplate);
472 $sTemplate = $this->replaceTablespace(
474 CONST_Tablespace_Aux_Data,
477 $sTemplate = $this->replaceTablespace(
479 CONST_Tablespace_Aux_Index,
482 $this->pgsqlRunScript($sTemplate, false);
484 $aDBInstances = array();
485 for ($i = 0; $i < $this->iInstances; $i++) {
486 // https://secure.php.net/manual/en/function.pg-connect.php
487 $DSN = CONST_Database_DSN;
488 $DSN = preg_replace('/^pgsql:/', '', $DSN);
489 $DSN = preg_replace('/;/', ' ', $DSN);
490 $aDBInstances[$i] = pg_connect($DSN, PGSQL_CONNECT_FORCE_NEW | PGSQL_CONNECT_ASYNC);
491 pg_ping($aDBInstances[$i]);
494 foreach ($aFilenames as $sFile) {
496 $hFile = fopen($sFile, 'r');
497 $sSQL = fgets($hFile, 100000);
500 for ($i = 0; $i < $this->iInstances; $i++) {
501 if (!pg_connection_busy($aDBInstances[$i])) {
502 while (pg_get_result($aDBInstances[$i]));
503 $sSQL = fgets($hFile, 100000);
505 if (!pg_send_query($aDBInstances[$i], $sSQL)) fail(pg_last_error($aDBInstances[$i]));
507 if ($iLines == 1000) {
520 for ($i = 0; $i < $this->iInstances; $i++) {
521 if (pg_connection_busy($aDBInstances[$i])) $bAnyBusy = true;
528 for ($i = 0; $i < $this->iInstances; $i++) {
529 pg_close($aDBInstances[$i]);
532 info('Creating indexes on Tiger data');
533 $sTemplate = file_get_contents(CONST_BasePath.'/sql/tiger_import_finish.sql');
534 $sTemplate = str_replace('{www-user}', CONST_Database_Web_User, $sTemplate);
535 $sTemplate = $this->replaceTablespace(
537 CONST_Tablespace_Aux_Data,
540 $sTemplate = $this->replaceTablespace(
542 CONST_Tablespace_Aux_Index,
545 $this->pgsqlRunScript($sTemplate, false);
548 public function calculatePostcodes($bCMDResultAll)
550 info('Calculate Postcodes');
551 $this->pgExec('TRUNCATE location_postcode');
553 $sSQL = 'INSERT INTO location_postcode';
554 $sSQL .= ' (place_id, indexed_status, country_code, postcode, geometry) ';
555 $sSQL .= "SELECT nextval('seq_place'), 1, country_code,";
556 $sSQL .= " upper(trim (both ' ' from address->'postcode')) as pc,";
557 $sSQL .= ' ST_Centroid(ST_Collect(ST_Centroid(geometry)))';
558 $sSQL .= ' FROM placex';
559 $sSQL .= " WHERE address ? 'postcode' AND address->'postcode' NOT SIMILAR TO '%(,|;)%'";
560 $sSQL .= ' AND geometry IS NOT null';
561 $sSQL .= ' GROUP BY country_code, pc';
562 $this->pgExec($sSQL);
564 // only add postcodes that are not yet available in OSM
565 $sSQL = 'INSERT INTO location_postcode';
566 $sSQL .= ' (place_id, indexed_status, country_code, postcode, geometry) ';
567 $sSQL .= "SELECT nextval('seq_place'), 1, 'us', postcode,";
568 $sSQL .= ' ST_SetSRID(ST_Point(x,y),4326)';
569 $sSQL .= ' FROM us_postcode WHERE postcode NOT IN';
570 $sSQL .= ' (SELECT postcode FROM location_postcode';
571 $sSQL .= " WHERE country_code = 'us')";
572 $this->pgExec($sSQL);
574 // add missing postcodes for GB (if available)
575 $sSQL = 'INSERT INTO location_postcode';
576 $sSQL .= ' (place_id, indexed_status, country_code, postcode, geometry) ';
577 $sSQL .= "SELECT nextval('seq_place'), 1, 'gb', postcode, geometry";
578 $sSQL .= ' FROM gb_postcode WHERE postcode NOT IN';
579 $sSQL .= ' (SELECT postcode FROM location_postcode';
580 $sSQL .= " WHERE country_code = 'gb')";
581 $this->pgExec($sSQL);
583 if (!$bCMDResultAll) {
584 $sSQL = "DELETE FROM word WHERE class='place' and type='postcode'";
585 $sSQL .= 'and word NOT IN (SELECT postcode FROM location_postcode)';
586 $this->pgExec($sSQL);
589 $sSQL = 'SELECT count(getorcreate_postcode_id(v)) FROM ';
590 $sSQL .= '(SELECT distinct(postcode) as v FROM location_postcode) p';
591 $this->pgExec($sSQL);
594 public function index($bIndexNoanalyse)
597 $sBaseCmd = CONST_InstallPath.'/nominatim/nominatim -i'
598 .' -d '.escapeshellarg($this->aDSNInfo['database'])
599 .' -P '.escapeshellarg($this->aDSNInfo['port'])
600 .' -t '.escapeshellarg($this->iInstances.$sOutputFile);
601 if (isset($this->aDSNInfo['hostspec'])) {
602 $sBaseCmd .= ' -H '.escapeshellarg($this->aDSNInfo['hostspec']);
604 if (isset($this->aDSNInfo['username'])) {
605 $sBaseCmd .= ' -U '.escapeshellarg($this->aDSNInfo['username']);
608 info('Index ranks 0 - 4');
609 $iStatus = $this->runWithPgEnv($sBaseCmd.' -R 4');
611 fail('error status ' . $iStatus . ' running nominatim!');
613 if (!$bIndexNoanalyse) $this->pgsqlRunScript('ANALYSE');
615 info('Index ranks 5 - 25');
616 $iStatus = $this->runWithPgEnv($sBaseCmd.' -r 5 -R 25');
618 fail('error status ' . $iStatus . ' running nominatim!');
620 if (!$bIndexNoanalyse) $this->pgsqlRunScript('ANALYSE');
622 info('Index ranks 26 - 30');
623 $iStatus = $this->runWithPgEnv($sBaseCmd.' -r 26');
625 fail('error status ' . $iStatus . ' running nominatim!');
628 info('Index postcodes');
629 $sSQL = 'UPDATE location_postcode SET indexed_status = 0';
630 $this->pgExec($sSQL);
633 public function createSearchIndices()
635 info('Create Search indices');
637 $sTemplate = file_get_contents(CONST_BasePath.'/sql/indices.src.sql');
638 if (!$this->dbReverseOnly()) {
639 $sTemplate .= file_get_contents(CONST_BasePath.'/sql/indices_search.src.sql');
641 $sTemplate = str_replace('{www-user}', CONST_Database_Web_User, $sTemplate);
642 $sTemplate = $this->replaceTablespace(
643 '{ts:address-index}',
644 CONST_Tablespace_Address_Index,
647 $sTemplate = $this->replaceTablespace(
649 CONST_Tablespace_Search_Index,
652 $sTemplate = $this->replaceTablespace(
654 CONST_Tablespace_Aux_Index,
657 $this->pgsqlRunScript($sTemplate);
660 public function createCountryNames()
662 info('Create search index for default country names');
664 $this->pgsqlRunScript("select getorcreate_country(make_standard_name('uk'), 'gb')");
665 $this->pgsqlRunScript("select getorcreate_country(make_standard_name('united states'), 'us')");
666 $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');
667 $this->pgsqlRunScript("select count(*) from (select getorcreate_country(make_standard_name(name->'name'), country_code) from country_name where name ? 'name') as x");
668 $sSQL = 'select count(*) from (select getorcreate_country(make_standard_name(v),'
669 .'country_code) from (select country_code, skeys(name) as k, svals(name) as v from country_name) x where k ';
670 if (CONST_Languages) {
673 foreach (explode(',', CONST_Languages) as $sLang) {
674 $sSQL .= $sDelim."'name:$sLang'";
679 // all include all simple name tags
680 $sSQL .= "like 'name:%'";
683 $this->pgsqlRunScript($sSQL);
686 public function drop()
688 info('Drop tables only required for updates');
690 // The implementation is potentially a bit dangerous because it uses
691 // a positive selection of tables to keep, and deletes everything else.
692 // Including any tables that the unsuspecting user might have manually
693 // created. USE AT YOUR OWN PERIL.
694 // tables we want to keep. everything else goes.
695 $aKeepTables = array(
701 'location_property*',
714 $aDropTables = array();
715 $aHaveTables = $this->oDB->getCol("SELECT tablename FROM pg_tables WHERE schemaname='public'");
717 foreach ($aHaveTables as $sTable) {
719 foreach ($aKeepTables as $sKeep) {
720 if (fnmatch($sKeep, $sTable)) {
725 if (!$bFound) array_push($aDropTables, $sTable);
727 foreach ($aDropTables as $sDrop) {
728 if ($this->bVerbose) echo "Dropping table $sDrop\n";
729 $this->oDB->exec("DROP TABLE IF EXISTS $sDrop CASCADE");
732 if (!is_null(CONST_Osm2pgsql_Flatnode_File) && CONST_Osm2pgsql_Flatnode_File) {
733 if (file_exists(CONST_Osm2pgsql_Flatnode_File)) {
734 if ($this->bVerbose) echo 'Deleting '.CONST_Osm2pgsql_Flatnode_File."\n";
735 unlink(CONST_Osm2pgsql_Flatnode_File);
740 private function pgsqlRunDropAndRestore($sDumpFile)
743 .' -p '.escapeshellarg($this->aDSNInfo['port'])
744 .' -d '.escapeshellarg($this->aDSNInfo['database'])
745 .' --no-owner -Fc --clean '.escapeshellarg($sDumpFile);
746 if ($this->oDB->getPostgresVersion() >= 9.04) {
747 $sCMD .= ' --if-exists';
749 if (isset($this->aDSNInfo['hostspec'])) {
750 $sCMD .= ' -h '.escapeshellarg($this->aDSNInfo['hostspec']);
752 if (isset($this->aDSNInfo['username'])) {
753 $sCMD .= ' -U '.escapeshellarg($this->aDSNInfo['username']);
756 $this->runWithPgEnv($sCMD);
759 private function pgsqlRunScript($sScript, $bfatal = true)
769 private function createSqlFunctions()
771 $sTemplate = file_get_contents(CONST_BasePath.'/sql/functions.sql');
772 $sTemplate = str_replace('{modulepath}', $this->sModulePath, $sTemplate);
773 if ($this->bEnableDiffUpdates) {
774 $sTemplate = str_replace('RETURN NEW; -- %DIFFUPDATES%', '--', $sTemplate);
776 if ($this->bEnableDebugStatements) {
777 $sTemplate = str_replace('--DEBUG:', '', $sTemplate);
779 if (CONST_Limit_Reindexing) {
780 $sTemplate = str_replace('--LIMIT INDEXING:', '', $sTemplate);
782 if (!CONST_Use_US_Tiger_Data) {
783 $sTemplate = str_replace('-- %NOTIGERDATA% ', '', $sTemplate);
785 if (!CONST_Use_Aux_Location_data) {
786 $sTemplate = str_replace('-- %NOAUXDATA% ', '', $sTemplate);
789 $sReverseOnly = $this->dbReverseOnly() ? 'true' : 'false';
790 $sTemplate = str_replace('%REVERSE-ONLY%', $sReverseOnly, $sTemplate);
792 $this->pgsqlRunScript($sTemplate);
795 private function pgsqlRunPartitionScript($sTemplate)
797 $sSQL = 'select distinct partition from country_name';
798 $aPartitions = $this->oDB->getCol($sSQL);
799 if (!$this->bNoPartitions) $aPartitions[] = 0;
801 preg_match_all('#^-- start(.*?)^-- end#ms', $sTemplate, $aMatches, PREG_SET_ORDER);
802 foreach ($aMatches as $aMatch) {
804 foreach ($aPartitions as $sPartitionName) {
805 $sResult .= str_replace('-partition-', $sPartitionName, $aMatch[1]);
807 $sTemplate = str_replace($aMatch[0], $sResult, $sTemplate);
810 $this->pgsqlRunScript($sTemplate);
813 private function pgsqlRunScriptFile($sFilename)
815 if (!file_exists($sFilename)) fail('unable to find '.$sFilename);
818 .' -p '.escapeshellarg($this->aDSNInfo['port'])
819 .' -d '.escapeshellarg($this->aDSNInfo['database']);
820 if (!$this->bVerbose) {
823 if (isset($this->aDSNInfo['hostspec'])) {
824 $sCMD .= ' -h '.escapeshellarg($this->aDSNInfo['hostspec']);
826 if (isset($this->aDSNInfo['username'])) {
827 $sCMD .= ' -U '.escapeshellarg($this->aDSNInfo['username']);
830 if (isset($this->aDSNInfo['password'])) {
831 $aProcEnv = array_merge(array('PGPASSWORD' => $this->aDSNInfo['password']), $_ENV);
834 if (preg_match('/\\.gz$/', $sFilename)) {
835 $aDescriptors = array(
836 0 => array('pipe', 'r'),
837 1 => array('pipe', 'w'),
838 2 => array('file', '/dev/null', 'a')
840 $hGzipProcess = proc_open('zcat '.escapeshellarg($sFilename), $aDescriptors, $ahGzipPipes);
841 if (!is_resource($hGzipProcess)) fail('unable to start zcat');
842 $aReadPipe = $ahGzipPipes[1];
843 fclose($ahGzipPipes[0]);
845 $sCMD .= ' -f '.escapeshellarg($sFilename);
846 $aReadPipe = array('pipe', 'r');
848 $aDescriptors = array(
850 1 => array('pipe', 'w'),
851 2 => array('file', '/dev/null', 'a')
854 $hProcess = proc_open($sCMD, $aDescriptors, $ahPipes, null, $aProcEnv);
855 if (!is_resource($hProcess)) fail('unable to start pgsql');
856 // TODO: error checking
857 while (!feof($ahPipes[1])) {
858 echo fread($ahPipes[1], 4096);
861 $iReturn = proc_close($hProcess);
863 fail("pgsql returned with error code ($iReturn)");
866 fclose($ahGzipPipes[1]);
867 proc_close($hGzipProcess);
871 private function replaceTablespace($sTemplate, $sTablespace, $sSql)
874 $sSql = str_replace($sTemplate, 'TABLESPACE "'.$sTablespace.'"', $sSql);
876 $sSql = str_replace($sTemplate, '', $sSql);
881 private function runWithPgEnv($sCmd)
883 if ($this->bVerbose) {
884 echo "Execute: $sCmd\n";
889 if (isset($this->aDSNInfo['password'])) {
890 $aProcEnv = array_merge(array('PGPASSWORD' => $this->aDSNInfo['password']), $_ENV);
893 return runWithEnv($sCmd, $aProcEnv);
897 * Execute the SQL command on the open database.
899 * @param string $sSQL SQL command to execute.
903 * @pre connect() must have been called.
905 private function pgExec($sSQL)
907 $this->oDB->exec($sSQL);
911 * Check if the database is in reverse-only mode.
913 * @return True if there is no search_name table and infrastructure.
915 private function dbReverseOnly()
917 return !($this->oDB->tableExists('search_name'));