Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Use callbacks to notify tcp replication rather than deferreds
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Mar 31, 2017
1 parent 36d2b66 commit 1df7c28
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 20 deletions.
17 changes: 11 additions & 6 deletions synapse/notifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ def __init__(self, hs):
self.store = hs.get_datastore()
self.pending_new_room_events = []

self.replication_callbacks = []

self.clock = hs.get_clock()
self.appservice_handler = hs.get_application_service_handler()

Expand Down Expand Up @@ -202,6 +204,12 @@ def count_listeners():
lambda: len(self.user_to_user_stream),
)

def add_replication_callback(self, cb):
"""Add a callback that will be called when some new data is available.
Callback is not given any arguments.
"""
self.replication_callbacks.append(cb)

@preserve_fn
def on_new_room_event(self, event, room_stream_id, max_room_stream_id,
extra_users=[]):
Expand Down Expand Up @@ -510,6 +518,9 @@ def notify_replication(self):
self.replication_deferred = ObservableDeferred(defer.Deferred())
deferred.callback(None)

for cb in self.replication_callbacks:
preserve_fn(cb)()

@defer.inlineCallbacks
def wait_for_replication(self, callback, timeout):
"""Wait for an event to happen.
Expand Down Expand Up @@ -550,9 +561,3 @@ def wait_for_replication(self, callback, timeout):
break

defer.returnValue(result)

def wait_once_for_replication(self):
"""Returns a deferred which resolves when there is new data for
replication to handle.
"""
return self.replication_deferred.observe()
15 changes: 1 addition & 14 deletions synapse/replication/tcp/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
from streams import STREAMS_MAP, FederationStream
from protocol import ServerReplicationStreamProtocol

from synapse.util.logcontext import preserve_fn
from synapse.util.metrics import Measure, measure_func

import logging
Expand Down Expand Up @@ -66,7 +65,6 @@ class ReplicationStreamer(object):

def __init__(self, hs):
self.store = hs.get_datastore()
self.notifier = hs.get_notifier()
self.presence_handler = hs.get_presence_handler()
self.clock = hs.get_clock()

Expand Down Expand Up @@ -101,8 +99,7 @@ def __init__(self, hs):
if not hs.config.send_federation:
self.federation_sender = hs.get_federation_sender()

# Start listening for updates from the notifier
preserve_fn(self.notifier_listener)()
hs.get_notifier().add_replication_callback(self.on_notifier_poke)

# Keeps track of whether we are currently checking for updates
self.is_looping = False
Expand All @@ -115,16 +112,6 @@ def on_shutdown(self):
for conn in self.connections:
conn.send_error("server shutting down")

@defer.inlineCallbacks
def notifier_listener(self):
"""Sits forever looping on the notifier waiting for new data.
"""
while True:
yield self.notifier.wait_once_for_replication()
logger.debug("Woken up by notifier")
# We need to call this each time we get woken up, as per docstring
preserve_fn(self.on_notifier_poke)()

@defer.inlineCallbacks
def on_notifier_poke(self):
"""Checks if there is actually any new data and sends it to the
Expand Down

0 comments on commit 1df7c28

Please sign in to comment.