]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/setup_functions.php
configure osm2pgsql and module location via cmake
[nominatim.git] / lib / setup_functions.php
index 43f30a090dfff4939f4f511e786e2615d467c1c1..dab6a8e73e399f09d8682085f15ea2335f6bb7f6 100755 (executable)
@@ -15,17 +15,18 @@ function checkInFile($sOSMFile)
     }
 }
 
-function checkModulePresence()
+function getOsm2pgsqlBinary()
 {
-    // Try accessing the C module, so we know early if something is wrong.
-    // Raises Nominatim\DatabaseError on failure
+    return getSetting('OSM2PGSQL_BINARY', CONST_Default_Osm2pgsql);
+}
+
+function getImportStyle()
+{
+    $sStyle = getSetting('IMPORT_STYLE');
 
-    $sModulePath = CONST_Database_Module_Path;
-    $sSQL = "CREATE FUNCTION nominatim_test_import_func(text) RETURNS text AS '";
-    $sSQL .= $sModulePath . "/nominatim.so', 'transliteration' LANGUAGE c IMMUTABLE STRICT";
-    $sSQL .= ';DROP FUNCTION nominatim_test_import_func(text);';
+    if (in_array($sStyle, array('admin', 'street', 'address', 'full', 'extratags'))) {
+        return CONST_DataDir.'/settings/import-'.$sStyle.'.style';
+    }
 
-    $oDB = new \Nominatim\DB();
-    $oDB->connect();
-    $oDB->exec($sSQL, null, 'Database server failed to load '.$sModulePath.'/nominatim.so module');
+    return $sStyle;
 }