]> git.openstreetmap.org Git - nominatim.git/blob - nominatim/tokenizer/sanitizers/split_name_list.py
generalize filter-kind parameter for sanatizers
[nominatim.git] / nominatim / tokenizer / sanitizers / split_name_list.py
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # This file is part of Nominatim. (https://nominatim.org)
4 #
5 # Copyright (C) 2022 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 """
8 Sanitizer that splits lists of names into their components.
9
10 Arguments:
11     delimiters: Define the set of characters to be used for
12                 splitting the list. (default: ',;')
13 """
14 from nominatim.errors import UsageError
15 from nominatim.tokenizer.sanitizers.helpers import create_split_regex
16
17 def create(func):
18     """ Create a name processing function that splits name values with
19         multiple values into their components.
20     """
21     regexp = create_split_regex(func)
22
23     def _process(obj):
24         if not obj.names:
25             return
26
27         new_names = []
28         for name in obj.names:
29             split_names = regexp.split(name.name)
30             if len(split_names) == 1:
31                 new_names.append(name)
32             else:
33                 new_names.extend(name.clone(name=n) for n in split_names if n)
34
35         obj.names = new_names
36
37     return _process