]> git.openstreetmap.org Git - nominatim.git/blob - src/nominatim_db/clicmd/args.py
fix style issue found by flake8
[nominatim.git] / src / nominatim_db / clicmd / args.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 Provides custom functions over command-line arguments.
9 """
10 from typing import Optional, List, Dict, Any, Sequence, Tuple
11 import argparse
12 import logging
13 from pathlib import Path
14
15 from ..errors import UsageError
16 from ..config import Configuration
17 from ..typing import Protocol
18
19
20 LOG = logging.getLogger()
21
22
23 class Subcommand(Protocol):
24     """
25     Interface to be implemented by classes implementing a CLI subcommand.
26     """
27
28     def add_args(self, parser: argparse.ArgumentParser) -> None:
29         """
30         Fill the given parser for the subcommand with the appropriate
31         parameters.
32         """
33
34     def run(self, args: 'NominatimArgs') -> int:
35         """
36         Run the subcommand with the given parsed arguments.
37         """
38
39
40 class NominatimArgs:
41     """ Customized namespace class for the nominatim command line tool
42         to receive the command-line arguments.
43     """
44     # Basic environment set by root program.
45     config: Configuration
46     project_dir: Path
47
48     # Global switches
49     version: bool
50     subcommand: Optional[str]
51     command: Subcommand
52
53     # Shared parameters
54     osm2pgsql_cache: Optional[int]
55     socket_timeout: int
56
57     # Arguments added to all subcommands.
58     verbose: int
59     threads: Optional[int]
60
61     # Arguments to 'add-data'
62     file: Optional[str]
63     diff: Optional[str]
64     node: Optional[int]
65     way: Optional[int]
66     relation: Optional[int]
67     tiger_data: Optional[str]
68     use_main_api: bool
69
70     # Arguments to 'admin'
71     warm: bool
72     check_database: bool
73     migrate: bool
74     collect_os_info: bool
75     clean_deleted: str
76     analyse_indexing: bool
77     target: Optional[str]
78     osm_id: Optional[str]
79     place_id: Optional[int]
80
81     # Arguments to 'import'
82     osm_file: List[str]
83     continue_at: Optional[str]
84     reverse_only: bool
85     no_partitions: bool
86     no_updates: bool
87     offline: bool
88     ignore_errors: bool
89     index_noanalyse: bool
90     prepare_database: bool
91
92     # Arguments to 'index'
93     boundaries_only: bool
94     no_boundaries: bool
95     minrank: int
96     maxrank: int
97
98     # Arguments to 'export'
99     output_type: str
100     output_format: str
101     output_all_postcodes: bool
102     language: Optional[str]
103     restrict_to_country: Optional[str]
104
105     # Arguments to 'convert'
106     output: Path
107
108     # Arguments to 'refresh'
109     postcodes: bool
110     word_tokens: bool
111     word_counts: bool
112     address_levels: bool
113     functions: bool
114     wiki_data: bool
115     secondary_importance: bool
116     importance: bool
117     website: bool
118     diffs: bool
119     enable_debug_statements: bool
120     data_object: Sequence[Tuple[str, int]]
121     data_area: Sequence[Tuple[str, int]]
122
123     # Arguments to 'replication'
124     init: bool
125     update_functions: bool
126     check_for_updates: bool
127     once: bool
128     catch_up: bool
129     do_index: bool
130
131     # Arguments to 'serve'
132     server: str
133     engine: str
134
135     # Arguments to 'special-phrases
136     import_from_wiki: bool
137     import_from_csv: Optional[str]
138     no_replace: bool
139
140     # Arguments to all query functions
141     format: str
142     list_formats: bool
143     addressdetails: bool
144     extratags: bool
145     namedetails: bool
146     lang: Optional[str]
147     polygon_output: Optional[str]
148     polygon_threshold: Optional[float]
149
150     # Arguments to 'search'
151     query: Optional[str]
152     amenity: Optional[str]
153     street: Optional[str]
154     city: Optional[str]
155     county: Optional[str]
156     state: Optional[str]
157     country: Optional[str]
158     postalcode: Optional[str]
159     countrycodes: Optional[str]
160     exclude_place_ids: Optional[str]
161     limit: int
162     viewbox: Optional[str]
163     bounded: bool
164     dedupe: bool
165
166     # Arguments to 'reverse'
167     lat: float
168     lon: float
169     zoom: Optional[int]
170     layers: Optional[Sequence[str]]
171
172     # Arguments to 'lookup'
173     ids: Sequence[str]
174
175     # Arguments to 'details'
176     object_class: Optional[str]
177     linkedplaces: bool
178     hierarchy: bool
179     keywords: bool
180     polygon_geojson: bool
181     group_hierarchy: bool
182
183     def osm2pgsql_options(self, default_cache: int,
184                           default_threads: int) -> Dict[str, Any]:
185         """ Return the standard osm2pgsql options that can be derived
186             from the command line arguments. The resulting dict can be
187             further customized and then used in `run_osm2pgsql()`.
188         """
189         return dict(osm2pgsql=self.config.OSM2PGSQL_BINARY or self.config.lib_dir.osm2pgsql,
190                     osm2pgsql_cache=self.osm2pgsql_cache or default_cache,
191                     osm2pgsql_style=self.config.get_import_style_file(),
192                     osm2pgsql_style_path=self.config.config_dir,
193                     threads=self.threads or default_threads,
194                     dsn=self.config.get_libpq_dsn(),
195                     flatnode_file=str(self.config.get_path('FLATNODE_FILE') or ''),
196                     tablespaces=dict(slim_data=self.config.TABLESPACE_OSM_DATA,
197                                      slim_index=self.config.TABLESPACE_OSM_INDEX,
198                                      main_data=self.config.TABLESPACE_PLACE_DATA,
199                                      main_index=self.config.TABLESPACE_PLACE_INDEX
200                                      )
201                     )
202
203     def get_osm_file_list(self) -> Optional[List[Path]]:
204         """ Return the --osm-file argument as a list of Paths or None
205             if no argument was given. The function also checks if the files
206             exist and raises a UsageError if one cannot be found.
207         """
208         if not self.osm_file:
209             return None
210
211         files = [Path(f) for f in self.osm_file]
212         for fname in files:
213             if not fname.is_file():
214                 LOG.fatal("OSM file '%s' does not exist.", fname)
215                 raise UsageError('Cannot access file.')
216
217         return files