forked-synapse/synapse/storage/__init__.py

296 lines
9.9 KiB
Python
Raw Normal View History

2014-08-12 14:10:52 +00:00
# -*- coding: utf-8 -*-
2016-01-07 04:26:29 +00:00
# Copyright 2014-2016 OpenMarket Ltd
2014-08-12 14:10:52 +00: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 17:40:50 +00:00
from twisted.internet import defer
from .appservice import (
ApplicationServiceStore, ApplicationServiceTransactionStore
)
from ._base import Cache
2014-08-12 14:10:52 +00:00
from .directory import DirectoryStore
2015-03-20 13:52:56 +00:00
from .events import EventsStore
2016-02-15 17:10:40 +00:00
from .presence import PresenceStore, UserPresenceState
2014-08-12 14:10:52 +00:00
from .profile import ProfileStore
from .registration import RegistrationStore
from .room import RoomStore
from .roommember import RoomMemberStore
from .stream import StreamStore
from .transactions import TransactionStore
from .keys import KeyStore
from .event_federation import EventFederationStore
from .pusher import PusherStore
2015-01-22 17:38:53 +00:00
from .push_rule import PushRuleStore
from .media_repository import MediaRepositoryStore
from .rejections import RejectionsStore
from .event_push_actions import EventPushActionsStore
2014-10-14 15:59:51 +00:00
from .state import StateStore
from .signatures import SignatureStore
from .filtering import FilteringStore
2015-07-06 17:46:47 +00:00
from .end_to_end_keys import EndToEndKeyStore
2015-07-07 09:55:31 +00:00
from .receipts import ReceiptsStore
2015-10-09 14:48:31 +00:00
from .search import SearchStore
from .tags import TagsStore
from .account_data import AccountDataStore
2015-07-07 09:55:31 +00:00
from util.id_generators import IdGenerator, StreamIdGenerator
2016-02-15 17:10:40 +00:00
from synapse.api.constants import PresenceState
2016-01-29 14:37:59 +00:00
from synapse.util.caches.stream_change_cache import StreamChangeCache
2014-08-19 13:20:03 +00:00
import logging
2014-08-12 14:10:52 +00:00
2014-08-19 13:20:03 +00:00
logger = logging.getLogger(__name__)
# Number of msec of granularity to store the user IP 'last seen' time. Smaller
# times give more inserts into the database even for readonly API hits
# 120 seconds == 2 minutes
2016-02-02 17:18:50 +00:00
LAST_SEEN_GRANULARITY = 120 * 1000
2014-08-19 13:20:03 +00:00
class DataStore(RoomMemberStore, RoomStore,
2015-03-20 13:52:56 +00:00
RegistrationStore, StreamStore, ProfileStore,
2014-10-31 14:00:14 +00:00
PresenceStore, TransactionStore,
DirectoryStore, KeyStore, StateStore, SignatureStore,
2015-02-02 16:05:34 +00:00
ApplicationServiceStore,
EventFederationStore,
MediaRepositoryStore,
RejectionsStore,
FilteringStore,
PusherStore,
2015-03-20 13:52:56 +00:00
PushRuleStore,
2015-03-16 10:16:59 +00:00
ApplicationServiceTransactionStore,
2015-03-20 13:52:56 +00:00
EventsStore,
2015-07-07 09:55:31 +00:00
ReceiptsStore,
2015-07-06 17:46:47 +00:00
EndToEndKeyStore,
2015-10-09 14:48:31 +00:00
SearchStore,
TagsStore,
AccountDataStore,
EventPushActionsStore
):
2014-08-12 14:10:52 +00:00
2016-01-28 14:32:05 +00:00
def __init__(self, db_conn, hs):
self.hs = hs
2016-01-29 14:41:16 +00:00
self.database_engine = hs.database_engine
2014-08-12 14:10:52 +00:00
2016-01-28 14:32:05 +00:00
cur = db_conn.cursor()
try:
cur.execute("SELECT MIN(stream_ordering) FROM events",)
rows = cur.fetchall()
self.min_stream_token = rows[0][0] if rows and rows[0] and rows[0][0] else -1
self.min_stream_token = min(self.min_stream_token, -1)
finally:
cur.close()
self.client_ip_last_seen = Cache(
name="client_ip_last_seen",
keylen=4,
2014-09-24 13:18:08 +00:00
)
self._stream_id_gen = StreamIdGenerator(
db_conn, "events", "stream_ordering"
)
self._receipts_id_gen = StreamIdGenerator(
db_conn, "receipts_linearized", "stream_id"
)
self._account_data_id_gen = StreamIdGenerator(
db_conn, "account_data_max_stream_id", "stream_id"
)
2016-02-15 17:10:40 +00:00
self._presence_id_gen = StreamIdGenerator(
db_conn, "presence_stream", "stream_id"
)
self._transaction_id_gen = IdGenerator("sent_transactions", "id", self)
self._state_groups_id_gen = IdGenerator("state_groups", "id", self)
self._access_tokens_id_gen = IdGenerator("access_tokens", "id", self)
self._refresh_tokens_id_gen = IdGenerator("refresh_tokens", "id", self)
self._pushers_id_gen = IdGenerator("pushers", "id", self)
self._push_rule_id_gen = IdGenerator("push_rules", "id", self)
self._push_rules_enable_id_gen = IdGenerator("push_rules_enable", "id", self)
2016-02-15 17:10:40 +00:00
events_max = self._stream_id_gen.get_max_token()
2016-01-29 14:49:11 +00:00
event_cache_prefill, min_event_val = self._get_cache_dict(
2016-01-29 14:37:59 +00:00
db_conn, "events",
entity_column="room_id",
stream_column="stream_ordering",
max_value=events_max,
)
self._events_stream_cache = StreamChangeCache(
2016-01-29 14:49:11 +00:00
"EventsRoomStreamChangeCache", min_event_val,
2016-01-29 14:37:59 +00:00
prefilled_cache=event_cache_prefill,
)
2016-01-29 16:52:48 +00:00
self._membership_stream_cache = StreamChangeCache(
"MembershipStreamChangeCache", events_max,
)
2016-02-15 17:10:40 +00:00
account_max = self._account_data_id_gen.get_max_token()
2016-01-29 14:37:59 +00:00
self._account_data_stream_cache = StreamChangeCache(
2016-01-29 14:53:59 +00:00
"AccountDataAndTagsChangeCache", account_max,
2016-01-29 14:37:59 +00:00
)
2016-02-15 17:10:40 +00:00
self.__presence_on_startup = self._get_active_presence(db_conn)
presence_cache_prefill, min_presence_val = self._get_cache_dict(
db_conn, "presence_stream",
entity_column="user_id",
stream_column="stream_id",
max_value=self._presence_id_gen.get_max_token(),
)
self.presence_stream_cache = StreamChangeCache(
"PresenceStreamChangeCache", min_presence_val,
prefilled_cache=presence_cache_prefill
)
super(DataStore, self).__init__(hs)
2016-02-15 17:10:40 +00:00
def take_presence_startup_info(self):
active_on_startup = self.__presence_on_startup
self.__presence_on_startup = None
return active_on_startup
2016-01-29 14:37:59 +00:00
def _get_cache_dict(self, db_conn, table, entity_column, stream_column, max_value):
2016-01-29 15:39:17 +00:00
# Fetch a mapping of room_id -> max stream position for "recent" rooms.
# It doesn't really matter how many we get, the StreamChangeCache will
# do the right thing to ensure it respects the max size of cache.
2016-01-29 14:37:59 +00:00
sql = (
"SELECT %(entity)s, MAX(%(stream)s) FROM %(table)s"
2016-01-29 14:42:01 +00:00
" WHERE %(stream)s > ? - 100000"
2016-01-29 14:37:59 +00:00
" GROUP BY %(entity)s"
) % {
"table": table,
"entity": entity_column,
"stream": stream_column,
}
2016-01-29 14:41:16 +00:00
sql = self.database_engine.convert_param_style(sql)
2016-01-29 14:37:59 +00:00
txn = db_conn.cursor()
txn.execute(sql, (int(max_value),))
rows = txn.fetchall()
2016-02-15 17:10:40 +00:00
txn.close()
2016-01-29 14:37:59 +00:00
2016-01-29 14:49:11 +00:00
cache = {
row[0]: int(row[1])
2016-01-29 14:37:59 +00:00
for row in rows
}
2016-01-29 14:49:11 +00:00
if cache:
min_val = min(cache.values())
else:
min_val = max_value
return cache, min_val
2016-02-15 17:10:40 +00:00
def _get_active_presence(self, db_conn):
"""Fetch non-offline presence from the database so that we can register
the appropriate time outs.
"""
sql = (
"SELECT user_id, state, last_active, last_federation_update,"
" last_user_sync, status_msg, currently_active FROM presence_stream"
" WHERE state != ?"
)
sql = self.database_engine.convert_param_style(sql)
txn = db_conn.cursor()
txn.execute(sql, (PresenceState.OFFLINE,))
rows = self.cursor_to_dict(txn)
for row in rows:
row["currently_active"] = bool(row["currently_active"])
return [UserPresenceState(**row) for row in rows]
@defer.inlineCallbacks
def insert_client_ip(self, user, access_token, ip, user_agent):
now = int(self._clock.time_msec())
key = (user.to_string(), access_token, ip)
try:
last_seen = self.client_ip_last_seen.get(key)
except KeyError:
last_seen = None
2014-08-19 13:20:03 +00:00
# Rate-limited inserts
if last_seen is not None and (now - last_seen) < LAST_SEEN_GRANULARITY:
defer.returnValue(None)
self.client_ip_last_seen.prefill(key, now)
2015-05-01 09:46:48 +00:00
# It's safe not to lock here: a) no unique constraint,
# b) LAST_SEEN_GRANULARITY makes concurrent updates incredibly unlikely
yield self._simple_upsert(
"user_ips",
2015-03-24 16:17:39 +00:00
keyvalues={
2015-04-14 12:54:09 +00:00
"user_id": user.to_string(),
"access_token": access_token,
"ip": ip,
"user_agent": user_agent,
2015-03-24 16:17:39 +00:00
},
values={
"last_seen": now,
},
desc="insert_client_ip",
2015-05-01 09:46:48 +00:00
lock=False,
)
@defer.inlineCallbacks
def count_daily_users(self):
2015-09-22 12:47:40 +00:00
"""
Counts the number of users who used this homeserver in the last 24 hours.
"""
def _count_users(txn):
txn.execute(
"SELECT COUNT(DISTINCT user_id) AS users"
" FROM user_ips"
" WHERE last_seen > ?",
# This is close enough to a day for our purposes.
(int(self._clock.time_msec()) - (1000 * 60 * 60 * 24),)
)
rows = self.cursor_to_dict(txn)
if rows:
return rows[0]["users"]
return 0
ret = yield self.runInteraction("count_users", _count_users)
defer.returnValue(ret)
2014-09-29 13:59:52 +00:00
def get_user_ip_and_agents(self, user):
return self._simple_select_list(
table="user_ips",
2015-04-14 12:54:09 +00:00
keyvalues={"user_id": user.to_string()},
2014-09-29 13:59:52 +00:00
retcols=[
"access_token", "ip", "user_agent", "last_seen"
2014-09-29 13:59:52 +00:00
],
desc="get_user_ip_and_agents",
2014-09-29 13:59:52 +00:00
)
def are_all_users_on_domain(txn, database_engine, domain):
sql = database_engine.convert_param_style(
"SELECT COUNT(*) FROM users WHERE name NOT LIKE ?"
)
pat = "%:" + domain
txn.execute(sql, (pat,))
num_not_matching = txn.fetchall()[0][0]
if num_not_matching == 0:
return True
2015-04-27 10:49:18 +00:00
return False