]> git.openstreetmap.org Git - nominatim.git/blob - utils/setup.php
95ad799259315c30afcd9865dac929dd1fc46a54
[nominatim.git] / utils / setup.php
1 <?php
2
3 require_once(CONST_LibDir.'/init-cmd.php');
4 require_once(CONST_LibDir.'/setup/SetupClass.php');
5 require_once(CONST_LibDir.'/setup_functions.php');
6 ini_set('memory_limit', '800M');
7
8 use Nominatim\Setup\SetupFunctions as SetupFunctions;
9
10 // (long-opt, short-opt, min-occurs, max-occurs, num-arguments, num-arguments, type, help)
11 $aCMDOptions
12 = array(
13    'Create and setup nominatim search system',
14    array('help', 'h', 0, 1, 0, 0, false, 'Show Help'),
15    array('quiet', 'q', 0, 1, 0, 0, 'bool', 'Quiet output'),
16    array('verbose', 'v', 0, 1, 0, 0, 'bool', 'Verbose output'),
17
18    array('osm-file', '', 0, 1, 1, 1, 'realpath', 'File to import'),
19    array('threads', '', 0, 1, 1, 1, 'int', 'Number of threads (where possible)'),
20
21    array('all', '', 0, 1, 0, 0, 'bool', 'Do the complete process'),
22
23    array('create-db', '', 0, 1, 0, 0, 'bool', 'Create nominatim db'),
24    array('setup-db', '', 0, 1, 0, 0, 'bool', 'Build a blank nominatim db'),
25    array('import-data', '', 0, 1, 0, 0, 'bool', 'Import a osm file'),
26    array('osm2pgsql-cache', '', 0, 1, 1, 1, 'int', 'Cache size used by osm2pgsql'),
27    array('reverse-only', '', 0, 1, 0, 0, 'bool', 'Do not create search tables and indexes'),
28    array('create-functions', '', 0, 1, 0, 0, 'bool', 'Create functions'),
29    array('enable-diff-updates', '', 0, 1, 0, 0, 'bool', 'Turn on the code required to make diff updates work'),
30    array('enable-debug-statements', '', 0, 1, 0, 0, 'bool', 'Include debug warning statements in pgsql commands'),
31    array('ignore-errors', '', 0, 1, 0, 0, 'bool', 'Continue import even when errors in SQL are present (EXPERT)'),
32    array('create-tables', '', 0, 1, 0, 0, 'bool', 'Create main tables'),
33    array('create-partition-tables', '', 0, 1, 0, 0, 'bool', 'Create required partition tables'),
34    array('create-partition-functions', '', 0, 1, 0, 0, 'bool', 'Create required partition triggers'),
35    array('no-partitions', '', 0, 1, 0, 0, 'bool', 'Do not partition search indices (speeds up import of single country extracts)'),
36    array('import-wikipedia-articles', '', 0, 1, 0, 0, 'bool', 'Import wikipedia article dump'),
37    array('load-data', '', 0, 1, 0, 0, 'bool', 'Copy data to live tables from import table'),
38    array('disable-token-precalc', '', 0, 1, 0, 0, 'bool', 'Disable name precalculation (EXPERT)'),
39    array('import-tiger-data', '', 0, 1, 0, 0, 'bool', 'Import tiger data (not included in \'all\')'),
40    array('calculate-postcodes', '', 0, 1, 0, 0, 'bool', 'Calculate postcode centroids'),
41    array('index', '', 0, 1, 0, 0, 'bool', 'Index the data'),
42    array('index-noanalyse', '', 0, 1, 0, 0, 'bool', 'Do not perform analyse operations during index (EXPERT)'),
43    array('create-search-indices', '', 0, 1, 0, 0, 'bool', 'Create additional indices required for search and update'),
44    array('create-country-names', '', 0, 1, 0, 0, 'bool', 'Create default list of searchable country names'),
45    array('drop', '', 0, 1, 0, 0, 'bool', 'Drop tables needed for updates, making the database readonly (EXPERIMENTAL)'),
46    array('setup-website', '', 0, 1, 0, 0, 'bool', 'Used to compile environment variables for the website'),
47   );
48
49 // $aCMDOptions passed to getCmdOpt by reference
50 getCmdOpt($_SERVER['argv'], $aCMDOptions, $aCMDResult, true, true);
51
52 setupHTTPProxy();
53
54 $bDidSomething = false;
55
56 //*******************************************************
57 // Making some sanity check:
58 // Check if osm-file is set and points to a valid file
59 if ($aCMDResult['import-data'] || $aCMDResult['all']) {
60     // to remain in /lib/setup_functions.php function
61     checkInFile($aCMDResult['osm-file']);
62 }
63
64 // ******************************************************
65 // instantiate Setup class
66 $oSetup = new SetupFunctions($aCMDResult);
67
68 // *******************************************************
69 // go through complete process if 'all' is selected or start selected functions
70 if ($aCMDResult['create-db'] || $aCMDResult['all']) {
71     $bDidSomething = true;
72     $oSetup->createDB();
73 }
74
75 if ($aCMDResult['setup-db'] || $aCMDResult['all']) {
76     $bDidSomething = true;
77     $oSetup->setupDB();
78 }
79
80 if ($aCMDResult['import-data'] || $aCMDResult['all']) {
81     $bDidSomething = true;
82     $oSetup->importData($aCMDResult['osm-file']);
83 }
84
85 if ($aCMDResult['create-functions'] || $aCMDResult['all']) {
86     $bDidSomething = true;
87     $oSetup->createFunctions();
88 }
89
90 if ($aCMDResult['create-tables'] || $aCMDResult['all']) {
91     $bDidSomething = true;
92     $oSetup->createTables($aCMDResult['reverse-only']);
93     $oSetup->createFunctions();
94     $oSetup->createTableTriggers();
95 }
96
97 if ($aCMDResult['create-partition-tables'] || $aCMDResult['all']) {
98     $bDidSomething = true;
99     $oSetup->createPartitionTables();
100 }
101
102 if ($aCMDResult['create-partition-functions'] || $aCMDResult['all']) {
103     $bDidSomething = true;
104     $oSetup->createPartitionFunctions();
105 }
106
107 if ($aCMDResult['import-wikipedia-articles'] || $aCMDResult['all']) {
108     $bDidSomething = true;
109     $oSetup->importWikipediaArticles();
110 }
111
112 if ($aCMDResult['load-data'] || $aCMDResult['all']) {
113     $bDidSomething = true;
114     $oSetup->loadData($aCMDResult['disable-token-precalc']);
115 }
116
117 if ($aCMDResult['import-tiger-data']) {
118     $bDidSomething = true;
119     $oSetup->importTigerData();
120 }
121
122 if ($aCMDResult['calculate-postcodes'] || $aCMDResult['all']) {
123     $bDidSomething = true;
124     $oSetup->calculatePostcodes($aCMDResult['all']);
125 }
126
127 if ($aCMDResult['index'] || $aCMDResult['all']) {
128     $bDidSomething = true;
129     $oSetup->index($aCMDResult['index-noanalyse']);
130 }
131
132 if ($aCMDResult['drop']) {
133     $bDidSomething = true;
134     $oSetup->drop($aCMDResult);
135 }
136
137 if ($aCMDResult['create-search-indices'] || $aCMDResult['all']) {
138     $bDidSomething = true;
139     $oSetup->createSearchIndices();
140 }
141
142 if ($aCMDResult['create-country-names'] || $aCMDResult['all']) {
143     $bDidSomething = true;
144     $oSetup->createCountryNames($aCMDResult);
145 }
146
147 if ($aCMDResult['setup-website'] || $aCMDResult['all']) {
148     $bDidSomething = true;
149     $oSetup->setupWebsite();
150 }
151
152 // ******************************************************
153 // If we did something, repeat the warnings
154 if (!$bDidSomething) {
155     showUsage($aCMDOptions, true);
156 } else {
157     echo "Summary of warnings:\n\n";
158     repeatWarnings();
159     echo "\n";
160     info('Setup finished.');
161 }