2016-11-04 11:35:25 -04:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2016-11-21 11:55:23 -05:00
|
|
|
"""A federation sender that forwards things to be sent across replication to
|
|
|
|
a worker process.
|
|
|
|
|
|
|
|
It assumes there is a single worker process feeding off of it.
|
|
|
|
|
|
|
|
Each row in the replication stream consists of a type and some json, where the
|
|
|
|
types indicate whether they are presence, or edus, etc.
|
|
|
|
|
|
|
|
Ephemeral or non-event data are queued up in-memory. When the worker requests
|
|
|
|
updates since a particular point, all in-memory data since before that point is
|
|
|
|
dropped. We also expire things in the queue after 5 minutes, to ensure that a
|
|
|
|
dead worker doesn't cause the queues to grow limitlessly.
|
|
|
|
|
|
|
|
Events are replicated via a separate events stream.
|
|
|
|
"""
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
|
|
|
from collections import namedtuple
|
2021-03-29 11:43:20 -04:00
|
|
|
from typing import (
|
|
|
|
TYPE_CHECKING,
|
|
|
|
Dict,
|
|
|
|
Hashable,
|
|
|
|
Iterable,
|
|
|
|
List,
|
|
|
|
Optional,
|
|
|
|
Sized,
|
|
|
|
Tuple,
|
|
|
|
Type,
|
|
|
|
)
|
2016-11-04 11:35:25 -04:00
|
|
|
|
2018-06-05 10:13:57 -04:00
|
|
|
from sortedcontainers import SortedDict
|
2016-11-16 12:34:44 -05:00
|
|
|
|
2020-08-17 07:24:46 -04:00
|
|
|
from synapse.api.presence import UserPresenceState
|
2021-03-29 11:43:20 -04:00
|
|
|
from synapse.federation.sender import AbstractFederationSender, FederationSender
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.metrics import LaterGauge
|
2021-03-29 11:43:20 -04:00
|
|
|
from synapse.replication.tcp.streams.federation import FederationStream
|
|
|
|
from synapse.types import JsonDict, ReadReceipt, RoomStreamToken
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.util.metrics import Measure
|
2017-04-07 06:51:28 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from .units import Edu
|
2018-04-15 10:51:07 -04:00
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2017-04-07 06:51:28 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2016-11-16 12:34:44 -05:00
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
class FederationRemoteSendQueue(AbstractFederationSender):
|
2019-03-13 16:02:56 -04:00
|
|
|
"""A drop in replacement for FederationSender"""
|
2016-11-16 12:34:44 -05:00
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2016-11-17 10:46:44 -05:00
|
|
|
self.server_name = hs.hostname
|
2016-11-04 11:35:25 -04:00
|
|
|
self.clock = hs.get_clock()
|
2017-03-27 09:07:47 -04:00
|
|
|
self.notifier = hs.get_notifier()
|
2017-04-10 11:48:30 -04:00
|
|
|
self.is_mine_id = hs.is_mine_id
|
2016-11-04 11:35:25 -04:00
|
|
|
|
2020-07-10 13:26:36 -04:00
|
|
|
# We may have multiple federation sender instances, so we need to track
|
|
|
|
# their positions separately.
|
2020-07-29 18:22:13 -04:00
|
|
|
self._sender_instances = hs.config.worker.federation_shard_config.instances
|
2021-07-15 06:02:43 -04:00
|
|
|
self._sender_positions: Dict[str, int] = {}
|
2020-07-10 13:26:36 -04:00
|
|
|
|
2020-05-05 09:27:13 -04:00
|
|
|
# Pending presence map user_id -> UserPresenceState
|
2021-07-15 06:02:43 -04:00
|
|
|
self.presence_map: Dict[str, UserPresenceState] = {}
|
2020-05-05 09:27:13 -04:00
|
|
|
|
2019-03-26 08:45:22 -04:00
|
|
|
# Stores the destinations we need to explicitly send presence to about a
|
|
|
|
# given user.
|
|
|
|
# Stream position -> (user_id, destinations)
|
2021-07-15 06:02:43 -04:00
|
|
|
self.presence_destinations: SortedDict[
|
|
|
|
int, Tuple[str, Iterable[str]]
|
|
|
|
] = SortedDict()
|
2020-05-05 09:27:13 -04:00
|
|
|
|
|
|
|
# (destination, key) -> EDU
|
2021-07-15 06:02:43 -04:00
|
|
|
self.keyed_edu: Dict[Tuple[str, tuple], Edu] = {}
|
2016-11-04 11:35:25 -04:00
|
|
|
|
2020-05-05 09:27:13 -04:00
|
|
|
# stream position -> (destination, key)
|
2021-07-15 06:02:43 -04:00
|
|
|
self.keyed_edu_changed: SortedDict[int, Tuple[str, tuple]] = SortedDict()
|
2016-11-04 11:35:25 -04:00
|
|
|
|
2021-07-15 06:02:43 -04:00
|
|
|
self.edus: SortedDict[int, Edu] = SortedDict()
|
2016-11-04 11:35:25 -04:00
|
|
|
|
2021-04-19 05:50:49 -04:00
|
|
|
# stream ID for the next entry into keyed_edu_changed/edus.
|
2016-11-04 11:35:25 -04:00
|
|
|
self.pos = 1
|
2020-05-05 09:15:57 -04:00
|
|
|
|
|
|
|
# map from stream ID to the time that stream entry was generated, so that we
|
|
|
|
# can clear out entries after a while
|
2021-07-15 06:02:43 -04:00
|
|
|
self.pos_time: SortedDict[int, int] = SortedDict()
|
2016-11-04 11:35:25 -04:00
|
|
|
|
2016-11-21 12:34:43 -05:00
|
|
|
# EVERYTHING IS SAD. In particular, python only makes new scopes when
|
|
|
|
# we make a new function, so we need to make a new function so the inner
|
2016-11-21 12:59:39 -05:00
|
|
|
# lambda binds to the queue rather than to the name of the queue which
|
|
|
|
# changes. ARGH.
|
2021-03-29 11:43:20 -04:00
|
|
|
def register(name: str, queue: Sized) -> None:
|
2018-05-22 18:32:57 -04:00
|
|
|
LaterGauge(
|
|
|
|
"synapse_federation_send_queue_%s_size" % (queue_name,),
|
2018-06-03 07:14:47 -04:00
|
|
|
"",
|
|
|
|
[],
|
|
|
|
lambda: len(queue),
|
|
|
|
)
|
2016-11-21 12:34:43 -05:00
|
|
|
|
|
|
|
for queue_name in [
|
|
|
|
"presence_map",
|
|
|
|
"keyed_edu",
|
|
|
|
"keyed_edu_changed",
|
2019-03-26 08:45:22 -04:00
|
|
|
"edus",
|
|
|
|
"pos_time",
|
|
|
|
"presence_destinations",
|
2016-11-21 12:34:43 -05:00
|
|
|
]:
|
|
|
|
register(queue_name, getattr(self, queue_name))
|
2016-11-17 10:46:44 -05:00
|
|
|
|
2016-11-04 11:35:25 -04:00
|
|
|
self.clock.looping_call(self._clear_queue, 30 * 1000)
|
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
def _next_pos(self) -> int:
|
2016-11-04 11:35:25 -04:00
|
|
|
pos = self.pos
|
|
|
|
self.pos += 1
|
|
|
|
self.pos_time[self.clock.time_msec()] = pos
|
|
|
|
return pos
|
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
def _clear_queue(self) -> None:
|
2016-11-21 11:55:23 -05:00
|
|
|
"""Clear the queues for anything older than N minutes"""
|
2016-11-04 11:35:25 -04:00
|
|
|
|
|
|
|
FIVE_MINUTES_AGO = 5 * 60 * 1000
|
|
|
|
now = self.clock.time_msec()
|
|
|
|
|
|
|
|
keys = self.pos_time.keys()
|
2018-06-05 19:17:52 -04:00
|
|
|
time = self.pos_time.bisect_left(now - FIVE_MINUTES_AGO)
|
2016-11-04 11:35:25 -04:00
|
|
|
if not keys[:time]:
|
|
|
|
return
|
|
|
|
|
|
|
|
position_to_delete = max(keys[:time])
|
|
|
|
for key in keys[:time]:
|
|
|
|
del self.pos_time[key]
|
|
|
|
|
|
|
|
self._clear_queue_before_pos(position_to_delete)
|
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
def _clear_queue_before_pos(self, position_to_delete: int) -> None:
|
2016-11-21 11:55:23 -05:00
|
|
|
"""Clear all the queues from before a given position"""
|
2016-11-21 12:34:43 -05:00
|
|
|
with Measure(self.clock, "send_queue._clear"):
|
|
|
|
# Delete things out of presence maps
|
2019-03-26 08:45:22 -04:00
|
|
|
keys = self.presence_destinations.keys()
|
|
|
|
i = self.presence_destinations.bisect_left(position_to_delete)
|
|
|
|
for key in keys[:i]:
|
|
|
|
del self.presence_destinations[key]
|
|
|
|
|
2021-04-19 05:50:49 -04:00
|
|
|
user_ids = {user_id for user_id, _ in self.presence_destinations.values()}
|
2019-03-26 08:45:22 -04:00
|
|
|
|
2016-11-21 12:34:43 -05:00
|
|
|
to_del = [
|
|
|
|
user_id for user_id in self.presence_map if user_id not in user_ids
|
|
|
|
]
|
|
|
|
for user_id in to_del:
|
|
|
|
del self.presence_map[user_id]
|
|
|
|
|
|
|
|
# Delete things out of keyed edus
|
|
|
|
keys = self.keyed_edu_changed.keys()
|
2018-06-05 19:17:52 -04:00
|
|
|
i = self.keyed_edu_changed.bisect_left(position_to_delete)
|
2016-11-21 12:34:43 -05:00
|
|
|
for key in keys[:i]:
|
|
|
|
del self.keyed_edu_changed[key]
|
|
|
|
|
|
|
|
live_keys = set()
|
|
|
|
for edu_key in self.keyed_edu_changed.values():
|
|
|
|
live_keys.add(edu_key)
|
|
|
|
|
2020-05-05 09:27:13 -04:00
|
|
|
keys_to_del = [
|
|
|
|
edu_key for edu_key in self.keyed_edu if edu_key not in live_keys
|
|
|
|
]
|
|
|
|
for edu_key in keys_to_del:
|
2016-11-21 12:34:43 -05:00
|
|
|
del self.keyed_edu[edu_key]
|
|
|
|
|
|
|
|
# Delete things out of edu map
|
|
|
|
keys = self.edus.keys()
|
2018-06-05 19:17:52 -04:00
|
|
|
i = self.edus.bisect_left(position_to_delete)
|
2016-11-21 12:34:43 -05:00
|
|
|
for key in keys[:i]:
|
|
|
|
del self.edus[key]
|
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
def notify_new_events(self, max_token: RoomStreamToken) -> None:
|
2019-03-13 16:02:56 -04:00
|
|
|
"""As per FederationSender"""
|
2021-03-29 11:43:20 -04:00
|
|
|
# This should never get called.
|
|
|
|
raise NotImplementedError()
|
2016-11-17 10:46:44 -05:00
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
def build_and_send_edu(
|
|
|
|
self,
|
|
|
|
destination: str,
|
|
|
|
edu_type: str,
|
|
|
|
content: JsonDict,
|
|
|
|
key: Optional[Hashable] = None,
|
|
|
|
) -> None:
|
2019-03-13 16:02:56 -04:00
|
|
|
"""As per FederationSender"""
|
2019-03-04 07:57:44 -05:00
|
|
|
if destination == self.server_name:
|
|
|
|
logger.info("Not sending EDU to ourselves")
|
|
|
|
return
|
|
|
|
|
2016-11-04 11:35:25 -04:00
|
|
|
pos = self._next_pos()
|
|
|
|
|
2016-11-16 12:34:44 -05:00
|
|
|
edu = Edu(
|
|
|
|
origin=self.server_name,
|
|
|
|
destination=destination,
|
|
|
|
edu_type=edu_type,
|
|
|
|
content=content,
|
|
|
|
)
|
|
|
|
|
2016-11-04 11:35:25 -04:00
|
|
|
if key:
|
2016-11-17 10:46:44 -05:00
|
|
|
assert isinstance(key, tuple)
|
2016-11-16 12:34:44 -05:00
|
|
|
self.keyed_edu[(destination, key)] = edu
|
|
|
|
self.keyed_edu_changed[pos] = (destination, key)
|
2016-11-04 11:35:25 -04:00
|
|
|
else:
|
|
|
|
self.edus[pos] = edu
|
|
|
|
|
2017-03-27 09:07:47 -04:00
|
|
|
self.notifier.on_new_replication_data()
|
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
async def send_read_receipt(self, receipt: ReadReceipt) -> None:
|
2019-03-13 16:02:56 -04:00
|
|
|
"""As per FederationSender
|
2019-03-13 11:55:37 -04:00
|
|
|
|
|
|
|
Args:
|
2021-03-29 11:43:20 -04:00
|
|
|
receipt:
|
2019-03-13 11:55:37 -04:00
|
|
|
"""
|
|
|
|
# nothing to do here: the replication listener will handle it.
|
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
def send_presence_to_destinations(
|
|
|
|
self, states: Iterable[UserPresenceState], destinations: Iterable[str]
|
|
|
|
) -> None:
|
2019-03-26 08:45:22 -04:00
|
|
|
"""As per FederationSender
|
|
|
|
|
|
|
|
Args:
|
2021-03-29 11:43:20 -04:00
|
|
|
states
|
|
|
|
destinations
|
2019-03-26 08:45:22 -04:00
|
|
|
"""
|
|
|
|
for state in states:
|
|
|
|
pos = self._next_pos()
|
|
|
|
self.presence_map.update({state.user_id: state for state in states})
|
|
|
|
self.presence_destinations[pos] = (state.user_id, destinations)
|
|
|
|
|
|
|
|
self.notifier.on_new_replication_data()
|
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
def send_device_messages(self, destination: str) -> None:
|
2019-03-13 16:02:56 -04:00
|
|
|
"""As per FederationSender"""
|
2020-01-29 06:23:01 -05:00
|
|
|
# We don't need to replicate this as it gets sent down a different
|
|
|
|
# stream.
|
2016-11-04 11:35:25 -04:00
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
def wake_destination(self, server: str) -> None:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_current_token(self) -> int:
|
2016-11-16 12:34:44 -05:00
|
|
|
return self.pos - 1
|
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
def federation_ack(self, instance_name: str, token: int) -> None:
|
2020-07-10 13:26:36 -04:00
|
|
|
if self._sender_instances:
|
|
|
|
# If we have configured multiple federation sender instances we need
|
|
|
|
# to track their positions separately, and only clear the queue up
|
|
|
|
# to the token all instances have acked.
|
|
|
|
self._sender_positions[instance_name] = token
|
|
|
|
token = min(self._sender_positions.values())
|
|
|
|
|
2017-03-27 09:11:17 -04:00
|
|
|
self._clear_queue_before_pos(token)
|
|
|
|
|
2020-01-16 04:16:12 -05:00
|
|
|
async def get_replication_rows(
|
2020-05-05 09:15:57 -04:00
|
|
|
self, instance_name: str, from_token: int, to_token: int, target_row_count: int
|
|
|
|
) -> Tuple[List[Tuple[int, Tuple]], int, bool]:
|
2017-03-27 09:11:17 -04:00
|
|
|
"""Get rows to be sent over federation between the two tokens
|
|
|
|
|
2016-11-23 05:40:44 -05:00
|
|
|
Args:
|
2020-05-05 09:15:57 -04:00
|
|
|
instance_name: the name of the current process
|
|
|
|
from_token: the previous stream token: the starting point for fetching the
|
|
|
|
updates
|
|
|
|
to_token: the new stream token: the point to get updates up to
|
|
|
|
target_row_count: a target for the number of rows to be returned.
|
|
|
|
|
|
|
|
Returns: a triplet `(updates, new_last_token, limited)`, where:
|
|
|
|
* `updates` is a list of `(token, row)` entries.
|
|
|
|
* `new_last_token` is the new position in stream.
|
|
|
|
* `limited` is whether there are more updates to fetch.
|
2016-11-23 05:40:44 -05:00
|
|
|
"""
|
2020-05-05 09:15:57 -04:00
|
|
|
# TODO: Handle target_row_count.
|
2016-11-16 12:34:44 -05:00
|
|
|
|
|
|
|
# To handle restarts where we wrap around
|
2017-03-27 09:11:17 -04:00
|
|
|
if from_token > self.pos:
|
|
|
|
from_token = -1
|
2016-11-16 12:34:44 -05:00
|
|
|
|
2017-04-10 05:02:17 -04:00
|
|
|
# list of tuple(int, BaseFederationRow), where the first is the position
|
|
|
|
# of the federation stream.
|
2021-07-15 06:02:43 -04:00
|
|
|
rows: List[Tuple[int, BaseFederationRow]] = []
|
2016-11-16 12:34:44 -05:00
|
|
|
|
2019-03-26 08:45:22 -04:00
|
|
|
# Fetch presence to send to destinations
|
|
|
|
i = self.presence_destinations.bisect_right(from_token)
|
|
|
|
j = self.presence_destinations.bisect_right(to_token) + 1
|
|
|
|
|
|
|
|
for pos, (user_id, dests) in self.presence_destinations.items()[i:j]:
|
|
|
|
rows.append(
|
2019-06-20 05:32:02 -04:00
|
|
|
(
|
2019-03-26 08:45:22 -04:00
|
|
|
pos,
|
|
|
|
PresenceDestinationsRow(
|
|
|
|
state=self.presence_map[user_id], destinations=list(dests)
|
|
|
|
),
|
|
|
|
)
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2019-03-26 08:45:22 -04:00
|
|
|
|
2016-11-04 11:35:25 -04:00
|
|
|
# Fetch changes keyed edus
|
2018-06-05 19:17:52 -04:00
|
|
|
i = self.keyed_edu_changed.bisect_right(from_token)
|
|
|
|
j = self.keyed_edu_changed.bisect_right(to_token) + 1
|
2017-04-10 11:49:51 -04:00
|
|
|
# We purposefully clobber based on the key here, python dict comprehensions
|
|
|
|
# always use the last value, so this will correctly point to the last
|
|
|
|
# stream position.
|
2018-06-05 19:17:52 -04:00
|
|
|
keyed_edus = {v: k for k, v in self.keyed_edu_changed.items()[i:j]}
|
2016-11-04 11:35:25 -04:00
|
|
|
|
2020-06-15 07:03:36 -04:00
|
|
|
for ((destination, edu_key), pos) in keyed_edus.items():
|
2017-04-07 06:48:27 -04:00
|
|
|
rows.append(
|
2019-06-20 05:32:02 -04:00
|
|
|
(
|
2017-04-07 06:48:27 -04:00
|
|
|
pos,
|
|
|
|
KeyedEduRow(
|
|
|
|
key=edu_key, edu=self.keyed_edu[(destination, edu_key)]
|
2019-06-20 05:32:02 -04:00
|
|
|
),
|
2017-04-07 06:48:27 -04:00
|
|
|
)
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2016-11-04 11:35:25 -04:00
|
|
|
|
|
|
|
# Fetch changed edus
|
2018-06-05 19:17:52 -04:00
|
|
|
i = self.edus.bisect_right(from_token)
|
|
|
|
j = self.edus.bisect_right(to_token) + 1
|
|
|
|
edus = self.edus.items()[i:j]
|
2016-11-04 11:35:25 -04:00
|
|
|
|
|
|
|
for (pos, edu) in edus:
|
2017-04-07 06:48:27 -04:00
|
|
|
rows.append((pos, EduRow(edu)))
|
2016-11-04 11:35:25 -04:00
|
|
|
|
|
|
|
# Sort rows based on pos
|
|
|
|
rows.sort()
|
|
|
|
|
2020-05-05 09:15:57 -04:00
|
|
|
return (
|
|
|
|
[(pos, (row.TypeId, row.to_data())) for pos, row in rows],
|
|
|
|
to_token,
|
|
|
|
False,
|
|
|
|
)
|
2017-04-07 06:48:27 -04:00
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class BaseFederationRow:
|
2017-04-07 06:52:57 -04:00
|
|
|
"""Base class for rows to be sent in the federation stream.
|
|
|
|
|
|
|
|
Specifies how to identify, serialize and deserialize the different types.
|
|
|
|
"""
|
|
|
|
|
2020-07-09 09:52:58 -04:00
|
|
|
TypeId = "" # Unique string that ids the type. Must be overridden in sub classes.
|
2017-04-07 06:48:27 -04:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def from_data(data):
|
|
|
|
"""Parse the data from the federation stream into a row.
|
2017-04-07 06:52:57 -04:00
|
|
|
|
|
|
|
Args:
|
|
|
|
data: The value of ``data`` from FederationStreamRow.data, type
|
|
|
|
depends on the type of stream
|
2017-04-07 06:48:27 -04:00
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def to_data(self):
|
2017-04-07 06:52:57 -04:00
|
|
|
"""Serialize this row to be sent over the federation stream.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The value to be sent in FederationStreamRow.data. The type depends
|
|
|
|
on the type of stream.
|
2017-04-07 06:48:27 -04:00
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def add_to_buffer(self, buff):
|
|
|
|
"""Add this row to the appropriate field in the buffer ready for this
|
|
|
|
to be sent over federation.
|
|
|
|
|
|
|
|
We use a buffer so that we can batch up events that have come in at
|
|
|
|
the same time and send them all at once.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
buff (BufferedToSend)
|
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
|
2019-03-26 08:45:22 -04:00
|
|
|
class PresenceDestinationsRow(
|
|
|
|
BaseFederationRow,
|
|
|
|
namedtuple(
|
|
|
|
"PresenceDestinationsRow",
|
|
|
|
("state", "destinations"), # UserPresenceState # list[str]
|
|
|
|
),
|
|
|
|
):
|
|
|
|
TypeId = "pd"
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def from_data(data):
|
|
|
|
return PresenceDestinationsRow(
|
|
|
|
state=UserPresenceState.from_dict(data["state"]), destinations=data["dests"]
|
|
|
|
)
|
|
|
|
|
|
|
|
def to_data(self):
|
|
|
|
return {"state": self.state.as_dict(), "dests": self.destinations}
|
|
|
|
|
|
|
|
def add_to_buffer(self, buff):
|
|
|
|
buff.presence_destinations.append((self.state, self.destinations))
|
|
|
|
|
|
|
|
|
2017-04-07 06:48:27 -04:00
|
|
|
class KeyedEduRow(
|
|
|
|
BaseFederationRow,
|
|
|
|
namedtuple(
|
|
|
|
"KeyedEduRow",
|
|
|
|
("key", "edu"), # tuple(str) - the edu key passed to send_edu # Edu
|
|
|
|
),
|
|
|
|
):
|
2017-04-12 05:36:29 -04:00
|
|
|
"""Streams EDUs that have an associated key that is ued to clobber. For example,
|
|
|
|
typing EDUs clobber based on room_id.
|
|
|
|
"""
|
|
|
|
|
2017-04-07 06:48:27 -04:00
|
|
|
TypeId = "k"
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def from_data(data):
|
|
|
|
return KeyedEduRow(key=tuple(data["key"]), edu=Edu(**data["edu"]))
|
|
|
|
|
|
|
|
def to_data(self):
|
|
|
|
return {"key": self.key, "edu": self.edu.get_internal_dict()}
|
|
|
|
|
|
|
|
def add_to_buffer(self, buff):
|
|
|
|
buff.keyed_edus.setdefault(self.edu.destination, {})[self.key] = self.edu
|
|
|
|
|
|
|
|
|
|
|
|
class EduRow(BaseFederationRow, namedtuple("EduRow", ("edu",))): # Edu
|
2017-04-12 05:36:29 -04:00
|
|
|
"""Streams EDUs that don't have keys. See KeyedEduRow"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2017-04-07 06:48:27 -04:00
|
|
|
TypeId = "e"
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def from_data(data):
|
|
|
|
return EduRow(Edu(**data))
|
|
|
|
|
|
|
|
def to_data(self):
|
|
|
|
return self.edu.get_internal_dict()
|
|
|
|
|
|
|
|
def add_to_buffer(self, buff):
|
|
|
|
buff.edus.setdefault(self.edu.destination, []).append(self.edu)
|
|
|
|
|
|
|
|
|
2021-07-15 06:02:43 -04:00
|
|
|
_rowtypes: Tuple[Type[BaseFederationRow], ...] = (
|
2020-05-05 09:27:13 -04:00
|
|
|
PresenceDestinationsRow,
|
|
|
|
KeyedEduRow,
|
|
|
|
EduRow,
|
2021-07-15 06:02:43 -04:00
|
|
|
)
|
2020-05-05 09:27:13 -04:00
|
|
|
|
|
|
|
TypeToRow = {Row.TypeId: Row for Row in _rowtypes}
|
2017-04-07 06:48:27 -04:00
|
|
|
|
|
|
|
|
2017-04-10 05:03:07 -04:00
|
|
|
ParsedFederationStreamData = namedtuple(
|
|
|
|
"ParsedFederationStreamData",
|
|
|
|
(
|
2019-03-26 08:45:22 -04:00
|
|
|
"presence_destinations", # list of tuples of UserPresenceState and destinations
|
2017-04-07 06:48:27 -04:00
|
|
|
"keyed_edus", # dict of destination -> { key -> Edu }
|
|
|
|
"edus", # dict of destination -> [Edu]
|
2019-06-20 05:32:02 -04:00
|
|
|
),
|
2017-04-07 06:48:27 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
def process_rows_for_federation(
|
|
|
|
transaction_queue: FederationSender,
|
|
|
|
rows: List[FederationStream.FederationStreamRow],
|
|
|
|
) -> None:
|
2017-04-10 05:02:17 -04:00
|
|
|
"""Parse a list of rows from the federation stream and put them in the
|
|
|
|
transaction queue ready for sending to the relevant homeservers.
|
2017-04-07 06:48:27 -04:00
|
|
|
|
|
|
|
Args:
|
2021-03-29 11:43:20 -04:00
|
|
|
transaction_queue
|
|
|
|
rows
|
2017-04-07 06:48:27 -04:00
|
|
|
"""
|
|
|
|
|
2017-04-10 05:02:17 -04:00
|
|
|
# The federation stream contains a bunch of different types of
|
2017-04-07 06:48:27 -04:00
|
|
|
# rows that need to be handled differently. We parse the rows, put
|
|
|
|
# them into the appropriate collection and then send them off.
|
|
|
|
|
2017-04-10 05:03:07 -04:00
|
|
|
buff = ParsedFederationStreamData(
|
2020-01-29 06:23:01 -05:00
|
|
|
presence_destinations=[],
|
|
|
|
keyed_edus={},
|
|
|
|
edus={},
|
2017-04-07 06:48:27 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# Parse the rows in the stream and add to the buffer
|
|
|
|
for row in rows:
|
2017-04-07 06:51:28 -04:00
|
|
|
if row.type not in TypeToRow:
|
|
|
|
logger.error("Unrecognized federation row type %r", row.type)
|
|
|
|
continue
|
|
|
|
|
2017-04-07 06:48:27 -04:00
|
|
|
RowType = TypeToRow[row.type]
|
|
|
|
parsed_row = RowType.from_data(row.data)
|
|
|
|
parsed_row.add_to_buffer(buff)
|
|
|
|
|
2019-03-26 08:45:22 -04:00
|
|
|
for state, destinations in buff.presence_destinations:
|
|
|
|
transaction_queue.send_presence_to_destinations(
|
|
|
|
states=[state], destinations=destinations
|
|
|
|
)
|
|
|
|
|
2021-04-20 06:50:49 -04:00
|
|
|
for edu_map in buff.keyed_edus.values():
|
2017-04-07 06:48:27 -04:00
|
|
|
for key, edu in edu_map.items():
|
2019-03-04 07:57:44 -05:00
|
|
|
transaction_queue.send_edu(edu, key)
|
2017-04-07 06:48:27 -04:00
|
|
|
|
2021-04-20 06:50:49 -04:00
|
|
|
for edu_list in buff.edus.values():
|
2017-04-07 06:48:27 -04:00
|
|
|
for edu in edu_list:
|
2019-03-04 07:57:44 -05:00
|
|
|
transaction_queue.send_edu(edu, None)
|