2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-09-03 12:29:13 -04:00
|
|
|
# Copyright 2014 OpenMarket Ltd
|
2014-08-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2014-08-14 13:40:50 -04:00
|
|
|
from twisted.internet import defer
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
from synapse.api.events.room import (
|
2014-08-26 10:20:05 -04:00
|
|
|
RoomMemberEvent, RoomTopicEvent, FeedbackEvent,
|
|
|
|
# RoomConfigEvent,
|
|
|
|
RoomNameEvent,
|
2014-08-29 10:18:30 -04:00
|
|
|
RoomJoinRulesEvent,
|
|
|
|
RoomPowerLevelsEvent,
|
2014-09-01 08:44:19 -04:00
|
|
|
RoomAddStateLevelEvent,
|
|
|
|
RoomSendEventLevelEvent,
|
2014-09-02 07:11:52 -04:00
|
|
|
RoomOpsPowerLevelsEvent,
|
2014-09-24 10:27:59 -04:00
|
|
|
RoomRedactionEvent,
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
2014-08-19 09:20:03 -04:00
|
|
|
from synapse.util.logutils import log_function
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
from .directory import DirectoryStore
|
|
|
|
from .feedback import FeedbackStore
|
|
|
|
from .presence import PresenceStore
|
|
|
|
from .profile import ProfileStore
|
|
|
|
from .registration import RegistrationStore
|
|
|
|
from .room import RoomStore
|
|
|
|
from .roommember import RoomMemberStore
|
|
|
|
from .stream import StreamStore
|
2014-09-12 12:56:21 -04:00
|
|
|
from .pdu import StatePduStore, PduStore, PdusTable
|
2014-08-12 10:10:52 -04:00
|
|
|
from .transactions import TransactionStore
|
2014-08-28 13:19:47 -04:00
|
|
|
from .keys import KeyStore
|
2014-10-14 11:59:51 -04:00
|
|
|
from .state import StateStore
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
import json
|
2014-08-19 09:20:03 -04:00
|
|
|
import logging
|
2014-08-12 10:10:52 -04:00
|
|
|
import os
|
|
|
|
|
|
|
|
|
2014-08-19 09:20:03 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2014-09-10 10:42:15 -04:00
|
|
|
|
|
|
|
SCHEMAS = [
|
|
|
|
"transactions",
|
|
|
|
"pdu",
|
|
|
|
"users",
|
|
|
|
"profiles",
|
|
|
|
"presence",
|
|
|
|
"im",
|
|
|
|
"room_aliases",
|
2014-09-30 10:15:10 -04:00
|
|
|
"keys",
|
2014-09-24 10:27:59 -04:00
|
|
|
"redactions",
|
2014-10-14 11:59:51 -04:00
|
|
|
"state",
|
2014-09-10 10:42:15 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
# Remember to update this number every time an incompatible change is made to
|
|
|
|
# database schema files, so the users will be informed on server restarts.
|
2014-09-26 11:36:24 -04:00
|
|
|
SCHEMA_VERSION = 5
|
2014-09-10 10:42:15 -04:00
|
|
|
|
|
|
|
|
2014-09-08 17:36:51 -04:00
|
|
|
class _RollbackButIsFineException(Exception):
|
|
|
|
""" This exception is used to rollback a transaction without implying
|
|
|
|
something went wrong.
|
|
|
|
"""
|
|
|
|
pass
|
2014-08-19 09:20:03 -04:00
|
|
|
|
2014-08-14 12:34:37 -04:00
|
|
|
class DataStore(RoomMemberStore, RoomStore,
|
2014-08-12 10:10:52 -04:00
|
|
|
RegistrationStore, StreamStore, ProfileStore, FeedbackStore,
|
|
|
|
PresenceStore, PduStore, StatePduStore, TransactionStore,
|
2014-10-14 11:59:51 -04:00
|
|
|
DirectoryStore, KeyStore, StateStore):
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
super(DataStore, self).__init__(hs)
|
|
|
|
self.event_factory = hs.get_event_factory()
|
2014-08-18 10:50:41 -04:00
|
|
|
self.hs = hs
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-18 11:00:46 -04:00
|
|
|
self.min_token_deferred = self._get_min_token()
|
|
|
|
self.min_token = None
|
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
@defer.inlineCallbacks
|
2014-08-19 09:20:03 -04:00
|
|
|
@log_function
|
2014-09-15 11:40:44 -04:00
|
|
|
def persist_event(self, event=None, backfilled=False, pdu=None,
|
|
|
|
is_new_state=True):
|
2014-08-26 09:31:48 -04:00
|
|
|
stream_ordering = None
|
|
|
|
if backfilled:
|
|
|
|
if not self.min_token_deferred.called:
|
|
|
|
yield self.min_token_deferred
|
|
|
|
self.min_token -= 1
|
|
|
|
stream_ordering = self.min_token
|
|
|
|
|
2014-09-08 17:36:51 -04:00
|
|
|
try:
|
2014-09-12 08:57:24 -04:00
|
|
|
yield self.runInteraction(
|
2014-09-08 17:36:51 -04:00
|
|
|
self._persist_pdu_event_txn,
|
|
|
|
pdu=pdu,
|
|
|
|
event=event,
|
|
|
|
backfilled=backfilled,
|
|
|
|
stream_ordering=stream_ordering,
|
2014-09-15 11:40:44 -04:00
|
|
|
is_new_state=is_new_state,
|
2014-09-08 17:36:51 -04:00
|
|
|
)
|
2014-09-30 07:38:38 -04:00
|
|
|
except _RollbackButIsFineException:
|
2014-09-08 17:36:51 -04:00
|
|
|
pass
|
2014-08-13 11:27:14 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-09-05 21:23:36 -04:00
|
|
|
def get_event(self, event_id, allow_none=False):
|
2014-08-13 11:27:14 -04:00
|
|
|
events_dict = yield self._simple_select_one(
|
|
|
|
"events",
|
|
|
|
{"event_id": event_id},
|
|
|
|
[
|
|
|
|
"event_id",
|
|
|
|
"type",
|
|
|
|
"room_id",
|
|
|
|
"content",
|
|
|
|
"unrecognized_keys"
|
|
|
|
],
|
2014-09-05 21:23:36 -04:00
|
|
|
allow_none=allow_none,
|
2014-08-13 11:27:14 -04:00
|
|
|
)
|
|
|
|
|
2014-09-05 21:23:36 -04:00
|
|
|
if not events_dict:
|
|
|
|
defer.returnValue(None)
|
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
event = self._parse_event_from_row(events_dict)
|
|
|
|
defer.returnValue(event)
|
|
|
|
|
2014-08-26 13:01:36 -04:00
|
|
|
def _persist_pdu_event_txn(self, txn, pdu=None, event=None,
|
2014-09-15 11:40:44 -04:00
|
|
|
backfilled=False, stream_ordering=None,
|
|
|
|
is_new_state=True):
|
2014-08-26 13:01:36 -04:00
|
|
|
if pdu is not None:
|
2014-08-27 10:31:04 -04:00
|
|
|
self._persist_event_pdu_txn(txn, pdu)
|
2014-08-26 13:01:36 -04:00
|
|
|
if event is not None:
|
2014-08-27 12:03:45 -04:00
|
|
|
return self._persist_event_txn(
|
2014-09-15 11:40:44 -04:00
|
|
|
txn, event, backfilled, stream_ordering,
|
|
|
|
is_new_state=is_new_state,
|
2014-08-27 12:03:45 -04:00
|
|
|
)
|
2014-08-26 13:01:36 -04:00
|
|
|
|
2014-08-27 10:31:04 -04:00
|
|
|
def _persist_event_pdu_txn(self, txn, pdu):
|
2014-08-26 13:01:36 -04:00
|
|
|
cols = dict(pdu.__dict__)
|
|
|
|
unrec_keys = dict(pdu.unrecognized_keys)
|
|
|
|
del cols["content"]
|
|
|
|
del cols["prev_pdus"]
|
|
|
|
cols["content_json"] = json.dumps(pdu.content)
|
2014-09-12 12:56:21 -04:00
|
|
|
|
|
|
|
unrec_keys.update({
|
|
|
|
k: v for k, v in cols.items()
|
|
|
|
if k not in PdusTable.fields
|
|
|
|
})
|
|
|
|
|
2014-08-26 13:01:36 -04:00
|
|
|
cols["unrecognized_keys"] = json.dumps(unrec_keys)
|
|
|
|
|
|
|
|
logger.debug("Persisting: %s", repr(cols))
|
|
|
|
|
|
|
|
if pdu.is_state:
|
|
|
|
self._persist_state_txn(txn, pdu.prev_pdus, cols)
|
|
|
|
else:
|
|
|
|
self._persist_pdu_txn(txn, pdu.prev_pdus, cols)
|
|
|
|
|
|
|
|
self._update_min_depth_for_context_txn(txn, pdu.context, pdu.depth)
|
|
|
|
|
2014-08-19 09:20:03 -04:00
|
|
|
@log_function
|
2014-09-15 11:40:44 -04:00
|
|
|
def _persist_event_txn(self, txn, event, backfilled, stream_ordering=None,
|
|
|
|
is_new_state=True):
|
2014-08-26 09:31:48 -04:00
|
|
|
if event.type == RoomMemberEvent.TYPE:
|
2014-09-12 10:51:51 -04:00
|
|
|
self._store_room_member_txn(txn, event)
|
2014-08-26 09:31:48 -04:00
|
|
|
elif event.type == FeedbackEvent.TYPE:
|
2014-09-01 08:44:19 -04:00
|
|
|
self._store_feedback_txn(txn, event)
|
2014-08-26 09:31:48 -04:00
|
|
|
elif event.type == RoomNameEvent.TYPE:
|
|
|
|
self._store_room_name_txn(txn, event)
|
|
|
|
elif event.type == RoomTopicEvent.TYPE:
|
|
|
|
self._store_room_topic_txn(txn, event)
|
2014-08-29 10:18:30 -04:00
|
|
|
elif event.type == RoomJoinRulesEvent.TYPE:
|
|
|
|
self._store_join_rule(txn, event)
|
|
|
|
elif event.type == RoomPowerLevelsEvent.TYPE:
|
|
|
|
self._store_power_levels(txn, event)
|
2014-09-01 08:44:19 -04:00
|
|
|
elif event.type == RoomAddStateLevelEvent.TYPE:
|
|
|
|
self._store_add_state_level(txn, event)
|
|
|
|
elif event.type == RoomSendEventLevelEvent.TYPE:
|
|
|
|
self._store_send_event_level(txn, event)
|
2014-09-02 07:11:52 -04:00
|
|
|
elif event.type == RoomOpsPowerLevelsEvent.TYPE:
|
|
|
|
self._store_ops_level(txn, event)
|
2014-09-24 10:27:59 -04:00
|
|
|
elif event.type == RoomRedactionEvent.TYPE:
|
|
|
|
self._store_redaction(txn, event)
|
2014-08-18 10:50:41 -04:00
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
vals = {
|
2014-08-18 10:50:41 -04:00
|
|
|
"topological_ordering": event.depth,
|
2014-08-13 11:27:14 -04:00
|
|
|
"event_id": event.event_id,
|
2014-08-14 13:40:50 -04:00
|
|
|
"type": event.type,
|
2014-08-13 11:27:14 -04:00
|
|
|
"room_id": event.room_id,
|
2014-08-14 09:30:25 -04:00
|
|
|
"content": json.dumps(event.content),
|
2014-08-18 10:50:41 -04:00
|
|
|
"processed": True,
|
2014-08-13 11:27:14 -04:00
|
|
|
}
|
|
|
|
|
2014-08-26 09:31:48 -04:00
|
|
|
if stream_ordering is not None:
|
|
|
|
vals["stream_ordering"] = stream_ordering
|
2014-08-18 10:50:41 -04:00
|
|
|
|
2014-08-22 08:06:07 -04:00
|
|
|
if hasattr(event, "outlier"):
|
|
|
|
vals["outlier"] = event.outlier
|
|
|
|
else:
|
|
|
|
vals["outlier"] = False
|
|
|
|
|
2014-08-15 11:17:36 -04:00
|
|
|
unrec = {
|
|
|
|
k: v
|
|
|
|
for k, v in event.get_full_dict().items()
|
2014-09-24 10:27:59 -04:00
|
|
|
if k not in vals.keys() and k not in ["redacted", "redacted_because"]
|
2014-08-15 11:17:36 -04:00
|
|
|
}
|
2014-08-14 13:40:50 -04:00
|
|
|
vals["unrecognized_keys"] = json.dumps(unrec)
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-08-19 09:20:03 -04:00
|
|
|
try:
|
2014-08-26 09:31:48 -04:00
|
|
|
self._simple_insert_txn(txn, "events", vals)
|
2014-08-19 09:20:03 -04:00
|
|
|
except:
|
2014-09-08 17:36:51 -04:00
|
|
|
logger.warn(
|
2014-08-20 10:53:07 -04:00
|
|
|
"Failed to persist, probably duplicate: %s",
|
2014-09-08 17:36:51 -04:00
|
|
|
event.event_id,
|
|
|
|
exc_info=True,
|
2014-08-20 10:53:07 -04:00
|
|
|
)
|
2014-09-08 17:36:51 -04:00
|
|
|
raise _RollbackButIsFineException("_persist_event")
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-10-14 11:59:51 -04:00
|
|
|
self._store_state_groups_txn(txn, event)
|
|
|
|
|
2014-09-25 09:45:15 -04:00
|
|
|
is_state = hasattr(event, "state_key") and event.state_key is not None
|
|
|
|
if is_new_state and is_state:
|
2014-08-13 11:27:14 -04:00
|
|
|
vals = {
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
2014-08-14 13:40:50 -04:00
|
|
|
"type": event.type,
|
2014-08-13 11:27:14 -04:00
|
|
|
"state_key": event.state_key,
|
|
|
|
}
|
|
|
|
|
|
|
|
if hasattr(event, "prev_state"):
|
|
|
|
vals["prev_state"] = event.prev_state
|
|
|
|
|
2014-08-26 09:31:48 -04:00
|
|
|
self._simple_insert_txn(txn, "state_events", vals)
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-08-26 09:31:48 -04:00
|
|
|
self._simple_insert_txn(
|
2014-08-26 11:01:29 -04:00
|
|
|
txn,
|
2014-08-15 08:58:28 -04:00
|
|
|
"current_state_events",
|
|
|
|
{
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"type": event.type,
|
|
|
|
"state_key": event.state_key,
|
|
|
|
}
|
|
|
|
)
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-09-24 10:27:59 -04:00
|
|
|
def _store_redaction(self, txn, event):
|
2014-09-24 09:18:08 -04:00
|
|
|
txn.execute(
|
2014-09-24 10:27:59 -04:00
|
|
|
"INSERT OR IGNORE INTO redactions "
|
|
|
|
"(event_id, redacts) VALUES (?,?)",
|
|
|
|
(event.event_id, event.redacts)
|
2014-09-24 09:18:08 -04:00
|
|
|
)
|
2014-09-23 10:28:32 -04:00
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
@defer.inlineCallbacks
|
2014-08-14 13:40:50 -04:00
|
|
|
def get_current_state(self, room_id, event_type=None, state_key=""):
|
2014-09-24 08:29:20 -04:00
|
|
|
del_sql = (
|
2014-09-25 10:51:21 -04:00
|
|
|
"SELECT event_id FROM redactions WHERE redacts = e.event_id "
|
|
|
|
"LIMIT 1"
|
2014-09-24 08:29:20 -04:00
|
|
|
)
|
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
sql = (
|
2014-09-24 10:27:59 -04:00
|
|
|
"SELECT e.*, (%(redacted)s) AS redacted FROM events as e "
|
2014-08-14 13:40:50 -04:00
|
|
|
"INNER JOIN current_state_events as c ON e.event_id = c.event_id "
|
2014-08-13 11:27:14 -04:00
|
|
|
"INNER JOIN state_events as s ON e.event_id = s.event_id "
|
|
|
|
"WHERE c.room_id = ? "
|
2014-09-23 10:28:32 -04:00
|
|
|
) % {
|
2014-09-24 10:27:59 -04:00
|
|
|
"redacted": del_sql,
|
2014-09-23 10:28:32 -04:00
|
|
|
}
|
2014-08-13 11:27:14 -04:00
|
|
|
|
|
|
|
if event_type:
|
2014-08-14 13:40:50 -04:00
|
|
|
sql += " AND s.type = ? AND s.state_key = ? "
|
2014-08-13 11:27:14 -04:00
|
|
|
args = (room_id, event_type, state_key)
|
2014-08-12 10:10:52 -04:00
|
|
|
else:
|
2014-08-13 11:27:14 -04:00
|
|
|
args = (room_id, )
|
|
|
|
|
2014-08-14 11:58:51 -04:00
|
|
|
results = yield self._execute_and_decode(sql, *args)
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-09-05 21:23:36 -04:00
|
|
|
events = yield self._parse_events(results)
|
|
|
|
defer.returnValue(events)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-18 11:00:46 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _get_min_token(self):
|
|
|
|
row = yield self._execute(
|
|
|
|
None,
|
2014-08-19 09:20:03 -04:00
|
|
|
"SELECT MIN(stream_ordering) FROM events"
|
2014-08-18 11:00:46 -04:00
|
|
|
)
|
|
|
|
|
2014-08-19 09:32:47 -04:00
|
|
|
self.min_token = row[0][0] if row and row[0] and row[0][0] else -1
|
|
|
|
self.min_token = min(self.min_token, -1)
|
2014-08-19 09:20:03 -04:00
|
|
|
|
|
|
|
logger.debug("min_token is: %s", self.min_token)
|
2014-08-18 11:00:46 -04:00
|
|
|
|
|
|
|
defer.returnValue(self.min_token)
|
|
|
|
|
2014-09-29 09:59:52 -04:00
|
|
|
def insert_client_ip(self, user, access_token, device_id, ip, user_agent):
|
2014-09-26 11:36:24 -04:00
|
|
|
return self._simple_insert(
|
|
|
|
"user_ips",
|
|
|
|
{
|
|
|
|
"user": user.to_string(),
|
|
|
|
"access_token": access_token,
|
2014-09-29 09:59:52 -04:00
|
|
|
"device_id": device_id,
|
2014-09-29 08:35:15 -04:00
|
|
|
"ip": ip,
|
|
|
|
"user_agent": user_agent,
|
2014-09-29 09:59:52 -04:00
|
|
|
"last_seen": int(self._clock.time_msec()),
|
2014-09-26 11:36:24 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2014-09-29 09:59:52 -04:00
|
|
|
def get_user_ip_and_agents(self, user):
|
|
|
|
return self._simple_select_list(
|
|
|
|
table="user_ips",
|
|
|
|
keyvalues={"user": user.to_string()},
|
|
|
|
retcols=[
|
|
|
|
"device_id", "access_token", "ip", "user_agent", "last_seen"
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2014-08-22 12:00:10 -04:00
|
|
|
def snapshot_room(self, room_id, user_id, state_type=None, state_key=None):
|
|
|
|
"""Snapshot the room for an update by a user
|
|
|
|
Args:
|
|
|
|
room_id (synapse.types.RoomId): The room to snapshot.
|
|
|
|
user_id (synapse.types.UserId): The user to snapshot the room for.
|
|
|
|
state_type (str): Optional state type to snapshot.
|
|
|
|
state_key (str): Optional state key to snapshot.
|
|
|
|
Returns:
|
|
|
|
synapse.storage.Snapshot: A snapshot of the state of the room.
|
|
|
|
"""
|
|
|
|
def _snapshot(txn):
|
2014-08-27 10:31:04 -04:00
|
|
|
membership_state = self._get_room_member(txn, user_id, room_id)
|
2014-08-22 12:00:10 -04:00
|
|
|
prev_pdus = self._get_latest_pdus_in_context(
|
|
|
|
txn, room_id
|
|
|
|
)
|
|
|
|
if state_type is not None and state_key is not None:
|
|
|
|
prev_state_pdu = self._get_current_state_pdu(
|
|
|
|
txn, room_id, state_type, state_key
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
prev_state_pdu = None
|
|
|
|
|
|
|
|
return Snapshot(
|
|
|
|
store=self,
|
|
|
|
room_id=room_id,
|
|
|
|
user_id=user_id,
|
|
|
|
prev_pdus=prev_pdus,
|
|
|
|
membership_state=membership_state,
|
|
|
|
state_type=state_type,
|
|
|
|
state_key=state_key,
|
|
|
|
prev_state_pdu=prev_state_pdu,
|
|
|
|
)
|
|
|
|
|
2014-09-12 08:57:24 -04:00
|
|
|
return self.runInteraction(_snapshot)
|
2014-08-22 12:00:10 -04:00
|
|
|
|
|
|
|
|
|
|
|
class Snapshot(object):
|
|
|
|
"""Snapshot of the state of a room
|
|
|
|
Args:
|
|
|
|
store (DataStore): The datastore.
|
|
|
|
room_id (RoomId): The room of the snapshot.
|
|
|
|
user_id (UserId): The user this snapshot is for.
|
|
|
|
prev_pdus (list): The list of PDU ids this snapshot is after.
|
|
|
|
membership_state (RoomMemberEvent): The current state of the user in
|
|
|
|
the room.
|
|
|
|
state_type (str, optional): State type captured by the snapshot
|
|
|
|
state_key (str, optional): State key captured by the snapshot
|
|
|
|
prev_state_pdu (PduEntry, optional): pdu id of
|
|
|
|
the previous value of the state type and key in the room.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, store, room_id, user_id, prev_pdus,
|
|
|
|
membership_state, state_type=None, state_key=None,
|
|
|
|
prev_state_pdu=None):
|
|
|
|
self.store = store
|
|
|
|
self.room_id = room_id
|
|
|
|
self.user_id = user_id
|
|
|
|
self.prev_pdus = prev_pdus
|
2014-08-27 10:31:04 -04:00
|
|
|
self.membership_state = membership_state
|
2014-08-22 12:00:10 -04:00
|
|
|
self.state_type = state_type
|
|
|
|
self.state_key = state_key
|
|
|
|
self.prev_state_pdu = prev_state_pdu
|
|
|
|
|
2014-08-27 08:34:28 -04:00
|
|
|
def fill_out_prev_events(self, event):
|
|
|
|
if hasattr(event, "prev_events"):
|
|
|
|
return
|
|
|
|
|
|
|
|
es = [
|
|
|
|
"%s@%s" % (p_id, origin) for p_id, origin, _ in self.prev_pdus
|
|
|
|
]
|
|
|
|
|
|
|
|
event.prev_events = [e for e in es if e != event.event_id]
|
|
|
|
|
|
|
|
if self.prev_pdus:
|
2014-08-27 10:31:04 -04:00
|
|
|
event.depth = max([int(v) for _, _, v in self.prev_pdus]) + 1
|
2014-08-27 08:34:28 -04:00
|
|
|
else:
|
|
|
|
event.depth = 0
|
|
|
|
|
2014-08-22 12:00:10 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
def schema_path(schema):
|
|
|
|
""" Get a filesystem path for the named database schema
|
|
|
|
|
|
|
|
Args:
|
|
|
|
schema: Name of the database schema.
|
|
|
|
Returns:
|
|
|
|
A filesystem path pointing at a ".sql" file.
|
|
|
|
|
|
|
|
"""
|
|
|
|
dir_path = os.path.dirname(__file__)
|
|
|
|
schemaPath = os.path.join(dir_path, "schema", schema + ".sql")
|
|
|
|
return schemaPath
|
|
|
|
|
|
|
|
|
|
|
|
def read_schema(schema):
|
|
|
|
""" Read the named database schema.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
schema: Name of the datbase schema.
|
|
|
|
Returns:
|
|
|
|
A string containing the database schema.
|
|
|
|
"""
|
|
|
|
with open(schema_path(schema)) as schema_file:
|
|
|
|
return schema_file.read()
|
2014-09-10 10:42:15 -04:00
|
|
|
|
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
def prepare_database(db_conn):
|
2014-09-10 10:42:15 -04:00
|
|
|
""" Set up all the dbs. Since all the *.sql have IF NOT EXISTS, so we
|
|
|
|
don't have to worry about overwriting existing content.
|
|
|
|
"""
|
2014-09-10 11:23:58 -04:00
|
|
|
c = db_conn.cursor()
|
|
|
|
c.execute("PRAGMA user_version")
|
|
|
|
row = c.fetchone()
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
if row and row[0]:
|
|
|
|
user_version = row[0]
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
if user_version > SCHEMA_VERSION:
|
|
|
|
raise ValueError("Cannot use this database as it is too " +
|
|
|
|
"new for the server to understand"
|
|
|
|
)
|
|
|
|
elif user_version < SCHEMA_VERSION:
|
|
|
|
logging.info("Upgrading database from version %d",
|
|
|
|
user_version
|
|
|
|
)
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
# Run every version since after the current version.
|
|
|
|
for v in range(user_version + 1, SCHEMA_VERSION + 1):
|
|
|
|
sql_script = read_schema("delta/v%d" % (v))
|
|
|
|
c.executescript(sql_script)
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
db_conn.commit()
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
else:
|
|
|
|
for sql_loc in SCHEMAS:
|
|
|
|
sql_script = read_schema(sql_loc)
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
c.executescript(sql_script)
|
|
|
|
db_conn.commit()
|
|
|
|
c.execute("PRAGMA user_version = %d" % SCHEMA_VERSION)
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
c.close()
|
2014-09-10 10:42:15 -04:00
|
|
|
|