]> git.openstreetmap.org Git - nominatim.git/blob - lib/setup_functions.php
da66fc7d89813b509c36c7dcce3f479deef540bf
[nominatim.git] / lib / setup_functions.php
1 <?php\r
2 \r
3 function checkInFile($sOSMFile) {\r
4     if (!isset($sOSMFile)) {\r
5         fail('missing --osm-file for data import');\r
6     }\r
7 \r
8     if (!file_exists($sOSMFile)) {\r
9         fail('the path supplied to --osm-file does not exist');\r
10     }\r
11 \r
12     if (!is_readable($sOSMFile)) {\r
13         fail('osm-file "'.$aCMDResult['osm-file'].'" not readable');\r
14     }\r
15 }\r
16 \r
17 function checkModulePresence() {\r
18     // Try accessing the C module, so we know early if something is wrong\r
19     // and can simply error out.\r
20     $sModulePath = CONST_Database_Module_Path;\r
21     $sSQL = "CREATE FUNCTION nominatim_test_import_func(text) RETURNS text AS '";\r
22     $sSQL .= $sModulePath."/nominatim.so', 'transliteration' LANGUAGE c IMMUTABLE STRICT";\r
23     $sSQL .= ';DROP FUNCTION nominatim_test_import_func(text);';\r
24 \r
25     $oDB =& getDB();\r
26     $oResult = $oDB->query($sSQL);\r
27 \r
28     $bResult = true;\r
29 \r
30     if (PEAR::isError($oResult)) {\r
31         echo "\nERROR: Failed to load nominatim module. Reason:\n";\r
32         echo $oResult->userinfo."\n\n";\r
33         $bResult = false;\r
34     }\r
35 \r
36     return $bResult;\r
37 }\r
38 \r
39 function createSetupArgvArray() {\r
40     $aCMDOptions\r
41     = array(\r
42     'Create and setup nominatim search system',\r
43     array('help', 'h', 0, 1, 0, 0, false, 'Show Help'),\r
44     array('quiet', 'q', 0, 1, 0, 0, 'bool', 'Quiet output'),\r
45     array('verbose', 'v', 0, 1, 0, 0, 'bool', 'Verbose output'),\r
46 \r
47     array('osm-file', '', 0, 1, 1, 1, 'realpath', 'File to import'),\r
48     array('threads', '', 0, 1, 1, 1, 'int', 'Number of threads (where possible)'),\r
49 \r
50     array('all', '', 0, 1, 0, 0, 'bool', 'Do the complete process'),\r
51 \r
52     array('create-db', '', 0, 1, 0, 0, 'bool', 'Create nominatim db'),\r
53     array('setup-db', '', 0, 1, 0, 0, 'bool', 'Build a blank nominatim db'),\r
54     array('import-data', '', 0, 1, 0, 0, 'bool', 'Import a osm file'),\r
55     array('osm2pgsql-cache', '', 0, 1, 1, 1, 'int', 'Cache size used by osm2pgsql'),\r
56     array('create-functions', '', 0, 1, 0, 0, 'bool', 'Create functions'),\r
57     array('enable-diff-updates', '', 0, 1, 0, 0, 'bool', 'Turn on the code required to make diff updates work'),\r
58     array('enable-debug-statements', '', 0, 1, 0, 0, 'bool', 'Include debug warning statements in pgsql commands'),\r
59     array('ignore-errors', '', 0, 1, 0, 0, 'bool', 'Continue import even when errors in SQL are present (EXPERT)'),\r
60     array('create-tables', '', 0, 1, 0, 0, 'bool', 'Create main tables'),\r
61     array('create-partition-tables', '', 0, 1, 0, 0, 'bool', 'Create required partition tables'),\r
62     array('create-partition-functions', '', 0, 1, 0, 0, 'bool', 'Create required partition triggers'),\r
63     array('no-partitions', '', 0, 1, 0, 0, 'bool', 'Do not partition search indices (speeds up import of single country extracts)'),\r
64     array('import-wikipedia-articles', '', 0, 1, 0, 0, 'bool', 'Import wikipedia article dump'),\r
65     array('load-data', '', 0, 1, 0, 0, 'bool', 'Copy data to live tables from import table'),\r
66     array('disable-token-precalc', '', 0, 1, 0, 0, 'bool', 'Disable name precalculation (EXPERT)'),\r
67     array('import-tiger-data', '', 0, 1, 0, 0, 'bool', 'Import tiger data (not included in \'all\')'),\r
68     array('calculate-postcodes', '', 0, 1, 0, 0, 'bool', 'Calculate postcode centroids'),\r
69     array('osmosis-init', '', 0, 1, 0, 0, 'bool', 'Generate default osmosis configuration'),\r
70     array('index', '', 0, 1, 0, 0, 'bool', 'Index the data'),\r
71     array('index-noanalyse', '', 0, 1, 0, 0, 'bool', 'Do not perform analyse operations during index (EXPERT)'),\r
72     array('create-search-indices', '', 0, 1, 0, 0, 'bool', 'Create additional indices required for search and update'),\r
73     array('create-country-names', '', 0, 1, 0, 0, 'bool', 'Create default list of searchable country names'),\r
74     array('drop', '', 0, 1, 0, 0, 'bool', 'Drop tables needed for updates, making the database readonly (EXPERIMENTAL)'),\r
75     );\r
76     return $aCMDOptions;\r
77 }\r