]> git.openstreetmap.org Git - nominatim.git/commitdiff
remove analyze() from PlaceInfo class
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 6 Jul 2022 09:33:07 +0000 (11:33 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Thu, 7 Jul 2022 10:06:58 +0000 (12:06 +0200)
The function creates circular dependencies.

nominatim/data/place_info.py
nominatim/indexer/runners.py
nominatim/tools/tiger_data.py

index 87ecb731b9ee8e989c5069ecd9ae3c54161676f0..d2ba3979260fcfa2fd411771b844c3d67807c440 100644 (file)
@@ -9,8 +9,6 @@ Wrapper around place information the indexer gets from the database and hands to
 the tokenizer.
 """
 
-import psycopg2.extras
-
 class PlaceInfo:
     """ Data class containing all information the tokenizer gets about a
         place it should process the names for.
@@ -20,13 +18,6 @@ class PlaceInfo:
         self._info = info
 
 
-    def analyze(self, analyzer):
-        """ Process this place with the given tokenizer and return the
-            result in psycopg2-compatible Json.
-        """
-        return psycopg2.extras.Json(analyzer.process_place(self))
-
-
     @property
     def name(self):
         """ A dictionary with the names of the place or None if the place
index 21b6a44d35eff8a9b0d6d06c9dc885081dfe97d7..c8495ee4df115ef96cf7971cff7c7eb1318948a0 100644 (file)
@@ -11,6 +11,7 @@ tasks.
 import functools
 
 from psycopg2 import sql as pysql
+import psycopg2.extras
 
 from nominatim.data.place_info import PlaceInfo
 
@@ -19,6 +20,8 @@ from nominatim.data.place_info import PlaceInfo
 def _mk_valuelist(template, num):
     return pysql.SQL(',').join([pysql.SQL(template)] * num)
 
+def _analyze_place(place, analyzer):
+    return psycopg2.extras.Json(analyzer.process_place(PlaceInfo(place)))
 
 class AbstractPlacexRunner:
     """ Returns SQL commands for indexing of the placex table.
@@ -56,7 +59,7 @@ class AbstractPlacexRunner:
         for place in places:
             for field in ('place_id', 'name', 'address', 'linked_place_id'):
                 values.append(place[field])
-            values.append(PlaceInfo(place).analyze(self.analyzer))
+            values.append(_analyze_place(place, self.analyzer))
 
         worker.perform(self._index_sql(len(places)), values)
 
@@ -150,7 +153,7 @@ class InterpolationRunner:
         values = []
         for place in places:
             values.extend((place[x] for x in ('place_id', 'address')))
-            values.append(PlaceInfo(place).analyze(self.analyzer))
+            values.append(_analyze_place(place, self.analyzer))
 
         worker.perform(self._index_sql(len(places)), values)
 
index 9903ea2bb8e68c43ff25533dfcc9d1d0905c74da..e78dcd8f3ade0695eec2f1842f21f40f3eca80ad 100644 (file)
@@ -13,6 +13,8 @@ import logging
 import os
 import tarfile
 
+from psycopg2.extras import Json
+
 from nominatim.db.connection import connect
 from nominatim.db.async_connection import WorkerPool
 from nominatim.db.sql_preprocessor import SQLPreprocessor
@@ -87,7 +89,7 @@ def handle_threaded_sql_statements(pool, fd, analyzer):
             address = dict(street=row['street'], postcode=row['postcode'])
             args = ('SRID=4326;' + row['geometry'],
                     int(row['from']), int(row['to']), row['interpolation'],
-                    PlaceInfo({'address': address}).analyze(analyzer),
+                    Json(analyzer.process_place(PlaceInfo({'address': address}))),
                     analyzer.normalize_postcode(row['postcode']))
         except ValueError:
             continue