]> git.openstreetmap.org Git - nominatim.git/blob - utils/update.php
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / utils / update.php
1 #!/usr/bin/php -Cq
2 <?php
3
4         require_once(dirname(dirname(__FILE__)).'/lib/init-cmd.php');
5         ini_set('memory_limit', '800M');
6
7         $aCMDOptions = array(
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'),
12
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'),
15
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'),
20
21                 array('import-npi-all', '', 0, 1, 0, 0, 'bool', 'Import npi pre-indexed files'),
22
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'),
26
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'),
29                 array('osm2pgsql-cache', '', 0, 1, 1, 1, 'int', 'Cache size used by osm2pgsql'),
30
31                 array('import-node', '', 0, 1, 1, 1, 'int', 'Re-import node'),
32                 array('import-way', '', 0, 1, 1, 1, 'int', 'Re-import way'),
33                 array('import-relation', '', 0, 1, 1, 1, 'int', 'Re-import relation'),
34                 array('import-from-main-api', '', 0, 1, 0, 0, 'bool', 'Use OSM API instead of Overpass to download objects'),
35
36                 array('index', '', 0, 1, 0, 0, 'bool', 'Index'),
37                 array('index-rank', '', 0, 1, 1, 1, 'int', 'Rank to start indexing from'),
38                 array('index-instances', '', 0, 1, 1, 1, 'int', 'Number of indexing instances (threads)'),
39                 array('index-estrate', '', 0, 1, 1, 1, 'int', 'Estimated indexed items per second (def:30)'),
40
41                 array('deduplicate', '', 0, 1, 0, 0, 'bool', 'Deduplicate tokens'),
42         );
43         getCmdOpt($_SERVER['argv'], $aCMDOptions, $aResult, true, true);
44
45         if ($aResult['import-hourly'] + $aResult['import-daily'] + isset($aResult['import-diff']) > 1)
46         {
47                 showUsage($aCMDOptions, true, 'Select either import of hourly or daily');
48         }
49
50         if (!isset($aResult['index-rank'])) $aResult['index-rank'] = 0;
51
52 /*
53         // Lock to prevent multiple copies running
54         if (exec('/bin/ps uww | grep '.basename(__FILE__).' | grep -v /dev/null | grep -v grep -c', $aOutput2, $iResult) > 1)
55         {
56                 echo "Copy already running\n";
57                 exit;
58         }
59         if (!isset($aResult['max-load'])) $aResult['max-load'] = 1.9;
60         if (!isset($aResult['max-blocking'])) $aResult['max-blocking'] = 3;
61         if (getBlockingProcesses() > $aResult['max-blocking'])
62         {
63                 echo "Too many blocking processes for import\n";
64                 exit;
65         }
66 */
67
68         // Assume osm2pgsql is in the folder above
69         $sBasePath = dirname(dirname(__FILE__));
70
71         date_default_timezone_set('Etc/UTC');
72
73         $oDB =& getDB();
74
75         $aDSNInfo = DB::parseDSN(CONST_Database_DSN);
76
77         // cache memory to be used by osm2pgsql, should not be more than the available memory
78         $iCacheMemory = (isset($aResult['osm2pgsql-cache'])?$aResult['osm2pgsql-cache']:2000);
79         if ($iCacheMemory + 500 > getTotalMemoryMB())
80         {
81                 $iCacheMemory = getCacheMemoryMB();
82                 echo "WARNING: resetting cache memory to $iCacheMemory\n";
83         }
84         $sOsm2pgsqlCmd = CONST_Osm2pgsql_Binary.' -klas -C '.$iCacheMemory.' -O gazetteer -d '.$aDSNInfo['database'];
85         if (!is_null(CONST_Osm2pgsql_Flatnode_File))
86         {
87                 $sOsm2pgsqlCmd .= ' --flat-nodes '.CONST_Osm2pgsql_Flatnode_File;
88         }
89
90
91         $bFirst = true;
92         $bContinue = $aResult['import-all'];
93         while ($bContinue || $bFirst)
94         {
95                 $bFirst = false;
96
97                 if ($aResult['import-hourly'])
98                 {
99                         // Mirror the hourly diffs
100                         exec('wget --quiet --mirror -l 1 -P '.$sMirrorDir.' http://planet.openstreetmap.org/hourly');
101                         $sNextFile = $oDB->getOne('select TO_CHAR(lastimportdate,\'YYYYMMDDHH24\')||\'-\'||TO_CHAR(lastimportdate+\'1 hour\'::interval,\'YYYYMMDDHH24\')||\'.osc.gz\' from import_status');
102                         $sNextFile = $sMirrorDir.'planet.openstreetmap.org/hourly/'.$sNextFile;
103                         $sUpdateSQL = 'update import_status set lastimportdate = lastimportdate+\'1 hour\'::interval';
104                 }
105
106                 if ($aResult['import-daily'])
107                 {
108                         // Mirror the daily diffs
109                         exec('wget --quiet --mirror -l 1 -P '.$sMirrorDir.' http://planet.openstreetmap.org/daily');
110                         $sNextFile = $oDB->getOne('select TO_CHAR(lastimportdate,\'YYYYMMDD\')||\'-\'||TO_CHAR(lastimportdate+\'1 day\'::interval,\'YYYYMMDD\')||\'.osc.gz\' from import_status');
111                         $sNextFile = $sMirrorDir.'planet.openstreetmap.org/daily/'.$sNextFile;
112                         $sUpdateSQL = 'update import_status set lastimportdate = lastimportdate::date + 1';
113                 }
114                 
115                 if (isset($aResult['import-diff']))
116                 {
117                         // import diff directly (e.g. from osmosis --rri)
118                         $sNextFile = $aResult['import-diff'];
119                         if (!file_exists($sNextFile))
120                         {
121                                 echo "Cannot open $sNextFile\n";
122                                 exit;
123                         }
124                         // Don't update the import status - we don't know what this file contains
125                         $sUpdateSQL = 'update import_status set lastimportdate = now() where false';
126                 }
127
128                 // Missing file is not an error - it might not be created yet
129                 if (($aResult['import-hourly'] || $aResult['import-daily'] || isset($aResult['import-diff'])) && file_exists($sNextFile))
130                 {
131                         // Import the file
132                         $sCMD = $sOsm2pgsqlCmd.' '.$sNextFile;
133                         echo $sCMD."\n";
134                         exec($sCMD, $sJunk, $iErrorLevel);
135
136                         if ($iErrorLevel)
137                         {
138                                 echo "Error from osm2pgsql, $iErrorLevel\n";
139                                 exit;
140                         }
141         
142                         // Move the date onwards
143                         $oDB->query($sUpdateSQL);
144                 }
145                 else
146                 {
147                         $bContinue = false;
148                 }
149         }
150
151         $bModifyXML = false;
152         $sModifyXMLstr = '';
153         $bUseOSMApi = isset($aResult['import-from-main-api']) && $aResult['import-from-main-api'];
154         if (isset($aResult['import-file']) && $aResult['import-file'])
155         {
156                 $bModifyXML = true;
157         }
158         if (isset($aResult['import-node']) && $aResult['import-node'])
159         {
160                 $bModifyXML = true;
161                 if ($bUseOSMApi)
162                 {
163                         $sModifyXMLstr = file_get_contents('http://www.openstreetmap.org/api/0.6/node/'.$aResult['import-node']);
164                 }
165                 else
166                 {
167                         $sModifyXMLstr = file_get_contents('http://overpass-api.de/api/interpreter?data=node('.$aResult['import-node'].');out%20meta;');
168                 }
169         }
170         if (isset($aResult['import-way']) && $aResult['import-way'])
171         {
172                 $bModifyXML = true;
173                 if ($bUseOSMApi)
174                 {
175                         $sCmd = 'http://www.openstreetmap.org/api/0.6/way/'.$aResult['import-way'].'/full';
176                 }
177                 else
178                 {
179                         $sCmd = 'http://overpass-api.de/api/interpreter?data=(way('.$aResult['import-way'].');node(w););out%20meta;';
180                 }
181                 $sModifyXMLstr = file_get_contents($sCmd);
182         }
183         if (isset($aResult['import-relation']) && $aResult['import-relation'])
184         {
185                 $bModifyXML = true;
186                 if ($bUseOSMApi)
187                 {
188                         $sModifyXMLstr = file_get_contents('http://www.openstreetmap.org/api/0.6/relation/'.$aResult['import-relation'].'/full');
189                 }
190                 else
191                 {
192                         $sModifyXMLstr = file_get_contents('http://overpass-api.de/api/interpreter?data=((rel('.$aResult['import-relation'].');way(r);node(w));node(r));out%20meta;');
193                 }
194         }
195         if ($bModifyXML)
196         {
197                 // derive change from normal osm file with osmosis
198                 $sTemporaryFile = CONST_BasePath.'/data/osmosischange.osc';
199                 if (isset($aResult['import-file']) && $aResult['import-file'])
200                 {
201                         $sCMD = CONST_Osmosis_Binary.' --read-xml \''.$aResult['import-file'].'\' --read-empty --derive-change --write-xml-change '.$sTemporaryFile;
202                         echo $sCMD."\n";
203                         exec($sCMD, $sJunk, $iErrorLevel);
204                         if ($iErrorLevel)
205                         {
206                                 echo "Error converting osm to osc, osmosis returned: $iErrorLevel\n";
207                                 exit;
208                         }
209                 }
210                 else
211                 {
212                         $aSpec = array(
213                                 0 => array("pipe", "r"),  // stdin
214                                 1 => array("pipe", "w"),  // stdout
215                                 2 => array("pipe", "w") // stderr
216                         );
217                         $sCMD = CONST_Osmosis_Binary.' --read-xml - --read-empty --derive-change --write-xml-change '.$sTemporaryFile;
218                         echo $sCMD."\n";
219                         $hProc = proc_open($sCMD, $aSpec, $aPipes);
220                         if (!is_resource($hProc))
221                         {
222                                 echo "Error converting osm to osc, osmosis failed\n";
223                                 exit;
224                         }
225                         fwrite($aPipes[0], $sModifyXMLstr);
226                         fclose($aPipes[0]);
227                         $sOut = stream_get_contents($aPipes[1]);
228                         if ($aResult['verbose']) echo $sOut;
229                         fclose($aPipes[1]);
230                         $sErrors = stream_get_contents($aPipes[2]);
231                         if ($aResult['verbose']) echo $sErrors;
232                         fclose($aPipes[2]);
233                         if ($iError = proc_close($hProc))
234                         {
235                                 echo "Error converting osm to osc, osmosis returned: $iError\n";
236                                 echo $sOut;
237                                 echo $sErrors;
238                                 exit;
239                         }
240                 }
241
242                 // import generated change file
243                 $sCMD = $sOsm2pgsqlCmd.' '.$sTemporaryFile;
244                 echo $sCMD."\n";
245                 exec($sCMD, $sJunk, $iErrorLevel);
246                 if ($iErrorLevel)
247                 {
248                         echo "osm2pgsql exited with error level $iErrorLevel\n";
249                         exit;
250                 }
251         }
252
253         if ($aResult['deduplicate'])
254         {
255                 $oDB =& getDB();
256                 $sSQL = 'select partition from country_name order by country_code';
257                 $aPartitions = $oDB->getCol($sSQL);
258                 if (PEAR::isError($aPartitions))
259                 {
260                         fail($aPartitions->getMessage());
261                 }
262                 $aPartitions[] = 0;
263
264                 $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";
265                 $aDuplicateTokens = $oDB->getAll($sSQL);
266                 foreach($aDuplicateTokens as $aToken)
267                 {
268                         if (trim($aToken['word_token']) == '' || trim($aToken['word_token']) == '-') continue;
269                         echo "Deduping ".$aToken['word_token']."\n";
270                         $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";
271                         $aTokenSet = $oDB->getAll($sSQL);
272                         if (PEAR::isError($aTokenSet))
273                         {
274                                 var_dump($aTokenSet, $sSQL);
275                                 exit;
276                         }
277                         
278                         $aKeep = array_shift($aTokenSet);
279                         $iKeepID = $aKeep['word_id'];
280
281                         foreach($aTokenSet as $aRemove)
282                         {
283                                 $sSQL = "update search_name set";
284                                 $sSQL .= " name_vector = (name_vector - ".$aRemove['word_id'].")+".$iKeepID.",";
285                                 $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
286                                 $sSQL .= " where name_vector @> ARRAY[".$aRemove['word_id']."]";
287                                 $x = $oDB->query($sSQL);
288                                 if (PEAR::isError($x))
289                                 {
290                                         var_dump($x);
291                                         exit;
292                                 }
293
294                                 $sSQL = "update search_name set";
295                                 $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
296                                 $sSQL .= " where nameaddress_vector @> ARRAY[".$aRemove['word_id']."]";
297                                 $x = $oDB->query($sSQL);
298                                 if (PEAR::isError($x))
299                                 {
300                                         var_dump($x);
301                                         exit;
302                                 }
303
304                                 $sSQL = "update location_area_country set";
305                                 $sSQL .= " keywords = (keywords - ".$aRemove['word_id'].")+".$iKeepID;
306                                 $sSQL .= " where keywords @> ARRAY[".$aRemove['word_id']."]";
307                                 $x = $oDB->query($sSQL);
308                                 if (PEAR::isError($x))
309                                 {
310                                         var_dump($x);
311                                         exit;
312                                 }
313
314                                 foreach ($aPartitions as $sPartition)
315                                 {
316                                         $sSQL = "update search_name_".$sPartition." set";
317                                         $sSQL .= " name_vector = (name_vector - ".$aRemove['word_id'].")+".$iKeepID.",";
318                                         $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
319                                         $sSQL .= " where name_vector @> ARRAY[".$aRemove['word_id']."]";
320                                         $x = $oDB->query($sSQL);
321                                         if (PEAR::isError($x))
322                                         {
323                                                 var_dump($x);
324                                                 exit;
325                                         }
326
327                                         $sSQL = "update search_name_".$sPartition." set";
328                                         $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
329                                         $sSQL .= " where nameaddress_vector @> ARRAY[".$aRemove['word_id']."]";
330                                         $x = $oDB->query($sSQL);
331                                         if (PEAR::isError($x))
332                                         {
333                                                 var_dump($x);
334                                                 exit;
335                                         }
336
337                                         $sSQL = "update location_area_country set";
338                                         $sSQL .= " keywords = (keywords - ".$aRemove['word_id'].")+".$iKeepID;
339                                         $sSQL .= " where keywords @> ARRAY[".$aRemove['word_id']."]";
340                                         $x = $oDB->query($sSQL);
341                                         if (PEAR::isError($x))
342                                         {
343                                                 var_dump($x);
344                                                 exit;
345                                         }
346                                 }
347
348                                 $sSQL = "delete from word where word_id = ".$aRemove['word_id'];
349                                 $x = $oDB->query($sSQL);
350                                 if (PEAR::isError($x))
351                                 {
352                                         var_dump($x);
353                                         exit;
354                                 }
355                         }
356
357                 }
358         }
359
360         if ($aResult['index'])
361         {
362                 if (!isset($aResult['index-instances'])) $aResult['index-instances'] = 1;
363                 passthru(CONST_BasePath.'/nominatim/nominatim -i -d '.$aDSNInfo['database'].' -t '.$aResult['index-instances'].' -r '.$aResult['index-rank']);
364         }
365
366         if ($aResult['import-osmosis'] || $aResult['import-osmosis-all'])
367         {
368
369                 if (strpos(CONST_Replication_Url, 'download.geofabrik.de') !== false && CONST_Replication_Update_Interval < 86400) {
370                         echo "Error: Update interval too low for download.geofabrik.de.  Please check install documentation (http://wiki.openstreetmap.org/wiki/Nominatim/Installation#Updates)\n";
371                         exit;
372                 }
373
374                 $sImportFile = CONST_BasePath.'/data/osmosischange.osc';
375                 $sOsmosisCMD = CONST_Osmosis_Binary;
376                 $sOsmosisConfigDirectory = CONST_BasePath.'/settings';
377                 $sCMDDownload = $sOsmosisCMD.' --read-replication-interval workingDirectory='.$sOsmosisConfigDirectory.' --simplify-change --write-xml-change '.$sImportFile;
378                 $sCMDCheckReplicationLag = $sOsmosisCMD.' -q --read-replication-lag workingDirectory='.$sOsmosisConfigDirectory;
379                 $sCMDImport = $sOsm2pgsqlCmd.' '.$sImportFile;
380                 $sCMDIndex = $sBasePath.'/nominatim/nominatim -i -d '.$aDSNInfo['database'];
381                 if (!$aResult['no-npi']) {
382                         $sCMDIndex .= '-F ';
383                 }
384                 while(true)
385                 {
386                         $fStartTime = time();
387                         $iFileSize = 1001;
388
389                         // Logic behind this is that osm2pgsql locks the database quite a bit
390                         // So it is better to import lots of small files
391                         // But indexing works most efficiently on large amounts of data
392                         // So do lots of small imports and a BIG index
393
394 //                      while($aResult['import-osmosis-all'] && $iFileSize > 1000)
395 //                      {
396                                 if (!file_exists($sImportFile))
397                                 {
398                                         // First check if there are new updates published (except for minutelies - there's always new diffs to process)
399                                         if ( CONST_Replication_Update_Interval > 60 )
400                                         {
401
402                                                 unset($aReplicationLag);
403                                                 exec($sCMDCheckReplicationLag, $aReplicationLag, $iErrorLevel); 
404                                                 while ($iErrorLevel > 0 || $aReplicationLag[0] < 1)
405                                                 {
406                                                         if ($iErrorLevel)
407                                                         {
408                                                                 echo "Error: $iErrorLevel. ";
409                                                                 echo "Re-trying: ".$sCMDCheckReplicationLag." in ".CONST_Replication_Recheck_Interval." secs\n";
410                                                         }
411                                                         else
412                                                         {
413                                                                 echo ".";
414                                                         }
415                                                         sleep(CONST_Replication_Recheck_Interval);
416                                                         unset($aReplicationLag);
417                                                         exec($sCMDCheckReplicationLag, $aReplicationLag, $iErrorLevel); 
418                                                 }
419                                                 // There are new replication files - use osmosis to download the file
420                                                 echo "\nReplication Delay is ".$aReplicationLag[0]."\n";
421                                         }
422                                         $fCMDStartTime = time();
423                                         echo $sCMDDownload."\n";
424                                         exec($sCMDDownload, $sJunk, $iErrorLevel);
425                                         while ($iErrorLevel > 0)
426                                         {
427                                                 echo "Error: $iErrorLevel\n";
428                                                 sleep(60);
429                                                 echo 'Re-trying: '.$sCMDDownload."\n";
430                                                 exec($sCMDDownload, $sJunk, $iErrorLevel);
431                                         }
432                                         $iFileSize = filesize($sImportFile);
433                                         $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
434                                         echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
435                                         $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')";
436                                         $oDB->query($sSQL);
437                                 }
438
439                                 $iFileSize = filesize($sImportFile);
440                                 $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
441                 
442                                 // Import the file
443                                 $fCMDStartTime = time();
444                                 echo $sCMDImport."\n";
445                                 exec($sCMDImport, $sJunk, $iErrorLevel);
446                                 if ($iErrorLevel)
447                                 {
448                                         echo "Error: $iErrorLevel\n";
449                                         exit($iErrorLevel);
450                                 }
451                                 echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
452                                 $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')";
453                                 var_Dump($sSQL);
454                                 $oDB->query($sSQL);
455
456                                 // Archive for debug?
457                                 unlink($sImportFile);
458 //                      }
459
460                         $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
461
462                         // Index file
463                         if (!isset($aResult['index-instances']))
464                         {
465                                 if (getLoadAverage() < 15)
466                                         $iIndexInstances = 2;
467                                 else
468                                         $iIndexInstances = 1;
469                         } else
470                                 $iIndexInstances = $aResult['index-instances'];
471
472                         $sThisIndexCmd = $sCMDIndex.' -t '.$iIndexInstances;
473
474                         if (!$aResult['no-npi'])
475                         {
476                                 $fCMDStartTime = time();
477                                 $iFileID = $oDB->getOne('select nextval(\'file\')');
478                                 if (PEAR::isError($iFileID))
479                                 {
480                                         echo $iFileID->getMessage()."\n";
481                                         exit(-1);
482                                 } 
483                                 $sFileDir = CONST_BasePath.'/export/diff/';
484                                 $sFileDir .= str_pad(floor($iFileID/1000000), 3, '0', STR_PAD_LEFT);
485                                 $sFileDir .= '/'.str_pad(floor($iFileID/1000) % 1000, 3, '0', STR_PAD_LEFT);
486
487                                 if (!is_dir($sFileDir)) mkdir($sFileDir, 0777, true);
488                                 $sThisIndexCmd .= $sFileDir;
489                                 $sThisIndexCmd .= '/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT);
490                                 $sThisIndexCmd .= ".npi.out";
491
492                                 preg_match('#^([0-9]{4})-([0-9]{2})-([0-9]{2})#', $sBatchEnd, $aBatchMatch);
493                                 $sFileDir = CONST_BasePath.'/export/index/';
494                                 $sFileDir .= $aBatchMatch[1].'/'.$aBatchMatch[2];
495
496                                 if (!is_dir($sFileDir)) mkdir($sFileDir, 0777, true);
497                                 file_put_contents($sFileDir.'/'.$aBatchMatch[3].'.idx', "$sBatchEnd\t$iFileID\n", FILE_APPEND);
498                         }
499
500                         if (!$aResult['no-index'])
501                         {
502                                 echo "$sThisIndexCmd\n";
503                                 exec($sThisIndexCmd, $sJunk, $iErrorLevel);
504                                 if ($iErrorLevel)
505                                 {
506                                         echo "Error: $iErrorLevel\n";
507                                         exit($iErrorLevel);
508                                 }
509
510                                 if (!$aResult['no-npi'])
511                                 {
512                                         $sFileDir = CONST_BasePath.'/export/diff/';
513                                         $sFileDir .= str_pad(floor($iFileID/1000000), 3, '0', STR_PAD_LEFT);
514                                         $sFileDir .= '/'.str_pad(floor($iFileID/1000) % 1000, 3, '0', STR_PAD_LEFT);
515
516                                         $sThisIndexCmd = 'bzip2 -z9 '.$sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.out";
517                                         echo "$sThisIndexCmd\n";
518                                         exec($sThisIndexCmd, $sJunk, $iErrorLevel);
519                                         if ($iErrorLevel)
520                                         {
521                                                 echo "Error: $iErrorLevel\n";
522                                                 exit($iErrorLevel);
523                                         }
524
525                                         rename($sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.out.bz2",
526                                                 $sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.bz2");
527                                 }
528                         }
529
530                         echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
531                         $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')";
532                         $oDB->query($sSQL);
533
534                         $sSQL = "update import_status set lastimportdate = '$sBatchEnd'";
535                         $oDB->query($sSQL);
536
537                         $fDuration = time() - $fStartTime;
538                         echo "Completed for $sBatchEnd in ".round($fDuration/60,2)."\n";
539                         if (!$aResult['import-osmosis-all']) exit;
540
541                         if ( CONST_Replication_Update_Interval > 60 )
542                         {
543                                 $iSleep = max(0,(strtotime($sBatchEnd)+CONST_Replication_Update_Interval-time()));
544                         }
545                         else
546                         {
547                                 $iSleep = max(0,CONST_Replication_Update_Interval-$fDuration);
548                         }
549                         echo "Sleeping $iSleep seconds\n";
550                         sleep($iSleep);
551                 }
552
553         }
554
555         if ($aResult['import-npi-all'])
556         {
557                 $iNPIID = $oDB->getOne('select max(npiid) from import_npi_log');
558                 if (PEAR::isError($iNPIID))
559                 {
560                         var_dump($iNPIID);
561                         exit;
562                 }
563                 $sConfigDirectory = CONST_BasePath.'/settings';
564                 $sCMDImportTemplate = $sBasePath.'/nominatim/nominatim -d gazetteer -P 5433 -I -T '.$sBasePath.'/nominatim/partitionedtags.def -F ';
565                 while(true)
566                 {
567                         $fStartTime = time();
568
569                         $iNPIID++;
570
571                         $sImportFile = CONST_BasePath.'/export/diff/';
572                         $sImportFile .= str_pad(floor($iNPIID/1000000), 3, '0', STR_PAD_LEFT);
573                         $sImportFile .= '/'.str_pad(floor($iNPIID/1000) % 1000, 3, '0', STR_PAD_LEFT);
574                         $sImportFile .= '/'.str_pad($iNPIID % 1000, 3, '0', STR_PAD_LEFT);
575                         $sImportFile .= ".npi";
576                         while(!file_exists($sImportFile) && !file_exists($sImportFile.'.bz2'))
577                         {
578                                 echo "sleep (waiting for $sImportFile)\n";
579                                 sleep(10);
580                         }
581                         if (file_exists($sImportFile.'.bz2')) $sImportFile .= '.bz2';
582
583                         $iFileSize = filesize($sImportFile);
584                 
585                         // Import the file
586                         $fCMDStartTime = time();
587                         $sCMDImport = $sCMDImportTemplate . $sImportFile;
588                         echo $sCMDImport."\n";
589                         exec($sCMDImport, $sJunk, $iErrorLevel);
590                         if ($iErrorLevel)
591                         {
592                                 echo "Error: $iErrorLevel\n";
593                                 exit;
594                         }
595                         $sBatchEnd = $iNPIID;
596                         echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
597                         $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')";
598                         var_Dump($sSQL);
599                         $oDB->query($sSQL);
600                 }
601                 
602         }
603
604         function getosmosistimestamp($sOsmosisConfigDirectory)
605         {
606                 $sStateFile = file_get_contents($sOsmosisConfigDirectory.'/state.txt');
607                 preg_match('#timestamp=(.+)#', $sStateFile, $aResult);
608                 return str_replace('\:',':',$aResult[1]);
609         }