]> git.openstreetmap.org Git - nominatim.git/blob - utils/update.php
dont include polling time for batch duration for non-minutely updates, log name of...
[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-instances'])) $aResult['index-instances'] = 1;
51         if (!isset($aResult['index-rank'])) $aResult['index-rank'] = 0;
52
53 /*
54         // Lock to prevent multiple copies running
55         if (exec('/bin/ps uww | grep '.basename(__FILE__).' | grep -v /dev/null | grep -v grep -c', $aOutput2, $iResult) > 1)
56         {
57                 echo "Copy already running\n";
58                 exit;
59         }
60         if (!isset($aResult['max-load'])) $aResult['max-load'] = 1.9;
61         if (!isset($aResult['max-blocking'])) $aResult['max-blocking'] = 3;
62         if (getBlockingProcesses() > $aResult['max-blocking'])
63         {
64                 echo "Too many blocking processes for import\n";
65                 exit;
66         }
67 */
68
69         // Assume osm2pgsql is in the folder above
70         $sBasePath = dirname(dirname(__FILE__));
71
72         date_default_timezone_set('Etc/UTC');
73
74         $oDB =& getDB();
75
76         $aDSNInfo = DB::parseDSN(CONST_Database_DSN);
77
78         // cache memory to be used by osm2pgsql, should not be more than the available memory
79         $iCacheMemory = (isset($aResult['osm2pgsql-cache'])?$aResult['osm2pgsql-cache']:2000);
80         if ($iCacheMemory + 500 > getTotalMemoryMB())
81         {
82                 $iCacheMemory = getCacheMemoryMB();
83                 echo "WARNING: resetting cache memory to $iCacheMemory\n";
84         }
85         $sOsm2pgsqlCmd = CONST_Osm2pgsql_Binary.' -klas -C '.$iCacheMemory.' -O gazetteer -d '.$aDSNInfo['database'];
86         if (!is_null(CONST_Osm2pgsql_Flatnode_File))
87         {
88                 $sOsm2pgsqlCmd .= ' --flat-nodes '.CONST_Osm2pgsql_Flatnode_File;
89         }
90
91
92         $bFirst = true;
93         $bContinue = $aResult['import-all'];
94         while ($bContinue || $bFirst)
95         {
96                 $bFirst = false;
97
98                 if ($aResult['import-hourly'])
99                 {
100                         // Mirror the hourly diffs
101                         exec('wget --quiet --mirror -l 1 -P '.$sMirrorDir.' http://planet.openstreetmap.org/hourly');
102                         $sNextFile = $oDB->getOne('select TO_CHAR(lastimportdate,\'YYYYMMDDHH24\')||\'-\'||TO_CHAR(lastimportdate+\'1 hour\'::interval,\'YYYYMMDDHH24\')||\'.osc.gz\' from import_status');
103                         $sNextFile = $sMirrorDir.'planet.openstreetmap.org/hourly/'.$sNextFile;
104                         $sUpdateSQL = 'update import_status set lastimportdate = lastimportdate+\'1 hour\'::interval';
105                 }
106
107                 if ($aResult['import-daily'])
108                 {
109                         // Mirror the daily diffs
110                         exec('wget --quiet --mirror -l 1 -P '.$sMirrorDir.' http://planet.openstreetmap.org/daily');
111                         $sNextFile = $oDB->getOne('select TO_CHAR(lastimportdate,\'YYYYMMDD\')||\'-\'||TO_CHAR(lastimportdate+\'1 day\'::interval,\'YYYYMMDD\')||\'.osc.gz\' from import_status');
112                         $sNextFile = $sMirrorDir.'planet.openstreetmap.org/daily/'.$sNextFile;
113                         $sUpdateSQL = 'update import_status set lastimportdate = lastimportdate::date + 1';
114                 }
115                 
116                 if (isset($aResult['import-diff']))
117                 {
118                         // import diff directly (e.g. from osmosis --rri)
119                         $sNextFile = $aResult['import-diff'];
120                         if (!file_exists($sNextFile))
121                         {
122                                 echo "Cannot open $sNextFile\n";
123                                 exit;
124                         }
125                         // Don't update the import status - we don't know what this file contains
126                         $sUpdateSQL = 'update import_status set lastimportdate = now() where false';
127                 }
128
129                 // Missing file is not an error - it might not be created yet
130                 if (($aResult['import-hourly'] || $aResult['import-daily'] || isset($aResult['import-diff'])) && file_exists($sNextFile))
131                 {
132                         // Import the file
133                         $sCMD = $sOsm2pgsqlCmd.' '.$sNextFile;
134                         echo $sCMD."\n";
135                         exec($sCMD, $sJunk, $iErrorLevel);
136
137                         if ($iErrorLevel)
138                         {
139                                 echo "Error from osm2pgsql, $iErrorLevel\n";
140                                 exit;
141                         }
142         
143                         // Move the date onwards
144                         $oDB->query($sUpdateSQL);
145                 }
146                 else
147                 {
148                         $bContinue = false;
149                 }
150         }
151
152         $bModifyXML = false;
153         $sModifyXMLstr = '';
154         $bUseOSMApi = isset($aResult['import-from-main-api']) && $aResult['import-from-main-api'];
155         if (isset($aResult['import-file']) && $aResult['import-file'])
156         {
157                 $bModifyXML = true;
158         }
159         if (isset($aResult['import-node']) && $aResult['import-node'])
160         {
161                 $bModifyXML = true;
162                 if ($bUseOSMApi)
163                 {
164                         $sModifyXMLstr = file_get_contents('http://www.openstreetmap.org/api/0.6/node/'.$aResult['import-node']);
165                 }
166                 else
167                 {
168                         $sModifyXMLstr = file_get_contents('http://overpass-api.de/api/interpreter?data=node('.$aResult['import-node'].');out%20meta;');
169                 }
170         }
171         if (isset($aResult['import-way']) && $aResult['import-way'])
172         {
173                 $bModifyXML = true;
174                 if ($bUseOSMApi)
175                 {
176                         $sCmd = 'http://www.openstreetmap.org/api/0.6/way/'.$aResult['import-way'].'/full';
177                 }
178                 else
179                 {
180                         $sCmd = 'http://overpass-api.de/api/interpreter?data=(way('.$aResult['import-way'].');node(w););out%20meta;';
181                 }
182                 $sModifyXMLstr = file_get_contents($sCmd);
183         }
184         if (isset($aResult['import-relation']) && $aResult['import-relation'])
185         {
186                 $bModifyXML = true;
187                 if ($bUseOSMApi)
188                 {
189                         $sModifyXMLstr = file_get_contents('http://www.openstreetmap.org/api/0.6/relation/'.$aResult['import-relation'].'/full');
190                 }
191                 else
192                 {
193                         $sModifyXMLstr = file_get_contents('http://overpass-api.de/api/interpreter?data=((rel('.$aResult['import-relation'].');way(r);node(w));node(r));out%20meta;');
194                 }
195         }
196         if ($bModifyXML)
197         {
198                 // derive change from normal osm file with osmosis
199                 $sTemporaryFile = CONST_BasePath.'/data/osmosischange.osc';
200                 if (isset($aResult['import-file']) && $aResult['import-file'])
201                 {
202                         $sCMD = CONST_Osmosis_Binary.' --read-xml \''.$aResult['import-file'].'\' --read-empty --derive-change --write-xml-change '.$sTemporaryFile;
203                         echo $sCMD."\n";
204                         exec($sCMD, $sJunk, $iErrorLevel);
205                         if ($iErrorLevel)
206                         {
207                                 echo "Error converting osm to osc, osmosis returned: $iErrorLevel\n";
208                                 exit;
209                         }
210                 }
211                 else
212                 {
213                         $aSpec = array(
214                                 0 => array("pipe", "r"),  // stdin
215                                 1 => array("pipe", "w"),  // stdout
216                                 2 => array("pipe", "w") // stderr
217                         );
218                         $sCMD = CONST_Osmosis_Binary.' --read-xml - --read-empty --derive-change --write-xml-change '.$sTemporaryFile;
219                         echo $sCMD."\n";
220                         $hProc = proc_open($sCMD, $aSpec, $aPipes);
221                         if (!is_resource($hProc))
222                         {
223                                 echo "Error converting osm to osc, osmosis failed\n";
224                                 exit;
225                         }
226                         fwrite($aPipes[0], $sModifyXMLstr);
227                         fclose($aPipes[0]);
228                         $sOut = stream_get_contents($aPipes[1]);
229                         if ($aResult['verbose']) echo $sOut;
230                         fclose($aPipes[1]);
231                         $sErrors = stream_get_contents($aPipes[2]);
232                         if ($aResult['verbose']) echo $sErrors;
233                         fclose($aPipes[2]);
234                         if ($iError = proc_close($hProc))
235                         {
236                                 echo "Error converting osm to osc, osmosis returned: $iError\n";
237                                 echo $sOut;
238                                 echo $sErrors;
239                                 exit;
240                         }
241                 }
242
243                 // import generated change file
244                 $sCMD = $sOsm2pgsqlCmd.' '.$sTemporaryFile;
245                 echo $sCMD."\n";
246                 exec($sCMD, $sJunk, $iErrorLevel);
247                 if ($iErrorLevel)
248                 {
249                         echo "osm2pgsql exited with error level $iErrorLevel\n";
250                         exit;
251                 }
252         }
253
254         if ($aResult['deduplicate'])
255         {
256                 $oDB =& getDB();
257                 $sSQL = 'select partition from country_name order by country_code';
258                 $aPartitions = $oDB->getCol($sSQL);
259                 if (PEAR::isError($aPartitions))
260                 {
261                         fail($aPartitions->getMessage());
262                 }
263                 $aPartitions[] = 0;
264
265                 $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";
266                 $aDuplicateTokens = $oDB->getAll($sSQL);
267                 foreach($aDuplicateTokens as $aToken)
268                 {
269                         if (trim($aToken['word_token']) == '' || trim($aToken['word_token']) == '-') continue;
270                         echo "Deduping ".$aToken['word_token']."\n";
271                         $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";
272                         $aTokenSet = $oDB->getAll($sSQL);
273                         if (PEAR::isError($aTokenSet))
274                         {
275                                 var_dump($aTokenSet, $sSQL);
276                                 exit;
277                         }
278                         
279                         $aKeep = array_shift($aTokenSet);
280                         $iKeepID = $aKeep['word_id'];
281
282                         foreach($aTokenSet as $aRemove)
283                         {
284                                 $sSQL = "update search_name set";
285                                 $sSQL .= " name_vector = (name_vector - ".$aRemove['word_id'].")+".$iKeepID.",";
286                                 $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
287                                 $sSQL .= " where name_vector @> ARRAY[".$aRemove['word_id']."]";
288                                 $x = $oDB->query($sSQL);
289                                 if (PEAR::isError($x))
290                                 {
291                                         var_dump($x);
292                                         exit;
293                                 }
294
295                                 $sSQL = "update search_name set";
296                                 $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
297                                 $sSQL .= " where nameaddress_vector @> ARRAY[".$aRemove['word_id']."]";
298                                 $x = $oDB->query($sSQL);
299                                 if (PEAR::isError($x))
300                                 {
301                                         var_dump($x);
302                                         exit;
303                                 }
304
305                                 $sSQL = "update location_area_country set";
306                                 $sSQL .= " keywords = (keywords - ".$aRemove['word_id'].")+".$iKeepID;
307                                 $sSQL .= " where keywords @> ARRAY[".$aRemove['word_id']."]";
308                                 $x = $oDB->query($sSQL);
309                                 if (PEAR::isError($x))
310                                 {
311                                         var_dump($x);
312                                         exit;
313                                 }
314
315                                 foreach ($aPartitions as $sPartition)
316                                 {
317                                         $sSQL = "update search_name_".$sPartition." set";
318                                         $sSQL .= " name_vector = (name_vector - ".$aRemove['word_id'].")+".$iKeepID.",";
319                                         $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
320                                         $sSQL .= " where name_vector @> ARRAY[".$aRemove['word_id']."]";
321                                         $x = $oDB->query($sSQL);
322                                         if (PEAR::isError($x))
323                                         {
324                                                 var_dump($x);
325                                                 exit;
326                                         }
327
328                                         $sSQL = "update search_name_".$sPartition." set";
329                                         $sSQL .= " nameaddress_vector = (nameaddress_vector - ".$aRemove['word_id'].")+".$iKeepID;
330                                         $sSQL .= " where nameaddress_vector @> ARRAY[".$aRemove['word_id']."]";
331                                         $x = $oDB->query($sSQL);
332                                         if (PEAR::isError($x))
333                                         {
334                                                 var_dump($x);
335                                                 exit;
336                                         }
337
338                                         $sSQL = "update location_area_country set";
339                                         $sSQL .= " keywords = (keywords - ".$aRemove['word_id'].")+".$iKeepID;
340                                         $sSQL .= " where keywords @> ARRAY[".$aRemove['word_id']."]";
341                                         $x = $oDB->query($sSQL);
342                                         if (PEAR::isError($x))
343                                         {
344                                                 var_dump($x);
345                                                 exit;
346                                         }
347                                 }
348
349                                 $sSQL = "delete from word where word_id = ".$aRemove['word_id'];
350                                 $x = $oDB->query($sSQL);
351                                 if (PEAR::isError($x))
352                                 {
353                                         var_dump($x);
354                                         exit;
355                                 }
356                         }
357
358                 }
359         }
360
361         if ($aResult['index'])
362         {
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'].' -t '.$aResult['index-instances'];
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 "\n".date('Y-m-d H:i:s')." Replication Delay is ".$aReplicationLag[0]."\n";
421                                         }
422                                         $fStartTime = time();
423                                         $fCMDStartTime = time();
424                                         echo $sCMDDownload."\n";
425                                         exec($sCMDDownload, $sJunk, $iErrorLevel);
426                                         while ($iErrorLevel > 0)
427                                         {
428                                                 echo "Error: $iErrorLevel\n";
429                                                 sleep(60);
430                                                 echo 'Re-trying: '.$sCMDDownload."\n";
431                                                 exec($sCMDDownload, $sJunk, $iErrorLevel);
432                                         }
433                                         $iFileSize = filesize($sImportFile);
434                                         $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
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                                         var_Dump($sSQL);
437                                         $oDB->query($sSQL);
438                                         echo date('Y-m-d H:i:s')." Completed osmosis step for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
439                                 }
440
441                                 $iFileSize = filesize($sImportFile);
442                                 $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
443                 
444                                 // Import the file
445                                 $fCMDStartTime = time();
446                                 echo $sCMDImport."\n";
447                                 exec($sCMDImport, $sJunk, $iErrorLevel);
448                                 if ($iErrorLevel)
449                                 {
450                                         echo "Error: $iErrorLevel\n";
451                                         exit($iErrorLevel);
452                                 }
453                                 $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')";
454                                 var_Dump($sSQL);
455                                 $oDB->query($sSQL);
456                                 echo date('Y-m-d H:i:s')." Completed osm2pgsql step for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
457
458                                 // Archive for debug?
459                                 unlink($sImportFile);
460 //                      }
461
462                         $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
463
464                         // Index file
465                         $sThisIndexCmd = $sCMDIndex;
466                         $fCMDStartTime = time();
467
468                         if (!$aResult['no-npi'])
469                         {
470                                 $iFileID = $oDB->getOne('select nextval(\'file\')');
471                                 if (PEAR::isError($iFileID))
472                                 {
473                                         echo $iFileID->getMessage()."\n";
474                                         exit(-1);
475                                 } 
476                                 $sFileDir = CONST_BasePath.'/export/diff/';
477                                 $sFileDir .= str_pad(floor($iFileID/1000000), 3, '0', STR_PAD_LEFT);
478                                 $sFileDir .= '/'.str_pad(floor($iFileID/1000) % 1000, 3, '0', STR_PAD_LEFT);
479
480                                 if (!is_dir($sFileDir)) mkdir($sFileDir, 0777, true);
481                                 $sThisIndexCmd .= $sFileDir;
482                                 $sThisIndexCmd .= '/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT);
483                                 $sThisIndexCmd .= ".npi.out";
484
485                                 preg_match('#^([0-9]{4})-([0-9]{2})-([0-9]{2})#', $sBatchEnd, $aBatchMatch);
486                                 $sFileDir = CONST_BasePath.'/export/index/';
487                                 $sFileDir .= $aBatchMatch[1].'/'.$aBatchMatch[2];
488
489                                 if (!is_dir($sFileDir)) mkdir($sFileDir, 0777, true);
490                                 file_put_contents($sFileDir.'/'.$aBatchMatch[3].'.idx', "$sBatchEnd\t$iFileID\n", FILE_APPEND);
491                         }
492
493                         if (!$aResult['no-index'])
494                         {
495                                 echo "$sThisIndexCmd\n";
496                                 exec($sThisIndexCmd, $sJunk, $iErrorLevel);
497                                 if ($iErrorLevel)
498                                 {
499                                         echo "Error: $iErrorLevel\n";
500                                         exit($iErrorLevel);
501                                 }
502
503                                 if (!$aResult['no-npi'])
504                                 {
505                                         $sFileDir = CONST_BasePath.'/export/diff/';
506                                         $sFileDir .= str_pad(floor($iFileID/1000000), 3, '0', STR_PAD_LEFT);
507                                         $sFileDir .= '/'.str_pad(floor($iFileID/1000) % 1000, 3, '0', STR_PAD_LEFT);
508
509                                         $sThisIndexCmd = 'bzip2 -z9 '.$sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.out";
510                                         echo "$sThisIndexCmd\n";
511                                         exec($sThisIndexCmd, $sJunk, $iErrorLevel);
512                                         if ($iErrorLevel)
513                                         {
514                                                 echo "Error: $iErrorLevel\n";
515                                                 exit($iErrorLevel);
516                                         }
517
518                                         rename($sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.out.bz2",
519                                                 $sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.bz2");
520                                 }
521                         }
522
523                         $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')";
524                         var_Dump($sSQL);
525                         $oDB->query($sSQL);
526                         echo date('Y-m-d H:i:s')." Completed index step for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
527
528                         $sSQL = "update import_status set lastimportdate = '$sBatchEnd'";
529                         $oDB->query($sSQL);
530
531                         $fDuration = time() - $fStartTime;
532                         echo date('Y-m-d H:i:s')." Completed all for $sBatchEnd in ".round($fDuration/60,2)." minutes\n";
533                         if (!$aResult['import-osmosis-all']) exit;
534
535                         if ( CONST_Replication_Update_Interval > 60 )
536                         {
537                                 $iSleep = max(0,(strtotime($sBatchEnd)+CONST_Replication_Update_Interval-time()));
538                         }
539                         else
540                         {
541                                 $iSleep = max(0,CONST_Replication_Update_Interval-$fDuration);
542                         }
543                         echo date('Y-m-d H:i:s')." Sleeping $iSleep seconds\n";
544                         sleep($iSleep);
545                 }
546
547         }
548
549         if ($aResult['import-npi-all'])
550         {
551                 $iNPIID = $oDB->getOne('select max(npiid) from import_npi_log');
552                 if (PEAR::isError($iNPIID))
553                 {
554                         var_dump($iNPIID);
555                         exit;
556                 }
557                 $sConfigDirectory = CONST_BasePath.'/settings';
558                 $sCMDImportTemplate = $sBasePath.'/nominatim/nominatim -d gazetteer -P 5433 -I -T '.$sBasePath.'/nominatim/partitionedtags.def -F ';
559                 while(true)
560                 {
561                         $fStartTime = time();
562
563                         $iNPIID++;
564
565                         $sImportFile = CONST_BasePath.'/export/diff/';
566                         $sImportFile .= str_pad(floor($iNPIID/1000000), 3, '0', STR_PAD_LEFT);
567                         $sImportFile .= '/'.str_pad(floor($iNPIID/1000) % 1000, 3, '0', STR_PAD_LEFT);
568                         $sImportFile .= '/'.str_pad($iNPIID % 1000, 3, '0', STR_PAD_LEFT);
569                         $sImportFile .= ".npi";
570                         while(!file_exists($sImportFile) && !file_exists($sImportFile.'.bz2'))
571                         {
572                                 echo "sleep (waiting for $sImportFile)\n";
573                                 sleep(10);
574                         }
575                         if (file_exists($sImportFile.'.bz2')) $sImportFile .= '.bz2';
576
577                         $iFileSize = filesize($sImportFile);
578                 
579                         // Import the file
580                         $fCMDStartTime = time();
581                         $sCMDImport = $sCMDImportTemplate . $sImportFile;
582                         echo $sCMDImport."\n";
583                         exec($sCMDImport, $sJunk, $iErrorLevel);
584                         if ($iErrorLevel)
585                         {
586                                 echo "Error: $iErrorLevel\n";
587                                 exit;
588                         }
589                         $sBatchEnd = $iNPIID;
590                         echo "Completed for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
591                         $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')";
592                         var_Dump($sSQL);
593                         $oDB->query($sSQL);
594                 }
595                 
596         }
597
598         function getosmosistimestamp($sOsmosisConfigDirectory)
599         {
600                 $sStateFile = file_get_contents($sOsmosisConfigDirectory.'/state.txt');
601                 preg_match('#timestamp=(.+)#', $sStateFile, $aResult);
602                 return str_replace('\:',':',$aResult[1]);
603         }