mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-11 20:42:23 +01:00
Add type hints to state handler. (#10482)
This commit is contained in:
parent
228decfce1
commit
b7186c6e8d
4 changed files with 29 additions and 19 deletions
1
changelog.d/10482.misc
Normal file
1
changelog.d/10482.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Additional type hints in the state handler.
|
|
@ -16,6 +16,7 @@ import heapq
|
||||||
import logging
|
import logging
|
||||||
from collections import defaultdict, namedtuple
|
from collections import defaultdict, namedtuple
|
||||||
from typing import (
|
from typing import (
|
||||||
|
TYPE_CHECKING,
|
||||||
Any,
|
Any,
|
||||||
Awaitable,
|
Awaitable,
|
||||||
Callable,
|
Callable,
|
||||||
|
@ -52,6 +53,10 @@ from synapse.util.async_helpers import Linearizer
|
||||||
from synapse.util.caches.expiringcache import ExpiringCache
|
from synapse.util.caches.expiringcache import ExpiringCache
|
||||||
from synapse.util.metrics import Measure, measure_func
|
from synapse.util.metrics import Measure, measure_func
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from synapse.server import HomeServer
|
||||||
|
from synapse.storage.databases.main import DataStore
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
metrics_logger = logging.getLogger("synapse.state.metrics")
|
metrics_logger = logging.getLogger("synapse.state.metrics")
|
||||||
|
|
||||||
|
@ -74,7 +79,7 @@ _NEXT_STATE_ID = 1
|
||||||
POWER_KEY = (EventTypes.PowerLevels, "")
|
POWER_KEY = (EventTypes.PowerLevels, "")
|
||||||
|
|
||||||
|
|
||||||
def _gen_state_id():
|
def _gen_state_id() -> str:
|
||||||
global _NEXT_STATE_ID
|
global _NEXT_STATE_ID
|
||||||
s = "X%d" % (_NEXT_STATE_ID,)
|
s = "X%d" % (_NEXT_STATE_ID,)
|
||||||
_NEXT_STATE_ID += 1
|
_NEXT_STATE_ID += 1
|
||||||
|
@ -109,7 +114,7 @@ class _StateCacheEntry:
|
||||||
# `state_id` is either a state_group (and so an int) or a string. This
|
# `state_id` is either a state_group (and so an int) or a string. This
|
||||||
# ensures we don't accidentally persist a state_id as a stateg_group
|
# ensures we don't accidentally persist a state_id as a stateg_group
|
||||||
if state_group:
|
if state_group:
|
||||||
self.state_id = state_group
|
self.state_id: Union[str, int] = state_group
|
||||||
else:
|
else:
|
||||||
self.state_id = _gen_state_id()
|
self.state_id = _gen_state_id()
|
||||||
|
|
||||||
|
@ -122,7 +127,7 @@ class StateHandler:
|
||||||
where necessary
|
where necessary
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, hs):
|
def __init__(self, hs: "HomeServer"):
|
||||||
self.clock = hs.get_clock()
|
self.clock = hs.get_clock()
|
||||||
self.store = hs.get_datastore()
|
self.store = hs.get_datastore()
|
||||||
self.state_store = hs.get_storage().state
|
self.state_store = hs.get_storage().state
|
||||||
|
@ -507,7 +512,7 @@ class StateResolutionHandler:
|
||||||
be storage-independent.
|
be storage-independent.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, hs):
|
def __init__(self, hs: "HomeServer"):
|
||||||
self.clock = hs.get_clock()
|
self.clock = hs.get_clock()
|
||||||
|
|
||||||
self.resolve_linearizer = Linearizer(name="state_resolve_lock")
|
self.resolve_linearizer = Linearizer(name="state_resolve_lock")
|
||||||
|
@ -657,13 +662,15 @@ class StateResolutionHandler:
|
||||||
finally:
|
finally:
|
||||||
self._record_state_res_metrics(room_id, m.get_resource_usage())
|
self._record_state_res_metrics(room_id, m.get_resource_usage())
|
||||||
|
|
||||||
def _record_state_res_metrics(self, room_id: str, rusage: ContextResourceUsage):
|
def _record_state_res_metrics(
|
||||||
|
self, room_id: str, rusage: ContextResourceUsage
|
||||||
|
) -> None:
|
||||||
room_metrics = self._state_res_metrics[room_id]
|
room_metrics = self._state_res_metrics[room_id]
|
||||||
room_metrics.cpu_time += rusage.ru_utime + rusage.ru_stime
|
room_metrics.cpu_time += rusage.ru_utime + rusage.ru_stime
|
||||||
room_metrics.db_time += rusage.db_txn_duration_sec
|
room_metrics.db_time += rusage.db_txn_duration_sec
|
||||||
room_metrics.db_events += rusage.evt_db_fetch_count
|
room_metrics.db_events += rusage.evt_db_fetch_count
|
||||||
|
|
||||||
def _report_metrics(self):
|
def _report_metrics(self) -> None:
|
||||||
if not self._state_res_metrics:
|
if not self._state_res_metrics:
|
||||||
# no state res has happened since the last iteration: don't bother logging.
|
# no state res has happened since the last iteration: don't bother logging.
|
||||||
return
|
return
|
||||||
|
@ -773,16 +780,13 @@ def _make_state_cache_entry(
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@attr.s(slots=True)
|
@attr.s(slots=True, auto_attribs=True)
|
||||||
class StateResolutionStore:
|
class StateResolutionStore:
|
||||||
"""Interface that allows state resolution algorithms to access the database
|
"""Interface that allows state resolution algorithms to access the database
|
||||||
in well defined way.
|
in well defined way.
|
||||||
|
|
||||||
Args:
|
|
||||||
store (DataStore)
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
store = attr.ib()
|
store: "DataStore"
|
||||||
|
|
||||||
def get_events(
|
def get_events(
|
||||||
self, event_ids: Iterable[str], allow_rejected: bool = False
|
self, event_ids: Iterable[str], allow_rejected: bool = False
|
||||||
|
|
|
@ -372,18 +372,23 @@ class StateGroupDataStore(StateBackgroundUpdateStore, SQLBaseStore):
|
||||||
)
|
)
|
||||||
|
|
||||||
async def store_state_group(
|
async def store_state_group(
|
||||||
self, event_id, room_id, prev_group, delta_ids, current_state_ids
|
self,
|
||||||
|
event_id: str,
|
||||||
|
room_id: str,
|
||||||
|
prev_group: Optional[int],
|
||||||
|
delta_ids: Optional[StateMap[str]],
|
||||||
|
current_state_ids: StateMap[str],
|
||||||
) -> int:
|
) -> int:
|
||||||
"""Store a new set of state, returning a newly assigned state group.
|
"""Store a new set of state, returning a newly assigned state group.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
event_id (str): The event ID for which the state was calculated
|
event_id: The event ID for which the state was calculated
|
||||||
room_id (str)
|
room_id
|
||||||
prev_group (int|None): A previous state group for the room, optional.
|
prev_group: A previous state group for the room, optional.
|
||||||
delta_ids (dict|None): The delta between state at `prev_group` and
|
delta_ids: The delta between state at `prev_group` and
|
||||||
`current_state_ids`, if `prev_group` was given. Same format as
|
`current_state_ids`, if `prev_group` was given. Same format as
|
||||||
`current_state_ids`.
|
`current_state_ids`.
|
||||||
current_state_ids (dict): The state to store. Map of (type, state_key)
|
current_state_ids: The state to store. Map of (type, state_key)
|
||||||
to event_id.
|
to event_id.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
|
|
|
@ -570,8 +570,8 @@ class StateGroupStorage:
|
||||||
event_id: str,
|
event_id: str,
|
||||||
room_id: str,
|
room_id: str,
|
||||||
prev_group: Optional[int],
|
prev_group: Optional[int],
|
||||||
delta_ids: Optional[dict],
|
delta_ids: Optional[StateMap[str]],
|
||||||
current_state_ids: dict,
|
current_state_ids: StateMap[str],
|
||||||
) -> int:
|
) -> int:
|
||||||
"""Store a new set of state, returning a newly assigned state group.
|
"""Store a new set of state, returning a newly assigned state group.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue