2014-09-26 14:53:44 +00:00
|
|
|
|
# coding: utf-8
|
|
|
|
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
2014-10-19 18:15:57 +00:00
|
|
|
|
from collections import Iterable
|
2014-10-05 22:58:39 +00:00
|
|
|
|
from functools import wraps
|
2014-10-06 11:45:57 +00:00
|
|
|
|
import pickle
|
2014-09-27 23:44:43 +00:00
|
|
|
|
import re
|
|
|
|
|
|
|
2014-10-20 21:43:10 +00:00
|
|
|
|
from django.conf import settings
|
|
|
|
|
|
from django.db import connections
|
2014-09-26 14:53:44 +00:00
|
|
|
|
from django.db.models.query import EmptyResultSet
|
|
|
|
|
|
from django.db.models.sql.compiler import (
|
|
|
|
|
|
SQLCompiler, SQLAggregateCompiler, SQLDateCompiler, SQLDateTimeCompiler,
|
|
|
|
|
|
SQLInsertCompiler, SQLUpdateCompiler, SQLDeleteCompiler)
|
2014-09-27 23:44:43 +00:00
|
|
|
|
from django.db.models.sql.where import ExtraWhere
|
2014-10-20 21:43:10 +00:00
|
|
|
|
from django.db.transaction import Atomic, get_connection
|
2014-10-19 19:17:07 +00:00
|
|
|
|
from django.test import TransactionTestCase
|
2014-10-04 23:25:48 +00:00
|
|
|
|
|
2014-10-19 18:15:57 +00:00
|
|
|
|
from .cache import cachalot_caches
|
2014-10-04 23:25:48 +00:00
|
|
|
|
from .settings import cachalot_settings
|
2014-10-19 18:15:57 +00:00
|
|
|
|
from .utils import (
|
|
|
|
|
|
_get_tables, _get_query_cache_key, _update_tables_queries,
|
|
|
|
|
|
_invalidate_tables)
|
2014-09-26 14:53:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
COMPILERS = (SQLCompiler,
|
|
|
|
|
|
SQLAggregateCompiler, SQLDateCompiler, SQLDateTimeCompiler,
|
|
|
|
|
|
SQLInsertCompiler, SQLUpdateCompiler, SQLDeleteCompiler)
|
|
|
|
|
|
WRITE_COMPILERS = (SQLInsertCompiler, SQLUpdateCompiler, SQLDeleteCompiler)
|
|
|
|
|
|
READ_COMPILERS = [c for c in COMPILERS if c not in WRITE_COMPILERS]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PATCHED = False
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-27 23:44:43 +00:00
|
|
|
|
COLUMN_RE = re.compile(r'^"(?P<table>[\w_]+)"\."(?P<column>[\w_]+)"$')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _has_extra_select_or_where(query):
|
|
|
|
|
|
"""
|
|
|
|
|
|
Returns True if ``query`` contains a ``QuerySet.extra`` with ``select``
|
|
|
|
|
|
or ``where`` arguments.
|
|
|
|
|
|
|
|
|
|
|
|
We also have to check for ``prefetch_related``, as it internally uses a
|
|
|
|
|
|
``QuerySet.extra(select={'_prefetch_related_val_…': '"table"."column"'})``.
|
|
|
|
|
|
|
|
|
|
|
|
For more details on how prefetch_related uses ``QuerySet.extra``, see:
|
|
|
|
|
|
https://github.com/django/django/blob/1.6.7/django/db/models/fields/related.py#L553-L577
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
# Checks if there’s an extra where
|
|
|
|
|
|
if any(isinstance(child, ExtraWhere) for child in query.where.children):
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
# Checks if there’s an extra select
|
|
|
|
|
|
if query.extra_select and query.extra_select_mask is None:
|
|
|
|
|
|
tables = _get_tables(query)
|
|
|
|
|
|
# Checks if extra subqueries are something else than one or several
|
|
|
|
|
|
# ``prefetch_related``.
|
|
|
|
|
|
for subquery, params in query.extra_select.values():
|
|
|
|
|
|
match = COLUMN_RE.match(subquery)
|
|
|
|
|
|
return match is None or match.group('table') not in tables
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-29 17:16:53 +00:00
|
|
|
|
def _patch_orm_read():
|
|
|
|
|
|
def patch_execute_sql(original):
|
2014-10-05 22:58:39 +00:00
|
|
|
|
@wraps(original)
|
2014-09-26 14:53:44 +00:00
|
|
|
|
def inner(compiler, *args, **kwargs):
|
2014-10-05 00:36:19 +00:00
|
|
|
|
if not cachalot_settings.CACHALOT_ENABLED \
|
2014-10-21 11:40:08 +00:00
|
|
|
|
or isinstance(compiler, WRITE_COMPILERS) \
|
|
|
|
|
|
or _has_extra_select_or_where(compiler.query):
|
2014-09-29 17:16:53 +00:00
|
|
|
|
return original(compiler, *args, **kwargs)
|
2014-09-27 23:44:43 +00:00
|
|
|
|
|
2014-09-26 14:53:44 +00:00
|
|
|
|
try:
|
2014-10-06 01:01:46 +00:00
|
|
|
|
cache_key = _get_query_cache_key(compiler)
|
2014-09-26 14:53:44 +00:00
|
|
|
|
except EmptyResultSet:
|
2014-09-29 17:16:53 +00:00
|
|
|
|
return original(compiler, *args, **kwargs)
|
2014-09-26 14:53:44 +00:00
|
|
|
|
|
2014-10-19 18:15:57 +00:00
|
|
|
|
cache = cachalot_caches.get_cache()
|
2014-10-07 14:08:23 +00:00
|
|
|
|
result = cache.get(cache_key)
|
2014-09-26 14:53:44 +00:00
|
|
|
|
|
2014-10-07 14:08:23 +00:00
|
|
|
|
if result is None:
|
2014-09-29 17:16:53 +00:00
|
|
|
|
result = original(compiler, *args, **kwargs)
|
2014-09-26 14:53:44 +00:00
|
|
|
|
if isinstance(result, Iterable) \
|
|
|
|
|
|
and not isinstance(result, (tuple, list)):
|
|
|
|
|
|
result = list(result)
|
|
|
|
|
|
|
2014-10-20 21:43:10 +00:00
|
|
|
|
_update_tables_queries(cache, compiler, cache_key)
|
2014-09-26 14:53:44 +00:00
|
|
|
|
|
2014-10-06 11:45:57 +00:00
|
|
|
|
cache.set(cache_key, pickle.dumps(result))
|
|
|
|
|
|
else:
|
|
|
|
|
|
result = pickle.loads(result)
|
2014-09-26 14:53:44 +00:00
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
2014-09-29 17:16:53 +00:00
|
|
|
|
inner.original = original
|
2014-09-26 14:53:44 +00:00
|
|
|
|
return inner
|
|
|
|
|
|
|
|
|
|
|
|
for compiler in READ_COMPILERS:
|
|
|
|
|
|
compiler.execute_sql = patch_execute_sql(compiler.execute_sql)
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-29 17:16:53 +00:00
|
|
|
|
def _patch_orm_write():
|
|
|
|
|
|
def patch_execute_sql(original):
|
2014-10-05 22:58:39 +00:00
|
|
|
|
@wraps(original)
|
2014-09-26 14:53:44 +00:00
|
|
|
|
def inner(compiler, *args, **kwargs):
|
2014-10-20 21:43:10 +00:00
|
|
|
|
_invalidate_tables(cachalot_caches.get_cache(), compiler)
|
2014-09-29 17:16:53 +00:00
|
|
|
|
return original(compiler, *args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
inner.original = original
|
2014-09-26 14:53:44 +00:00
|
|
|
|
return inner
|
|
|
|
|
|
|
|
|
|
|
|
for compiler in WRITE_COMPILERS:
|
|
|
|
|
|
compiler.execute_sql = patch_execute_sql(compiler.execute_sql)
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-29 17:16:53 +00:00
|
|
|
|
def _patch_atomic():
|
|
|
|
|
|
def patch_enter(original):
|
2014-10-05 22:58:39 +00:00
|
|
|
|
@wraps(original)
|
2014-09-29 17:16:53 +00:00
|
|
|
|
def inner(self):
|
2014-10-19 18:15:57 +00:00
|
|
|
|
cachalot_caches.enter_atomic()
|
2014-09-29 17:16:53 +00:00
|
|
|
|
original(self)
|
|
|
|
|
|
|
|
|
|
|
|
inner.original = original
|
|
|
|
|
|
return inner
|
|
|
|
|
|
|
|
|
|
|
|
def patch_exit(original):
|
2014-10-05 22:58:39 +00:00
|
|
|
|
@wraps(original)
|
2014-09-29 17:16:53 +00:00
|
|
|
|
def inner(self, exc_type, exc_value, traceback):
|
2014-10-20 21:43:10 +00:00
|
|
|
|
needs_rollback = get_connection(self.using).needs_rollback
|
2014-10-13 18:57:36 +00:00
|
|
|
|
original(self, exc_type, exc_value, traceback)
|
2014-10-19 18:15:57 +00:00
|
|
|
|
cachalot_caches.exit_atomic(exc_type is None
|
|
|
|
|
|
and not needs_rollback)
|
2014-09-29 17:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
inner.original = original
|
|
|
|
|
|
return inner
|
|
|
|
|
|
|
|
|
|
|
|
Atomic.__enter__ = patch_enter(Atomic.__enter__)
|
|
|
|
|
|
Atomic.__exit__ = patch_exit(Atomic.__exit__)
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-13 23:40:08 +00:00
|
|
|
|
def _patch_tests():
|
2014-10-20 21:43:10 +00:00
|
|
|
|
def patch_create_test_db(original, db_alias):
|
2014-10-05 22:58:39 +00:00
|
|
|
|
@wraps(original)
|
2014-09-29 20:03:05 +00:00
|
|
|
|
def inner(*args, **kwargs):
|
2014-10-20 21:43:10 +00:00
|
|
|
|
out = original(*args, **kwargs)
|
|
|
|
|
|
cachalot_caches.clear_all_for_db(db_alias)
|
|
|
|
|
|
return out
|
|
|
|
|
|
|
|
|
|
|
|
inner.original = original
|
|
|
|
|
|
return inner
|
|
|
|
|
|
|
|
|
|
|
|
def patch_destroy_test_db(original, db_alias):
|
|
|
|
|
|
@wraps(original)
|
|
|
|
|
|
def inner(*args, **kwargs):
|
|
|
|
|
|
cachalot_caches.clear_all_for_db(db_alias)
|
2014-10-13 23:40:08 +00:00
|
|
|
|
return original(*args, **kwargs)
|
2014-09-29 20:03:05 +00:00
|
|
|
|
|
|
|
|
|
|
inner.original = original
|
|
|
|
|
|
return inner
|
|
|
|
|
|
|
2014-10-20 21:43:10 +00:00
|
|
|
|
for db_alias in settings.DATABASES:
|
|
|
|
|
|
creation = connections[db_alias].creation
|
|
|
|
|
|
creation.create_test_db = patch_create_test_db(
|
|
|
|
|
|
creation.create_test_db, db_alias)
|
|
|
|
|
|
creation.destroy_test_db = patch_destroy_test_db(
|
|
|
|
|
|
creation.destroy_test_db, db_alias)
|
|
|
|
|
|
|
|
|
|
|
|
def patch_transaction_test_case(original):
|
2014-10-13 23:40:08 +00:00
|
|
|
|
@wraps(original)
|
|
|
|
|
|
def inner(*args, **kwargs):
|
|
|
|
|
|
out = original(*args, **kwargs)
|
2014-10-19 18:15:57 +00:00
|
|
|
|
cachalot_caches.clear_all()
|
2014-10-13 23:40:08 +00:00
|
|
|
|
return out
|
|
|
|
|
|
|
|
|
|
|
|
inner.original = original
|
|
|
|
|
|
return inner
|
|
|
|
|
|
|
2014-10-20 21:43:10 +00:00
|
|
|
|
TransactionTestCase._fixture_setup = patch_transaction_test_case(
|
2014-10-13 23:27:08 +00:00
|
|
|
|
TransactionTestCase._fixture_setup)
|
2014-10-20 21:43:10 +00:00
|
|
|
|
TransactionTestCase._fixture_teardown = patch_transaction_test_case(
|
2014-10-13 23:27:08 +00:00
|
|
|
|
TransactionTestCase._fixture_teardown)
|
2014-09-29 20:03:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
2014-09-29 17:16:53 +00:00
|
|
|
|
def patch():
|
2014-09-26 14:53:44 +00:00
|
|
|
|
global PATCHED
|
2014-10-13 23:40:08 +00:00
|
|
|
|
_patch_tests()
|
2014-09-29 17:16:53 +00:00
|
|
|
|
_patch_orm_write()
|
|
|
|
|
|
_patch_orm_read()
|
|
|
|
|
|
_patch_atomic()
|
2014-09-26 14:53:44 +00:00
|
|
|
|
PATCHED = True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def is_patched():
|
|
|
|
|
|
return PATCHED
|