2019-12-02 16:02:05 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once(CONST_BasePath.'/lib/init-cmd.php');
|
|
|
|
|
|
|
|
$term_colors = array(
|
|
|
|
'green' => "\033[92m",
|
|
|
|
'red' => "\x1B[31m",
|
|
|
|
'normal' => "\033[0m"
|
|
|
|
);
|
|
|
|
|
|
|
|
$print_success = function ($message = 'OK') use ($term_colors) {
|
|
|
|
echo $term_colors['green'].$message.$term_colors['normal']."\n";
|
|
|
|
};
|
|
|
|
|
|
|
|
$print_fail = function ($message = 'Failed') use ($term_colors) {
|
|
|
|
echo $term_colors['red'].$message.$term_colors['normal']."\n";
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
$oDB = new Nominatim\DB;
|
|
|
|
|
|
|
|
|
2020-02-06 18:46:54 +03:00
|
|
|
function isReverseOnlyInstallation()
|
|
|
|
{
|
|
|
|
global $oDB;
|
|
|
|
return !$oDB->tableExists('search_name');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-12-02 16:02:05 +03:00
|
|
|
echo 'Checking database got created ... ';
|
2020-04-13 18:48:20 +03:00
|
|
|
if ($oDB->checkConnection()) {
|
2019-12-02 16:02:05 +03:00
|
|
|
$print_success();
|
|
|
|
} else {
|
|
|
|
$print_fail();
|
|
|
|
echo <<< END
|
|
|
|
Hints:
|
|
|
|
* Is the database server started?
|
|
|
|
* Check the CONST_Database_DSN variable in build/settings/local.php
|
|
|
|
* Try connecting to the database with the same settings
|
|
|
|
|
|
|
|
END;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
echo 'Checking nominatim.so module installed ... ';
|
|
|
|
$sStandardWord = $oDB->getOne("SELECT make_standard_name('a')");
|
|
|
|
if ($sStandardWord === 'a') {
|
|
|
|
$print_success();
|
|
|
|
} else {
|
|
|
|
$print_fail();
|
|
|
|
echo <<< END
|
|
|
|
The Postgresql extension nominatim.so was not found in the database.
|
|
|
|
Hints:
|
|
|
|
* Check the output of the CMmake/make installation step
|
|
|
|
* Does nominatim.so exist?
|
|
|
|
* Does nominatim.so exist on the database server?
|
|
|
|
* Can nominatim.so be accessed by the database user?
|
|
|
|
|
|
|
|
END;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
echo 'Checking place table ... ';
|
|
|
|
if ($oDB->tableExists('place')) {
|
|
|
|
$print_success();
|
|
|
|
} else {
|
|
|
|
$print_fail();
|
|
|
|
echo <<< END
|
|
|
|
* The import didn't finish.
|
|
|
|
Hints:
|
|
|
|
* Check the output of the utils/setup.php you ran.
|
|
|
|
Usually the osm2pgsql step failed. Check for errors related to
|
|
|
|
* the file you imported not containing any places
|
|
|
|
* harddrive full
|
|
|
|
* out of memory (RAM)
|
|
|
|
* osm2pgsql killed by other scripts, for consuming to much memory
|
|
|
|
|
|
|
|
END;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo 'Checking indexing status ... ';
|
|
|
|
$iUnindexed = $oDB->getOne('SELECT count(*) FROM placex WHERE indexed_status > 0');
|
|
|
|
if ($iUnindexed == 0) {
|
|
|
|
$print_success();
|
|
|
|
} else {
|
|
|
|
$print_fail();
|
|
|
|
echo <<< END
|
|
|
|
The indexing didn't finish. There is still $iUnindexed places. See the
|
|
|
|
question 'Can a stopped/killed import process be resumed?' in the
|
|
|
|
troubleshooting guide.
|
|
|
|
|
|
|
|
END;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "Search index creation\n";
|
|
|
|
$aExpectedIndices = array(
|
|
|
|
// sql/indices.src.sql
|
|
|
|
'idx_word_word_id',
|
|
|
|
'idx_place_addressline_address_place_id',
|
|
|
|
'idx_placex_rank_search',
|
|
|
|
'idx_placex_rank_address',
|
|
|
|
'idx_placex_pendingsector',
|
|
|
|
'idx_placex_parent_place_id',
|
|
|
|
'idx_placex_geometry_reverse_lookuppoint',
|
|
|
|
'idx_placex_geometry_reverse_lookuppolygon',
|
|
|
|
'idx_placex_geometry_reverse_placenode',
|
|
|
|
'idx_location_area_country_place_id',
|
|
|
|
'idx_osmline_parent_place_id',
|
|
|
|
'idx_osmline_parent_osm_id',
|
|
|
|
'idx_place_osm_unique',
|
|
|
|
'idx_postcode_id',
|
2020-02-06 18:46:54 +03:00
|
|
|
'idx_postcode_postcode'
|
2019-12-02 16:02:05 +03:00
|
|
|
);
|
2020-02-06 18:46:54 +03:00
|
|
|
if (!isReverseOnlyInstallation()) {
|
|
|
|
$aExpectedIndices = array_merge($aExpectedIndices, array(
|
|
|
|
// sql/indices_search.src.sql
|
|
|
|
'idx_search_name_nameaddress_vector',
|
|
|
|
'idx_search_name_name_vector',
|
|
|
|
'idx_search_name_centroid'
|
|
|
|
));
|
|
|
|
}
|
2019-12-02 16:02:05 +03:00
|
|
|
|
|
|
|
foreach ($aExpectedIndices as $sExpectedIndex) {
|
|
|
|
echo "Checking index $sExpectedIndex ... ";
|
|
|
|
if ($oDB->indexExists($sExpectedIndex)) {
|
|
|
|
$print_success();
|
|
|
|
} else {
|
|
|
|
$print_fail();
|
|
|
|
echo <<< END
|
|
|
|
Hints:
|
2020-06-15 19:36:21 +03:00
|
|
|
* Run './utils/setup.php --create-search-indices --ignore-errors' to
|
|
|
|
create missing indices.
|
2019-12-02 16:02:05 +03:00
|
|
|
|
|
|
|
END;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-14 21:36:40 +03:00
|
|
|
echo 'Checking search indices are valid ... ';
|
|
|
|
$sSQL = <<< END
|
|
|
|
SELECT relname
|
|
|
|
FROM pg_class, pg_index
|
|
|
|
WHERE pg_index.indisvalid = false
|
|
|
|
AND pg_index.indexrelid = pg_class.oid;
|
|
|
|
END;
|
|
|
|
$aInvalid = $oDB->getCol($sSQL);
|
|
|
|
if (empty($aInvalid)) {
|
|
|
|
$print_success();
|
|
|
|
} else {
|
|
|
|
$print_fail();
|
|
|
|
echo <<< END
|
|
|
|
At least one index is invalid. That can happen, e.g. when index creation was
|
2020-01-14 23:33:09 +03:00
|
|
|
disrupted and later restarted. You should delete the affected indices and
|
|
|
|
run the index stage of setup again.
|
2020-01-14 21:36:40 +03:00
|
|
|
See the question 'Can a stopped/killed import process be resumed?' in the
|
|
|
|
troubleshooting guide.
|
|
|
|
Affected indices:
|
|
|
|
END;
|
|
|
|
echo join(', ', $aInvalid) . "\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-02 16:02:05 +03:00
|
|
|
if (CONST_Use_US_Tiger_Data) {
|
|
|
|
echo 'Checking TIGER table exists ... ';
|
|
|
|
if ($oDB->tableExists('location_property_tiger')) {
|
|
|
|
$print_success();
|
|
|
|
} else {
|
|
|
|
$print_fail();
|
|
|
|
echo <<< END
|
|
|
|
Table 'location_property_tiger' does not exist. Run the TIGER data
|
|
|
|
import again.
|
|
|
|
|
|
|
|
END;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
exit(0);
|