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.
|
|
|
|
import logging
|
|
|
|
|
|
|
|
from synapse.api.errors import StoreError
|
2014-09-23 10:28:32 -04:00
|
|
|
from synapse.api.events.utils import prune_event
|
2014-09-12 12:11:00 -04:00
|
|
|
from synapse.util.logutils import log_function
|
2014-10-29 21:21:33 -04:00
|
|
|
from synapse.util.logcontext import PreserveLoggingContext, LoggingContext
|
2014-10-29 12:59:24 -04:00
|
|
|
from syutil.base64util import encode_base64
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-14 06:16:50 -05:00
|
|
|
from twisted.internet import defer
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
import collections
|
2014-08-14 13:40:50 -04:00
|
|
|
import copy
|
2014-08-13 11:27:14 -04:00
|
|
|
import json
|
2014-10-29 12:59:24 -04:00
|
|
|
import sys
|
2014-10-28 06:34:05 -04:00
|
|
|
import time
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2014-09-12 09:37:55 -04:00
|
|
|
sql_logger = logging.getLogger("synapse.storage.SQL")
|
2014-10-28 07:18:04 -04:00
|
|
|
transaction_logger = logging.getLogger("synapse.storage.txn")
|
2014-09-12 09:37:55 -04:00
|
|
|
|
|
|
|
|
|
|
|
class LoggingTransaction(object):
|
|
|
|
"""An object that almost-transparently proxies for the 'txn' object
|
|
|
|
passed to the constructor. Adds logging to the .execute() method."""
|
2014-10-28 07:18:04 -04:00
|
|
|
__slots__ = ["txn", "name"]
|
2014-09-12 09:37:55 -04:00
|
|
|
|
2014-10-28 07:18:04 -04:00
|
|
|
def __init__(self, txn, name):
|
2014-09-12 09:37:55 -04:00
|
|
|
object.__setattr__(self, "txn", txn)
|
2014-10-28 07:18:04 -04:00
|
|
|
object.__setattr__(self, "name", name)
|
2014-09-12 09:37:55 -04:00
|
|
|
|
2014-10-28 06:53:11 -04:00
|
|
|
def __getattr__(self, name):
|
|
|
|
return getattr(self.txn, name)
|
2014-09-12 09:37:55 -04:00
|
|
|
|
|
|
|
def __setattr__(self, name, value):
|
2014-10-28 06:53:11 -04:00
|
|
|
setattr(self.txn, name, value)
|
2014-09-12 09:37:55 -04:00
|
|
|
|
|
|
|
def execute(self, sql, *args, **kwargs):
|
|
|
|
# TODO(paul): Maybe use 'info' and 'debug' for values?
|
2014-10-28 07:18:04 -04:00
|
|
|
sql_logger.debug("[SQL] {%s} %s", self.name, sql)
|
2014-09-12 09:37:55 -04:00
|
|
|
try:
|
|
|
|
if args and args[0]:
|
|
|
|
values = args[0]
|
2014-10-28 07:18:04 -04:00
|
|
|
sql_logger.debug(
|
|
|
|
"[SQL values] {%s} " + ", ".join(("<%s>",) * len(values)),
|
|
|
|
self.name,
|
|
|
|
*values
|
|
|
|
)
|
2014-09-12 09:37:55 -04:00
|
|
|
except:
|
|
|
|
# Don't let logging failures stop SQL from working
|
|
|
|
pass
|
|
|
|
|
2014-10-28 06:34:05 -04:00
|
|
|
start = time.clock() * 1000
|
|
|
|
try:
|
2014-10-28 06:53:11 -04:00
|
|
|
return self.txn.execute(
|
2014-10-28 06:34:05 -04:00
|
|
|
sql, *args, **kwargs
|
|
|
|
)
|
2014-10-29 12:59:24 -04:00
|
|
|
except:
|
|
|
|
logger.exception("[SQL FAIL] {%s}", self.name)
|
|
|
|
raise
|
2014-10-28 06:34:05 -04:00
|
|
|
finally:
|
|
|
|
end = time.clock() * 1000
|
2014-10-28 07:18:04 -04:00
|
|
|
sql_logger.debug("[SQL time] {%s} %f", self.name, end - start)
|
2014-09-12 09:37:55 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
class SQLBaseStore(object):
|
2014-10-28 07:18:04 -04:00
|
|
|
_TXN_ID = 0
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
2014-08-13 13:15:23 -04:00
|
|
|
self.hs = hs
|
2014-08-12 10:10:52 -04:00
|
|
|
self._db_pool = hs.get_db_pool()
|
2014-08-13 11:27:14 -04:00
|
|
|
self.event_factory = hs.get_event_factory()
|
2014-08-13 14:18:55 -04:00
|
|
|
self._clock = hs.get_clock()
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-10-29 21:21:33 -04:00
|
|
|
@defer.inlineCallbacks
|
2014-10-28 07:18:04 -04:00
|
|
|
def runInteraction(self, desc, func, *args, **kwargs):
|
2014-09-12 08:57:24 -04:00
|
|
|
"""Wraps the .runInteraction() method on the underlying db_pool."""
|
2014-10-29 21:21:33 -04:00
|
|
|
current_context = LoggingContext.current_context()
|
2014-09-12 09:37:55 -04:00
|
|
|
def inner_func(txn, *args, **kwargs):
|
2014-10-29 21:21:33 -04:00
|
|
|
with LoggingContext("runInteraction") as context:
|
|
|
|
current_context.copy_to(context)
|
2014-11-14 06:16:50 -05:00
|
|
|
start = time.clock() * 1000
|
|
|
|
txn_id = SQLBaseStore._TXN_ID
|
|
|
|
|
|
|
|
# We don't really need these to be unique, so lets stop it from
|
|
|
|
# growing really large.
|
|
|
|
self._TXN_ID = (self._TXN_ID + 1) % (sys.maxint - 1)
|
|
|
|
|
|
|
|
name = "%s-%x" % (desc, txn_id, )
|
|
|
|
|
|
|
|
transaction_logger.debug("[TXN START] {%s}", name)
|
|
|
|
try:
|
|
|
|
return func(LoggingTransaction(txn, name), *args, **kwargs)
|
|
|
|
except:
|
|
|
|
logger.exception("[TXN FAIL] {%s}", name)
|
|
|
|
raise
|
|
|
|
finally:
|
|
|
|
end = time.clock() * 1000
|
|
|
|
transaction_logger.debug(
|
|
|
|
"[TXN END] {%s} %f",
|
|
|
|
name, end - start
|
|
|
|
)
|
|
|
|
|
2014-10-29 21:21:33 -04:00
|
|
|
with PreserveLoggingContext():
|
|
|
|
result = yield self._db_pool.runInteraction(
|
|
|
|
inner_func, *args, **kwargs
|
|
|
|
)
|
|
|
|
defer.returnValue(result)
|
2014-09-12 08:57:24 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
def cursor_to_dict(self, cursor):
|
|
|
|
"""Converts a SQL cursor into an list of dicts.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
cursor : The DBAPI cursor which has executed a query.
|
|
|
|
Returns:
|
|
|
|
A list of dicts where the key is the column header.
|
|
|
|
"""
|
|
|
|
col_headers = list(column[0] for column in cursor.description)
|
|
|
|
results = list(
|
|
|
|
dict(zip(col_headers, row)) for row in cursor.fetchall()
|
|
|
|
)
|
|
|
|
return results
|
|
|
|
|
|
|
|
def _execute(self, decoder, query, *args):
|
|
|
|
"""Runs a single query for a result set.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
decoder - The function which can resolve the cursor results to
|
|
|
|
something meaningful.
|
|
|
|
query - The query string to execute
|
|
|
|
*args - Query args.
|
|
|
|
Returns:
|
|
|
|
The result of decoder(results)
|
|
|
|
"""
|
|
|
|
def interaction(txn):
|
|
|
|
cursor = txn.execute(query, args)
|
2014-08-14 11:02:10 -04:00
|
|
|
if decoder:
|
|
|
|
return decoder(cursor)
|
|
|
|
else:
|
2014-08-15 05:26:35 -04:00
|
|
|
return cursor.fetchall()
|
2014-08-14 11:02:10 -04:00
|
|
|
|
2014-10-28 07:18:04 -04:00
|
|
|
return self.runInteraction("_execute", interaction)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-14 11:58:51 -04:00
|
|
|
def _execute_and_decode(self, query, *args):
|
2014-08-14 13:40:50 -04:00
|
|
|
return self._execute(self.cursor_to_dict, query, *args)
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
# "Simple" SQL API methods that operate on a single table with no JOINs,
|
|
|
|
# no complex WHERE clauses, just a dict of values for columns.
|
|
|
|
|
2014-10-13 11:39:15 -04:00
|
|
|
def _simple_insert(self, table, values, or_replace=False, or_ignore=False):
|
2014-08-12 10:10:52 -04:00
|
|
|
"""Executes an INSERT query on the named table.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
table : string giving the table name
|
|
|
|
values : dict of new column names and values for them
|
2014-09-03 13:18:35 -04:00
|
|
|
or_replace : bool; if True performs an INSERT OR REPLACE
|
2014-08-12 10:10:52 -04:00
|
|
|
"""
|
2014-09-12 08:57:24 -04:00
|
|
|
return self.runInteraction(
|
2014-10-28 07:18:04 -04:00
|
|
|
"_simple_insert",
|
2014-10-13 11:39:15 -04:00
|
|
|
self._simple_insert_txn, table, values, or_replace=or_replace,
|
|
|
|
or_ignore=or_ignore,
|
2014-08-26 09:31:48 -04:00
|
|
|
)
|
|
|
|
|
2014-09-12 12:11:00 -04:00
|
|
|
@log_function
|
2014-10-13 11:39:15 -04:00
|
|
|
def _simple_insert_txn(self, txn, table, values, or_replace=False,
|
|
|
|
or_ignore=False):
|
2014-09-03 13:18:35 -04:00
|
|
|
sql = "%s INTO %s (%s) VALUES(%s)" % (
|
2014-10-13 11:39:15 -04:00
|
|
|
("INSERT OR REPLACE" if or_replace else
|
|
|
|
"INSERT OR IGNORE" if or_ignore else "INSERT"),
|
2014-08-12 10:10:52 -04:00
|
|
|
table,
|
|
|
|
", ".join(k for k in values),
|
|
|
|
", ".join("?" for k in values)
|
|
|
|
)
|
2014-09-12 12:11:00 -04:00
|
|
|
|
|
|
|
logger.debug(
|
2014-10-29 21:21:33 -04:00
|
|
|
"[SQL] %s Args=%s",
|
2014-09-12 12:11:00 -04:00
|
|
|
sql, values.values(),
|
|
|
|
)
|
|
|
|
|
2014-08-26 09:31:48 -04:00
|
|
|
txn.execute(sql, values.values())
|
|
|
|
return txn.lastrowid
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def _simple_select_one(self, table, keyvalues, retcols,
|
|
|
|
allow_none=False):
|
|
|
|
"""Executes a SELECT query on the named table, which is expected to
|
|
|
|
return a single row, returning a single column from it.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
table : string giving the table name
|
|
|
|
keyvalues : dict of column names and values to select the row with
|
|
|
|
retcols : list of strings giving the names of the columns to return
|
|
|
|
|
|
|
|
allow_none : If true, return None instead of failing if the SELECT
|
|
|
|
statement returns no rows
|
|
|
|
"""
|
|
|
|
return self._simple_selectupdate_one(
|
|
|
|
table, keyvalues, retcols=retcols, allow_none=allow_none
|
|
|
|
)
|
|
|
|
|
|
|
|
def _simple_select_one_onecol(self, table, keyvalues, retcol,
|
|
|
|
allow_none=False):
|
|
|
|
"""Executes a SELECT query on the named table, which is expected to
|
|
|
|
return a single row, returning a single column from it."
|
|
|
|
|
|
|
|
Args:
|
|
|
|
table : string giving the table name
|
|
|
|
keyvalues : dict of column names and values to select the row with
|
|
|
|
retcol : string giving the name of the column to return
|
|
|
|
"""
|
2014-10-28 12:42:35 -04:00
|
|
|
return self.runInteraction(
|
2014-11-10 13:24:43 -05:00
|
|
|
"_simple_select_one_onecol",
|
2014-10-28 12:42:35 -04:00
|
|
|
self._simple_select_one_onecol_txn,
|
|
|
|
table, keyvalues, retcol, allow_none=allow_none,
|
|
|
|
)
|
|
|
|
|
|
|
|
def _simple_select_one_onecol_txn(self, txn, table, keyvalues, retcol,
|
|
|
|
allow_none=False):
|
|
|
|
ret = self._simple_select_onecol_txn(
|
|
|
|
txn,
|
2014-08-12 10:10:52 -04:00
|
|
|
table=table,
|
|
|
|
keyvalues=keyvalues,
|
2014-10-29 12:59:24 -04:00
|
|
|
retcol=retcol,
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
if ret:
|
2014-10-29 12:59:24 -04:00
|
|
|
return ret[0]
|
2014-08-12 10:10:52 -04:00
|
|
|
else:
|
2014-10-28 12:42:35 -04:00
|
|
|
if allow_none:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
raise StoreError(404, "No row found")
|
|
|
|
|
|
|
|
def _simple_select_onecol_txn(self, txn, table, keyvalues, retcol):
|
|
|
|
sql = "SELECT %(retcol)s FROM %(table)s WHERE %(where)s" % {
|
|
|
|
"retcol": retcol,
|
|
|
|
"table": table,
|
|
|
|
"where": " AND ".join("%s = ?" % k for k in keyvalues.keys()),
|
|
|
|
}
|
|
|
|
|
|
|
|
txn.execute(sql, keyvalues.values())
|
|
|
|
|
|
|
|
return [r[0] for r in txn.fetchall()]
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def _simple_select_onecol(self, table, keyvalues, retcol):
|
|
|
|
"""Executes a SELECT query on the named table, which returns a list
|
|
|
|
comprising of the values of the named column from the selected rows.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
table (str): table name
|
|
|
|
keyvalues (dict): column names and values to select the rows with
|
|
|
|
retcol (str): column whos value we wish to retrieve.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred: Results in a list
|
|
|
|
"""
|
2014-10-28 12:42:35 -04:00
|
|
|
return self.runInteraction(
|
|
|
|
"_simple_select_onecol",
|
|
|
|
self._simple_select_onecol_txn,
|
|
|
|
table, keyvalues, retcol
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def _simple_select_list(self, table, keyvalues, retcols):
|
|
|
|
"""Executes a SELECT query on the named table, which may return zero or
|
|
|
|
more rows, returning the result as a list of dicts.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
table : string giving the table name
|
|
|
|
keyvalues : dict of column names and values to select the rows with
|
|
|
|
retcols : list of strings giving the names of the columns to return
|
|
|
|
"""
|
2014-11-06 10:10:55 -05:00
|
|
|
return self.runInteraction(
|
|
|
|
"_simple_select_list",
|
|
|
|
self._simple_select_list_txn,
|
|
|
|
table, keyvalues, retcols
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-06 10:10:55 -05:00
|
|
|
def _simple_select_list_txn(self, txn, table, keyvalues, retcols):
|
2014-08-12 10:10:52 -04:00
|
|
|
"""Executes a SELECT query on the named table, which may return zero or
|
|
|
|
more rows, returning the result as a list of dicts.
|
|
|
|
|
|
|
|
Args:
|
2014-11-06 10:10:55 -05:00
|
|
|
txn : Transaction object
|
2014-08-12 10:10:52 -04:00
|
|
|
table : string giving the table name
|
|
|
|
keyvalues : dict of column names and values to select the rows with
|
|
|
|
retcols : list of strings giving the names of the columns to return
|
|
|
|
"""
|
|
|
|
sql = "SELECT %s FROM %s WHERE %s" % (
|
|
|
|
", ".join(retcols),
|
|
|
|
table,
|
2014-11-06 10:10:55 -05:00
|
|
|
" AND ".join("%s = ?" % (k, ) for k in keyvalues)
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
2014-11-06 10:10:55 -05:00
|
|
|
txn.execute(sql, keyvalues.values())
|
|
|
|
return self.cursor_to_dict(txn)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def _simple_update_one(self, table, keyvalues, updatevalues,
|
|
|
|
retcols=None):
|
|
|
|
"""Executes an UPDATE query on the named table, setting new values for
|
|
|
|
columns in a row matching the key values.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
table : string giving the table name
|
|
|
|
keyvalues : dict of column names and values to select the row with
|
|
|
|
updatevalues : dict giving column names and values to update
|
|
|
|
retcols : optional list of column names to return
|
|
|
|
|
|
|
|
If present, retcols gives a list of column names on which to perform
|
|
|
|
a SELECT statement *before* performing the UPDATE statement. The values
|
|
|
|
of these will be returned in a dict.
|
|
|
|
|
|
|
|
These are performed within the same transaction, allowing an atomic
|
|
|
|
get-and-set. This can be used to implement compare-and-set by putting
|
|
|
|
the update column in the 'keyvalues' dict as well.
|
|
|
|
"""
|
|
|
|
return self._simple_selectupdate_one(table, keyvalues, updatevalues,
|
|
|
|
retcols=retcols)
|
|
|
|
|
|
|
|
def _simple_selectupdate_one(self, table, keyvalues, updatevalues=None,
|
|
|
|
retcols=None, allow_none=False):
|
|
|
|
""" Combined SELECT then UPDATE."""
|
|
|
|
if retcols:
|
|
|
|
select_sql = "SELECT %s FROM %s WHERE %s" % (
|
|
|
|
", ".join(retcols),
|
|
|
|
table,
|
|
|
|
" AND ".join("%s = ?" % (k) for k in keyvalues)
|
|
|
|
)
|
|
|
|
|
|
|
|
if updatevalues:
|
|
|
|
update_sql = "UPDATE %s SET %s WHERE %s" % (
|
|
|
|
table,
|
|
|
|
", ".join("%s = ?" % (k) for k in updatevalues),
|
|
|
|
" AND ".join("%s = ?" % (k) for k in keyvalues)
|
|
|
|
)
|
|
|
|
|
|
|
|
def func(txn):
|
|
|
|
ret = None
|
|
|
|
if retcols:
|
|
|
|
txn.execute(select_sql, keyvalues.values())
|
|
|
|
|
|
|
|
row = txn.fetchone()
|
|
|
|
if not row:
|
|
|
|
if allow_none:
|
|
|
|
return None
|
|
|
|
raise StoreError(404, "No row found")
|
|
|
|
if txn.rowcount > 1:
|
|
|
|
raise StoreError(500, "More than one row matched")
|
|
|
|
|
|
|
|
ret = dict(zip(retcols, row))
|
|
|
|
|
|
|
|
if updatevalues:
|
|
|
|
txn.execute(
|
|
|
|
update_sql,
|
|
|
|
updatevalues.values() + keyvalues.values()
|
|
|
|
)
|
|
|
|
|
|
|
|
if txn.rowcount == 0:
|
|
|
|
raise StoreError(404, "No row found")
|
|
|
|
if txn.rowcount > 1:
|
|
|
|
raise StoreError(500, "More than one row matched")
|
|
|
|
|
|
|
|
return ret
|
2014-10-28 07:18:04 -04:00
|
|
|
return self.runInteraction("_simple_selectupdate_one", func)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def _simple_delete_one(self, table, keyvalues):
|
|
|
|
"""Executes a DELETE query on the named table, expecting to delete a
|
|
|
|
single row.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
table : string giving the table name
|
|
|
|
keyvalues : dict of column names and values to select the row with
|
|
|
|
"""
|
|
|
|
sql = "DELETE FROM %s WHERE %s" % (
|
|
|
|
table,
|
2014-10-28 07:18:04 -04:00
|
|
|
" AND ".join("%s = ?" % (k, ) for k in keyvalues)
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
def func(txn):
|
|
|
|
txn.execute(sql, keyvalues.values())
|
|
|
|
if txn.rowcount == 0:
|
|
|
|
raise StoreError(404, "No row found")
|
|
|
|
if txn.rowcount > 1:
|
|
|
|
raise StoreError(500, "more than one row matched")
|
2014-10-28 07:18:04 -04:00
|
|
|
return self.runInteraction("_simple_delete_one", func)
|
|
|
|
|
|
|
|
def _simple_delete(self, table, keyvalues):
|
|
|
|
"""Executes a DELETE query on the named table.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
table : string giving the table name
|
|
|
|
keyvalues : dict of column names and values to select the row with
|
|
|
|
"""
|
|
|
|
|
|
|
|
return self.runInteraction("_simple_delete", self._simple_delete_txn)
|
|
|
|
|
|
|
|
def _simple_delete_txn(self, txn, table, keyvalues):
|
|
|
|
sql = "DELETE FROM %s WHERE %s" % (
|
|
|
|
table,
|
|
|
|
" AND ".join("%s = ?" % (k, ) for k in keyvalues)
|
|
|
|
)
|
|
|
|
|
|
|
|
return txn.execute(sql, keyvalues.values())
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def _simple_max_id(self, table):
|
|
|
|
"""Executes a SELECT query on the named table, expecting to return the
|
|
|
|
max value for the column "id".
|
|
|
|
|
|
|
|
Args:
|
|
|
|
table : string giving the table name
|
|
|
|
"""
|
|
|
|
sql = "SELECT MAX(id) AS id FROM %s" % table
|
|
|
|
|
|
|
|
def func(txn):
|
|
|
|
txn.execute(sql)
|
|
|
|
max_id = self.cursor_to_dict(txn)[0]["id"]
|
|
|
|
if max_id is None:
|
|
|
|
return 0
|
|
|
|
return max_id
|
|
|
|
|
2014-10-28 07:18:04 -04:00
|
|
|
return self.runInteraction("_simple_max_id", func)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
def _parse_event_from_row(self, row_dict):
|
2014-09-23 10:28:32 -04:00
|
|
|
d = copy.deepcopy({k: v for k, v in row_dict.items()})
|
2014-08-21 10:06:00 -04:00
|
|
|
|
|
|
|
d.pop("stream_ordering", None)
|
|
|
|
d.pop("topological_ordering", None)
|
|
|
|
d.pop("processed", None)
|
2014-10-17 12:31:48 -04:00
|
|
|
d["origin_server_ts"] = d.pop("ts", 0)
|
2014-11-06 10:10:55 -05:00
|
|
|
replaces_state = d.pop("prev_state", None)
|
|
|
|
|
|
|
|
if replaces_state:
|
|
|
|
d["replaces_state"] = replaces_state
|
2014-08-21 10:06:00 -04:00
|
|
|
|
2014-08-15 08:58:28 -04:00
|
|
|
d.update(json.loads(row_dict["unrecognized_keys"]))
|
2014-08-14 12:34:37 -04:00
|
|
|
d["content"] = json.loads(d["content"])
|
2014-08-13 11:27:14 -04:00
|
|
|
del d["unrecognized_keys"]
|
|
|
|
|
2014-09-15 08:26:05 -04:00
|
|
|
if "age_ts" not in d:
|
|
|
|
# For compatibility
|
2014-10-17 12:31:48 -04:00
|
|
|
d["age_ts"] = d.get("origin_server_ts", 0)
|
2014-09-15 08:26:05 -04:00
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
return self.event_factory.create_event(
|
|
|
|
etype=d["type"],
|
|
|
|
**d
|
|
|
|
)
|
|
|
|
|
2014-11-10 06:59:51 -05:00
|
|
|
def _get_events_txn(self, txn, event_ids):
|
|
|
|
# FIXME (erikj): This should be batched?
|
|
|
|
|
|
|
|
sql = "SELECT * FROM events WHERE event_id = ?"
|
|
|
|
|
|
|
|
event_rows = []
|
|
|
|
for e_id in event_ids:
|
|
|
|
c = txn.execute(sql, (e_id,))
|
|
|
|
event_rows.extend(self.cursor_to_dict(c))
|
|
|
|
|
|
|
|
return self._parse_events_txn(txn, event_rows)
|
|
|
|
|
2014-09-05 21:23:36 -04:00
|
|
|
def _parse_events(self, rows):
|
2014-10-28 07:18:04 -04:00
|
|
|
return self.runInteraction(
|
|
|
|
"_parse_events", self._parse_events_txn, rows
|
|
|
|
)
|
2014-09-05 21:23:36 -04:00
|
|
|
|
|
|
|
def _parse_events_txn(self, txn, rows):
|
|
|
|
events = [self._parse_event_from_row(r) for r in rows]
|
|
|
|
|
2014-11-05 08:23:35 -05:00
|
|
|
select_event_sql = "SELECT * FROM events WHERE event_id = ?"
|
2014-09-05 21:23:36 -04:00
|
|
|
|
2014-11-10 10:21:30 -05:00
|
|
|
for i, ev in enumerate(events):
|
2014-11-12 12:02:18 -05:00
|
|
|
signatures = self._get_event_signatures_txn(
|
2014-10-29 12:59:24 -04:00
|
|
|
txn, ev.event_id,
|
|
|
|
)
|
2014-09-05 21:23:36 -04:00
|
|
|
|
2014-10-29 12:59:24 -04:00
|
|
|
ev.signatures = {
|
2014-11-12 12:02:18 -05:00
|
|
|
n: {
|
|
|
|
k: encode_base64(v) for k, v in s.items()
|
|
|
|
}
|
|
|
|
for n, s in signatures.items()
|
2014-10-29 12:59:24 -04:00
|
|
|
}
|
|
|
|
|
2014-11-14 16:25:02 -05:00
|
|
|
hashes = self._get_event_content_hashes_txn(
|
|
|
|
txn, ev.event_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
ev.hashes = {
|
|
|
|
k: encode_base64(v) for k, v in hashes.items()
|
|
|
|
}
|
|
|
|
|
2014-11-06 10:10:55 -05:00
|
|
|
prevs = self._get_prev_events_and_state(txn, ev.event_id)
|
|
|
|
|
|
|
|
ev.prev_events = [
|
|
|
|
(e_id, h)
|
|
|
|
for e_id, h, is_state in prevs
|
|
|
|
if is_state == 0
|
|
|
|
]
|
|
|
|
|
2014-11-06 13:42:18 -05:00
|
|
|
ev.auth_events = self._get_auth_events(txn, ev.event_id)
|
|
|
|
|
2014-11-06 10:10:55 -05:00
|
|
|
if hasattr(ev, "state_key"):
|
|
|
|
ev.prev_state = [
|
|
|
|
(e_id, h)
|
|
|
|
for e_id, h, is_state in prevs
|
|
|
|
if is_state == 1
|
|
|
|
]
|
|
|
|
|
|
|
|
if hasattr(ev, "replaces_state"):
|
|
|
|
# Load previous state_content.
|
|
|
|
# FIXME (erikj): Handle multiple prev_states.
|
|
|
|
cursor = txn.execute(
|
|
|
|
select_event_sql,
|
|
|
|
(ev.replaces_state,)
|
|
|
|
)
|
|
|
|
prevs = self.cursor_to_dict(cursor)
|
|
|
|
if prevs:
|
|
|
|
prev = self._parse_event_from_row(prevs[0])
|
|
|
|
ev.prev_content = prev.content
|
2014-09-05 21:23:36 -04:00
|
|
|
|
2014-09-24 10:27:59 -04:00
|
|
|
if not hasattr(ev, "redacted"):
|
|
|
|
logger.debug("Doesn't have redacted key: %s", ev)
|
|
|
|
ev.redacted = self._has_been_redacted_txn(txn, ev)
|
2014-09-23 10:28:32 -04:00
|
|
|
|
2014-09-24 10:27:59 -04:00
|
|
|
if ev.redacted:
|
|
|
|
# Get the redaction event.
|
2014-11-05 08:23:35 -05:00
|
|
|
select_event_sql = "SELECT * FROM events WHERE event_id = ?"
|
|
|
|
txn.execute(select_event_sql, (ev.redacted,))
|
2014-09-23 10:28:32 -04:00
|
|
|
|
|
|
|
del_evs = self._parse_events_txn(
|
|
|
|
txn, self.cursor_to_dict(txn)
|
|
|
|
)
|
|
|
|
|
|
|
|
if del_evs:
|
2014-11-10 05:21:32 -05:00
|
|
|
ev = prune_event(ev)
|
2014-11-10 10:21:30 -05:00
|
|
|
events[i] = ev
|
2014-09-24 10:27:59 -04:00
|
|
|
ev.redacted_because = del_evs[0]
|
2014-09-23 10:28:32 -04:00
|
|
|
|
2014-09-05 21:23:36 -04:00
|
|
|
return events
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-09-24 10:27:59 -04:00
|
|
|
def _has_been_redacted_txn(self, txn, event):
|
|
|
|
sql = "SELECT event_id FROM redactions WHERE redacts = ?"
|
2014-09-23 10:28:32 -04:00
|
|
|
txn.execute(sql, (event.event_id,))
|
2014-09-24 08:29:20 -04:00
|
|
|
result = txn.fetchone()
|
|
|
|
return result[0] if result else None
|
2014-09-23 10:28:32 -04:00
|
|
|
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
class Table(object):
|
|
|
|
""" A base class used to store information about a particular table.
|
|
|
|
"""
|
|
|
|
|
|
|
|
table_name = None
|
|
|
|
""" str: The name of the table """
|
|
|
|
|
|
|
|
fields = None
|
|
|
|
""" list: The field names """
|
|
|
|
|
|
|
|
EntryType = None
|
|
|
|
""" Type: A tuple type used to decode the results """
|
|
|
|
|
|
|
|
_select_where_clause = "SELECT %s FROM %s WHERE %s"
|
|
|
|
_select_clause = "SELECT %s FROM %s"
|
|
|
|
_insert_clause = "INSERT OR REPLACE INTO %s (%s) VALUES (%s)"
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def select_statement(cls, where_clause=None):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
where_clause (str): The WHERE clause to use.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: An SQL statement to select rows from the table with the given
|
|
|
|
WHERE clause.
|
|
|
|
"""
|
|
|
|
if where_clause:
|
|
|
|
return cls._select_where_clause % (
|
|
|
|
", ".join(cls.fields),
|
|
|
|
cls.table_name,
|
|
|
|
where_clause
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
return cls._select_clause % (
|
|
|
|
", ".join(cls.fields),
|
|
|
|
cls.table_name,
|
|
|
|
)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def insert_statement(cls):
|
|
|
|
return cls._insert_clause % (
|
|
|
|
cls.table_name,
|
|
|
|
", ".join(cls.fields),
|
|
|
|
", ".join(["?"] * len(cls.fields)),
|
|
|
|
)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def decode_single_result(cls, results):
|
|
|
|
""" Given an iterable of tuples, return a single instance of
|
|
|
|
`EntryType` or None if the iterable is empty
|
|
|
|
Args:
|
|
|
|
results (list): The results list to convert to `EntryType`
|
|
|
|
Returns:
|
|
|
|
EntryType: An instance of `EntryType`
|
|
|
|
"""
|
|
|
|
results = list(results)
|
|
|
|
if results:
|
|
|
|
return cls.EntryType(*results[0])
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def decode_results(cls, results):
|
|
|
|
""" Given an iterable of tuples, return a list of `EntryType`
|
|
|
|
Args:
|
|
|
|
results (list): The results list to convert to `EntryType`
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
list: A list of `EntryType`
|
|
|
|
"""
|
|
|
|
return [cls.EntryType(*row) for row in results]
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_fields_string(cls, prefix=None):
|
|
|
|
if prefix:
|
|
|
|
to_join = ("%s.%s" % (prefix, f) for f in cls.fields)
|
|
|
|
else:
|
|
|
|
to_join = cls.fields
|
|
|
|
|
|
|
|
return ", ".join(to_join)
|
|
|
|
|
|
|
|
|
|
|
|
class JoinHelper(object):
|
|
|
|
""" Used to help do joins on tables by looking at the tables' fields and
|
|
|
|
creating a list of unique fields to use with SELECTs and a namedtuple
|
|
|
|
to dump the results into.
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
taples (list): List of `Table` classes
|
|
|
|
EntryType (type)
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, *tables):
|
|
|
|
self.tables = tables
|
|
|
|
|
|
|
|
res = []
|
|
|
|
for table in self.tables:
|
|
|
|
res += [f for f in table.fields if f not in res]
|
|
|
|
|
|
|
|
self.EntryType = collections.namedtuple("JoinHelperEntry", res)
|
|
|
|
|
|
|
|
def get_fields(self, **prefixes):
|
|
|
|
"""Get a string representing a list of fields for use in SELECT
|
|
|
|
statements with the given prefixes applied to each.
|
|
|
|
|
|
|
|
For example::
|
|
|
|
|
|
|
|
JoinHelper(PdusTable, StateTable).get_fields(
|
|
|
|
PdusTable="pdus",
|
|
|
|
StateTable="state"
|
|
|
|
)
|
|
|
|
"""
|
|
|
|
res = []
|
|
|
|
for field in self.EntryType._fields:
|
|
|
|
for table in self.tables:
|
|
|
|
if field in table.fields:
|
|
|
|
res.append("%s.%s" % (prefixes[table.__name__], field))
|
|
|
|
break
|
|
|
|
|
|
|
|
return ", ".join(res)
|
|
|
|
|
|
|
|
def decode_results(self, rows):
|
|
|
|
return [self.EntryType(*row) for row in rows]
|