2019-03-27 07:45:42 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2017 Vector Creations Ltd
|
2023-11-21 15:29:58 -05:00
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2019-03-27 07:45:42 -04:00
|
|
|
#
|
|
|
|
#
|
2021-03-29 11:43:20 -04:00
|
|
|
from typing import TYPE_CHECKING, Any, Awaitable, Callable, List, Tuple
|
2019-03-27 07:45:42 -04:00
|
|
|
|
2021-12-30 13:47:12 -05:00
|
|
|
import attr
|
|
|
|
|
2020-05-07 08:51:08 -04:00
|
|
|
from synapse.replication.tcp.streams._base import (
|
|
|
|
Stream,
|
2023-10-23 11:57:30 -04:00
|
|
|
Token,
|
2020-05-07 08:51:08 -04:00
|
|
|
current_token_without_instance,
|
|
|
|
make_http_update_function,
|
|
|
|
)
|
2021-12-30 13:47:12 -05:00
|
|
|
from synapse.types import JsonDict
|
2019-03-27 07:45:42 -04:00
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2019-03-27 07:45:42 -04:00
|
|
|
|
|
|
|
class FederationStream(Stream):
|
|
|
|
"""Data to be sent over federation. Only available when master has federation
|
|
|
|
sending disabled.
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2021-12-30 13:47:12 -05:00
|
|
|
@attr.s(slots=True, frozen=True, auto_attribs=True)
|
|
|
|
class FederationStreamRow:
|
|
|
|
type: str # the type of data as defined in the BaseFederationRows
|
|
|
|
data: JsonDict # serialization of a federation.send_queue.BaseFederationRow
|
2020-03-23 09:59:11 -04:00
|
|
|
|
2019-03-27 07:45:42 -04:00
|
|
|
NAME = "federation"
|
|
|
|
ROW_TYPE = FederationStreamRow
|
|
|
|
|
2021-03-29 11:43:20 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2021-09-13 13:07:12 -04:00
|
|
|
if hs.config.worker.worker_app is None:
|
2020-05-05 09:15:57 -04:00
|
|
|
# master process: get updates from the FederationRemoteSendQueue.
|
|
|
|
# (if the master is configured to send federation itself, federation_sender
|
|
|
|
# will be a real FederationSender, which has stubs for current_token and
|
|
|
|
# get_replication_rows.)
|
2020-03-25 10:54:01 -04:00
|
|
|
federation_sender = hs.get_federation_sender()
|
2023-10-23 11:57:30 -04:00
|
|
|
self.current_token_func = current_token_without_instance(
|
2020-05-07 08:51:08 -04:00
|
|
|
federation_sender.get_current_token
|
|
|
|
)
|
2021-07-15 06:02:43 -04:00
|
|
|
update_function: Callable[
|
|
|
|
[str, int, int, int], Awaitable[Tuple[List[Tuple[int, Any]], int, bool]]
|
|
|
|
] = federation_sender.get_replication_rows
|
2020-05-05 09:15:57 -04:00
|
|
|
|
|
|
|
elif hs.should_send_federation():
|
|
|
|
# federation sender: Query master process
|
|
|
|
update_function = make_http_update_function(hs, self.NAME)
|
2023-10-23 11:57:30 -04:00
|
|
|
self.current_token_func = self._stub_current_token
|
2020-05-05 09:15:57 -04:00
|
|
|
|
2020-03-25 10:54:01 -04:00
|
|
|
else:
|
2020-05-05 09:15:57 -04:00
|
|
|
# other worker: stub out the update function (we're not interested in
|
|
|
|
# any updates so when we get a POSITION we do nothing)
|
2020-04-17 09:49:55 -04:00
|
|
|
update_function = self._stub_update_function
|
2023-10-23 11:57:30 -04:00
|
|
|
self.current_token_func = self._stub_current_token
|
2020-04-17 09:49:55 -04:00
|
|
|
|
2023-10-23 11:57:30 -04:00
|
|
|
super().__init__(hs.get_instance_name(), update_function)
|
|
|
|
|
|
|
|
def current_token(self, instance_name: str) -> Token:
|
|
|
|
return self.current_token_func(instance_name)
|
|
|
|
|
|
|
|
def minimal_local_current_token(self) -> Token:
|
|
|
|
return self.current_token(self.local_instance_name)
|
2019-03-27 07:45:42 -04:00
|
|
|
|
2020-05-05 09:15:57 -04:00
|
|
|
@staticmethod
|
2020-05-07 08:51:08 -04:00
|
|
|
def _stub_current_token(instance_name: str) -> int:
|
2020-05-05 09:15:57 -04:00
|
|
|
# dummy current-token method for use on workers
|
|
|
|
return 0
|
|
|
|
|
2020-04-17 09:49:55 -04:00
|
|
|
@staticmethod
|
2021-03-29 11:43:20 -04:00
|
|
|
async def _stub_update_function(
|
|
|
|
instance_name: str, from_token: int, upto_token: int, limit: int
|
|
|
|
) -> Tuple[list, int, bool]:
|
2020-04-17 09:49:55 -04:00
|
|
|
return [], upto_token, False
|