mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
remove analyze() from PlaceInfo class
The function creates circular dependencies.
This commit is contained in:
@@ -9,8 +9,6 @@ Wrapper around place information the indexer gets from the database and hands to
|
|||||||
the tokenizer.
|
the tokenizer.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import psycopg2.extras
|
|
||||||
|
|
||||||
class PlaceInfo:
|
class PlaceInfo:
|
||||||
""" Data class containing all information the tokenizer gets about a
|
""" Data class containing all information the tokenizer gets about a
|
||||||
place it should process the names for.
|
place it should process the names for.
|
||||||
@@ -20,13 +18,6 @@ class PlaceInfo:
|
|||||||
self._info = info
|
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
|
@property
|
||||||
def name(self):
|
def name(self):
|
||||||
""" A dictionary with the names of the place or None if the place
|
""" A dictionary with the names of the place or None if the place
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ tasks.
|
|||||||
import functools
|
import functools
|
||||||
|
|
||||||
from psycopg2 import sql as pysql
|
from psycopg2 import sql as pysql
|
||||||
|
import psycopg2.extras
|
||||||
|
|
||||||
from nominatim.data.place_info import PlaceInfo
|
from nominatim.data.place_info import PlaceInfo
|
||||||
|
|
||||||
@@ -19,6 +20,8 @@ from nominatim.data.place_info import PlaceInfo
|
|||||||
def _mk_valuelist(template, num):
|
def _mk_valuelist(template, num):
|
||||||
return pysql.SQL(',').join([pysql.SQL(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:
|
class AbstractPlacexRunner:
|
||||||
""" Returns SQL commands for indexing of the placex table.
|
""" Returns SQL commands for indexing of the placex table.
|
||||||
@@ -56,7 +59,7 @@ class AbstractPlacexRunner:
|
|||||||
for place in places:
|
for place in places:
|
||||||
for field in ('place_id', 'name', 'address', 'linked_place_id'):
|
for field in ('place_id', 'name', 'address', 'linked_place_id'):
|
||||||
values.append(place[field])
|
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)
|
worker.perform(self._index_sql(len(places)), values)
|
||||||
|
|
||||||
@@ -150,7 +153,7 @@ class InterpolationRunner:
|
|||||||
values = []
|
values = []
|
||||||
for place in places:
|
for place in places:
|
||||||
values.extend((place[x] for x in ('place_id', 'address')))
|
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)
|
worker.perform(self._index_sql(len(places)), values)
|
||||||
|
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ import logging
|
|||||||
import os
|
import os
|
||||||
import tarfile
|
import tarfile
|
||||||
|
|
||||||
|
from psycopg2.extras import Json
|
||||||
|
|
||||||
from nominatim.db.connection import connect
|
from nominatim.db.connection import connect
|
||||||
from nominatim.db.async_connection import WorkerPool
|
from nominatim.db.async_connection import WorkerPool
|
||||||
from nominatim.db.sql_preprocessor import SQLPreprocessor
|
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'])
|
address = dict(street=row['street'], postcode=row['postcode'])
|
||||||
args = ('SRID=4326;' + row['geometry'],
|
args = ('SRID=4326;' + row['geometry'],
|
||||||
int(row['from']), int(row['to']), row['interpolation'],
|
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']))
|
analyzer.normalize_postcode(row['postcode']))
|
||||||
except ValueError:
|
except ValueError:
|
||||||
continue
|
continue
|
||||||
|
|||||||
Reference in New Issue
Block a user