]> 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         if (!isset($aDSNInfo['port']) || !$aDSNInfo['port']) $aDSNInfo['port'] = 5432;
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'].' -P '.$aDSNInfo['port'];
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
257                 $pgver = (float) CONST_Postgresql_Version;
258                 if ($pgver < 9.3) {
259                         echo "ERROR: deduplicate is only currently supported in postgresql 9.3";
260                         exit;
261                 }
262
263                 $oDB =& getDB();
264                 $sSQL = 'select partition from country_name order by country_code';
265                 $aPartitions = $oDB->getCol($sSQL);
266                 if (PEAR::isError($aPartitions))
267                 {
268                         fail($aPartitions->getMessage());
269                 }
270                 $aPartitions[] = 0;
271
272                 $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";
273                 $aDuplicateTokens = $oDB->getAll($sSQL);
274                 foreach($aDuplicateTokens as $aToken)
275                 {
276                         if (trim($aToken['word_token']) == '' || trim($aToken['word_token']) == '-') continue;
277                         echo "Deduping ".$aToken['word_token']."\n";
278                         $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";
279                         $aTokenSet = $oDB->getAll($sSQL);
280                         if (PEAR::isError($aTokenSet))
281                         {
282                                 var_dump($aTokenSet, $sSQL);
283                                 exit;
284                         }
285
286                         $aKeep = array_shift($aTokenSet);
287                         $iKeepID = $aKeep['word_id'];
288
289                         foreach($aTokenSet as $aRemove)
290                         {
291                                 $sSQL = "update search_name set";
292                                 $sSQL .= " name_vector = array_replace(name_vector,".$aRemove['word_id'].",".$iKeepID."),";
293                                 $sSQL .= " nameaddress_vector = array_replace(nameaddress_vector,".$aRemove['word_id'].",".$iKeepID.")";
294                                 $sSQL .= " where name_vector @> ARRAY[".$aRemove['word_id']."]";
295                                 $x = $oDB->query($sSQL);
296                                 if (PEAR::isError($x))
297                                 {
298                                         var_dump($x);
299                                         exit;
300                                 }
301
302                                 $sSQL = "update search_name set";
303                                 $sSQL .= " nameaddress_vector = array_replace(nameaddress_vector,".$aRemove['word_id'].",".$iKeepID.")";
304                                 $sSQL .= " where nameaddress_vector @> ARRAY[".$aRemove['word_id']."]";
305                                 $x = $oDB->query($sSQL);
306                                 if (PEAR::isError($x))
307                                 {
308                                         var_dump($x);
309                                         exit;
310                                 }
311
312                                 $sSQL = "update location_area_country set";
313                                 $sSQL .= " keywords = array_replace(keywords,".$aRemove['word_id'].",".$iKeepID.")";
314                                 $sSQL .= " where keywords @> ARRAY[".$aRemove['word_id']."]";
315                                 $x = $oDB->query($sSQL);
316                                 if (PEAR::isError($x))
317                                 {
318                                         var_dump($x);
319                                         exit;
320                                 }
321
322                                 foreach ($aPartitions as $sPartition)
323                                 {
324                                         $sSQL = "update search_name_".$sPartition." set";
325                                         $sSQL .= " name_vector = array_replace(name_vector,".$aRemove['word_id'].",".$iKeepID.")";
326                                         $sSQL .= " where name_vector @> ARRAY[".$aRemove['word_id']."]";
327                                         $x = $oDB->query($sSQL);
328                                         if (PEAR::isError($x))
329                                         {
330                                                 var_dump($x);
331                                                 exit;
332                                         }
333
334                                         $sSQL = "update location_area_country set";
335                                         $sSQL .= " keywords = array_replace(keywords,".$aRemove['word_id'].",".$iKeepID.")";
336                                         $sSQL .= " where keywords @> ARRAY[".$aRemove['word_id']."]";
337                                         $x = $oDB->query($sSQL);
338                                         if (PEAR::isError($x))
339                                         {
340                                                 var_dump($x);
341                                                 exit;
342                                         }
343                                 }
344
345                                 $sSQL = "delete from word where word_id = ".$aRemove['word_id'];
346                                 $x = $oDB->query($sSQL);
347                                 if (PEAR::isError($x))
348                                 {
349                                         var_dump($x);
350                                         exit;
351                                 }
352                         }
353
354                 }
355         }
356
357         if ($aResult['index'])
358         {
359                 if (!isset($aResult['index-instances'])) $aResult['index-instances'] = 1;
360                 passthru(CONST_BasePath.'/nominatim/nominatim -i -d '.$aDSNInfo['database'].' -P '.$aDSNInfo['port'].' -t '.$aResult['index-instances'].' -r '.$aResult['index-rank']);
361         }
362
363         if ($aResult['import-osmosis'] || $aResult['import-osmosis-all'])
364         {
365
366                 if (strpos(CONST_Replication_Url, 'download.geofabrik.de') !== false && CONST_Replication_Update_Interval < 86400) {
367                         echo "Error: Update interval too low for download.geofabrik.de.  Please check install documentation (http://wiki.openstreetmap.org/wiki/Nominatim/Installation#Updates)\n";
368                         exit;
369                 }
370
371                 $sImportFile = CONST_BasePath.'/data/osmosischange.osc';
372                 $sOsmosisCMD = CONST_Osmosis_Binary;
373                 $sOsmosisConfigDirectory = CONST_BasePath.'/settings';
374                 $sCMDDownload = $sOsmosisCMD.' --read-replication-interval workingDirectory='.$sOsmosisConfigDirectory.' --simplify-change --write-xml-change '.$sImportFile;
375                 $sCMDCheckReplicationLag = $sOsmosisCMD.' -q --read-replication-lag workingDirectory='.$sOsmosisConfigDirectory;
376                 $sCMDImport = $sOsm2pgsqlCmd.' '.$sImportFile;
377                 $sCMDIndex = $sBasePath.'/nominatim/nominatim -i -d '.$aDSNInfo['database'].' -P '.$aDSNInfo['port'];
378                 if (!$aResult['no-npi']) {
379                         $sCMDIndex .= '-F ';
380                 }
381                 while(true)
382                 {
383                         $fStartTime = time();
384                         $iFileSize = 1001;
385
386                         // Logic behind this is that osm2pgsql locks the database quite a bit
387                         // So it is better to import lots of small files
388                         // But indexing works most efficiently on large amounts of data
389                         // So do lots of small imports and a BIG index
390
391 //                      while($aResult['import-osmosis-all'] && $iFileSize > 1000)
392 //                      {
393                                 if (!file_exists($sImportFile))
394                                 {
395                                         // First check if there are new updates published (except for minutelies - there's always new diffs to process)
396                                         if ( CONST_Replication_Update_Interval > 60 )
397                                         {
398
399                                                 unset($aReplicationLag);
400                                                 exec($sCMDCheckReplicationLag, $aReplicationLag, $iErrorLevel); 
401                                                 while ($iErrorLevel > 0 || $aReplicationLag[0] < 1)
402                                                 {
403                                                         if ($iErrorLevel)
404                                                         {
405                                                                 echo "Error: $iErrorLevel. ";
406                                                                 echo "Re-trying: ".$sCMDCheckReplicationLag." in ".CONST_Replication_Recheck_Interval." secs\n";
407                                                         }
408                                                         else
409                                                         {
410                                                                 echo ".";
411                                                         }
412                                                         sleep(CONST_Replication_Recheck_Interval);
413                                                         unset($aReplicationLag);
414                                                         exec($sCMDCheckReplicationLag, $aReplicationLag, $iErrorLevel); 
415                                                 }
416                                                 // There are new replication files - use osmosis to download the file
417                                                 echo "\n".date('Y-m-d H:i:s')." Replication Delay is ".$aReplicationLag[0]."\n";
418                                         }
419                                         $fStartTime = time();
420                                         $fCMDStartTime = time();
421                                         echo $sCMDDownload."\n";
422                                         exec($sCMDDownload, $sJunk, $iErrorLevel);
423                                         while ($iErrorLevel > 0)
424                                         {
425                                                 echo "Error: $iErrorLevel\n";
426                                                 sleep(60);
427                                                 echo 'Re-trying: '.$sCMDDownload."\n";
428                                                 exec($sCMDDownload, $sJunk, $iErrorLevel);
429                                         }
430                                         $iFileSize = filesize($sImportFile);
431                                         $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
432                                         $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')";
433                                         var_Dump($sSQL);
434                                         $oDB->query($sSQL);
435                                         echo date('Y-m-d H:i:s')." Completed osmosis step for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
436                                 }
437
438                                 $iFileSize = filesize($sImportFile);
439                                 $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
440                 
441                                 // Import the file
442                                 $fCMDStartTime = time();
443                                 echo $sCMDImport."\n";
444                                 exec($sCMDImport, $sJunk, $iErrorLevel);
445                                 if ($iErrorLevel)
446                                 {
447                                         echo "Error: $iErrorLevel\n";
448                                         exit($iErrorLevel);
449                                 }
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')."','osm2pgsql')";
451                                 var_Dump($sSQL);
452                                 $oDB->query($sSQL);
453                                 echo date('Y-m-d H:i:s')." Completed osm2pgsql step for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
454
455                                 // Archive for debug?
456                                 unlink($sImportFile);
457 //                      }
458
459                         $sBatchEnd = getosmosistimestamp($sOsmosisConfigDirectory);
460
461                         // Index file
462                         if (!isset($aResult['index-instances']))
463                         {
464                                 if (getLoadAverage() < 24)
465                                         $iIndexInstances = 2;
466                                 else
467                                         $iIndexInstances = 1;
468                         } else
469                                 $iIndexInstances = $aResult['index-instances'];
470
471                         $sThisIndexCmd = $sCMDIndex.' -t '.$iIndexInstances;
472                         $fCMDStartTime = time();
473
474                         if (!$aResult['no-npi'])
475                         {
476                                 $iFileID = $oDB->getOne('select nextval(\'file\')');
477                                 if (PEAR::isError($iFileID))
478                                 {
479                                         echo $iFileID->getMessage()."\n";
480                                         exit(-1);
481                                 } 
482                                 $sFileDir = CONST_BasePath.'/export/diff/';
483                                 $sFileDir .= str_pad(floor($iFileID/1000000), 3, '0', STR_PAD_LEFT);
484                                 $sFileDir .= '/'.str_pad(floor($iFileID/1000) % 1000, 3, '0', STR_PAD_LEFT);
485
486                                 if (!is_dir($sFileDir)) mkdir($sFileDir, 0777, true);
487                                 $sThisIndexCmd .= $sFileDir;
488                                 $sThisIndexCmd .= '/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT);
489                                 $sThisIndexCmd .= ".npi.out";
490
491                                 preg_match('#^([0-9]{4})-([0-9]{2})-([0-9]{2})#', $sBatchEnd, $aBatchMatch);
492                                 $sFileDir = CONST_BasePath.'/export/index/';
493                                 $sFileDir .= $aBatchMatch[1].'/'.$aBatchMatch[2];
494
495                                 if (!is_dir($sFileDir)) mkdir($sFileDir, 0777, true);
496                                 file_put_contents($sFileDir.'/'.$aBatchMatch[3].'.idx', "$sBatchEnd\t$iFileID\n", FILE_APPEND);
497                         }
498
499                         if (!$aResult['no-index'])
500                         {
501                                 echo "$sThisIndexCmd\n";
502                                 exec($sThisIndexCmd, $sJunk, $iErrorLevel);
503                                 if ($iErrorLevel)
504                                 {
505                                         echo "Error: $iErrorLevel\n";
506                                         exit($iErrorLevel);
507                                 }
508
509                                 if (!$aResult['no-npi'])
510                                 {
511                                         $sFileDir = CONST_BasePath.'/export/diff/';
512                                         $sFileDir .= str_pad(floor($iFileID/1000000), 3, '0', STR_PAD_LEFT);
513                                         $sFileDir .= '/'.str_pad(floor($iFileID/1000) % 1000, 3, '0', STR_PAD_LEFT);
514
515                                         $sThisIndexCmd = 'bzip2 -z9 '.$sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.out";
516                                         echo "$sThisIndexCmd\n";
517                                         exec($sThisIndexCmd, $sJunk, $iErrorLevel);
518                                         if ($iErrorLevel)
519                                         {
520                                                 echo "Error: $iErrorLevel\n";
521                                                 exit($iErrorLevel);
522                                         }
523
524                                         rename($sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.out.bz2",
525                                                 $sFileDir.'/'.str_pad($iFileID % 1000, 3, '0', STR_PAD_LEFT).".npi.bz2");
526                                 }
527                         }
528
529                         $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')";
530                         var_Dump($sSQL);
531                         $oDB->query($sSQL);
532                         echo date('Y-m-d H:i:s')." Completed index step for $sBatchEnd in ".round((time()-$fCMDStartTime)/60,2)." minutes\n";
533
534                         $sSQL = "update import_status set lastimportdate = '$sBatchEnd'";
535                         $oDB->query($sSQL);
536
537                         $fDuration = time() - $fStartTime;
538                         echo date('Y-m-d H:i:s')." Completed all for $sBatchEnd in ".round($fDuration/60,2)." minutes\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 date('Y-m-d H:i:s')." 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         }