]> git.openstreetmap.org Git - nominatim.git/blob - src/nominatim_api/query_preprocessing/regex_replace.py
883fa99182a39ae87bf7d3237b8163d80887cf02
[nominatim.git] / src / nominatim_api / query_preprocessing / regex_replace.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) 2025 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 """
8 This file replaces values based on pre-defined regex rules:
9 """
10 from typing import List
11 import re
12
13 from .config import QueryConfig
14 from .base import QueryProcessingFunc
15 from ..search.query import Phrase
16
17
18 class _GenericPreprocessing:
19
20     def __init__(self, config: QueryConfig) -> None:
21         self.config = config
22
23     def split_phrase(self, phrase: Phrase) -> Phrase:
24         """
25         This function performs replacements on the given text using regex patterns.
26         """
27
28         if phrase.text is None:
29             return phrase
30
31         match_patterns = self.config.get('replacements', 'Key not found')
32         for item in match_patterns:
33             phrase.text = re.sub(item['pattern'], item['replace'], phrase.text)
34
35         return phrase
36
37     def __call__(self, phrases: List[Phrase]) -> List[Phrase]:
38         """Apply regex replacements to the given addresses.
39         """
40         return [self.split_phrase(p) for p in phrases]
41
42
43 def create(config: QueryConfig) -> QueryProcessingFunc:
44     """ Create a function for generic preprocessing.
45     """
46     return _GenericPreprocessing(config)