mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-12-18 02:21:55 +03:00
support new ReplicationServer as contextmanager
This commit is contained in:
parent
f78ae969e9
commit
126cabacb8
@ -7,6 +7,7 @@
|
|||||||
"""
|
"""
|
||||||
Functions for updating a database from a replication source.
|
Functions for updating a database from a replication source.
|
||||||
"""
|
"""
|
||||||
|
from contextlib import contextmanager
|
||||||
import datetime as dt
|
import datetime as dt
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
import logging
|
import logging
|
||||||
@ -109,24 +110,39 @@ def update(conn, options):
|
|||||||
options['import_file'].unlink()
|
options['import_file'].unlink()
|
||||||
|
|
||||||
# Read updates into file.
|
# Read updates into file.
|
||||||
repl = ReplicationServer(options['base_url'])
|
with _make_replication_server(options['base_url']) as repl:
|
||||||
|
outhandler = WriteHandler(str(options['import_file']))
|
||||||
|
endseq = repl.apply_diffs(outhandler, startseq + 1,
|
||||||
|
max_size=options['max_diff_size'] * 1024)
|
||||||
|
outhandler.close()
|
||||||
|
|
||||||
outhandler = WriteHandler(str(options['import_file']))
|
if endseq is None:
|
||||||
endseq = repl.apply_diffs(outhandler, startseq + 1,
|
return UpdateState.NO_CHANGES
|
||||||
max_size=options['max_diff_size'] * 1024)
|
|
||||||
outhandler.close()
|
|
||||||
|
|
||||||
if endseq is None:
|
# Consume updates with osm2pgsql.
|
||||||
return UpdateState.NO_CHANGES
|
options['append'] = True
|
||||||
|
options['disable_jit'] = conn.server_version_tuple() >= (11, 0)
|
||||||
|
run_osm2pgsql(options)
|
||||||
|
|
||||||
# Consume updates with osm2pgsql.
|
# Write the current status to the file
|
||||||
options['append'] = True
|
endstate = repl.get_state_info(endseq)
|
||||||
options['disable_jit'] = conn.server_version_tuple() >= (11, 0)
|
status.set_status(conn, endstate.timestamp if endstate else None,
|
||||||
run_osm2pgsql(options)
|
seq=endseq, indexed=False)
|
||||||
|
|
||||||
# Write the current status to the file
|
|
||||||
endstate = repl.get_state_info(endseq)
|
|
||||||
status.set_status(conn, endstate.timestamp if endstate else None,
|
|
||||||
seq=endseq, indexed=False)
|
|
||||||
|
|
||||||
return UpdateState.UP_TO_DATE
|
return UpdateState.UP_TO_DATE
|
||||||
|
|
||||||
|
|
||||||
|
def _make_replication_server(url):
|
||||||
|
""" Returns a ReplicationServer in form of a context manager.
|
||||||
|
|
||||||
|
Creates a light wrapper around older versions of pyosmium that did
|
||||||
|
not support the context manager interface.
|
||||||
|
"""
|
||||||
|
if hasattr(ReplicationServer, '__enter__'):
|
||||||
|
return ReplicationServer(url)
|
||||||
|
|
||||||
|
@contextmanager
|
||||||
|
def get_cm():
|
||||||
|
yield ReplicationServer(url)
|
||||||
|
|
||||||
|
return get_cm()
|
||||||
|
Loading…
Reference in New Issue
Block a user