2013-03-02 06:46:09 +08:00
|
|
|
import warnings
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
from django.core import signals
|
2013-07-08 08:39:54 +08:00
|
|
|
from django.db.utils import (DEFAULT_DB_ALIAS, DataError, OperationalError,
|
|
|
|
IntegrityError, InternalError, ProgrammingError, NotSupportedError,
|
|
|
|
DatabaseError, InterfaceError, Error, load_backend,
|
|
|
|
ConnectionHandler, ConnectionRouter)
|
2013-05-21 17:11:05 +08:00
|
|
|
from django.utils.functional import cached_property
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
'backend', 'connection', 'connections', 'router', 'DatabaseError',
|
|
|
|
'IntegrityError', 'InternalError', 'ProgrammingError', 'DataError',
|
|
|
|
'NotSupportedError', 'Error', 'InterfaceError', 'OperationalError',
|
|
|
|
'DEFAULT_DB_ALIAS'
|
|
|
|
]
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-05-21 17:35:05 +08:00
|
|
|
connections = ConnectionHandler()
|
2009-03-13 12:41:45 +08:00
|
|
|
|
2013-05-21 18:21:31 +08:00
|
|
|
router = ConnectionRouter()
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2009-03-11 11:39:34 +08:00
|
|
|
# `connection`, `DatabaseError` and `IntegrityError` are convenient aliases
|
|
|
|
# for backend bits.
|
|
|
|
|
|
|
|
# DatabaseWrapper.__init__() takes a dictionary, not a settings module, so
|
|
|
|
# we manually create the dictionary from the settings, passing only the
|
|
|
|
# settings that the database backends care about. Note that TIME_ZONE is used
|
|
|
|
# by the PostgreSQL backends.
|
2011-12-16 21:40:19 +08:00
|
|
|
# We load all these up for backwards compatibility, you should use
|
2009-12-22 23:18:51 +08:00
|
|
|
# connections['default'] instead.
|
2011-12-16 21:40:19 +08:00
|
|
|
class DefaultConnectionProxy(object):
|
|
|
|
"""
|
|
|
|
Proxy for accessing the default DatabaseWrapper object's attributes. If you
|
|
|
|
need to access the DatabaseWrapper object itself, use
|
|
|
|
connections[DEFAULT_DB_ALIAS] instead.
|
|
|
|
"""
|
|
|
|
def __getattr__(self, item):
|
|
|
|
return getattr(connections[DEFAULT_DB_ALIAS], item)
|
|
|
|
|
|
|
|
def __setattr__(self, name, value):
|
|
|
|
return setattr(connections[DEFAULT_DB_ALIAS], name, value)
|
|
|
|
|
2013-03-01 00:05:25 +08:00
|
|
|
def __delattr__(self, name):
|
|
|
|
return delattr(connections[DEFAULT_DB_ALIAS], name)
|
|
|
|
|
2013-07-08 08:32:04 +08:00
|
|
|
def __eq__(self, other):
|
|
|
|
return connections[DEFAULT_DB_ALIAS] == other
|
|
|
|
|
|
|
|
def __ne__(self, other):
|
|
|
|
return connections[DEFAULT_DB_ALIAS] != other
|
|
|
|
|
2011-12-16 21:40:19 +08:00
|
|
|
connection = DefaultConnectionProxy()
|
2013-05-21 17:11:05 +08:00
|
|
|
|
2013-07-08 08:32:04 +08:00
|
|
|
|
2013-05-21 17:11:05 +08:00
|
|
|
class DefaultBackendProxy(object):
|
|
|
|
"""
|
|
|
|
Temporary proxy class used during deprecation period of the `backend` module
|
|
|
|
variable.
|
|
|
|
"""
|
|
|
|
@cached_property
|
|
|
|
def _backend(self):
|
|
|
|
warnings.warn("Accessing django.db.backend is deprecated.",
|
2013-06-30 00:34:41 +08:00
|
|
|
DeprecationWarning, stacklevel=2)
|
2013-05-21 17:11:05 +08:00
|
|
|
return load_backend(connections[DEFAULT_DB_ALIAS].settings_dict['ENGINE'])
|
|
|
|
|
|
|
|
def __getattr__(self, item):
|
|
|
|
return getattr(self._backend, item)
|
|
|
|
|
|
|
|
def __setattr__(self, name, value):
|
|
|
|
return setattr(self._backend, name, value)
|
|
|
|
|
|
|
|
def __delattr__(self, name):
|
|
|
|
return delattr(self._backend, name)
|
|
|
|
|
|
|
|
backend = DefaultBackendProxy()
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2008-08-06 23:32:46 +08:00
|
|
|
def close_connection(**kwargs):
|
2013-02-18 18:37:26 +08:00
|
|
|
warnings.warn(
|
|
|
|
"close_connection is superseded by close_old_connections.",
|
2013-06-30 00:34:41 +08:00
|
|
|
DeprecationWarning, stacklevel=2)
|
2013-02-06 05:52:29 +08:00
|
|
|
# Avoid circular imports
|
|
|
|
from django.db import transaction
|
|
|
|
for conn in connections:
|
2013-02-13 05:11:22 +08:00
|
|
|
# If an error happens here the connection will be left in broken
|
|
|
|
# state. Once a good db connection is again available, the
|
|
|
|
# connection state will be cleaned up.
|
|
|
|
transaction.abort(conn)
|
|
|
|
connections[conn].close()
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2013-02-18 18:37:26 +08:00
|
|
|
# Register an event to reset saved queries when a Django request is started.
|
2008-08-06 23:32:46 +08:00
|
|
|
def reset_queries(**kwargs):
|
2009-12-28 13:11:57 +08:00
|
|
|
for conn in connections.all():
|
|
|
|
conn.queries = []
|
2008-08-06 23:32:46 +08:00
|
|
|
signals.request_started.connect(reset_queries)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2013-02-18 18:37:26 +08:00
|
|
|
# Register an event to reset transaction state and close connections past
|
|
|
|
# their lifetime. NB: abort() doesn't do anything outside of a transaction.
|
|
|
|
def close_old_connections(**kwargs):
|
|
|
|
for conn in connections.all():
|
2013-03-05 06:26:31 +08:00
|
|
|
# Remove this when the legacy transaction management goes away.
|
2013-02-18 18:37:26 +08:00
|
|
|
try:
|
|
|
|
conn.abort()
|
|
|
|
except DatabaseError:
|
|
|
|
pass
|
|
|
|
conn.close_if_unusable_or_obsolete()
|
|
|
|
signals.request_started.connect(close_old_connections)
|
|
|
|
signals.request_finished.connect(close_old_connections)
|