2015-09-08 04:10:31 +08:00
|
|
|
import copy
|
2015-01-13 04:20:40 +08:00
|
|
|
import time
|
|
|
|
import warnings
|
2015-01-28 20:35:27 +08:00
|
|
|
from collections import deque
|
|
|
|
from contextlib import contextmanager
|
2015-01-13 04:20:40 +08:00
|
|
|
|
2017-01-07 19:11:46 +08:00
|
|
|
import _thread
|
2016-10-08 09:06:49 +08:00
|
|
|
import pytz
|
|
|
|
|
2015-01-13 04:20:40 +08:00
|
|
|
from django.conf import settings
|
2015-05-03 03:56:53 +08:00
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
2015-01-13 04:20:40 +08:00
|
|
|
from django.db import DEFAULT_DB_ALIAS
|
|
|
|
from django.db.backends import utils
|
2016-09-09 04:33:36 +08:00
|
|
|
from django.db.backends.base.validation import BaseDatabaseValidation
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.db.backends.signals import connection_created
|
2015-01-13 04:20:40 +08:00
|
|
|
from django.db.transaction import TransactionManagementError
|
|
|
|
from django.db.utils import DatabaseError, DatabaseErrorWrapper
|
2015-05-03 03:56:53 +08:00
|
|
|
from django.utils import timezone
|
2015-01-13 04:20:40 +08:00
|
|
|
from django.utils.functional import cached_property
|
|
|
|
|
|
|
|
NO_DB_ALIAS = '__no_db__'
|
|
|
|
|
|
|
|
|
2017-01-19 15:39:46 +08:00
|
|
|
class BaseDatabaseWrapper:
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Represent a database connection."""
|
2015-01-13 04:20:40 +08:00
|
|
|
# Mapping of Field objects to their column types.
|
|
|
|
data_types = {}
|
|
|
|
# Mapping of Field objects to their SQL suffix such as AUTOINCREMENT.
|
|
|
|
data_types_suffix = {}
|
|
|
|
# Mapping of Field objects to their SQL for CHECK constraints.
|
|
|
|
data_type_check_constraints = {}
|
|
|
|
ops = None
|
|
|
|
vendor = 'unknown'
|
2017-05-23 21:09:35 +08:00
|
|
|
display_name = 'unknown'
|
2015-01-13 04:20:40 +08:00
|
|
|
SchemaEditorClass = None
|
2016-09-09 04:33:36 +08:00
|
|
|
# Classes instantiated in __init__().
|
|
|
|
client_class = None
|
|
|
|
creation_class = None
|
|
|
|
features_class = None
|
|
|
|
introspection_class = None
|
|
|
|
ops_class = None
|
|
|
|
validation_class = BaseDatabaseValidation
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
queries_limit = 9000
|
|
|
|
|
|
|
|
def __init__(self, settings_dict, alias=DEFAULT_DB_ALIAS,
|
|
|
|
allow_thread_sharing=False):
|
|
|
|
# Connection related attributes.
|
|
|
|
# The underlying database connection.
|
|
|
|
self.connection = None
|
|
|
|
# `settings_dict` should be a dictionary containing keys such as
|
|
|
|
# NAME, USER, etc. It's called `settings_dict` instead of `settings`
|
|
|
|
# to disambiguate it from Django settings modules.
|
|
|
|
self.settings_dict = settings_dict
|
|
|
|
self.alias = alias
|
|
|
|
# Query logging in debug mode or when explicitly enabled.
|
|
|
|
self.queries_log = deque(maxlen=self.queries_limit)
|
|
|
|
self.force_debug_cursor = False
|
|
|
|
|
|
|
|
# Transaction related attributes.
|
|
|
|
# Tracks if the connection is in autocommit mode. Per PEP 249, by
|
|
|
|
# default, it isn't.
|
|
|
|
self.autocommit = False
|
|
|
|
# Tracks if the connection is in a transaction managed by 'atomic'.
|
|
|
|
self.in_atomic_block = False
|
|
|
|
# Increment to generate unique savepoint ids.
|
|
|
|
self.savepoint_state = 0
|
|
|
|
# List of savepoints created by 'atomic'.
|
|
|
|
self.savepoint_ids = []
|
|
|
|
# Tracks if the outermost 'atomic' block should commit on exit,
|
|
|
|
# ie. if autocommit was active on entry.
|
|
|
|
self.commit_on_exit = True
|
|
|
|
# Tracks if the transaction should be rolled back to the next
|
|
|
|
# available savepoint because of an exception in an inner block.
|
|
|
|
self.needs_rollback = False
|
|
|
|
|
|
|
|
# Connection termination related attributes.
|
|
|
|
self.close_at = None
|
|
|
|
self.closed_in_transaction = False
|
|
|
|
self.errors_occurred = False
|
|
|
|
|
|
|
|
# Thread-safety related attributes.
|
|
|
|
self.allow_thread_sharing = allow_thread_sharing
|
2017-01-07 19:11:46 +08:00
|
|
|
self._thread_ident = _thread.get_ident()
|
2015-01-13 04:20:40 +08:00
|
|
|
|
2015-07-01 00:18:56 +08:00
|
|
|
# A list of no-argument functions to run when the transaction commits.
|
|
|
|
# Each entry is an (sids, func) tuple, where sids is a set of the
|
|
|
|
# active savepoint IDs when this function was registered.
|
|
|
|
self.run_on_commit = []
|
|
|
|
|
|
|
|
# Should we run the on-commit hooks the next time set_autocommit(True)
|
|
|
|
# is called?
|
|
|
|
self.run_commit_hooks_on_set_autocommit_on = False
|
|
|
|
|
2017-09-22 00:13:09 +08:00
|
|
|
# A stack of wrappers to be invoked around execute()/executemany()
|
|
|
|
# calls. Each entry is a function taking five arguments: execute, sql,
|
|
|
|
# params, many, and context. It's the function's responsibility to
|
|
|
|
# call execute(sql, params, many, context).
|
|
|
|
self.execute_wrappers = []
|
|
|
|
|
2016-09-09 04:33:36 +08:00
|
|
|
self.client = self.client_class(self)
|
|
|
|
self.creation = self.creation_class(self)
|
|
|
|
self.features = self.features_class(self)
|
|
|
|
self.introspection = self.introspection_class(self)
|
|
|
|
self.ops = self.ops_class(self)
|
|
|
|
self.validation = self.validation_class(self)
|
|
|
|
|
2016-06-06 11:46:28 +08:00
|
|
|
def ensure_timezone(self):
|
|
|
|
"""
|
|
|
|
Ensure the connection's timezone is set to `self.timezone_name` and
|
|
|
|
return whether it changed or not.
|
|
|
|
"""
|
|
|
|
return False
|
|
|
|
|
2015-05-03 03:56:53 +08:00
|
|
|
@cached_property
|
|
|
|
def timezone(self):
|
|
|
|
"""
|
|
|
|
Time zone for datetimes stored as naive values in the database.
|
|
|
|
|
2017-01-25 07:04:12 +08:00
|
|
|
Return a tzinfo object or None.
|
2015-05-03 03:56:53 +08:00
|
|
|
|
|
|
|
This is only needed when time zone support is enabled and the database
|
|
|
|
doesn't support time zones. (When the database supports time zones,
|
|
|
|
the adapter handles aware datetimes so Django doesn't need to.)
|
|
|
|
"""
|
|
|
|
if not settings.USE_TZ:
|
|
|
|
return None
|
|
|
|
elif self.features.supports_timezones:
|
|
|
|
return None
|
|
|
|
elif self.settings_dict['TIME_ZONE'] is None:
|
|
|
|
return timezone.utc
|
|
|
|
else:
|
|
|
|
return pytz.timezone(self.settings_dict['TIME_ZONE'])
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def timezone_name(self):
|
|
|
|
"""
|
|
|
|
Name of the time zone of the database connection.
|
|
|
|
"""
|
|
|
|
if not settings.USE_TZ:
|
|
|
|
return settings.TIME_ZONE
|
|
|
|
elif self.settings_dict['TIME_ZONE'] is None:
|
|
|
|
return 'UTC'
|
|
|
|
else:
|
|
|
|
return self.settings_dict['TIME_ZONE']
|
|
|
|
|
2015-01-13 04:20:40 +08:00
|
|
|
@property
|
|
|
|
def queries_logged(self):
|
|
|
|
return self.force_debug_cursor or settings.DEBUG
|
|
|
|
|
|
|
|
@property
|
|
|
|
def queries(self):
|
|
|
|
if len(self.queries_log) == self.queries_log.maxlen:
|
|
|
|
warnings.warn(
|
|
|
|
"Limit for query logging exceeded, only the last {} queries "
|
|
|
|
"will be returned.".format(self.queries_log.maxlen))
|
|
|
|
return list(self.queries_log)
|
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# ##### Backend-specific methods for creating connections and cursors #####
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def get_connection_params(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Return a dict of parameters suitable for get_new_connection."""
|
2015-01-13 04:20:40 +08:00
|
|
|
raise NotImplementedError('subclasses of BaseDatabaseWrapper may require a get_connection_params() method')
|
|
|
|
|
|
|
|
def get_new_connection(self, conn_params):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Open a connection to the database."""
|
2015-01-13 04:20:40 +08:00
|
|
|
raise NotImplementedError('subclasses of BaseDatabaseWrapper may require a get_new_connection() method')
|
|
|
|
|
|
|
|
def init_connection_state(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Initialize the database connection settings."""
|
2015-01-13 04:20:40 +08:00
|
|
|
raise NotImplementedError('subclasses of BaseDatabaseWrapper may require an init_connection_state() method')
|
|
|
|
|
2016-06-04 06:31:21 +08:00
|
|
|
def create_cursor(self, name=None):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Create a cursor. Assume that a connection is established."""
|
2015-01-13 04:20:40 +08:00
|
|
|
raise NotImplementedError('subclasses of BaseDatabaseWrapper may require a create_cursor() method')
|
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# ##### Backend-specific methods for creating connections #####
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def connect(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Connect to the database. Assume that the connection is closed."""
|
2015-05-03 03:56:53 +08:00
|
|
|
# Check for invalid configurations.
|
|
|
|
self.check_settings()
|
2015-01-13 04:20:40 +08:00
|
|
|
# In case the previous connection was closed while in an atomic block
|
|
|
|
self.in_atomic_block = False
|
|
|
|
self.savepoint_ids = []
|
|
|
|
self.needs_rollback = False
|
|
|
|
# Reset parameters defining when to close the connection
|
|
|
|
max_age = self.settings_dict['CONN_MAX_AGE']
|
|
|
|
self.close_at = None if max_age is None else time.time() + max_age
|
|
|
|
self.closed_in_transaction = False
|
|
|
|
self.errors_occurred = False
|
|
|
|
# Establish the connection
|
|
|
|
conn_params = self.get_connection_params()
|
|
|
|
self.connection = self.get_new_connection(conn_params)
|
|
|
|
self.set_autocommit(self.settings_dict['AUTOCOMMIT'])
|
|
|
|
self.init_connection_state()
|
|
|
|
connection_created.send(sender=self.__class__, connection=self)
|
|
|
|
|
2015-07-01 00:18:56 +08:00
|
|
|
self.run_on_commit = []
|
|
|
|
|
2015-05-03 03:56:53 +08:00
|
|
|
def check_settings(self):
|
|
|
|
if self.settings_dict['TIME_ZONE'] is not None:
|
|
|
|
if not settings.USE_TZ:
|
|
|
|
raise ImproperlyConfigured(
|
|
|
|
"Connection '%s' cannot set TIME_ZONE because USE_TZ is "
|
|
|
|
"False." % self.alias)
|
|
|
|
elif self.features.supports_timezones:
|
|
|
|
raise ImproperlyConfigured(
|
|
|
|
"Connection '%s' cannot set TIME_ZONE because its engine "
|
|
|
|
"handles time zones conversions natively." % self.alias)
|
|
|
|
|
2015-01-13 04:20:40 +08:00
|
|
|
def ensure_connection(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Guarantee that a connection to the database is established."""
|
2015-01-13 04:20:40 +08:00
|
|
|
if self.connection is None:
|
|
|
|
with self.wrap_database_errors:
|
|
|
|
self.connect()
|
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# ##### Backend-specific wrappers for PEP-249 connection methods #####
|
2015-01-13 04:20:40 +08:00
|
|
|
|
2016-06-04 06:31:21 +08:00
|
|
|
def _prepare_cursor(self, cursor):
|
|
|
|
"""
|
|
|
|
Validate the connection is usable and perform database cursor wrapping.
|
|
|
|
"""
|
|
|
|
self.validate_thread_sharing()
|
|
|
|
if self.queries_logged:
|
|
|
|
wrapped_cursor = self.make_debug_cursor(cursor)
|
|
|
|
else:
|
|
|
|
wrapped_cursor = self.make_cursor(cursor)
|
|
|
|
return wrapped_cursor
|
|
|
|
|
|
|
|
def _cursor(self, name=None):
|
2015-01-13 04:20:40 +08:00
|
|
|
self.ensure_connection()
|
|
|
|
with self.wrap_database_errors:
|
2017-01-14 14:36:25 +08:00
|
|
|
return self._prepare_cursor(self.create_cursor(name))
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def _commit(self):
|
|
|
|
if self.connection is not None:
|
|
|
|
with self.wrap_database_errors:
|
|
|
|
return self.connection.commit()
|
|
|
|
|
|
|
|
def _rollback(self):
|
|
|
|
if self.connection is not None:
|
|
|
|
with self.wrap_database_errors:
|
|
|
|
return self.connection.rollback()
|
|
|
|
|
|
|
|
def _close(self):
|
|
|
|
if self.connection is not None:
|
|
|
|
with self.wrap_database_errors:
|
|
|
|
return self.connection.close()
|
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# ##### Generic wrappers for PEP-249 connection methods #####
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def cursor(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Create a cursor, opening a connection if necessary."""
|
2017-01-14 14:36:25 +08:00
|
|
|
return self._cursor()
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def commit(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Commit a transaction and reset the dirty flag."""
|
2015-01-13 04:20:40 +08:00
|
|
|
self.validate_thread_sharing()
|
|
|
|
self.validate_no_atomic_block()
|
|
|
|
self._commit()
|
|
|
|
# A successful commit means that the database connection works.
|
|
|
|
self.errors_occurred = False
|
2015-07-01 00:18:56 +08:00
|
|
|
self.run_commit_hooks_on_set_autocommit_on = True
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def rollback(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Roll back a transaction and reset the dirty flag."""
|
2015-01-13 04:20:40 +08:00
|
|
|
self.validate_thread_sharing()
|
|
|
|
self.validate_no_atomic_block()
|
|
|
|
self._rollback()
|
|
|
|
# A successful rollback means that the database connection works.
|
|
|
|
self.errors_occurred = False
|
2016-11-23 21:42:19 +08:00
|
|
|
self.needs_rollback = False
|
2015-07-01 00:18:56 +08:00
|
|
|
self.run_on_commit = []
|
|
|
|
|
2015-01-13 04:20:40 +08:00
|
|
|
def close(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Close the connection to the database."""
|
2015-01-13 04:20:40 +08:00
|
|
|
self.validate_thread_sharing()
|
2015-07-01 00:18:56 +08:00
|
|
|
self.run_on_commit = []
|
|
|
|
|
2015-01-13 04:20:40 +08:00
|
|
|
# Don't call validate_no_atomic_block() to avoid making it difficult
|
|
|
|
# to get rid of a connection in an invalid state. The next connect()
|
|
|
|
# will reset the transaction state anyway.
|
|
|
|
if self.closed_in_transaction or self.connection is None:
|
|
|
|
return
|
|
|
|
try:
|
|
|
|
self._close()
|
|
|
|
finally:
|
|
|
|
if self.in_atomic_block:
|
|
|
|
self.closed_in_transaction = True
|
|
|
|
self.needs_rollback = True
|
|
|
|
else:
|
|
|
|
self.connection = None
|
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# ##### Backend-specific savepoint management methods #####
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def _savepoint(self, sid):
|
|
|
|
with self.cursor() as cursor:
|
|
|
|
cursor.execute(self.ops.savepoint_create_sql(sid))
|
|
|
|
|
|
|
|
def _savepoint_rollback(self, sid):
|
|
|
|
with self.cursor() as cursor:
|
|
|
|
cursor.execute(self.ops.savepoint_rollback_sql(sid))
|
|
|
|
|
|
|
|
def _savepoint_commit(self, sid):
|
|
|
|
with self.cursor() as cursor:
|
|
|
|
cursor.execute(self.ops.savepoint_commit_sql(sid))
|
|
|
|
|
|
|
|
def _savepoint_allowed(self):
|
|
|
|
# Savepoints cannot be created outside a transaction
|
|
|
|
return self.features.uses_savepoints and not self.get_autocommit()
|
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# ##### Generic savepoint management methods #####
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def savepoint(self):
|
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Create a savepoint inside the current transaction. Return an
|
2015-01-13 04:20:40 +08:00
|
|
|
identifier for the savepoint that will be used for the subsequent
|
2017-01-25 07:04:12 +08:00
|
|
|
rollback or commit. Do nothing if savepoints are not supported.
|
2015-01-13 04:20:40 +08:00
|
|
|
"""
|
|
|
|
if not self._savepoint_allowed():
|
|
|
|
return
|
|
|
|
|
2017-01-07 19:11:46 +08:00
|
|
|
thread_ident = _thread.get_ident()
|
2015-01-13 04:20:40 +08:00
|
|
|
tid = str(thread_ident).replace('-', '')
|
|
|
|
|
|
|
|
self.savepoint_state += 1
|
|
|
|
sid = "s%s_x%d" % (tid, self.savepoint_state)
|
|
|
|
|
|
|
|
self.validate_thread_sharing()
|
|
|
|
self._savepoint(sid)
|
|
|
|
|
|
|
|
return sid
|
|
|
|
|
|
|
|
def savepoint_rollback(self, sid):
|
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Roll back to a savepoint. Do nothing if savepoints are not supported.
|
2015-01-13 04:20:40 +08:00
|
|
|
"""
|
|
|
|
if not self._savepoint_allowed():
|
|
|
|
return
|
|
|
|
|
|
|
|
self.validate_thread_sharing()
|
|
|
|
self._savepoint_rollback(sid)
|
|
|
|
|
2015-07-01 00:18:56 +08:00
|
|
|
# Remove any callbacks registered while this savepoint was active.
|
|
|
|
self.run_on_commit = [
|
|
|
|
(sids, func) for (sids, func) in self.run_on_commit if sid not in sids
|
|
|
|
]
|
|
|
|
|
2015-01-13 04:20:40 +08:00
|
|
|
def savepoint_commit(self, sid):
|
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Release a savepoint. Do nothing if savepoints are not supported.
|
2015-01-13 04:20:40 +08:00
|
|
|
"""
|
|
|
|
if not self._savepoint_allowed():
|
|
|
|
return
|
|
|
|
|
|
|
|
self.validate_thread_sharing()
|
|
|
|
self._savepoint_commit(sid)
|
|
|
|
|
|
|
|
def clean_savepoints(self):
|
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Reset the counter used to generate unique savepoint ids in this thread.
|
2015-01-13 04:20:40 +08:00
|
|
|
"""
|
|
|
|
self.savepoint_state = 0
|
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# ##### Backend-specific transaction management methods #####
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def _set_autocommit(self, autocommit):
|
|
|
|
"""
|
|
|
|
Backend-specific implementation to enable or disable autocommit.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError('subclasses of BaseDatabaseWrapper may require a _set_autocommit() method')
|
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# ##### Generic transaction management methods #####
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def get_autocommit(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Get the autocommit state."""
|
2015-01-13 04:20:40 +08:00
|
|
|
self.ensure_connection()
|
|
|
|
return self.autocommit
|
|
|
|
|
2015-07-01 00:18:56 +08:00
|
|
|
def set_autocommit(self, autocommit, force_begin_transaction_with_broken_autocommit=False):
|
2015-01-13 04:20:40 +08:00
|
|
|
"""
|
|
|
|
Enable or disable autocommit.
|
2015-07-01 00:18:56 +08:00
|
|
|
|
|
|
|
The usual way to start a transaction is to turn autocommit off.
|
|
|
|
SQLite does not properly start a transaction when disabling
|
|
|
|
autocommit. To avoid this buggy behavior and to actually enter a new
|
|
|
|
transaction, an explcit BEGIN is required. Using
|
|
|
|
force_begin_transaction_with_broken_autocommit=True will issue an
|
|
|
|
explicit BEGIN with SQLite. This option will be ignored for other
|
|
|
|
backends.
|
2015-01-13 04:20:40 +08:00
|
|
|
"""
|
|
|
|
self.validate_no_atomic_block()
|
|
|
|
self.ensure_connection()
|
2015-07-01 00:18:56 +08:00
|
|
|
|
|
|
|
start_transaction_under_autocommit = (
|
2016-04-04 08:37:32 +08:00
|
|
|
force_begin_transaction_with_broken_autocommit and not autocommit and
|
|
|
|
self.features.autocommits_when_autocommit_is_off
|
2015-07-01 00:18:56 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
if start_transaction_under_autocommit:
|
|
|
|
self._start_transaction_under_autocommit()
|
|
|
|
else:
|
|
|
|
self._set_autocommit(autocommit)
|
|
|
|
|
2015-01-13 04:20:40 +08:00
|
|
|
self.autocommit = autocommit
|
|
|
|
|
2015-07-01 00:18:56 +08:00
|
|
|
if autocommit and self.run_commit_hooks_on_set_autocommit_on:
|
|
|
|
self.run_and_clear_commit_hooks()
|
|
|
|
self.run_commit_hooks_on_set_autocommit_on = False
|
|
|
|
|
2015-01-13 04:20:40 +08:00
|
|
|
def get_rollback(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Get the "needs rollback" flag -- for *advanced use* only."""
|
2015-01-13 04:20:40 +08:00
|
|
|
if not self.in_atomic_block:
|
|
|
|
raise TransactionManagementError(
|
|
|
|
"The rollback flag doesn't work outside of an 'atomic' block.")
|
|
|
|
return self.needs_rollback
|
|
|
|
|
|
|
|
def set_rollback(self, rollback):
|
|
|
|
"""
|
|
|
|
Set or unset the "needs rollback" flag -- for *advanced use* only.
|
|
|
|
"""
|
|
|
|
if not self.in_atomic_block:
|
|
|
|
raise TransactionManagementError(
|
|
|
|
"The rollback flag doesn't work outside of an 'atomic' block.")
|
|
|
|
self.needs_rollback = rollback
|
|
|
|
|
|
|
|
def validate_no_atomic_block(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Raise an error if an atomic block is active."""
|
2015-01-13 04:20:40 +08:00
|
|
|
if self.in_atomic_block:
|
|
|
|
raise TransactionManagementError(
|
|
|
|
"This is forbidden when an 'atomic' block is active.")
|
|
|
|
|
|
|
|
def validate_no_broken_transaction(self):
|
|
|
|
if self.needs_rollback:
|
|
|
|
raise TransactionManagementError(
|
|
|
|
"An error occurred in the current transaction. You can't "
|
|
|
|
"execute queries until the end of the 'atomic' block.")
|
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# ##### Foreign key constraints checks handling #####
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
@contextmanager
|
|
|
|
def constraint_checks_disabled(self):
|
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Disable foreign key constraint checking.
|
2015-01-13 04:20:40 +08:00
|
|
|
"""
|
|
|
|
disabled = self.disable_constraint_checking()
|
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
|
|
|
if disabled:
|
|
|
|
self.enable_constraint_checking()
|
|
|
|
|
|
|
|
def disable_constraint_checking(self):
|
|
|
|
"""
|
|
|
|
Backends can implement as needed to temporarily disable foreign key
|
|
|
|
constraint checking. Should return True if the constraints were
|
|
|
|
disabled and will need to be reenabled.
|
|
|
|
"""
|
|
|
|
return False
|
|
|
|
|
|
|
|
def enable_constraint_checking(self):
|
|
|
|
"""
|
|
|
|
Backends can implement as needed to re-enable foreign key constraint
|
|
|
|
checking.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
def check_constraints(self, table_names=None):
|
|
|
|
"""
|
|
|
|
Backends can override this method if they can apply constraint
|
|
|
|
checking (e.g. via "SET CONSTRAINTS ALL IMMEDIATE"). Should raise an
|
|
|
|
IntegrityError if any invalid foreign key references are encountered.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# ##### Connection termination handling #####
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def is_usable(self):
|
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Test if the database connection is usable.
|
2015-01-13 04:20:40 +08:00
|
|
|
|
2017-01-25 07:04:12 +08:00
|
|
|
This method may assume that self.connection is not None.
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
Actual implementations should take care not to raise exceptions
|
|
|
|
as that may prevent Django from recycling unusable connections.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError(
|
|
|
|
"subclasses of BaseDatabaseWrapper may require an is_usable() method")
|
|
|
|
|
|
|
|
def close_if_unusable_or_obsolete(self):
|
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Close the current connection if unrecoverable errors have occurred
|
2015-01-13 04:20:40 +08:00
|
|
|
or if it outlived its maximum age.
|
|
|
|
"""
|
|
|
|
if self.connection is not None:
|
|
|
|
# If the application didn't restore the original autocommit setting,
|
|
|
|
# don't take chances, drop the connection.
|
|
|
|
if self.get_autocommit() != self.settings_dict['AUTOCOMMIT']:
|
|
|
|
self.close()
|
|
|
|
return
|
|
|
|
|
|
|
|
# If an exception other than DataError or IntegrityError occurred
|
|
|
|
# since the last commit / rollback, check if the connection works.
|
|
|
|
if self.errors_occurred:
|
|
|
|
if self.is_usable():
|
|
|
|
self.errors_occurred = False
|
|
|
|
else:
|
|
|
|
self.close()
|
|
|
|
return
|
|
|
|
|
|
|
|
if self.close_at is not None and time.time() >= self.close_at:
|
|
|
|
self.close()
|
|
|
|
return
|
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# ##### Thread safety handling #####
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def validate_thread_sharing(self):
|
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Validate that the connection isn't accessed by another thread than the
|
2015-01-13 04:20:40 +08:00
|
|
|
one which originally created it, unless the connection was explicitly
|
|
|
|
authorized to be shared between threads (via the `allow_thread_sharing`
|
2017-01-25 07:04:12 +08:00
|
|
|
property). Raise an exception if the validation fails.
|
2015-01-13 04:20:40 +08:00
|
|
|
"""
|
2017-01-07 19:11:46 +08:00
|
|
|
if not (self.allow_thread_sharing or self._thread_ident == _thread.get_ident()):
|
2016-04-04 08:37:32 +08:00
|
|
|
raise DatabaseError(
|
|
|
|
"DatabaseWrapper objects created in a "
|
2015-01-13 04:20:40 +08:00
|
|
|
"thread can only be used in that same thread. The object "
|
|
|
|
"with alias '%s' was created in thread id %s and this is "
|
|
|
|
"thread id %s."
|
2017-01-07 19:11:46 +08:00
|
|
|
% (self.alias, self._thread_ident, _thread.get_ident())
|
2016-04-04 08:37:32 +08:00
|
|
|
)
|
2015-01-13 04:20:40 +08:00
|
|
|
|
2015-02-06 02:25:34 +08:00
|
|
|
# ##### Miscellaneous #####
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
def prepare_database(self):
|
|
|
|
"""
|
|
|
|
Hook to do any database check or preparation, generally called before
|
|
|
|
migrating a project or an app.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def wrap_database_errors(self):
|
|
|
|
"""
|
|
|
|
Context manager and decorator that re-throws backend-specific database
|
|
|
|
exceptions using Django's common wrappers.
|
|
|
|
"""
|
|
|
|
return DatabaseErrorWrapper(self)
|
|
|
|
|
2016-06-04 06:31:21 +08:00
|
|
|
def chunked_cursor(self):
|
|
|
|
"""
|
|
|
|
Return a cursor that tries to avoid caching in the database (if
|
|
|
|
supported by the database), otherwise return a regular cursor.
|
|
|
|
"""
|
|
|
|
return self.cursor()
|
|
|
|
|
2015-01-13 04:20:40 +08:00
|
|
|
def make_debug_cursor(self, cursor):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Create a cursor that logs all queries in self.queries_log."""
|
2015-01-13 04:20:40 +08:00
|
|
|
return utils.CursorDebugWrapper(cursor, self)
|
|
|
|
|
|
|
|
def make_cursor(self, cursor):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Create a cursor without debug logging."""
|
2015-01-13 04:20:40 +08:00
|
|
|
return utils.CursorWrapper(cursor, self)
|
|
|
|
|
|
|
|
@contextmanager
|
|
|
|
def temporary_connection(self):
|
|
|
|
"""
|
|
|
|
Context manager that ensures that a connection is established, and
|
|
|
|
if it opened one, closes it to avoid leaving a dangling connection.
|
|
|
|
This is useful for operations outside of the request-response cycle.
|
|
|
|
|
2017-01-25 07:04:12 +08:00
|
|
|
Provide a cursor: with self.temporary_connection() as cursor: ...
|
2015-01-13 04:20:40 +08:00
|
|
|
"""
|
|
|
|
must_close = self.connection is None
|
|
|
|
cursor = self.cursor()
|
|
|
|
try:
|
|
|
|
yield cursor
|
|
|
|
finally:
|
|
|
|
cursor.close()
|
|
|
|
if must_close:
|
|
|
|
self.close()
|
|
|
|
|
2015-09-11 00:47:50 +08:00
|
|
|
@property
|
2015-01-13 04:20:40 +08:00
|
|
|
def _nodb_connection(self):
|
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Return an alternative connection to be used when there is no need to
|
|
|
|
access the main database, specifically for test db creation/deletion.
|
2015-01-13 04:20:40 +08:00
|
|
|
This also prevents the production database from being exposed to
|
|
|
|
potential child threads while (or after) the test database is destroyed.
|
|
|
|
Refs #10868, #17786, #16969.
|
|
|
|
"""
|
|
|
|
settings_dict = self.settings_dict.copy()
|
|
|
|
settings_dict['NAME'] = None
|
|
|
|
nodb_connection = self.__class__(
|
|
|
|
settings_dict,
|
|
|
|
alias=NO_DB_ALIAS,
|
|
|
|
allow_thread_sharing=False)
|
|
|
|
return nodb_connection
|
|
|
|
|
|
|
|
def _start_transaction_under_autocommit(self):
|
|
|
|
"""
|
|
|
|
Only required when autocommits_when_autocommit_is_off = True.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError(
|
|
|
|
'subclasses of BaseDatabaseWrapper may require a '
|
|
|
|
'_start_transaction_under_autocommit() method'
|
|
|
|
)
|
|
|
|
|
|
|
|
def schema_editor(self, *args, **kwargs):
|
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Return a new instance of this backend's SchemaEditor.
|
2015-01-13 04:20:40 +08:00
|
|
|
"""
|
|
|
|
if self.SchemaEditorClass is None:
|
|
|
|
raise NotImplementedError(
|
|
|
|
'The SchemaEditorClass attribute of this database wrapper is still None')
|
|
|
|
return self.SchemaEditorClass(self, *args, **kwargs)
|
2015-07-01 00:18:56 +08:00
|
|
|
|
|
|
|
def on_commit(self, func):
|
|
|
|
if self.in_atomic_block:
|
|
|
|
# Transaction in progress; save for execution on commit.
|
|
|
|
self.run_on_commit.append((set(self.savepoint_ids), func))
|
|
|
|
elif not self.get_autocommit():
|
|
|
|
raise TransactionManagementError('on_commit() cannot be used in manual transaction management')
|
|
|
|
else:
|
|
|
|
# No transaction in progress and in autocommit mode; execute
|
|
|
|
# immediately.
|
|
|
|
func()
|
|
|
|
|
|
|
|
def run_and_clear_commit_hooks(self):
|
|
|
|
self.validate_no_atomic_block()
|
2016-05-17 22:54:57 +08:00
|
|
|
current_run_on_commit = self.run_on_commit
|
|
|
|
self.run_on_commit = []
|
|
|
|
while current_run_on_commit:
|
|
|
|
sids, func = current_run_on_commit.pop(0)
|
|
|
|
func()
|
2015-09-08 04:10:31 +08:00
|
|
|
|
2017-09-22 00:13:09 +08:00
|
|
|
@contextmanager
|
|
|
|
def execute_wrapper(self, wrapper):
|
|
|
|
"""
|
|
|
|
Return a context manager under which the wrapper is applied to suitable
|
|
|
|
database query executions.
|
|
|
|
"""
|
|
|
|
self.execute_wrappers.append(wrapper)
|
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
|
|
|
self.execute_wrappers.pop()
|
|
|
|
|
2015-09-08 04:10:31 +08:00
|
|
|
def copy(self, alias=None, allow_thread_sharing=None):
|
|
|
|
"""
|
|
|
|
Return a copy of this connection.
|
|
|
|
|
|
|
|
For tests that require two connections to the same database.
|
|
|
|
"""
|
|
|
|
settings_dict = copy.deepcopy(self.settings_dict)
|
|
|
|
if alias is None:
|
|
|
|
alias = self.alias
|
|
|
|
if allow_thread_sharing is None:
|
|
|
|
allow_thread_sharing = self.allow_thread_sharing
|
|
|
|
return type(self)(settings_dict, alias, allow_thread_sharing)
|