mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-02 23:16:02 -04:00
Begin implementing state groups.
This commit is contained in:
parent
636a0dbde7
commit
5fefc12d1e
3 changed files with 123 additions and 3 deletions
|
@ -40,6 +40,7 @@ from .stream import StreamStore
|
|||
from .pdu import StatePduStore, PduStore, PdusTable
|
||||
from .transactions import TransactionStore
|
||||
from .keys import KeyStore
|
||||
from .state import StateStore
|
||||
|
||||
import json
|
||||
import logging
|
||||
|
@ -59,6 +60,7 @@ SCHEMAS = [
|
|||
"room_aliases",
|
||||
"keys",
|
||||
"redactions",
|
||||
"state",
|
||||
]
|
||||
|
||||
|
||||
|
@ -76,7 +78,7 @@ class _RollbackButIsFineException(Exception):
|
|||
class DataStore(RoomMemberStore, RoomStore,
|
||||
RegistrationStore, StreamStore, ProfileStore, FeedbackStore,
|
||||
PresenceStore, PduStore, StatePduStore, TransactionStore,
|
||||
DirectoryStore, KeyStore):
|
||||
DirectoryStore, KeyStore, StateStore):
|
||||
|
||||
def __init__(self, hs):
|
||||
super(DataStore, self).__init__(hs)
|
||||
|
@ -222,6 +224,8 @@ class DataStore(RoomMemberStore, RoomStore,
|
|||
)
|
||||
raise _RollbackButIsFineException("_persist_event")
|
||||
|
||||
self._store_state_groups_txn(txn, event)
|
||||
|
||||
is_state = hasattr(event, "state_key") and event.state_key is not None
|
||||
if is_new_state and is_state:
|
||||
vals = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue