X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/7f11de0db9ecbb2a8f7551815285d7553747a96e..9f417d5f64aecf72d4a3bd22d6e9d6c8fac76a51:/src/nominatim_db/config.py diff --git a/src/nominatim_db/config.py b/src/nominatim_db/config.py index 2cab0237..ad54ab3d 100644 --- a/src/nominatim_db/config.py +++ b/src/nominatim_db/config.py @@ -25,7 +25,8 @@ from .errors import UsageError from . import paths LOG = logging.getLogger() -CONFIG_CACHE : Dict[str, Any] = {} +CONFIG_CACHE: Dict[str, Any] = {} + def flatten_config_list(content: Any, section: str = '') -> List[Any]: """ Flatten YAML configuration lists that contain include sections @@ -61,7 +62,7 @@ class Configuration: def __init__(self, project_dir: Optional[Union[Path, str]], environ: Optional[Mapping[str, str]] = None) -> None: - self.environ = environ or os.environ + self.environ = os.environ if environ is None else environ self.config_dir = paths.CONFIG_DIR self._config = dotenv_values(str(self.config_dir / 'env.defaults')) if project_dir is not None: @@ -72,23 +73,19 @@ class Configuration: self.project_dir = None class _LibDirs: - module: Path osm2pgsql: Path - php = paths.PHPLIB_DIR sql = paths.SQLLIB_DIR data = paths.DATA_DIR self.lib_dir = _LibDirs() self._private_plugins: Dict[str, object] = {} - def set_libdirs(self, **kwargs: StrPath) -> None: """ Set paths to library functions and data. """ for key, value in kwargs.items(): setattr(self.lib_dir, key, None if value is None else Path(value)) - def __getattr__(self, name: str) -> str: name = 'NOMINATIM_' + name @@ -97,7 +94,6 @@ class Configuration: return self._config[name] or '' - def get_bool(self, name: str) -> bool: """ Return the given configuration parameter as a boolean. @@ -110,7 +106,6 @@ class Configuration: """ return getattr(self, name).lower() in ('1', 'yes', 'true') - def get_int(self, name: str) -> int: """ Return the given configuration parameter as an int. @@ -130,11 +125,10 @@ class Configuration: LOG.fatal("Invalid setting NOMINATIM_%s. Needs to be a number.", name) raise UsageError("Configuration error.") from exp - def get_str_list(self, name: str) -> Optional[List[str]]: """ Return the given configuration parameter as a list of strings. The values are assumed to be given as a comma-sparated list and - will be stripped before returning them. + will be stripped before returning them. Parameters: name: Name of the configuration parameter with the NOMINATIM_ @@ -150,7 +144,6 @@ class Configuration: return [v.strip() for v in raw.split(',')] if raw else None - def get_path(self, name: str) -> Optional[Path]: """ Return the given configuration parameter as a Path. @@ -176,7 +169,6 @@ class Configuration: return cfgpath.resolve() - def get_libpq_dsn(self) -> str: """ Get configured database DSN converted into the key/value format understood by libpq and psycopg. @@ -196,7 +188,6 @@ class Configuration: return dsn - def get_database_params(self) -> Mapping[str, Union[str, int, None]]: """ Get the configured parameters for the database connection as a mapping. @@ -208,7 +199,6 @@ class Configuration: return conninfo_to_dict(dsn) - def get_import_style_file(self) -> Path: """ Return the import style file as a path object. Translates the name of the standard styles automatically into a file in the @@ -221,7 +211,6 @@ class Configuration: return self.find_config_file('', 'IMPORT_STYLE') - def get_os_env(self) -> Dict[str, str]: """ Return a copy of the OS environment with the Nominatim configuration merged in. @@ -231,7 +220,6 @@ class Configuration: return env - def load_sub_configuration(self, filename: StrPath, config: Optional[str] = None) -> Any: """ Load additional configuration from a file. `filename` is the name @@ -269,7 +257,6 @@ class Configuration: CONFIG_CACHE[str(configfile)] = result return result - def load_plugin_module(self, module_name: str, internal_path: str) -> Any: """ Load a Python module as a plugin. @@ -312,7 +299,6 @@ class Configuration: return sys.modules.get(module_name) or importlib.import_module(module_name) - def find_config_file(self, filename: StrPath, config: Optional[str] = None) -> Path: """ Resolve the location of a configuration file given a filename and @@ -336,7 +322,6 @@ class Configuration: filename = cfg_filename - search_paths = [self.project_dir, self.config_dir] for path in search_paths: if path is not None and (path / filename).is_file(): @@ -346,7 +331,6 @@ class Configuration: filename, search_paths) raise UsageError("Config file not found.") - def _load_from_yaml(self, cfgfile: Path) -> Any: """ Load a YAML configuration file. This installs a special handler that allows to include other YAML files using the '!include' operator. @@ -355,7 +339,6 @@ class Configuration: Loader=yaml.SafeLoader) return yaml.safe_load(cfgfile.read_text(encoding='utf-8')) - def _yaml_include_representer(self, loader: Any, node: yaml.Node) -> Any: """ Handler for the '!include' operator in YAML files.