2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2015-04-29 06:42:28 -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.
|
2020-02-27 06:53:40 -05:00
|
|
|
import abc
|
2022-01-25 09:14:46 -05:00
|
|
|
from enum import IntEnum
|
2022-05-16 19:34:38 -04:00
|
|
|
from typing import TYPE_CHECKING, Any, Generic, Mapping, Optional, TypeVar
|
2020-02-27 06:53:40 -05:00
|
|
|
|
2022-05-16 19:34:38 -04:00
|
|
|
from synapse.storage.types import Connection, Cursor, DBAPI2Module
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.storage.database import LoggingDatabaseConnection
|
2015-04-29 06:42:28 -04:00
|
|
|
|
|
|
|
|
2022-01-25 09:14:46 -05:00
|
|
|
class IsolationLevel(IntEnum):
|
|
|
|
READ_COMMITTED: int = 1
|
|
|
|
REPEATABLE_READ: int = 2
|
|
|
|
SERIALIZABLE: int = 3
|
|
|
|
|
|
|
|
|
2015-04-29 06:42:28 -04:00
|
|
|
class IncorrectDatabaseSetup(RuntimeError):
|
|
|
|
pass
|
2020-02-27 06:53:40 -05:00
|
|
|
|
|
|
|
|
|
|
|
ConnectionType = TypeVar("ConnectionType", bound=Connection)
|
|
|
|
|
|
|
|
|
|
|
|
class BaseDatabaseEngine(Generic[ConnectionType], metaclass=abc.ABCMeta):
|
2022-05-16 19:34:38 -04:00
|
|
|
def __init__(self, module: DBAPI2Module, config: Mapping[str, Any]):
|
2020-02-27 06:53:40 -05:00
|
|
|
self.module = module
|
|
|
|
|
|
|
|
@property
|
|
|
|
@abc.abstractmethod
|
|
|
|
def single_threaded(self) -> bool:
|
|
|
|
...
|
|
|
|
|
|
|
|
@property
|
|
|
|
@abc.abstractmethod
|
|
|
|
def can_native_upsert(self) -> bool:
|
|
|
|
"""
|
|
|
|
Do we support native UPSERTs?
|
|
|
|
"""
|
|
|
|
...
|
|
|
|
|
|
|
|
@property
|
|
|
|
@abc.abstractmethod
|
|
|
|
def supports_using_any_list(self) -> bool:
|
|
|
|
"""
|
|
|
|
Do we support using `a = ANY(?)` and passing a list
|
|
|
|
"""
|
|
|
|
...
|
|
|
|
|
2021-06-30 07:07:16 -04:00
|
|
|
@property
|
|
|
|
@abc.abstractmethod
|
|
|
|
def supports_returning(self) -> bool:
|
|
|
|
"""Do we support the `RETURNING` clause in insert/update/delete?"""
|
|
|
|
...
|
|
|
|
|
2020-02-27 06:53:40 -05:00
|
|
|
@abc.abstractmethod
|
|
|
|
def check_database(
|
|
|
|
self, db_conn: ConnectionType, allow_outdated_version: bool = False
|
|
|
|
) -> None:
|
|
|
|
...
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
2022-05-16 19:34:38 -04:00
|
|
|
def check_new_database(self, txn: Cursor) -> None:
|
2020-02-27 06:53:40 -05:00
|
|
|
"""Gets called when setting up a brand new database. This allows us to
|
|
|
|
apply stricter checks on new databases versus existing database.
|
|
|
|
"""
|
|
|
|
...
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def convert_param_style(self, sql: str) -> str:
|
|
|
|
...
|
|
|
|
|
2022-05-16 19:34:38 -04:00
|
|
|
# This method would ideally take a plain ConnectionType, but it seems that
|
|
|
|
# the Sqlite engine expects to use LoggingDatabaseConnection.cursor
|
|
|
|
# instead of sqlite3.Connection.cursor: only the former takes a txn_name.
|
2020-02-27 06:53:40 -05:00
|
|
|
@abc.abstractmethod
|
2022-05-16 19:34:38 -04:00
|
|
|
def on_new_connection(self, db_conn: "LoggingDatabaseConnection") -> None:
|
2020-02-27 06:53:40 -05:00
|
|
|
...
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def is_deadlock(self, error: Exception) -> bool:
|
|
|
|
...
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def is_connection_closed(self, conn: ConnectionType) -> bool:
|
|
|
|
...
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
2022-05-16 19:34:38 -04:00
|
|
|
def lock_table(self, txn: Cursor, table: str) -> None:
|
2020-02-27 06:53:40 -05:00
|
|
|
...
|
|
|
|
|
|
|
|
@property
|
|
|
|
@abc.abstractmethod
|
|
|
|
def server_version(self) -> str:
|
|
|
|
"""Gets a string giving the server version. For example: '3.22.0'"""
|
|
|
|
...
|
2020-10-07 10:15:57 -04:00
|
|
|
|
|
|
|
@abc.abstractmethod
|
2022-05-16 19:34:38 -04:00
|
|
|
def in_transaction(self, conn: ConnectionType) -> bool:
|
2020-10-07 10:15:57 -04:00
|
|
|
"""Whether the connection is currently in a transaction."""
|
|
|
|
...
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
2022-05-16 19:34:38 -04:00
|
|
|
def attempt_to_set_autocommit(self, conn: ConnectionType, autocommit: bool) -> None:
|
2020-10-07 10:15:57 -04:00
|
|
|
"""Attempt to set the connections autocommit mode.
|
|
|
|
|
|
|
|
When True queries are run outside of transactions.
|
|
|
|
|
|
|
|
Note: This has no effect on SQLite3, so callers still need to
|
|
|
|
commit/rollback the connections.
|
|
|
|
"""
|
|
|
|
...
|
2022-01-25 09:14:46 -05:00
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def attempt_to_set_isolation_level(
|
2022-05-16 19:34:38 -04:00
|
|
|
self, conn: ConnectionType, isolation_level: Optional[int]
|
|
|
|
) -> None:
|
2022-01-25 09:14:46 -05:00
|
|
|
"""Attempt to set the connections isolation level.
|
|
|
|
|
|
|
|
Note: This has no effect on SQLite3, as transactions are SERIALIZABLE by default.
|
|
|
|
"""
|
|
|
|
...
|