]> git.openstreetmap.org Git - nominatim.git/blob - src/nominatim_db/clicmd/freeze.py
fix style issue found by flake8
[nominatim.git] / src / nominatim_db / clicmd / freeze.py
1 # SPDX-License-Identifier: GPL-3.0-or-later
2 #
3 # This file is part of Nominatim. (https://nominatim.org)
4 #
5 # Copyright (C) 2024 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 """
8 Implementation of the 'freeze' subcommand.
9 """
10 import argparse
11
12 from ..db.connection import connect
13 from .args import NominatimArgs
14
15
16 class SetupFreeze:
17     """\
18     Make database read-only.
19
20     About half of data in the Nominatim database is kept only to be able to
21     keep the data up-to-date with new changes made in OpenStreetMap. This
22     command drops all this data and only keeps the part needed for geocoding
23     itself.
24
25     This command has the same effect as the `--no-updates` option for imports.
26     """
27
28     def add_args(self, parser: argparse.ArgumentParser) -> None:
29         pass  # No options
30
31     def run(self, args: NominatimArgs) -> int:
32         from ..tools import freeze
33
34         with connect(args.config.get_libpq_dsn()) as conn:
35             freeze.drop_update_tables(conn)
36         freeze.drop_flatnode_file(args.config.get_path('FLATNODE_FILE'))
37
38         return 0