4 require_once(dirname(dirname(__FILE__)).'/lib/init-cmd.php');
5 ini_set('memory_limit', '800M');
8 "Create and setup nominatim search system",
9 array('help', 'h', 0, 1, 0, 0, false, 'Show Help'),
10 array('quiet', 'q', 0, 1, 0, 0, 'bool', 'Quiet output'),
11 array('verbose', 'v', 0, 1, 0, 0, 'bool', 'Verbose output'),
13 array('osm-file', '', 0, 1, 1, 1, 'realpath', 'File to import'),
14 array('threads', '', 0, 1, 1, 1, 'int', 'Number of threads (where possible)'),
16 array('all', '', 0, 1, 0, 0, 'bool', 'Do the complete process'),
18 array('create-db', '', 0, 1, 0, 0, 'bool', 'Create nominatim db'),
19 array('setup-db', '', 0, 1, 0, 0, 'bool', 'Build a blank nominatim db'),
20 array('import-data', '', 0, 1, 0, 0, 'bool', 'Import a osm file'),
21 array('osm2pgsql-cache', '', 0, 1, 1, 1, 'int', 'Cache size used by osm2pgsql'),
22 array('create-functions', '', 0, 1, 0, 0, 'bool', 'Create functions'),
23 array('enable-diff-updates', '', 0, 1, 0, 0, 'bool', 'Turn on the code required to make diff updates work'),
24 array('enable-debug-statements', '', 0, 1, 0, 0, 'bool', 'Include debug warning statements in pgsql commands'),
25 array('create-minimal-tables', '', 0, 1, 0, 0, 'bool', 'Create minimal main tables'),
26 array('create-tables', '', 0, 1, 0, 0, 'bool', 'Create main tables'),
27 array('create-partition-tables', '', 0, 1, 0, 0, 'bool', 'Create required partition tables'),
28 array('create-partition-functions', '', 0, 1, 0, 0, 'bool', 'Create required partition triggers'),
29 array('import-wikipedia-articles', '', 0, 1, 0, 0, 'bool', 'Import wikipedia article dump'),
30 array('load-data', '', 0, 1, 0, 0, 'bool', 'Copy data to live tables from import table'),
31 array('disable-token-precalc', '', 0, 1, 0, 0, 'bool', 'Disable name precalculation (EXPERT)'),
32 array('import-tiger-data', '', 0, 1, 0, 0, 'bool', 'Import tiger data (not included in \'all\')'),
33 array('calculate-postcodes', '', 0, 1, 0, 0, 'bool', 'Calculate postcode centroids'),
34 array('create-roads', '', 0, 1, 0, 0, 'bool', ''),
35 array('osmosis-init', '', 0, 1, 0, 0, 'bool', 'Generate default osmosis configuration'),
36 array('index', '', 0, 1, 0, 0, 'bool', 'Index the data'),
37 array('index-noanalyse', '', 0, 1, 0, 0, 'bool', 'Do not perform analyse operations during index (EXPERT)'),
38 array('index-output', '', 0, 1, 1, 1, 'string', 'File to dump index information to'),
39 array('create-search-indices', '', 0, 1, 0, 0, 'bool', 'Create additional indices required for search and update'),
40 array('create-website', '', 0, 1, 1, 1, 'realpath', 'Create symlinks to setup web directory'),
42 getCmdOpt($_SERVER['argv'], $aCMDOptions, $aCMDResult, true, true);
44 $bDidSomething = false;
46 // Check if osm-file is set and points to a valid file if --all or --import-data is given
47 if ($aCMDResult['import-data'] || $aCMDResult['all'])
49 if (!isset($aCMDResult['osm-file']))
51 fail('missing --osm-file for data import');
54 if (!file_exists($aCMDResult['osm-file']))
56 fail('the path supplied to --osm-file does not exist');
59 if (!is_readable($aCMDResult['osm-file']))
61 fail('osm-file "'.$aCMDResult['osm-file'].'" not readable');
66 // This is a pretty hard core default - the number of processors in the box - 1
67 $iInstances = isset($aCMDResult['threads'])?$aCMDResult['threads']:(getProcessorCount()-1);
71 echo "WARNING: resetting threads to $iInstances\n";
73 if ($iInstances > getProcessorCount())
75 $iInstances = getProcessorCount();
76 echo "WARNING: resetting threads to $iInstances\n";
79 // Assume we can steal all the cache memory in the box (unless told otherwise)
80 $iCacheMemory = (isset($aCMDResult['osm2pgsql-cache'])?$aCMDResult['osm2pgsql-cache']:getCacheMemoryMB());
81 if ($iCacheMemory > getTotalMemoryMB())
83 $iCacheMemory = getCacheMemoryMB();
84 echo "WARNING: resetting cache memory to $iCacheMemory\n";
87 $aDSNInfo = DB::parseDSN(CONST_Database_DSN);
88 if (!isset($aDSNInfo['port']) || !$aDSNInfo['port']) $aDSNInfo['port'] = 5432;
90 if ($aCMDResult['create-db'] || $aCMDResult['all'])
93 $bDidSomething = true;
94 $oDB =& DB::connect(CONST_Database_DSN, false);
95 if (!PEAR::isError($oDB))
97 fail('database already exists ('.CONST_Database_DSN.')');
99 passthruCheckReturn('createdb -E UTF-8 -p '.$aDSNInfo['port'].' '.$aDSNInfo['database']);
102 if ($aCMDResult['setup-db'] || $aCMDResult['all'])
105 $bDidSomething = true;
106 // TODO: path detection, detection memory, etc.
110 $sVersionString = $oDB->getOne('select version()');
111 preg_match('#PostgreSQL ([0-9]+)[.]([0-9]+)[.]([0-9]+) #', $sVersionString, $aMatches);
112 if (CONST_Postgresql_Version != $aMatches[1].'.'.$aMatches[2])
114 echo "ERROR: PostgreSQL version is not correct. Expected ".CONST_Postgresql_Version." found ".$aMatches[1].'.'.$aMatches[2]."\n";
118 passthru('createlang plpgsql -p '.$aDSNInfo['port'].' '.$aDSNInfo['database']);
119 $pgver = (float) CONST_Postgresql_Version;
121 pgsqlRunScriptFile(CONST_Path_Postgresql_Contrib.'/hstore.sql');
122 pgsqlRunScriptFile(CONST_BasePath.'/sql/hstore_compatability_9_0.sql');
124 pgsqlRunScript('CREATE EXTENSION hstore');
127 pgsqlRunScriptFile(CONST_Path_Postgresql_Postgis.'/postgis.sql');
128 $sVersionString = $oDB->getOne('select postgis_full_version()');
129 preg_match('#POSTGIS="([0-9]+)[.]([0-9]+)[.]([0-9]+)( r([0-9]+))?"#', $sVersionString, $aMatches);
130 if (CONST_Postgis_Version != $aMatches[1].'.'.$aMatches[2])
132 echo "ERROR: PostGIS version is not correct. Expected ".CONST_Postgis_Version." found ".$aMatches[1].'.'.$aMatches[2]."\n";
136 pgsqlRunScriptFile(CONST_Path_Postgresql_Postgis.'/spatial_ref_sys.sql');
137 pgsqlRunScriptFile(CONST_BasePath.'/data/country_name.sql');
138 pgsqlRunScriptFile(CONST_BasePath.'/data/country_naturalearthdata.sql');
139 pgsqlRunScriptFile(CONST_BasePath.'/data/country_osm_grid.sql');
140 pgsqlRunScriptFile(CONST_BasePath.'/data/gb_postcode.sql');
141 pgsqlRunScriptFile(CONST_BasePath.'/data/us_statecounty.sql');
142 pgsqlRunScriptFile(CONST_BasePath.'/data/us_state.sql');
143 pgsqlRunScriptFile(CONST_BasePath.'/data/us_postcode.sql');
146 if ($aCMDResult['import-data'] || $aCMDResult['all'])
149 $bDidSomething = true;
151 $osm2pgsql = CONST_Osm2pgsql_Binary;
152 if (!file_exists($osm2pgsql))
154 echo "Please download and build osm2pgsql.\nIf it is already installed, check the path in your local settings (settings/local.php) file.\n";
155 fail("osm2pgsql not found in '$osm2pgsql'");
157 $osm2pgsql .= ' -lsc -O gazetteer --hstore';
158 $osm2pgsql .= ' -C '.$iCacheMemory;
159 $osm2pgsql .= ' -P '.$aDSNInfo['port'];
160 $osm2pgsql .= ' -d '.$aDSNInfo['database'].' '.$aCMDResult['osm-file'];
161 passthruCheckReturn($osm2pgsql);
164 $x = $oDB->getRow('select * from place limit 1');
165 if (PEAR::isError($x)) {
166 fail($x->getMessage());
168 if (!$x) fail('No Data');
171 if ($aCMDResult['create-functions'] || $aCMDResult['all'])
174 $bDidSomething = true;
175 if (!file_exists(CONST_BasePath.'/module/nominatim.so')) fail("nominatim module not built");
176 $sTemplate = file_get_contents(CONST_BasePath.'/sql/functions.sql');
177 $sTemplate = str_replace('{modulepath}', CONST_BasePath.'/module', $sTemplate);
178 if ($aCMDResult['enable-diff-updates']) $sTemplate = str_replace('RETURN NEW; -- @DIFFUPDATES@', '--', $sTemplate);
179 if ($aCMDResult['enable-debug-statements']) $sTemplate = str_replace('--DEBUG:', '', $sTemplate);
180 pgsqlRunScript($sTemplate);
183 if ($aCMDResult['create-minimal-tables'])
185 echo "Minimal Tables\n";
186 $bDidSomething = true;
187 pgsqlRunScriptFile(CONST_BasePath.'/sql/tables-minimal.sql');
191 // Backstop the import process - easliest possible import id
192 $sScript .= "insert into import_npi_log values (18022);\n";
194 $hFile = @fopen(CONST_BasePath.'/settings/partitionedtags.def', "r");
195 if (!$hFile) fail('unable to open list of partitions: '.CONST_BasePath.'/settings/partitionedtags.def');
197 while (($sLine = fgets($hFile, 4096)) !== false && $sLine && substr($sLine,0,1) !='#')
199 list($sClass, $sType) = explode(' ', trim($sLine));
200 $sScript .= "create table place_classtype_".$sClass."_".$sType." as ";
201 $sScript .= "select place_id as place_id,geometry as centroid from placex limit 0;\n";
203 $sScript .= "CREATE INDEX idx_place_classtype_".$sClass."_".$sType."_centroid ";
204 $sScript .= "ON place_classtype_".$sClass."_".$sType." USING GIST (centroid);\n";
206 $sScript .= "CREATE INDEX idx_place_classtype_".$sClass."_".$sType."_place_id ";
207 $sScript .= "ON place_classtype_".$sClass."_".$sType." USING btree(place_id);\n";
210 pgsqlRunScript($sScript);
213 if ($aCMDResult['create-tables'] || $aCMDResult['all'])
216 $bDidSomething = true;
217 pgsqlRunScriptFile(CONST_BasePath.'/sql/tables.sql');
219 // re-run the functions
220 $sTemplate = file_get_contents(CONST_BasePath.'/sql/functions.sql');
221 $sTemplate = str_replace('{modulepath}',CONST_BasePath.'/module', $sTemplate);
222 pgsqlRunScript($sTemplate);
225 if ($aCMDResult['create-partition-tables'] || $aCMDResult['all'])
227 echo "Partition Tables\n";
228 $bDidSomething = true;
230 $sSQL = 'select partition from country_name order by country_code';
231 $aPartitions = $oDB->getCol($sSQL);
232 if (PEAR::isError($aPartitions))
234 fail($aPartitions->getMessage());
238 $sTemplate = file_get_contents(CONST_BasePath.'/sql/partition-tables.src.sql');
239 preg_match_all('#^-- start(.*?)^-- end#ms', $sTemplate, $aMatches, PREG_SET_ORDER);
240 foreach($aMatches as $aMatch)
243 foreach($aPartitions as $sPartitionName)
245 $sResult .= str_replace('-partition-', $sPartitionName, $aMatch[1]);
247 $sTemplate = str_replace($aMatch[0], $sResult, $sTemplate);
250 pgsqlRunScript($sTemplate);
254 if ($aCMDResult['create-partition-functions'] || $aCMDResult['all'])
256 echo "Partition Functions\n";
257 $bDidSomething = true;
259 $sSQL = 'select partition from country_name order by country_code';
260 $aPartitions = $oDB->getCol($sSQL);
261 if (PEAR::isError($aPartitions))
263 fail($aPartitions->getMessage());
267 $sTemplate = file_get_contents(CONST_BasePath.'/sql/partition-functions.src.sql');
268 preg_match_all('#^-- start(.*?)^-- end#ms', $sTemplate, $aMatches, PREG_SET_ORDER);
269 foreach($aMatches as $aMatch)
272 foreach($aPartitions as $sPartitionName)
274 $sResult .= str_replace('-partition-', $sPartitionName, $aMatch[1]);
276 $sTemplate = str_replace($aMatch[0], $sResult, $sTemplate);
279 pgsqlRunScript($sTemplate);
282 if ($aCMDResult['import-wikipedia-articles'] || $aCMDResult['all'])
284 $bDidSomething = true;
285 $sWikiArticlesFile = CONST_BasePath.'/data/wikipedia_article.sql.bin';
286 $sWikiRedirectsFile = CONST_BasePath.'/data/wikipedia_redirect.sql.bin';
287 if (file_exists($sWikiArticlesFile))
289 echo "Importing wikipedia articles...";
290 pgsqlRunDropAndRestore($sWikiArticlesFile);
295 echo "WARNING: wikipedia article dump file not found - places will have default importance\n";
297 if (file_exists($sWikiRedirectsFile))
299 echo "Importing wikipedia redirects...";
300 pgsqlRunDropAndRestore($sWikiRedirectsFile);
305 echo "WARNING: wikipedia redirect dump file not found - some place importance values may be missing\n";
310 if ($aCMDResult['load-data'] || $aCMDResult['all'])
312 echo "Drop old Data\n";
313 $bDidSomething = true;
316 if (!pg_query($oDB->connection, 'TRUNCATE word')) fail(pg_last_error($oDB->connection));
318 if (!pg_query($oDB->connection, 'TRUNCATE placex')) fail(pg_last_error($oDB->connection));
320 if (!pg_query($oDB->connection, 'TRUNCATE place_addressline')) fail(pg_last_error($oDB->connection));
322 if (!pg_query($oDB->connection, 'TRUNCATE place_boundingbox')) fail(pg_last_error($oDB->connection));
324 if (!pg_query($oDB->connection, 'TRUNCATE location_area')) fail(pg_last_error($oDB->connection));
326 if (!pg_query($oDB->connection, 'TRUNCATE search_name')) fail(pg_last_error($oDB->connection));
328 if (!pg_query($oDB->connection, 'TRUNCATE search_name_blank')) fail(pg_last_error($oDB->connection));
330 if (!pg_query($oDB->connection, 'DROP SEQUENCE seq_place')) fail(pg_last_error($oDB->connection));
332 if (!pg_query($oDB->connection, 'CREATE SEQUENCE seq_place start 100000')) fail(pg_last_error($oDB->connection));
335 $sSQL = 'select partition from country_name order by country_code';
336 $aPartitions = $oDB->getCol($sSQL);
337 if (PEAR::isError($aPartitions))
339 fail($aPartitions->getMessage());
342 foreach($aPartitions as $sPartition)
344 if (!pg_query($oDB->connection, 'TRUNCATE location_road_'.$sPartition)) fail(pg_last_error($oDB->connection));
348 // used by getorcreate_word_id to ignore frequent partial words
349 if (!pg_query($oDB->connection, 'CREATE OR REPLACE FUNCTION get_maxwordfreq() RETURNS integer AS $$ SELECT '.CONST_Max_Word_Frequency.' as maxwordfreq; $$ LANGUAGE SQL IMMUTABLE')) fail(pg_last_error($oDB->connection));
352 // pre-create the word list
353 if (!$aCMDResult['disable-token-precalc'])
355 echo "Loading word list\n";
356 pgsqlRunScriptFile(CONST_BasePath.'/data/words.sql');
360 $aDBInstances = array();
361 for($i = 0; $i < $iInstances; $i++)
363 $aDBInstances[$i] =& getDB(true);
364 $sSQL = 'insert into placex (osm_type, osm_id, class, type, name, admin_level, ';
365 $sSQL .= 'housenumber, street, addr_place, isin, postcode, country_code, extratags, ';
366 $sSQL .= 'geometry) select * from place where osm_id % '.$iInstances.' = '.$i;
367 if ($aCMDResult['verbose']) echo "$sSQL\n";
368 if (!pg_send_query($aDBInstances[$i]->connection, $sSQL)) fail(pg_last_error($oDB->connection));
374 for($i = 0; $i < $iInstances; $i++)
376 if (pg_connection_busy($aDBInstances[$i]->connection)) $bAnyBusy = true;
382 echo "Reanalysing database...\n";
383 pgsqlRunScript('ANALYSE');
386 if ($aCMDResult['create-roads'])
388 $bDidSomething = true;
391 $aDBInstances = array();
392 for($i = 0; $i < $iInstances; $i++)
394 $aDBInstances[$i] =& getDB(true);
395 if (!pg_query($aDBInstances[$i]->connection, 'set enable_bitmapscan = off')) fail(pg_last_error($oDB->connection));
396 $sSQL = 'select count(*) from (select insertLocationRoad(partition, place_id, calculated_country_code, geometry) from ';
397 $sSQL .= 'placex where osm_id % '.$iInstances.' = '.$i.' and rank_search between 26 and 27 and class = \'highway\') as x ';
398 if ($aCMDResult['verbose']) echo "$sSQL\n";
399 if (!pg_send_query($aDBInstances[$i]->connection, $sSQL)) fail(pg_last_error($oDB->connection));
405 for($i = 0; $i < $iInstances; $i++)
407 if (pg_connection_busy($aDBInstances[$i]->connection)) $bAnyBusy = true;
415 if ($aCMDResult['import-tiger-data'])
417 $bDidSomething = true;
419 pgsqlRunScriptFile(CONST_BasePath.'/sql/tiger_import_start.sql');
421 $aDBInstances = array();
422 for($i = 0; $i < $iInstances; $i++)
424 $aDBInstances[$i] =& getDB(true);
427 foreach(glob(CONST_BasePath.'/data/tiger2011/*.sql') as $sFile)
430 $hFile = fopen($sFile, "r");
431 $sSQL = fgets($hFile, 100000);
436 for($i = 0; $i < $iInstances; $i++)
438 if (!pg_connection_busy($aDBInstances[$i]->connection))
440 while(pg_get_result($aDBInstances[$i]->connection));
441 $sSQL = fgets($hFile, 100000);
443 if (!pg_send_query($aDBInstances[$i]->connection, $sSQL)) fail(pg_last_error($oDB->connection));
461 for($i = 0; $i < $iInstances; $i++)
463 if (pg_connection_busy($aDBInstances[$i]->connection)) $bAnyBusy = true;
470 echo "Creating indexes\n";
471 pgsqlRunScriptFile(CONST_BasePath.'/sql/tiger_import_finish.sql');
474 if ($aCMDResult['calculate-postcodes'] || $aCMDResult['all'])
476 $bDidSomething = true;
478 if (!pg_query($oDB->connection, 'DELETE from placex where osm_type=\'P\'')) fail(pg_last_error($oDB->connection));
479 $sSQL = "insert into placex (osm_type,osm_id,class,type,postcode,calculated_country_code,geometry) ";
480 $sSQL .= "select 'P',nextval('seq_postcodes'),'place','postcode',postcode,calculated_country_code,";
481 $sSQL .= "ST_SetSRID(ST_Point(x,y),4326) as geometry from (select calculated_country_code,postcode,";
482 $sSQL .= "avg(st_x(st_centroid(geometry))) as x,avg(st_y(st_centroid(geometry))) as y ";
483 $sSQL .= "from placex where postcode is not null group by calculated_country_code,postcode) as x";
484 if (!pg_query($oDB->connection, $sSQL)) fail(pg_last_error($oDB->connection));
486 $sSQL = "insert into placex (osm_type,osm_id,class,type,postcode,calculated_country_code,geometry) ";
487 $sSQL .= "select 'P',nextval('seq_postcodes'),'place','postcode',postcode,'us',";
488 $sSQL .= "ST_SetSRID(ST_Point(x,y),4326) as geometry from us_postcode";
489 if (!pg_query($oDB->connection, $sSQL)) fail(pg_last_error($oDB->connection));
492 if ($aCMDResult['osmosis-init'] || $aCMDResult['all'])
494 $bDidSomething = true;
497 if (!file_exists(CONST_Osmosis_Binary))
499 echo "Please download osmosis.\nIf it is already installed, check the path in your local settings (settings/local.php) file.\n";
500 fail("osmosis not found in '".CONST_Osmosis_Binary."'");
502 if (file_exists(CONST_BasePath.'/settings/configuration.txt'))
504 echo "settings/configuration.txt already exists\n";
508 passthru(CONST_Osmosis_Binary.' --read-replication-interval-init '.CONST_BasePath.'/settings');
509 // update osmosis configuration.txt with our settings
510 passthru("sed -i 's!baseUrl=.*!baseUrl=".CONST_Replication_Url."!' ".CONST_BasePath.'/settings/configuration.txt');
511 passthru("sed -i 's:maxInterval = .*:maxInterval = ".CONST_Replication_MaxInterval.":' ".CONST_BasePath.'/settings/configuration.txt');
514 // Find the last node in the DB
515 $iLastOSMID = $oDB->getOne("select max(id) from planet_osm_nodes");
517 // Lookup the timestamp that node was created (less 3 hours for margin for changsets to be closed)
518 $sLastNodeURL = 'http://www.openstreetmap.org/api/0.6/node/'.$iLastOSMID."/1";
519 $sLastNodeXML = file_get_contents($sLastNodeURL);
520 preg_match('#timestamp="(([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})Z)"#', $sLastNodeXML, $aLastNodeDate);
521 $iLastNodeTimestamp = strtotime($aLastNodeDate[1]) - (3*60*60);
524 // Search for the correct state file - uses file timestamps so need to sort by date descending
525 $sRepURL = CONST_Replication_Url."/";
526 $sRep = file_get_contents($sRepURL."?C=M;O=D");
527 // download.geofabrik.de: <a href="000/">000/</a></td><td align="right">26-Feb-2013 11:53 </td>
528 // planet.openstreetmap.org: <a href="273/">273/</a> 22-Mar-2013 07:41 -
529 preg_match_all('#<a href="[0-9]{3}/">([0-9]{3}/)</a>.*(([0-9]{2})-([A-z]{3})-([0-9]{4}) ([0-9]{2}):([0-9]{2}))#', $sRep, $aRepMatches, PREG_SET_ORDER);
530 $aPrevRepMatch = false;
531 foreach($aRepMatches as $aRepMatch)
533 if (strtotime($aRepMatch[2]) < $iLastNodeTimestamp) break;
534 $aPrevRepMatch = $aRepMatch;
536 if ($aPrevRepMatch) $aRepMatch = $aPrevRepMatch;
538 $sRepURL .= $aRepMatch[1];
539 $sRep = file_get_contents($sRepURL."?C=M;O=D");
540 preg_match_all('#<a href="[0-9]{3}/">([0-9]{3}/)</a>.*(([0-9]{2})-([A-z]{3})-([0-9]{4}) ([0-9]{2}):([0-9]{2}))#', $sRep, $aRepMatches, PREG_SET_ORDER);
541 $aPrevRepMatch = false;
542 foreach($aRepMatches as $aRepMatch)
544 if (strtotime($aRepMatch[2]) < $iLastNodeTimestamp) break;
545 $aPrevRepMatch = $aRepMatch;
547 if ($aPrevRepMatch) $aRepMatch = $aPrevRepMatch;
549 $sRepURL .= $aRepMatch[1];
550 $sRep = file_get_contents($sRepURL."?C=M;O=D");
551 preg_match_all('#<a href="[0-9]{3}.state.txt">([0-9]{3}).state.txt</a>.*(([0-9]{2})-([A-z]{3})-([0-9]{4}) ([0-9]{2}):([0-9]{2}))#', $sRep, $aRepMatches, PREG_SET_ORDER);
552 $aPrevRepMatch = false;
553 foreach($aRepMatches as $aRepMatch)
555 if (strtotime($aRepMatch[2]) < $iLastNodeTimestamp) break;
556 $aPrevRepMatch = $aRepMatch;
558 if ($aPrevRepMatch) $aRepMatch = $aPrevRepMatch;
560 $sRepURL .= $aRepMatch[1].'.state.txt';
561 echo "Getting state file: $sRepURL\n";
562 $sStateFile = file_get_contents($sRepURL);
563 if (!$sStateFile || strlen($sStateFile) > 1000) fail("unable to obtain state file");
564 file_put_contents(CONST_BasePath.'/settings/state.txt', $sStateFile);
565 echo "Updating DB status\n";
566 pg_query($oDB->connection, 'TRUNCATE import_status');
567 $sSQL = "INSERT INTO import_status VALUES('".$aRepMatch[2]."')";
568 pg_query($oDB->connection, $sSQL);
571 if ($aCMDResult['index'] || $aCMDResult['all'])
573 $bDidSomething = true;
575 if (isset($aCMDResult['index-output'])) $sOutputFile = ' -F '.$aCMDResult['index-output'];
576 $sBaseCmd = CONST_BasePath.'/nominatim/nominatim -i -d '.$aDSNInfo['database'].' -P '.$aDSNInfo['port'].' -t '.$iInstances.$sOutputFile;
577 passthruCheckReturn($sBaseCmd.' -R 4');
578 if (!$aCMDResult['index-noanalyse']) pgsqlRunScript('ANALYSE');
579 passthruCheckReturn($sBaseCmd.' -r 5 -R 25');
580 if (!$aCMDResult['index-noanalyse']) pgsqlRunScript('ANALYSE');
581 passthruCheckReturn($sBaseCmd.' -r 26');
584 if ($aCMDResult['create-search-indices'] || $aCMDResult['all'])
586 echo "Search indices\n";
587 $bDidSomething = true;
589 $sSQL = 'select partition from country_name order by country_code';
590 $aPartitions = $oDB->getCol($sSQL);
591 if (PEAR::isError($aPartitions))
593 fail($aPartitions->getMessage());
597 $sTemplate = file_get_contents(CONST_BasePath.'/sql/indices.src.sql');
598 preg_match_all('#^-- start(.*?)^-- end#ms', $sTemplate, $aMatches, PREG_SET_ORDER);
599 foreach($aMatches as $aMatch)
602 foreach($aPartitions as $sPartitionName)
604 $sResult .= str_replace('-partition-', $sPartitionName, $aMatch[1]);
606 $sTemplate = str_replace($aMatch[0], $sResult, $sTemplate);
609 pgsqlRunScript($sTemplate);
612 if (isset($aCMDResult['create-website']))
614 $bDidSomething = true;
615 $sTargetDir = $aCMDResult['create-website'];
616 if (!is_dir($sTargetDir))
618 echo "You must create the website directory before calling this function.\n";
619 fail("Target directory does not exist.");
622 @symlink(CONST_BasePath.'/website/details.php', $sTargetDir.'/details.php');
623 @symlink(CONST_BasePath.'/website/reverse.php', $sTargetDir.'/reverse.php');
624 @symlink(CONST_BasePath.'/website/search.php', $sTargetDir.'/search.php');
625 @symlink(CONST_BasePath.'/website/search.php', $sTargetDir.'/index.php');
626 @symlink(CONST_BasePath.'/website/deletable.php', $sTargetDir.'/deletable.php');
627 @symlink(CONST_BasePath.'/website/polygons.php', $sTargetDir.'/polygons.php');
628 @symlink(CONST_BasePath.'/website/status.php', $sTargetDir.'/status.php');
629 @symlink(CONST_BasePath.'/website/images', $sTargetDir.'/images');
630 @symlink(CONST_BasePath.'/website/js', $sTargetDir.'/js');
631 @symlink(CONST_BasePath.'/website/css', $sTargetDir.'/css');
632 echo "Symlinks created\n";
637 showUsage($aCMDOptions, true);
640 function pgsqlRunScriptFile($sFilename)
642 if (!file_exists($sFilename)) fail('unable to find '.$sFilename);
644 // Convert database DSN to psql parameters
645 $aDSNInfo = DB::parseDSN(CONST_Database_DSN);
646 if (!isset($aDSNInfo['port']) || !$aDSNInfo['port']) $aDSNInfo['port'] = 5432;
647 $sCMD = 'psql -p '.$aDSNInfo['port'].' -d '.$aDSNInfo['database'].' -f '.$sFilename;
649 $aDescriptors = array(
650 0 => array('pipe', 'r'),
651 1 => array('pipe', 'w'),
652 2 => array('file', '/dev/null', 'a')
655 $hProcess = proc_open($sCMD, $aDescriptors, $ahPipes);
656 if (!is_resource($hProcess)) fail('unable to start pgsql');
660 // TODO: error checking
661 while(!feof($ahPipes[1]))
663 echo fread($ahPipes[1], 4096);
667 proc_close($hProcess);
670 function pgsqlRunScript($sScript)
672 // Convert database DSN to psql parameters
673 $aDSNInfo = DB::parseDSN(CONST_Database_DSN);
674 if (!isset($aDSNInfo['port']) || !$aDSNInfo['port']) $aDSNInfo['port'] = 5432;
675 $sCMD = 'psql -p '.$aDSNInfo['port'].' -d '.$aDSNInfo['database'];
676 $aDescriptors = array(
677 0 => array('pipe', 'r'),
682 $hProcess = @proc_open($sCMD, $aDescriptors, $ahPipes);
683 if (!is_resource($hProcess)) fail('unable to start pgsql');
685 while(strlen($sScript))
687 $written = fwrite($ahPipes[0], $sScript);
688 $sScript = substr($sScript, $written);
691 proc_close($hProcess);
694 function pgsqlRunRestoreData($sDumpFile)
696 // Convert database DSN to psql parameters
697 $aDSNInfo = DB::parseDSN(CONST_Database_DSN);
698 if (!isset($aDSNInfo['port']) || !$aDSNInfo['port']) $aDSNInfo['port'] = 5432;
699 $sCMD = 'pg_restore -p '.$aDSNInfo['port'].' -d '.$aDSNInfo['database'].' -Fc -a '.$sDumpFile;
701 $aDescriptors = array(
702 0 => array('pipe', 'r'),
703 1 => array('pipe', 'w'),
704 2 => array('file', '/dev/null', 'a')
707 $hProcess = proc_open($sCMD, $aDescriptors, $ahPipes);
708 if (!is_resource($hProcess)) fail('unable to start pg_restore');
712 // TODO: error checking
713 while(!feof($ahPipes[1]))
715 echo fread($ahPipes[1], 4096);
719 proc_close($hProcess);
722 function pgsqlRunDropAndRestore($sDumpFile)
724 // Convert database DSN to psql parameters
725 $aDSNInfo = DB::parseDSN(CONST_Database_DSN);
726 if (!isset($aDSNInfo['port']) || !$aDSNInfo['port']) $aDSNInfo['port'] = 5432;
727 $sCMD = 'pg_restore -p '.$aDSNInfo['port'].' -d '.$aDSNInfo['database'].' -Fc --clean '.$sDumpFile;
729 $aDescriptors = array(
730 0 => array('pipe', 'r'),
731 1 => array('pipe', 'w'),
732 2 => array('file', '/dev/null', 'a')
735 $hProcess = proc_open($sCMD, $aDescriptors, $ahPipes);
736 if (!is_resource($hProcess)) fail('unable to start pg_restore');
740 // TODO: error checking
741 while(!feof($ahPipes[1]))
743 echo fread($ahPipes[1], 4096);
747 proc_close($hProcess);
750 function passthruCheckReturn($cmd)
753 passthru($cmd, $result);
754 if ($result != 0) fail('Error executing external command: '.$cmd);