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 ($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
202 $sCMD = CONST_Osm2pgsql_Binary.' -klas -C 2000 -O gazetteer -d '.$aDSNInfo['database'].' '.$sTemporaryFile;
204 exec($sCMD, $sJunk, $iErrorLevel);
207 echo "osm2pgsql exited with error level $iErrorLevel\n";
212 if ($aResult['deduplicate'])
215 $sSQL = 'select partition from country_name order by country_code';
216 $aPartitions = $oDB->getCol($sSQL);
217 if (PEAR::isError($aPartitions))
219 fail($aPartitions->getMessage());
223 $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";
224 $aDuplicateTokens = $oDB->getAll($sSQL);
225 foreach($aDuplicateTokens as $aToken)
227 if (trim($aToken['word_token']) == '' || trim($aToken['word_token']) == '-') continue;
228 echo "Deduping ".$aToken['word_token']."\n";
229 $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";
230 $aTokenSet = $oDB->getAll($sSQL);
231 if (PEAR::isError($aTokenSet))
233 var_dump($aTokenSet, $sSQL);
237 $aKeep = array_shift($aTokenSet);
238 $iKeepID = $aKeep['word_id'];
240 foreach($aTokenSet as $aRemove)
242 $sSQL = "update search_name set";
243 $sSQL .= " name_vector = (name_vector - ".$aRemove['word_id'].")+".$iKeepID.",";
244 $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
245 $sSQL .= " where name_vector @> ARRAY[".$aRemove['word_id']."]";
246 $x = $oDB->query($sSQL);
247 if (PEAR::isError($x))
253 $sSQL = "update search_name set";
254 $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
255 $sSQL .= " where nameaddress_vector @> ARRAY[".$aRemove['word_id']."]";
256 $x = $oDB->query($sSQL);
257 if (PEAR::isError($x))
263 $sSQL = "update location_area_country set";
264 $sSQL .= " keywords = (keywords - ".$aRemove['word_id'].")+".$iKeepID;
265 $sSQL .= " where keywords @> ARRAY[".$aRemove['word_id']."]";
266 $x = $oDB->query($sSQL);
267 if (PEAR::isError($x))
273 foreach ($aPartitions as $sPartition)
275 $sSQL = "update search_name_".$sPartition." set";
276 $sSQL .= " name_vector = (name_vector - ".$aRemove['word_id'].")+".$iKeepID.",";
277 $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
278 $sSQL .= " where name_vector @> ARRAY[".$aRemove['word_id']."]";
279 $x = $oDB->query($sSQL);
280 if (PEAR::isError($x))
286 $sSQL = "update search_name_".$sPartition." set";
287 $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
288 $sSQL .= " where nameaddress_vector @> ARRAY[".$aRemove['word_id']."]";
289 $x = $oDB->query($sSQL);
290 if (PEAR::isError($x))
296 $sSQL = "update location_area_country set";
297 $sSQL .= " keywords = (keywords - ".$aRemove['word_id'].")+".$iKeepID;
298 $sSQL .= " where keywords @> ARRAY[".$aRemove['word_id']."]";
299 $x = $oDB->query($sSQL);
300 if (PEAR::isError($x))
307 $sSQL = "delete from word where word_id = ".$aRemove['word_id'];
308 $x = $oDB->query($sSQL);
309 if (PEAR::isError($x))
319 if ($aResult['index'])
321 index($aResult, $sDatabaseDSN);
324 if ($aResult['import-osmosis'] || $aResult['import-osmosis-all'])
326 $sImportFile = CONST_BasePath.'/data/osmosischange.osc';
327 $sOsmosisCMD = CONST_Osmosis_Binary;
328 $sOsmosisConfigDirectory = CONST_BasePath.'/settings';
329 $sDatabaseName = 'nominatim';
330 $sCMDDownload = $sOsmosisCMD.' --read-replication-interval workingDirectory='.$sOsmosisConfigDirectory.' --simplify-change --write-xml-change '.$sImportFile;
331 $sCMDImport = CONST_Osm2pgsql_Binary.' -klas -C 2000 -O gazetteer -d '.$sDatabaseName.' '.$sImportFile;
332 $sCMDIndex = $sBasePath.'/nominatim/nominatim -i -t '.$aResult['index-instances'];
333 if (!$aResult['no-npi']) {
338 $fStartTime = time();
341 // Logic behind this is that osm2pgsql locks the database quite a bit
342 // So it is better to import lots of small files
343 // But indexing works most efficiently on large amounts of data
344 // So do lots of small imports and a BIG index
346 // while($aResult['import-osmosis-all'] && $iFileSize > 1000)
348 if (!file_exists($sImportFile))
350 // Use osmosis to download the file
351 $fCMDStartTime = time();
352 echo $sCMDDownload."\n";
353 exec($sCMDDownload, $sJunk, $iErrorLevel);
354 while ($iErrorLevel == 1)
356 echo "Error: $iErrorLevel\n";
358 echo 'Re-trying: '.$sCMDDownload."\n";
359 exec($sCMDDownload, $sJunk, $iErrorLevel);
361 $iFileSize = filesize($sImportFile);
362 $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
363 echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
364 $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')";
368 $iFileSize = filesize($sImportFile);
369 $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
372 $fCMDStartTime = time();
373 echo $sCMDImport."\n";
374 exec($sCMDImport, $sJunk, $iErrorLevel);
377 echo "Error: $iErrorLevel\n";
380 echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
381 $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')";
385 // Archive for debug?
386 unlink($sImportFile);
389 $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
392 $sThisIndexCmd = $sCMDIndex;
394 if (!$aResult['no-npi'])
396 $fCMDStartTime = time();
397 $iFileID = $oDB->getOne('select nextval(\'file\')');
398 if (PEAR::isError($iFileID))
400 echo $iFileID->getMessage()."\n";
403 $sFileDir = CONST_BasePath.'/export/diff/';
404 $sFileDir .= str_pad(floor($iFileID/1000000), 3, '0', STR_PAD_LEFT);
405 $sFileDir .= '/'.str_pad(floor($iFileID/1000) % 1000, 3, '0', STR_PAD_LEFT);
407 if (!is_dir($sFileDir)) mkdir($sFileDir, 0777, true);
408 $sThisIndexCmd .= $sFileDir;
409 $sThisIndexCmd .= '/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT);
410 $sThisIndexCmd .= ".npi.out";
412 preg_match('#^([0-9]{4})-([0-9]{2})-([0-9]{2})#', $sBatchEnd, $aBatchMatch);
413 $sFileDir = CONST_BasePath.'/export/index/';
414 $sFileDir .= $aBatchMatch[1].'/'.$aBatchMatch[2];
416 if (!is_dir($sFileDir)) mkdir($sFileDir, 0777, true);
417 file_put_contents($sFileDir.'/'.$aBatchMatch[3].'.idx', "$sBatchEnd\t$iFileID\n", FILE_APPEND);
420 if (!$aResult['no-index'])
422 echo "$sThisIndexCmd\n";
423 exec($sThisIndexCmd, $sJunk, $iErrorLevel);
426 echo "Error: $iErrorLevel\n";
430 if (!$aResult['no-npi'])
432 $sFileDir = CONST_BasePath.'/export/diff/';
433 $sFileDir .= str_pad(floor($iFileID/1000000), 3, '0', STR_PAD_LEFT);
434 $sFileDir .= '/'.str_pad(floor($iFileID/1000) % 1000, 3, '0', STR_PAD_LEFT);
436 $sThisIndexCmd = 'bzip2 -z9 '.$sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.out";
437 echo "$sThisIndexCmd\n";
438 exec($sThisIndexCmd, $sJunk, $iErrorLevel);
441 echo "Error: $iErrorLevel\n";
445 rename($sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.out.bz2",
446 $sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.bz2");
450 echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
451 $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')";
454 $sSQL = "update import_status set lastimportdate = '$sBatchEnd'";
457 $fDuration = time() - $fStartTime;
458 echo "Completed for $sBatchEnd in ".round($fDuration/60,2)."\n";
459 if (!$aResult['import-osmosis-all']) exit;
461 echo "Sleeping ".max(0,60-$fDuration)." seconds\n";
462 sleep(max(0,60-$fDuration));
467 if ($aResult['import-npi-all'])
469 $iNPIID = $oDB->getOne('select max(npiid) from import_npi_log');
470 if (PEAR::isError($iNPIID))
475 $sConfigDirectory = CONST_BasePath.'/settings';
476 $sCMDImportTemplate = $sBasePath.'/nominatim/nominatim -d gazetteer -P 5433 -I -T '.$sBasePath.'/nominatim/partitionedtags.def -F ';
479 $fStartTime = time();
483 $sImportFile = CONST_BasePath.'/export/diff/';
484 $sImportFile .= str_pad(floor($iNPIID/1000000), 3, '0', STR_PAD_LEFT);
485 $sImportFile .= '/'.str_pad(floor($iNPIID/1000) % 1000, 3, '0', STR_PAD_LEFT);
486 $sImportFile .= '/'.str_pad($iNPIID % 1000, 3, '0', STR_PAD_LEFT);
487 $sImportFile .= ".npi";
488 while(!file_exists($sImportFile) && !file_exists($sImportFile.'.bz2'))
490 echo "sleep (waiting for $sImportFile)\n";
493 if (file_exists($sImportFile.'.bz2')) $sImportFile .= '.bz2';
495 $iFileSize = filesize($sImportFile);
498 $fCMDStartTime = time();
499 $sCMDImport = $sCMDImportTemplate . $sImportFile;
500 echo $sCMDImport."\n";
501 exec($sCMDImport, $sJunk, $iErrorLevel);
504 echo "Error: $iErrorLevel\n";
507 $sBatchEnd = $iNPIID;
508 echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
509 $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')";
516 function getosmosistimestamp($sOsmosisConfigDirectory)
518 $sStateFile = file_get_contents($sOsmosisConfigDirectory.'/state.txt');
519 preg_match('#timestamp=(.+)#', $sStateFile, $aResult);
520 return str_replace('\:',':',$aResult[1]);