4 require_once(dirname(dirname(__FILE__)).'/lib/init-cmd.php');
5 ini_set('memory_limit', '800M');
8 "Import / update / index osm data",
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('max-load', '', 0, 1, 1, 1, 'float', 'Maximum load average - indexing is paused if this is exceeded'),
14 array('max-blocking', '', 0, 1, 1, 1, 'int', 'Maximum blocking processes - indexing is aborted / paused if this is exceeded'),
16 array('import-osmosis', '', 0, 1, 0, 0, 'bool', 'Import using osmosis'),
17 array('import-osmosis-all', '', 0, 1, 0, 0, 'bool', 'Import using osmosis forever'),
18 array('no-npi', '', 0, 1, 0, 0, 'bool', 'Do not write npi index files'),
19 array('no-index', '', 0, 1, 0, 0, 'bool', 'Do not index the new data'),
21 array('import-npi-all', '', 0, 1, 0, 0, 'bool', 'Import npi pre-indexed files'),
23 array('import-hourly', '', 0, 1, 0, 0, 'bool', 'Import hourly diffs'),
24 array('import-daily', '', 0, 1, 0, 0, 'bool', 'Import daily diffs'),
25 array('import-all', '', 0, 1, 0, 0, 'bool', 'Import all available files'),
27 array('import-file', '', 0, 1, 1, 1, 'realpath', 'Re-import data from an OSM file'),
28 array('import-diff', '', 0, 1, 1, 1, 'realpath', 'Import a diff (osc) file from local file system'),
30 array('import-node', '', 0, 1, 1, 1, 'int', 'Re-import node'),
31 array('import-way', '', 0, 1, 1, 1, 'int', 'Re-import way'),
32 array('import-relation', '', 0, 1, 1, 1, 'int', 'Re-import relation'),
34 array('index', '', 0, 1, 0, 0, 'bool', 'Index'),
35 array('index-rank', '', 0, 1, 1, 1, 'int', 'Rank to start indexing from'),
36 array('index-instances', '', 0, 1, 1, 1, 'int', 'Number of indexing instances (threads)'),
37 array('index-estrate', '', 0, 1, 1, 1, 'int', 'Estimated indexed items per second (def:30)'),
39 array('deduplicate', '', 0, 1, 0, 0, 'bool', 'Deduplicate tokens'),
41 getCmdOpt($_SERVER['argv'], $aCMDOptions, $aResult, true, true);
43 if ($aResult['import-hourly'] + $aResult['import-daily'] + isset($aResult['import-diff']) > 1)
45 showUsage($aCMDOptions, true, 'Select either import of hourly or daily');
48 if (!isset($aResult['index-instances'])) $aResult['index-instances'] = 1;
50 // Lock to prevent multiple copies running
51 if (exec('/bin/ps uww | grep '.basename(__FILE__).' | grep -v /dev/null | grep -v grep -c', $aOutput2, $iResult) > 1)
53 echo "Copy already running\n";
56 if (!isset($aResult['max-load'])) $aResult['max-load'] = 1.9;
57 if (!isset($aResult['max-blocking'])) $aResult['max-blocking'] = 3;
58 if (getBlockingProcesses() > $aResult['max-blocking'])
60 echo "Too many blocking processes for import\n";
65 // Assume osm2pgsql is in the folder above
66 $sBasePath = dirname(dirname(__FILE__));
70 $aDSNInfo = DB::parseDSN(CONST_Database_DSN);
73 $bContinue = $aResult['import-all'];
74 while ($bContinue || $bFirst)
78 if ($aResult['import-hourly'])
80 // Mirror the hourly diffs
81 exec('wget --quiet --mirror -l 1 -P '.$sMirrorDir.' http://planet.openstreetmap.org/hourly');
82 $sNextFile = $oDB->getOne('select TO_CHAR(lastimportdate,\'YYYYMMDDHH24\')||\'-\'||TO_CHAR(lastimportdate+\'1 hour\'::interval,\'YYYYMMDDHH24\')||\'.osc.gz\' from import_status');
83 $sNextFile = $sMirrorDir.'planet.openstreetmap.org/hourly/'.$sNextFile;
84 $sUpdateSQL = 'update import_status set lastimportdate = lastimportdate+\'1 hour\'::interval';
87 if ($aResult['import-daily'])
89 // Mirror the daily diffs
90 exec('wget --quiet --mirror -l 1 -P '.$sMirrorDir.' http://planet.openstreetmap.org/daily');
91 $sNextFile = $oDB->getOne('select TO_CHAR(lastimportdate,\'YYYYMMDD\')||\'-\'||TO_CHAR(lastimportdate+\'1 day\'::interval,\'YYYYMMDD\')||\'.osc.gz\' from import_status');
92 $sNextFile = $sMirrorDir.'planet.openstreetmap.org/daily/'.$sNextFile;
93 $sUpdateSQL = 'update import_status set lastimportdate = lastimportdate::date + 1';
96 if (isset($aResult['import-diff']))
98 // import diff directly (e.g. from osmosis --rri)
99 $sNextFile = $aResult['import-diff'];
100 if (!file_exists($sNextFile))
102 echo "Cannot open $nextFile\n";
105 // Don't update the import status - we don't know what this file contains
106 $sUpdateSQL = 'update import_status set lastimportdate = now() where false';
109 // Missing file is not an error - it might not be created yet
110 if (($aResult['import-hourly'] || $aResult['import-daily'] || isset($aResult['import-diff'])) && file_exists($sNextFile))
113 $sCMD = CONST_Osm2pgsql_Binary.' -klas -C 2000 -O gazetteer -d '.$aDSNInfo['database'].' '.$sNextFile;
115 exec($sCMD, $sJunk, $iErrorLevel);
119 echo "Error from osm2pgsql, $iErrorLevel\n";
123 // Move the date onwards
124 $oDB->query($sUpdateSQL);
134 if (isset($aResult['import-file']) && $aResult['import-file'])
138 if (isset($aResult['import-node']) && $aResult['import-node'])
141 $sModifyXMLstr = file_get_contents('http://www.openstreetmap.org/api/0.6/node/'.$aResult['import-node']);
143 if (isset($aResult['import-way']) && $aResult['import-way'])
146 $sModifyXMLstr = file_get_contents('http://www.openstreetmap.org/api/0.6/way/'.$aResult['import-way'].'/full');
148 if (isset($aResult['import-relation']) && $aResult['import-relation'])
151 $sModifyXMLstr = file_get_contents('http://www.openstreetmap.org/api/0.6/relation/'.$aResult['import-relation'].'/full');
155 // derive change from normal osm file with osmosis
156 $sTemporaryFile = CONST_BasePath.'/data/osmosischange.osc';
157 if (isset($aResult['import-file']) && $aResult['import-file'])
159 $sCMD = CONST_Osmosis_Binary.' --read-xml \''.$aResult['import-file'].'\' --read-empty --derive-change --write-xml-change '.$sTemporaryFile;
161 exec($sCMD, $sJunk, $iErrorLevel);
164 echo "Error converting osm to osc, osmosis returned: $iErrorLevel\n";
171 0 => array("pipe", "r"), // stdin
172 1 => array("pipe", "w"), // stdout
173 2 => array("pipe", "w") // stderr
175 $sCMD = CONST_Osmosis_Binary.' --read-xml - --read-empty --derive-change --write-xml-change '.$sTemporaryFile;
177 $hProc = proc_open($sCMD, $aSpec, $aPipes);
178 if (!is_resource($hProc))
180 echo "Error converting osm to osc, osmosis failed\n";
183 fwrite($aPipes[0], $sModifyXMLstr);
185 $sOut = stream_get_contents($aPipes[1]);
186 if ($aResult['verbose']) echo $sOut;
188 $sErrors = stream_get_contents($aPipes[2]);
189 if ($aResult['verbose']) echo $sErrors;
191 if ($iError = proc_close($hProc))
193 echo "Error converting osm to osc, osmosis returned: $iError\n";
200 // import generated change file
201 $sCMD = CONST_Osm2pgsql_Binary.' -klas -C 2000 -O gazetteer -d '.$aDSNInfo['database'].' '.$sTemporaryFile;
203 exec($sCMD, $sJunk, $iErrorLevel);
206 echo "osm2pgsql exited with error level $iErrorLevel\n";
211 if ($aResult['deduplicate'])
214 $sSQL = 'select partition from country_name order by country_code';
215 $aPartitions = $oDB->getCol($sSQL);
216 if (PEAR::isError($aPartitions))
218 fail($aPartitions->getMessage());
222 $sSQL = "select word_token,count(*) from word where substr(word_token, 1, 1) = ' ' and class is null and type is null and country_code is null group by word_token having count(*) > 1 order by word_token";
223 $aDuplicateTokens = $oDB->getAll($sSQL);
224 foreach($aDuplicateTokens as $aToken)
226 if (trim($aToken['word_token']) == '' || trim($aToken['word_token']) == '-') continue;
227 echo "Deduping ".$aToken['word_token']."\n";
228 $sSQL = "select word_id,(select count(*) from search_name where nameaddress_vector @> ARRAY[word_id]) as num from word where word_token = '".$aToken['word_token']."' and class is null and type is null and country_code is null order by num desc";
229 $aTokenSet = $oDB->getAll($sSQL);
230 if (PEAR::isError($aTokenSet))
232 var_dump($aTokenSet, $sSQL);
236 $aKeep = array_shift($aTokenSet);
237 $iKeepID = $aKeep['word_id'];
239 foreach($aTokenSet as $aRemove)
241 $sSQL = "update search_name set";
242 $sSQL .= " name_vector = (name_vector - ".$aRemove['word_id'].")+".$iKeepID.",";
243 $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
244 $sSQL .= " where name_vector @> ARRAY[".$aRemove['word_id']."]";
245 $x = $oDB->query($sSQL);
246 if (PEAR::isError($x))
252 $sSQL = "update search_name set";
253 $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
254 $sSQL .= " where nameaddress_vector @> ARRAY[".$aRemove['word_id']."]";
255 $x = $oDB->query($sSQL);
256 if (PEAR::isError($x))
262 $sSQL = "update location_area_country set";
263 $sSQL .= " keywords = (keywords - ".$aRemove['word_id'].")+".$iKeepID;
264 $sSQL .= " where keywords @> ARRAY[".$aRemove['word_id']."]";
265 $x = $oDB->query($sSQL);
266 if (PEAR::isError($x))
272 foreach ($aPartitions as $sPartition)
274 $sSQL = "update search_name_".$sPartition." set";
275 $sSQL .= " name_vector = (name_vector - ".$aRemove['word_id'].")+".$iKeepID.",";
276 $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
277 $sSQL .= " where name_vector @> ARRAY[".$aRemove['word_id']."]";
278 $x = $oDB->query($sSQL);
279 if (PEAR::isError($x))
285 $sSQL = "update search_name_".$sPartition." set";
286 $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
287 $sSQL .= " where nameaddress_vector @> ARRAY[".$aRemove['word_id']."]";
288 $x = $oDB->query($sSQL);
289 if (PEAR::isError($x))
295 $sSQL = "update location_area_country set";
296 $sSQL .= " keywords = (keywords - ".$aRemove['word_id'].")+".$iKeepID;
297 $sSQL .= " where keywords @> ARRAY[".$aRemove['word_id']."]";
298 $x = $oDB->query($sSQL);
299 if (PEAR::isError($x))
306 $sSQL = "delete from word where word_id = ".$aRemove['word_id'];
307 $x = $oDB->query($sSQL);
308 if (PEAR::isError($x))
318 if ($aResult['index'])
320 index($aResult, $sDatabaseDSN);
323 if ($aResult['import-osmosis'] || $aResult['import-osmosis-all'])
325 $sImportFile = CONST_BasePath.'/data/osmosischange.osc';
326 $sOsmosisCMD = CONST_Osmosis_Binary;
327 $sOsmosisConfigDirectory = CONST_BasePath.'/settings';
328 $sDatabaseName = 'nominatim';
329 $sCMDDownload = $sOsmosisCMD.' --read-replication-interval workingDirectory='.$sOsmosisConfigDirectory.' --simplify-change --write-xml-change '.$sImportFile;
330 $sCMDImport = CONST_Osm2pgsql_Binary.' -klas -C 2000 -O gazetteer -d '.$sDatabaseName.' '.$sImportFile;
331 $sCMDIndex = $sBasePath.'/nominatim/nominatim -i -t '.$aResult['index-instances'];
332 if (!$aResult['no-npi']) {
337 $fStartTime = time();
340 // Logic behind this is that osm2pgsql locks the database quite a bit
341 // So it is better to import lots of small files
342 // But indexing works most efficiently on large amounts of data
343 // So do lots of small imports and a BIG index
345 // while($aResult['import-osmosis-all'] && $iFileSize > 1000)
347 if (!file_exists($sImportFile))
349 // Use osmosis to download the file
350 $fCMDStartTime = time();
351 echo $sCMDDownload."\n";
352 exec($sCMDDownload, $sJunk, $iErrorLevel);
353 while ($iErrorLevel == 1)
355 echo "Error: $iErrorLevel\n";
357 echo 'Re-trying: '.$sCMDDownload."\n";
358 exec($sCMDDownload, $sJunk, $iErrorLevel);
360 $iFileSize = filesize($sImportFile);
361 $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
362 echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
363 $sSQL = "INSERT INTO import_osmosis_log values ('$sBatchEnd',$iFileSize,'".date('Y-m-d H:i:s',$fCMDStartTime)."','".date('Y-m-d H:i:s')."','osmosis')";
367 $iFileSize = filesize($sImportFile);
368 $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
371 $fCMDStartTime = time();
372 echo $sCMDImport."\n";
373 exec($sCMDImport, $sJunk, $iErrorLevel);
376 echo "Error: $iErrorLevel\n";
379 echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
380 $sSQL = "INSERT INTO import_osmosis_log values ('$sBatchEnd',$iFileSize,'".date('Y-m-d H:i:s',$fCMDStartTime)."','".date('Y-m-d H:i:s')."','osm2pgsql')";
384 // Archive for debug?
385 unlink($sImportFile);
388 $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
391 $sThisIndexCmd = $sCMDIndex;
393 if (!$aResult['no-npi'])
395 $fCMDStartTime = time();
396 $iFileID = $oDB->getOne('select nextval(\'file\')');
397 if (PEAR::isError($iFileID))
399 echo $iFileID->getMessage()."\n";
402 $sFileDir = CONST_BasePath.'/export/diff/';
403 $sFileDir .= str_pad(floor($iFileID/1000000), 3, '0', STR_PAD_LEFT);
404 $sFileDir .= '/'.str_pad(floor($iFileID/1000) % 1000, 3, '0', STR_PAD_LEFT);
406 if (!is_dir($sFileDir)) mkdir($sFileDir, 0777, true);
407 $sThisIndexCmd .= $sFileDir;
408 $sThisIndexCmd .= '/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT);
409 $sThisIndexCmd .= ".npi.out";
411 preg_match('#^([0-9]{4})-([0-9]{2})-([0-9]{2})#', $sBatchEnd, $aBatchMatch);
412 $sFileDir = CONST_BasePath.'/export/index/';
413 $sFileDir .= $aBatchMatch[1].'/'.$aBatchMatch[2];
415 if (!is_dir($sFileDir)) mkdir($sFileDir, 0777, true);
416 file_put_contents($sFileDir.'/'.$aBatchMatch[3].'.idx', "$sBatchEnd\t$iFileID\n", FILE_APPEND);
419 if (!$aResult['no-index'])
421 echo "$sThisIndexCmd\n";
422 exec($sThisIndexCmd, $sJunk, $iErrorLevel);
425 echo "Error: $iErrorLevel\n";
429 if (!$aResult['no-npi'])
431 $sFileDir = CONST_BasePath.'/export/diff/';
432 $sFileDir .= str_pad(floor($iFileID/1000000), 3, '0', STR_PAD_LEFT);
433 $sFileDir .= '/'.str_pad(floor($iFileID/1000) % 1000, 3, '0', STR_PAD_LEFT);
435 $sThisIndexCmd = 'bzip2 -z9 '.$sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.out";
436 echo "$sThisIndexCmd\n";
437 exec($sThisIndexCmd, $sJunk, $iErrorLevel);
440 echo "Error: $iErrorLevel\n";
444 rename($sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.out.bz2",
445 $sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.bz2");
449 echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
450 $sSQL = "INSERT INTO import_osmosis_log values ('$sBatchEnd',$iFileSize,'".date('Y-m-d H:i:s',$fCMDStartTime)."','".date('Y-m-d H:i:s')."','index')";
453 $sSQL = "update import_status set lastimportdate = '$sBatchEnd'";
456 $fDuration = time() - $fStartTime;
457 echo "Completed for $sBatchEnd in ".round($fDuration/60,2)."\n";
458 if (!$aResult['import-osmosis-all']) exit;
460 echo "Sleeping ".max(0,60-$fDuration)." seconds\n";
461 sleep(max(0,60-$fDuration));
466 if ($aResult['import-npi-all'])
468 $iNPIID = $oDB->getOne('select max(npiid) from import_npi_log');
469 if (PEAR::isError($iNPIID))
474 $sConfigDirectory = CONST_BasePath.'/settings';
475 $sCMDImportTemplate = $sBasePath.'/nominatim/nominatim -d gazetteer -P 5433 -I -T '.$sBasePath.'/nominatim/partitionedtags.def -F ';
478 $fStartTime = time();
482 $sImportFile = CONST_BasePath.'/export/diff/';
483 $sImportFile .= str_pad(floor($iNPIID/1000000), 3, '0', STR_PAD_LEFT);
484 $sImportFile .= '/'.str_pad(floor($iNPIID/1000) % 1000, 3, '0', STR_PAD_LEFT);
485 $sImportFile .= '/'.str_pad($iNPIID % 1000, 3, '0', STR_PAD_LEFT);
486 $sImportFile .= ".npi";
487 while(!file_exists($sImportFile) && !file_exists($sImportFile.'.bz2'))
489 echo "sleep (waiting for $sImportFile)\n";
492 if (file_exists($sImportFile.'.bz2')) $sImportFile .= '.bz2';
494 $iFileSize = filesize($sImportFile);
497 $fCMDStartTime = time();
498 $sCMDImport = $sCMDImportTemplate . $sImportFile;
499 echo $sCMDImport."\n";
500 exec($sCMDImport, $sJunk, $iErrorLevel);
503 echo "Error: $iErrorLevel\n";
506 $sBatchEnd = $iNPIID;
507 echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
508 $sSQL = "INSERT INTO import_npi_log values ($iNPIID, null, $iFileSize,'".date('Y-m-d H:i:s',$fCMDStartTime)."','".date('Y-m-d H:i:s')."','import')";
515 function getosmosistimestamp($sOsmosisConfigDirectory)
517 $sStateFile = file_get_contents($sOsmosisConfigDirectory.'/state.txt');
518 preg_match('#timestamp=(.+)#', $sStateFile, $aResult);
519 return str_replace('\:',':',$aResult[1]);