2013-12-25 21:13:18 +08:00
|
|
|
import copy
|
2010-12-22 11:34:04 +08:00
|
|
|
import datetime
|
2017-08-11 21:22:40 +08:00
|
|
|
from decimal import Decimal
|
Refactored qs.add_q() and utils/tree.py
The sql/query.py add_q method did a lot of where/having tree hacking to
get complex queries to work correctly. The logic was refactored so that
it should be simpler to understand. The new logic should also produce
leaner WHERE conditions.
The changes cascade somewhat, as some other parts of Django (like
add_filter() and WhereNode) expect boolean trees in certain format or
they fail to work. So to fix the add_q() one must fix utils/tree.py,
some things in add_filter(), WhereNode and so on.
This commit also fixed add_filter to see negate clauses up the path.
A query like .exclude(Q(reversefk__in=a_list)) didn't work similarly to
.filter(~Q(reversefk__in=a_list)). The reason for this is that only
the immediate parent negate clauses were seen by add_filter, and thus a
tree like AND: (NOT AND: (AND: condition)) will not be handled
correctly, as there is one intermediary AND node in the tree. The
example tree is generated by .exclude(~Q(reversefk__in=a_list)).
Still, aggregation lost connectors in OR cases, and F() objects and
aggregates in same filter clause caused GROUP BY problems on some
databases.
Fixed #17600, fixed #13198, fixed #17025, fixed #17000, fixed #11293.
2012-05-25 05:27:24 +08:00
|
|
|
|
2016-05-26 03:00:20 +08:00
|
|
|
from django.core.exceptions import EmptyResultSet, FieldError
|
2013-12-25 21:13:18 +08:00
|
|
|
from django.db.models import fields
|
2016-04-15 19:37:50 +08:00
|
|
|
from django.db.models.query_utils import Q
|
2016-11-05 23:49:29 +08:00
|
|
|
from django.utils.deconstruct import deconstructible
|
2013-12-25 21:13:18 +08:00
|
|
|
from django.utils.functional import cached_property
|
2009-01-29 18:46:36 +08:00
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2017-08-11 05:42:30 +08:00
|
|
|
class SQLiteNumericMixin:
|
|
|
|
"""
|
|
|
|
Some expressions with output_field=DecimalField() must be cast to
|
|
|
|
numeric to be properly filtered.
|
|
|
|
"""
|
|
|
|
def as_sqlite(self, compiler, connection, **extra_context):
|
|
|
|
sql, params = self.as_sql(compiler, connection, **extra_context)
|
2017-09-07 20:16:21 +08:00
|
|
|
try:
|
2017-08-11 05:42:30 +08:00
|
|
|
if self.output_field.get_internal_type() == 'DecimalField':
|
|
|
|
sql = 'CAST(%s AS NUMERIC)' % sql
|
2017-09-07 20:16:21 +08:00
|
|
|
except FieldError:
|
|
|
|
pass
|
2017-08-11 05:42:30 +08:00
|
|
|
return sql, params
|
|
|
|
|
|
|
|
|
2017-01-19 15:39:46 +08:00
|
|
|
class Combinable:
|
2009-01-29 18:46:36 +08:00
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Provide the ability to combine one or two objects with
|
2013-12-25 21:13:18 +08:00
|
|
|
some connector. For example F('foo') + F('bar').
|
2009-01-29 18:46:36 +08:00
|
|
|
"""
|
2013-12-25 21:13:18 +08:00
|
|
|
|
2009-01-29 18:46:36 +08:00
|
|
|
# Arithmetic connectors
|
|
|
|
ADD = '+'
|
|
|
|
SUB = '-'
|
|
|
|
MUL = '*'
|
|
|
|
DIV = '/'
|
2013-02-22 06:02:18 +08:00
|
|
|
POW = '^'
|
2014-04-21 18:25:43 +08:00
|
|
|
# The following is a quoted % operator - it is quoted because it can be
|
|
|
|
# used in strings that also have parameter substitution.
|
|
|
|
MOD = '%%'
|
2009-01-29 18:46:36 +08:00
|
|
|
|
2012-10-03 23:53:40 +08:00
|
|
|
# Bitwise operators - note that these are generated by .bitand()
|
|
|
|
# and .bitor(), the '&' and '|' are reserved for boolean operator
|
|
|
|
# usage.
|
|
|
|
BITAND = '&'
|
|
|
|
BITOR = '|'
|
2015-12-15 03:13:21 +08:00
|
|
|
BITLEFTSHIFT = '<<'
|
|
|
|
BITRIGHTSHIFT = '>>'
|
2009-01-29 18:46:36 +08:00
|
|
|
|
2017-08-03 09:21:32 +08:00
|
|
|
def _combine(self, other, connector, reversed):
|
2013-12-25 21:13:18 +08:00
|
|
|
if not hasattr(other, 'resolve_expression'):
|
|
|
|
# everything must be resolvable to an expression
|
2014-07-24 20:57:24 +08:00
|
|
|
if isinstance(other, datetime.timedelta):
|
|
|
|
other = DurationValue(other, output_field=fields.DurationField())
|
|
|
|
else:
|
|
|
|
other = Value(other)
|
2009-01-29 18:46:36 +08:00
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
if reversed:
|
2015-03-17 08:38:55 +08:00
|
|
|
return CombinedExpression(other, connector, self)
|
|
|
|
return CombinedExpression(self, connector, other)
|
2009-01-29 18:46:36 +08:00
|
|
|
|
|
|
|
#############
|
|
|
|
# OPERATORS #
|
|
|
|
#############
|
|
|
|
|
|
|
|
def __add__(self, other):
|
|
|
|
return self._combine(other, self.ADD, False)
|
|
|
|
|
|
|
|
def __sub__(self, other):
|
|
|
|
return self._combine(other, self.SUB, False)
|
|
|
|
|
|
|
|
def __mul__(self, other):
|
|
|
|
return self._combine(other, self.MUL, False)
|
|
|
|
|
2012-08-14 20:43:33 +08:00
|
|
|
def __truediv__(self, other):
|
2009-01-29 18:46:36 +08:00
|
|
|
return self._combine(other, self.DIV, False)
|
2012-11-04 04:43:11 +08:00
|
|
|
|
2009-01-29 18:46:36 +08:00
|
|
|
def __mod__(self, other):
|
|
|
|
return self._combine(other, self.MOD, False)
|
|
|
|
|
2013-02-22 06:02:18 +08:00
|
|
|
def __pow__(self, other):
|
|
|
|
return self._combine(other, self.POW, False)
|
|
|
|
|
2009-01-29 18:46:36 +08:00
|
|
|
def __and__(self, other):
|
2012-10-03 23:53:40 +08:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Use .bitand() and .bitor() for bitwise logical operations."
|
|
|
|
)
|
|
|
|
|
|
|
|
def bitand(self, other):
|
|
|
|
return self._combine(other, self.BITAND, False)
|
2009-01-29 18:46:36 +08:00
|
|
|
|
2015-12-15 03:13:21 +08:00
|
|
|
def bitleftshift(self, other):
|
|
|
|
return self._combine(other, self.BITLEFTSHIFT, False)
|
|
|
|
|
|
|
|
def bitrightshift(self, other):
|
|
|
|
return self._combine(other, self.BITRIGHTSHIFT, False)
|
|
|
|
|
2009-01-29 18:46:36 +08:00
|
|
|
def __or__(self, other):
|
2012-10-03 23:53:40 +08:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Use .bitand() and .bitor() for bitwise logical operations."
|
|
|
|
)
|
|
|
|
|
|
|
|
def bitor(self, other):
|
|
|
|
return self._combine(other, self.BITOR, False)
|
2009-01-29 18:46:36 +08:00
|
|
|
|
|
|
|
def __radd__(self, other):
|
|
|
|
return self._combine(other, self.ADD, True)
|
|
|
|
|
|
|
|
def __rsub__(self, other):
|
|
|
|
return self._combine(other, self.SUB, True)
|
|
|
|
|
|
|
|
def __rmul__(self, other):
|
|
|
|
return self._combine(other, self.MUL, True)
|
|
|
|
|
2012-08-15 19:27:40 +08:00
|
|
|
def __rtruediv__(self, other):
|
2009-01-29 18:46:36 +08:00
|
|
|
return self._combine(other, self.DIV, True)
|
2012-11-04 04:43:11 +08:00
|
|
|
|
2009-01-29 18:46:36 +08:00
|
|
|
def __rmod__(self, other):
|
|
|
|
return self._combine(other, self.MOD, True)
|
|
|
|
|
2013-02-22 06:02:18 +08:00
|
|
|
def __rpow__(self, other):
|
|
|
|
return self._combine(other, self.POW, True)
|
|
|
|
|
2009-01-29 18:46:36 +08:00
|
|
|
def __rand__(self, other):
|
2012-10-03 23:53:40 +08:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Use .bitand() and .bitor() for bitwise logical operations."
|
|
|
|
)
|
2009-01-29 18:46:36 +08:00
|
|
|
|
|
|
|
def __ror__(self, other):
|
2012-10-03 23:53:40 +08:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Use .bitand() and .bitor() for bitwise logical operations."
|
|
|
|
)
|
2009-01-29 18:46:36 +08:00
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2016-11-05 23:49:29 +08:00
|
|
|
@deconstructible
|
2017-01-19 15:39:46 +08:00
|
|
|
class BaseExpression:
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Base class for all query expressions."""
|
2009-01-29 18:46:36 +08:00
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
# aggregate specific fields
|
|
|
|
is_summary = False
|
2017-07-15 09:56:01 +08:00
|
|
|
_output_field_resolved_to_none = False
|
2013-12-25 21:13:18 +08:00
|
|
|
|
|
|
|
def __init__(self, output_field=None):
|
2015-06-01 05:45:03 +08:00
|
|
|
if output_field is not None:
|
2017-07-15 09:56:01 +08:00
|
|
|
self.output_field = output_field
|
2013-12-25 21:13:18 +08:00
|
|
|
|
2017-08-12 06:34:50 +08:00
|
|
|
def __getstate__(self):
|
|
|
|
# This method required only for Python 3.4.
|
|
|
|
state = self.__dict__.copy()
|
|
|
|
state.pop('convert_value', None)
|
|
|
|
return state
|
|
|
|
|
2015-03-19 11:07:53 +08:00
|
|
|
def get_db_converters(self, connection):
|
2017-08-12 06:34:50 +08:00
|
|
|
return (
|
|
|
|
[]
|
|
|
|
if self.convert_value is self._convert_value_noop else
|
|
|
|
[self.convert_value]
|
|
|
|
) + self.output_field.get_db_converters(connection)
|
2015-03-19 11:07:53 +08:00
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
def get_source_expressions(self):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def set_source_expressions(self, exprs):
|
|
|
|
assert len(exprs) == 0
|
|
|
|
|
2015-02-11 13:38:02 +08:00
|
|
|
def _parse_expressions(self, *expressions):
|
|
|
|
return [
|
|
|
|
arg if hasattr(arg, 'resolve_expression') else (
|
2016-12-29 23:27:49 +08:00
|
|
|
F(arg) if isinstance(arg, str) else Value(arg)
|
2015-02-11 13:38:02 +08:00
|
|
|
) for arg in expressions
|
|
|
|
]
|
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
def as_sql(self, compiler, connection):
|
|
|
|
"""
|
|
|
|
Responsible for returning a (sql, [params]) tuple to be included
|
|
|
|
in the current query.
|
|
|
|
|
|
|
|
Different backends can provide their own implementation, by
|
|
|
|
providing an `as_{vendor}` method and patching the Expression:
|
|
|
|
|
|
|
|
```
|
|
|
|
def override_as_sql(self, compiler, connection):
|
|
|
|
# custom logic
|
2017-01-21 21:13:44 +08:00
|
|
|
return super().as_sql(compiler, connection)
|
2015-03-17 08:38:55 +08:00
|
|
|
setattr(Expression, 'as_' + connection.vendor, override_as_sql)
|
2013-12-25 21:13:18 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
* compiler: the query compiler responsible for generating the query.
|
|
|
|
Must have a compile method, returning a (sql, [params]) tuple.
|
|
|
|
Calling compiler(value) will return a quoted `value`.
|
|
|
|
|
|
|
|
* connection: the database connection used for the current query.
|
|
|
|
|
2017-01-25 07:04:12 +08:00
|
|
|
Return: (sql, params)
|
2013-12-25 21:13:18 +08:00
|
|
|
Where `sql` is a string containing ordered sql parameters to be
|
|
|
|
replaced with the elements of the list `params`.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError("Subclasses must implement as_sql()")
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def contains_aggregate(self):
|
|
|
|
for expr in self.get_source_expressions():
|
|
|
|
if expr and expr.contains_aggregate:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2015-08-03 22:34:19 +08:00
|
|
|
@cached_property
|
|
|
|
def contains_column_references(self):
|
|
|
|
for expr in self.get_source_expressions():
|
|
|
|
if expr and expr.contains_column_references:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2015-01-02 09:39:31 +08:00
|
|
|
def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False):
|
2013-12-25 21:13:18 +08:00
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Provide the chance to do any preprocessing or validation before being
|
2013-12-25 21:13:18 +08:00
|
|
|
added to the query.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
* query: the backend query implementation
|
|
|
|
* allow_joins: boolean allowing or denying use of joins
|
|
|
|
in this query
|
|
|
|
* reuse: a set of reusable joins for multijoins
|
|
|
|
* summarize: a terminal aggregate clause
|
2015-01-27 10:42:48 +08:00
|
|
|
* for_save: whether this expression about to be used in a save or update
|
2013-12-25 21:13:18 +08:00
|
|
|
|
2017-01-25 07:04:12 +08:00
|
|
|
Return: an Expression to be added to the query.
|
2013-12-25 21:13:18 +08:00
|
|
|
"""
|
|
|
|
c = self.copy()
|
|
|
|
c.is_summary = summarize
|
2015-01-09 23:16:16 +08:00
|
|
|
c.set_source_expressions([
|
|
|
|
expr.resolve_expression(query, allow_joins, reuse, summarize)
|
|
|
|
for expr in c.get_source_expressions()
|
|
|
|
])
|
2013-12-25 21:13:18 +08:00
|
|
|
return c
|
|
|
|
|
2016-02-11 14:39:37 +08:00
|
|
|
def _prepare(self, field):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Hook used by Lookup.get_prep_lookup() to do custom preparation."""
|
2013-12-25 21:13:18 +08:00
|
|
|
return self
|
2010-12-22 11:34:04 +08:00
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
@property
|
|
|
|
def field(self):
|
|
|
|
return self.output_field
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def output_field(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Return the output type of this expressions."""
|
2017-07-15 09:56:01 +08:00
|
|
|
output_field = self._resolve_output_field()
|
|
|
|
if output_field is None:
|
|
|
|
self._output_field_resolved_to_none = True
|
|
|
|
raise FieldError('Cannot resolve expression type, unknown output_field')
|
|
|
|
return output_field
|
2013-12-25 21:13:18 +08:00
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def _output_field_or_none(self):
|
|
|
|
"""
|
2017-07-15 09:56:01 +08:00
|
|
|
Return the output field of this expression, or None if
|
|
|
|
_resolve_output_field() didn't return an output type.
|
2013-12-25 21:13:18 +08:00
|
|
|
"""
|
2017-07-15 09:56:01 +08:00
|
|
|
try:
|
|
|
|
return self.output_field
|
|
|
|
except FieldError:
|
|
|
|
if not self._output_field_resolved_to_none:
|
|
|
|
raise
|
2013-12-25 21:13:18 +08:00
|
|
|
|
|
|
|
def _resolve_output_field(self):
|
|
|
|
"""
|
2017-01-25 07:04:12 +08:00
|
|
|
Attempt to infer the output type of the expression. If the output
|
|
|
|
fields of all source fields match then, simply infer the same type
|
|
|
|
here. This isn't always correct, but it makes sense most of the time.
|
2015-03-20 12:47:43 +08:00
|
|
|
|
|
|
|
Consider the difference between `2 + 2` and `2 / 3`. Inferring
|
|
|
|
the type here is a convenience for the common case. The user should
|
|
|
|
supply their own output_field with more complex computations.
|
|
|
|
|
2017-07-15 09:56:01 +08:00
|
|
|
If a source's output field resolves to None, exclude it from this check.
|
|
|
|
If all sources are None, then an error is raised higher up the stack in
|
|
|
|
the output_field property.
|
2013-12-25 21:13:18 +08:00
|
|
|
"""
|
2017-07-07 12:04:37 +08:00
|
|
|
sources_iter = (source for source in self.get_source_fields() if source is not None)
|
|
|
|
for output_field in sources_iter:
|
|
|
|
if any(not isinstance(output_field, source.__class__) for source in sources_iter):
|
|
|
|
raise FieldError('Expression contains mixed types. You must set output_field.')
|
|
|
|
return output_field
|
2013-12-25 21:13:18 +08:00
|
|
|
|
2017-08-12 06:34:50 +08:00
|
|
|
@staticmethod
|
|
|
|
def _convert_value_noop(value, expression, connection):
|
|
|
|
return value
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def convert_value(self):
|
2013-12-25 21:13:18 +08:00
|
|
|
"""
|
|
|
|
Expressions provide their own converters because users have the option
|
|
|
|
of manually specifying the output_field which may be a different type
|
|
|
|
from the one the database returns.
|
|
|
|
"""
|
|
|
|
field = self.output_field
|
|
|
|
internal_type = field.get_internal_type()
|
2017-08-12 06:34:50 +08:00
|
|
|
if internal_type == 'FloatField':
|
|
|
|
return lambda value, expression, connection: None if value is None else float(value)
|
2013-12-25 21:13:18 +08:00
|
|
|
elif internal_type.endswith('IntegerField'):
|
2017-08-12 06:34:50 +08:00
|
|
|
return lambda value, expression, connection: None if value is None else int(value)
|
2013-12-25 21:13:18 +08:00
|
|
|
elif internal_type == 'DecimalField':
|
2017-08-12 06:34:50 +08:00
|
|
|
return lambda value, expression, connection: None if value is None else Decimal(value)
|
|
|
|
return self._convert_value_noop
|
2013-12-25 21:13:18 +08:00
|
|
|
|
|
|
|
def get_lookup(self, lookup):
|
|
|
|
return self.output_field.get_lookup(lookup)
|
|
|
|
|
|
|
|
def get_transform(self, name):
|
|
|
|
return self.output_field.get_transform(name)
|
|
|
|
|
|
|
|
def relabeled_clone(self, change_map):
|
|
|
|
clone = self.copy()
|
|
|
|
clone.set_source_expressions(
|
|
|
|
[e.relabeled_clone(change_map) for e in self.get_source_expressions()])
|
|
|
|
return clone
|
|
|
|
|
|
|
|
def copy(self):
|
2017-07-13 14:51:24 +08:00
|
|
|
return copy.copy(self)
|
2013-12-25 21:13:18 +08:00
|
|
|
|
|
|
|
def get_group_by_cols(self):
|
2014-12-01 15:28:01 +08:00
|
|
|
if not self.contains_aggregate:
|
|
|
|
return [self]
|
2013-12-25 21:13:18 +08:00
|
|
|
cols = []
|
|
|
|
for source in self.get_source_expressions():
|
|
|
|
cols.extend(source.get_group_by_cols())
|
|
|
|
return cols
|
|
|
|
|
|
|
|
def get_source_fields(self):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Return the underlying field types used by this aggregate."""
|
2013-12-25 21:13:18 +08:00
|
|
|
return [e._output_field_or_none for e in self.get_source_expressions()]
|
|
|
|
|
2016-07-27 21:17:05 +08:00
|
|
|
def asc(self, **kwargs):
|
|
|
|
return OrderBy(self, **kwargs)
|
2015-01-09 23:16:16 +08:00
|
|
|
|
2016-07-27 21:17:05 +08:00
|
|
|
def desc(self, **kwargs):
|
|
|
|
return OrderBy(self, descending=True, **kwargs)
|
2015-01-09 23:16:16 +08:00
|
|
|
|
|
|
|
def reverse_ordering(self):
|
|
|
|
return self
|
|
|
|
|
2015-08-03 22:34:19 +08:00
|
|
|
def flatten(self):
|
|
|
|
"""
|
|
|
|
Recursively yield this expression and all subexpressions, in
|
|
|
|
depth-first order.
|
|
|
|
"""
|
|
|
|
yield self
|
|
|
|
for expr in self.get_source_expressions():
|
|
|
|
if expr:
|
2017-02-24 09:06:01 +08:00
|
|
|
yield from expr.flatten()
|
2015-08-03 22:34:19 +08:00
|
|
|
|
2016-11-05 23:49:29 +08:00
|
|
|
def __eq__(self, other):
|
|
|
|
if self.__class__ != other.__class__:
|
|
|
|
return False
|
|
|
|
path, args, kwargs = self.deconstruct()
|
|
|
|
other_path, other_args, other_kwargs = other.deconstruct()
|
|
|
|
if (path, args) == (other_path, other_args):
|
|
|
|
kwargs = kwargs.copy()
|
|
|
|
other_kwargs = other_kwargs.copy()
|
|
|
|
output_field = type(kwargs.pop('output_field', None))
|
|
|
|
other_output_field = type(other_kwargs.pop('output_field', None))
|
|
|
|
if output_field == other_output_field:
|
|
|
|
return kwargs == other_kwargs
|
|
|
|
return False
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
path, args, kwargs = self.deconstruct()
|
|
|
|
h = hash(path) ^ hash(args)
|
|
|
|
for kwarg in kwargs.items():
|
|
|
|
h ^= hash(kwarg)
|
|
|
|
return h
|
|
|
|
|
2015-01-09 23:16:16 +08:00
|
|
|
|
2015-03-17 08:38:55 +08:00
|
|
|
class Expression(BaseExpression, Combinable):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""An expression that can be combined with other expressions."""
|
2015-01-09 23:16:16 +08:00
|
|
|
pass
|
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
|
2017-08-11 05:42:30 +08:00
|
|
|
class CombinedExpression(SQLiteNumericMixin, Expression):
|
2013-12-25 21:13:18 +08:00
|
|
|
|
|
|
|
def __init__(self, lhs, connector, rhs, output_field=None):
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__(output_field=output_field)
|
2013-12-25 21:13:18 +08:00
|
|
|
self.connector = connector
|
|
|
|
self.lhs = lhs
|
|
|
|
self.rhs = rhs
|
|
|
|
|
2015-01-27 10:40:32 +08:00
|
|
|
def __repr__(self):
|
|
|
|
return "<{}: {}>".format(self.__class__.__name__, self)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return "{} {} {}".format(self.lhs, self.connector, self.rhs)
|
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
def get_source_expressions(self):
|
|
|
|
return [self.lhs, self.rhs]
|
|
|
|
|
|
|
|
def set_source_expressions(self, exprs):
|
|
|
|
self.lhs, self.rhs = exprs
|
|
|
|
|
|
|
|
def as_sql(self, compiler, connection):
|
2014-07-24 20:57:24 +08:00
|
|
|
try:
|
|
|
|
lhs_output = self.lhs.output_field
|
|
|
|
except FieldError:
|
|
|
|
lhs_output = None
|
|
|
|
try:
|
|
|
|
rhs_output = self.rhs.output_field
|
|
|
|
except FieldError:
|
|
|
|
rhs_output = None
|
|
|
|
if (not connection.features.has_native_duration_field and
|
2016-04-04 08:37:32 +08:00
|
|
|
((lhs_output and lhs_output.get_internal_type() == 'DurationField') or
|
|
|
|
(rhs_output and rhs_output.get_internal_type() == 'DurationField'))):
|
2014-07-24 20:57:24 +08:00
|
|
|
return DurationExpression(self.lhs, self.connector, self.rhs).as_sql(compiler, connection)
|
2016-01-20 09:43:41 +08:00
|
|
|
if (lhs_output and rhs_output and self.connector == self.SUB and
|
|
|
|
lhs_output.get_internal_type() in {'DateField', 'DateTimeField', 'TimeField'} and
|
2017-02-12 22:43:04 +08:00
|
|
|
lhs_output.get_internal_type() == rhs_output.get_internal_type()):
|
2016-01-20 09:43:41 +08:00
|
|
|
return TemporalSubtraction(self.lhs, self.rhs).as_sql(compiler, connection)
|
2013-12-25 21:13:18 +08:00
|
|
|
expressions = []
|
|
|
|
expression_params = []
|
|
|
|
sql, params = compiler.compile(self.lhs)
|
|
|
|
expressions.append(sql)
|
|
|
|
expression_params.extend(params)
|
|
|
|
sql, params = compiler.compile(self.rhs)
|
|
|
|
expressions.append(sql)
|
|
|
|
expression_params.extend(params)
|
|
|
|
# order of precedence
|
|
|
|
expression_wrapper = '(%s)'
|
|
|
|
sql = connection.ops.combine_expression(self.connector, expressions)
|
|
|
|
return expression_wrapper % sql, expression_params
|
|
|
|
|
2015-01-02 09:39:31 +08:00
|
|
|
def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False):
|
2013-12-25 21:13:18 +08:00
|
|
|
c = self.copy()
|
|
|
|
c.is_summary = summarize
|
2015-01-02 09:39:31 +08:00
|
|
|
c.lhs = c.lhs.resolve_expression(query, allow_joins, reuse, summarize, for_save)
|
|
|
|
c.rhs = c.rhs.resolve_expression(query, allow_joins, reuse, summarize, for_save)
|
2013-12-25 21:13:18 +08:00
|
|
|
return c
|
|
|
|
|
|
|
|
|
2015-03-17 08:38:55 +08:00
|
|
|
class DurationExpression(CombinedExpression):
|
2014-07-24 20:57:24 +08:00
|
|
|
def compile(self, side, compiler, connection):
|
|
|
|
if not isinstance(side, DurationValue):
|
|
|
|
try:
|
|
|
|
output = side.output_field
|
|
|
|
except FieldError:
|
|
|
|
pass
|
2015-03-16 12:51:23 +08:00
|
|
|
else:
|
|
|
|
if output.get_internal_type() == 'DurationField':
|
|
|
|
sql, params = compiler.compile(side)
|
|
|
|
return connection.ops.format_for_duration_arithmetic(sql), params
|
2014-07-24 20:57:24 +08:00
|
|
|
return compiler.compile(side)
|
2013-12-25 21:13:18 +08:00
|
|
|
|
|
|
|
def as_sql(self, compiler, connection):
|
2015-01-17 13:03:46 +08:00
|
|
|
connection.ops.check_expression_support(self)
|
2014-07-24 20:57:24 +08:00
|
|
|
expressions = []
|
|
|
|
expression_params = []
|
|
|
|
sql, params = self.compile(self.lhs, compiler, connection)
|
|
|
|
expressions.append(sql)
|
|
|
|
expression_params.extend(params)
|
|
|
|
sql, params = self.compile(self.rhs, compiler, connection)
|
|
|
|
expressions.append(sql)
|
|
|
|
expression_params.extend(params)
|
|
|
|
# order of precedence
|
|
|
|
expression_wrapper = '(%s)'
|
|
|
|
sql = connection.ops.combine_duration_expression(self.connector, expressions)
|
|
|
|
return expression_wrapper % sql, expression_params
|
2013-12-25 21:13:18 +08:00
|
|
|
|
|
|
|
|
2016-01-20 09:43:41 +08:00
|
|
|
class TemporalSubtraction(CombinedExpression):
|
2017-08-09 01:31:59 +08:00
|
|
|
output_field = fields.DurationField()
|
|
|
|
|
2016-01-20 09:43:41 +08:00
|
|
|
def __init__(self, lhs, rhs):
|
2017-08-09 01:31:59 +08:00
|
|
|
super().__init__(lhs, self.SUB, rhs)
|
2016-01-20 09:43:41 +08:00
|
|
|
|
|
|
|
def as_sql(self, compiler, connection):
|
|
|
|
connection.ops.check_expression_support(self)
|
|
|
|
lhs = compiler.compile(self.lhs, connection)
|
|
|
|
rhs = compiler.compile(self.rhs, connection)
|
|
|
|
return connection.ops.subtract_temporals(self.lhs.output_field.get_internal_type(), lhs, rhs)
|
|
|
|
|
|
|
|
|
2016-11-05 23:49:29 +08:00
|
|
|
@deconstructible
|
2015-01-27 10:40:32 +08:00
|
|
|
class F(Combinable):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""An object capable of resolving references to existing query objects."""
|
2013-12-25 21:13:18 +08:00
|
|
|
def __init__(self, name):
|
|
|
|
"""
|
|
|
|
Arguments:
|
|
|
|
* name: the name of the field this expression references
|
|
|
|
"""
|
|
|
|
self.name = name
|
|
|
|
|
2015-01-27 10:40:32 +08:00
|
|
|
def __repr__(self):
|
|
|
|
return "{}({})".format(self.__class__.__name__, self.name)
|
|
|
|
|
2015-01-02 09:39:31 +08:00
|
|
|
def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False):
|
2013-12-25 21:13:18 +08:00
|
|
|
return query.resolve_ref(self.name, allow_joins, reuse, summarize)
|
|
|
|
|
2016-07-27 21:17:05 +08:00
|
|
|
def asc(self, **kwargs):
|
|
|
|
return OrderBy(self, **kwargs)
|
2015-01-09 23:16:16 +08:00
|
|
|
|
2016-07-27 21:17:05 +08:00
|
|
|
def desc(self, **kwargs):
|
|
|
|
return OrderBy(self, descending=True, **kwargs)
|
2015-01-09 23:16:16 +08:00
|
|
|
|
2016-11-05 23:49:29 +08:00
|
|
|
def __eq__(self, other):
|
|
|
|
return self.__class__ == other.__class__ and self.name == other.name
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
return hash(self.name)
|
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
|
2016-04-20 14:56:51 +08:00
|
|
|
class ResolvedOuterRef(F):
|
|
|
|
"""
|
|
|
|
An object that contains a reference to an outer query.
|
|
|
|
|
|
|
|
In this case, the reference to the outer query has been resolved because
|
|
|
|
the inner query has been used as a subquery.
|
|
|
|
"""
|
|
|
|
def as_sql(self, *args, **kwargs):
|
|
|
|
raise ValueError(
|
|
|
|
'This queryset contains a reference to an outer query and may '
|
|
|
|
'only be used in a subquery.'
|
|
|
|
)
|
|
|
|
|
|
|
|
def _prepare(self, output_field=None):
|
|
|
|
return self
|
|
|
|
|
|
|
|
|
|
|
|
class OuterRef(F):
|
|
|
|
def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False):
|
|
|
|
if isinstance(self.name, self.__class__):
|
|
|
|
return self.name
|
|
|
|
return ResolvedOuterRef(self.name)
|
|
|
|
|
|
|
|
def _prepare(self, output_field=None):
|
|
|
|
return self
|
|
|
|
|
|
|
|
|
2017-08-11 05:42:30 +08:00
|
|
|
class Func(SQLiteNumericMixin, Expression):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""An SQL function call."""
|
2013-12-25 21:13:18 +08:00
|
|
|
function = None
|
|
|
|
template = '%(function)s(%(expressions)s)'
|
|
|
|
arg_joiner = ', '
|
2015-10-31 18:01:08 +08:00
|
|
|
arity = None # The number of arguments the function accepts.
|
2013-12-25 21:13:18 +08:00
|
|
|
|
2017-02-02 00:41:56 +08:00
|
|
|
def __init__(self, *expressions, output_field=None, **extra):
|
2015-10-31 18:01:08 +08:00
|
|
|
if self.arity is not None and len(expressions) != self.arity:
|
|
|
|
raise TypeError(
|
|
|
|
"'%s' takes exactly %s %s (%s given)" % (
|
|
|
|
self.__class__.__name__,
|
|
|
|
self.arity,
|
|
|
|
"argument" if self.arity == 1 else "arguments",
|
|
|
|
len(expressions),
|
|
|
|
)
|
|
|
|
)
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__(output_field=output_field)
|
2013-12-25 21:13:18 +08:00
|
|
|
self.source_expressions = self._parse_expressions(*expressions)
|
|
|
|
self.extra = extra
|
|
|
|
|
2015-01-27 10:40:32 +08:00
|
|
|
def __repr__(self):
|
|
|
|
args = self.arg_joiner.join(str(arg) for arg in self.source_expressions)
|
2017-07-17 22:07:19 +08:00
|
|
|
extra = dict(self.extra, **self._get_repr_options())
|
2015-01-27 10:40:32 +08:00
|
|
|
if extra:
|
2017-07-21 08:51:07 +08:00
|
|
|
extra = ', '.join(str(key) + '=' + str(val) for key, val in sorted(extra.items()))
|
2015-01-27 10:40:32 +08:00
|
|
|
return "{}({}, {})".format(self.__class__.__name__, args, extra)
|
|
|
|
return "{}({})".format(self.__class__.__name__, args)
|
|
|
|
|
2017-07-17 22:07:19 +08:00
|
|
|
def _get_repr_options(self):
|
|
|
|
"""Return a dict of extra __init__() options to include in the repr."""
|
|
|
|
return {}
|
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
def get_source_expressions(self):
|
|
|
|
return self.source_expressions
|
|
|
|
|
|
|
|
def set_source_expressions(self, exprs):
|
|
|
|
self.source_expressions = exprs
|
|
|
|
|
2015-01-02 09:39:31 +08:00
|
|
|
def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False):
|
2013-12-25 21:13:18 +08:00
|
|
|
c = self.copy()
|
|
|
|
c.is_summary = summarize
|
|
|
|
for pos, arg in enumerate(c.source_expressions):
|
2015-01-02 09:39:31 +08:00
|
|
|
c.source_expressions[pos] = arg.resolve_expression(query, allow_joins, reuse, summarize, for_save)
|
2013-12-25 21:13:18 +08:00
|
|
|
return c
|
|
|
|
|
2016-02-16 04:42:24 +08:00
|
|
|
def as_sql(self, compiler, connection, function=None, template=None, arg_joiner=None, **extra_context):
|
2015-01-17 13:03:46 +08:00
|
|
|
connection.ops.check_expression_support(self)
|
2013-12-25 21:13:18 +08:00
|
|
|
sql_parts = []
|
|
|
|
params = []
|
|
|
|
for arg in self.source_expressions:
|
|
|
|
arg_sql, arg_params = compiler.compile(arg)
|
|
|
|
sql_parts.append(arg_sql)
|
|
|
|
params.extend(arg_params)
|
2016-02-16 04:42:24 +08:00
|
|
|
data = self.extra.copy()
|
|
|
|
data.update(**extra_context)
|
|
|
|
# Use the first supplied value in this order: the parameter to this
|
|
|
|
# method, a value supplied in __init__()'s **extra (the value in
|
|
|
|
# `data`), or the value defined on the class.
|
|
|
|
if function is not None:
|
|
|
|
data['function'] = function
|
2013-12-25 21:13:18 +08:00
|
|
|
else:
|
2016-02-16 04:42:24 +08:00
|
|
|
data.setdefault('function', self.function)
|
|
|
|
template = template or data.get('template', self.template)
|
|
|
|
arg_joiner = arg_joiner or data.get('arg_joiner', self.arg_joiner)
|
|
|
|
data['expressions'] = data['field'] = arg_joiner.join(sql_parts)
|
|
|
|
return template % data, params
|
2010-12-22 11:34:04 +08:00
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
def copy(self):
|
2017-01-21 21:13:44 +08:00
|
|
|
copy = super().copy()
|
2013-12-25 21:13:18 +08:00
|
|
|
copy.source_expressions = self.source_expressions[:]
|
|
|
|
copy.extra = self.extra.copy()
|
|
|
|
return copy
|
|
|
|
|
|
|
|
|
2015-03-17 08:38:55 +08:00
|
|
|
class Value(Expression):
|
2017-01-25 07:04:12 +08:00
|
|
|
"""Represent a wrapped value as a node within an expression."""
|
2013-12-25 21:13:18 +08:00
|
|
|
def __init__(self, value, output_field=None):
|
|
|
|
"""
|
|
|
|
Arguments:
|
|
|
|
* value: the value this expression represents. The value will be
|
|
|
|
added into the sql parameter list and properly quoted.
|
|
|
|
|
|
|
|
* output_field: an instance of the model field type that this
|
|
|
|
expression will return, such as IntegerField() or CharField().
|
|
|
|
"""
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__(output_field=output_field)
|
2013-12-25 21:13:18 +08:00
|
|
|
self.value = value
|
|
|
|
|
2015-01-27 10:40:32 +08:00
|
|
|
def __repr__(self):
|
|
|
|
return "{}({})".format(self.__class__.__name__, self.value)
|
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
def as_sql(self, compiler, connection):
|
2015-01-17 13:03:46 +08:00
|
|
|
connection.ops.check_expression_support(self)
|
2015-01-02 09:39:31 +08:00
|
|
|
val = self.value
|
2017-07-15 09:56:01 +08:00
|
|
|
output_field = self._output_field_or_none
|
|
|
|
if output_field is not None:
|
2015-01-02 09:39:31 +08:00
|
|
|
if self.for_save:
|
2017-07-15 09:56:01 +08:00
|
|
|
val = output_field.get_db_prep_save(val, connection=connection)
|
2015-01-02 09:39:31 +08:00
|
|
|
else:
|
2017-07-15 09:56:01 +08:00
|
|
|
val = output_field.get_db_prep_value(val, connection=connection)
|
|
|
|
if hasattr(output_field, 'get_placeholder'):
|
|
|
|
return output_field.get_placeholder(val, compiler, connection), [val]
|
2015-01-02 09:39:31 +08:00
|
|
|
if val is None:
|
2015-01-07 18:30:25 +08:00
|
|
|
# cx_Oracle does not always convert None to the appropriate
|
|
|
|
# NULL type (like in case expressions using numbers), so we
|
|
|
|
# use a literal SQL NULL
|
|
|
|
return 'NULL', []
|
2015-01-02 09:39:31 +08:00
|
|
|
return '%s', [val]
|
|
|
|
|
|
|
|
def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False):
|
2017-01-21 21:13:44 +08:00
|
|
|
c = super().resolve_expression(query, allow_joins, reuse, summarize, for_save)
|
2015-01-02 09:39:31 +08:00
|
|
|
c.for_save = for_save
|
|
|
|
return c
|
2013-12-25 21:13:18 +08:00
|
|
|
|
2014-12-01 15:28:01 +08:00
|
|
|
def get_group_by_cols(self):
|
|
|
|
return []
|
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
|
2014-07-24 20:57:24 +08:00
|
|
|
class DurationValue(Value):
|
|
|
|
def as_sql(self, compiler, connection):
|
2015-01-17 13:03:46 +08:00
|
|
|
connection.ops.check_expression_support(self)
|
2016-12-30 04:49:18 +08:00
|
|
|
if connection.features.has_native_duration_field:
|
2017-01-21 21:13:44 +08:00
|
|
|
return super().as_sql(compiler, connection)
|
2017-07-06 19:37:47 +08:00
|
|
|
return connection.ops.date_interval_sql(self.value), []
|
2014-07-24 20:57:24 +08:00
|
|
|
|
|
|
|
|
2015-03-17 08:38:55 +08:00
|
|
|
class RawSQL(Expression):
|
2014-12-01 15:28:01 +08:00
|
|
|
def __init__(self, sql, params, output_field=None):
|
|
|
|
if output_field is None:
|
|
|
|
output_field = fields.Field()
|
|
|
|
self.sql, self.params = sql, params
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__(output_field=output_field)
|
2014-12-01 15:28:01 +08:00
|
|
|
|
2015-01-27 10:40:32 +08:00
|
|
|
def __repr__(self):
|
|
|
|
return "{}({}, {})".format(self.__class__.__name__, self.sql, self.params)
|
|
|
|
|
2014-12-01 15:28:01 +08:00
|
|
|
def as_sql(self, compiler, connection):
|
|
|
|
return '(%s)' % self.sql, self.params
|
|
|
|
|
|
|
|
def get_group_by_cols(self):
|
|
|
|
return [self]
|
|
|
|
|
2016-11-05 23:49:29 +08:00
|
|
|
def __hash__(self):
|
2017-07-15 09:56:01 +08:00
|
|
|
h = hash(self.sql) ^ hash(self.output_field)
|
2016-11-05 23:49:29 +08:00
|
|
|
for param in self.params:
|
|
|
|
h ^= hash(param)
|
|
|
|
return h
|
|
|
|
|
2014-12-01 15:28:01 +08:00
|
|
|
|
2015-09-11 00:07:09 +08:00
|
|
|
class Star(Expression):
|
|
|
|
def __repr__(self):
|
|
|
|
return "'*'"
|
|
|
|
|
|
|
|
def as_sql(self, compiler, connection):
|
|
|
|
return '*', []
|
|
|
|
|
|
|
|
|
2015-03-17 08:38:55 +08:00
|
|
|
class Random(Expression):
|
2017-08-09 01:31:59 +08:00
|
|
|
output_field = fields.FloatField()
|
2014-12-01 15:28:01 +08:00
|
|
|
|
2015-01-27 10:40:32 +08:00
|
|
|
def __repr__(self):
|
|
|
|
return "Random()"
|
|
|
|
|
2014-12-01 15:28:01 +08:00
|
|
|
def as_sql(self, compiler, connection):
|
|
|
|
return connection.ops.random_function_sql(), []
|
|
|
|
|
|
|
|
|
2015-03-17 08:38:55 +08:00
|
|
|
class Col(Expression):
|
2015-08-03 22:34:19 +08:00
|
|
|
|
|
|
|
contains_column_references = True
|
|
|
|
|
2015-02-15 03:37:12 +08:00
|
|
|
def __init__(self, alias, target, output_field=None):
|
|
|
|
if output_field is None:
|
|
|
|
output_field = target
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__(output_field=output_field)
|
2013-12-25 21:13:18 +08:00
|
|
|
self.alias, self.target = alias, target
|
|
|
|
|
2015-01-27 10:40:32 +08:00
|
|
|
def __repr__(self):
|
|
|
|
return "{}({}, {})".format(
|
|
|
|
self.__class__.__name__, self.alias, self.target)
|
|
|
|
|
2014-11-16 09:56:42 +08:00
|
|
|
def as_sql(self, compiler, connection):
|
|
|
|
qn = compiler.quote_name_unless_alias
|
2013-12-25 21:13:18 +08:00
|
|
|
return "%s.%s" % (qn(self.alias), qn(self.target.column)), []
|
|
|
|
|
|
|
|
def relabeled_clone(self, relabels):
|
|
|
|
return self.__class__(relabels.get(self.alias, self.alias), self.target, self.output_field)
|
|
|
|
|
|
|
|
def get_group_by_cols(self):
|
2014-12-18 17:02:43 +08:00
|
|
|
return [self]
|
2013-12-25 21:13:18 +08:00
|
|
|
|
2014-12-01 15:28:01 +08:00
|
|
|
def get_db_converters(self, connection):
|
2015-02-15 03:37:12 +08:00
|
|
|
if self.target == self.output_field:
|
|
|
|
return self.output_field.get_db_converters(connection)
|
|
|
|
return (self.output_field.get_db_converters(connection) +
|
|
|
|
self.target.get_db_converters(connection))
|
2014-12-01 15:28:01 +08:00
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
|
2015-03-17 08:38:55 +08:00
|
|
|
class Ref(Expression):
|
2013-12-25 21:13:18 +08:00
|
|
|
"""
|
|
|
|
Reference to column alias of the query. For example, Ref('sum_cost') in
|
|
|
|
qs.annotate(sum_cost=Sum('cost')) query.
|
|
|
|
"""
|
|
|
|
def __init__(self, refs, source):
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__()
|
2015-01-27 10:40:32 +08:00
|
|
|
self.refs, self.source = refs, source
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "{}({}, {})".format(self.__class__.__name__, self.refs, self.source)
|
2013-12-25 21:13:18 +08:00
|
|
|
|
|
|
|
def get_source_expressions(self):
|
|
|
|
return [self.source]
|
|
|
|
|
|
|
|
def set_source_expressions(self, exprs):
|
|
|
|
self.source, = exprs
|
|
|
|
|
2015-03-05 14:10:48 +08:00
|
|
|
def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False):
|
|
|
|
# The sub-expression `source` has already been resolved, as this is
|
|
|
|
# just a reference to the name of `source`.
|
|
|
|
return self
|
|
|
|
|
2013-12-25 21:13:18 +08:00
|
|
|
def relabeled_clone(self, relabels):
|
|
|
|
return self
|
|
|
|
|
|
|
|
def as_sql(self, compiler, connection):
|
2014-12-01 15:28:01 +08:00
|
|
|
return "%s" % connection.ops.quote_name(self.refs), []
|
2013-12-25 21:13:18 +08:00
|
|
|
|
|
|
|
def get_group_by_cols(self):
|
2014-12-18 17:02:43 +08:00
|
|
|
return [self]
|
2013-12-25 21:13:18 +08:00
|
|
|
|
|
|
|
|
2015-03-19 11:07:53 +08:00
|
|
|
class ExpressionWrapper(Expression):
|
|
|
|
"""
|
|
|
|
An expression that can wrap another expression so that it can provide
|
|
|
|
extra context to the inner expression, such as the output_field.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, expression, output_field):
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__(output_field=output_field)
|
2015-03-19 11:07:53 +08:00
|
|
|
self.expression = expression
|
|
|
|
|
|
|
|
def set_source_expressions(self, exprs):
|
|
|
|
self.expression = exprs[0]
|
|
|
|
|
|
|
|
def get_source_expressions(self):
|
|
|
|
return [self.expression]
|
|
|
|
|
|
|
|
def as_sql(self, compiler, connection):
|
|
|
|
return self.expression.as_sql(compiler, connection)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "{}({})".format(self.__class__.__name__, self.expression)
|
|
|
|
|
|
|
|
|
2015-03-17 08:38:55 +08:00
|
|
|
class When(Expression):
|
2015-01-02 09:39:31 +08:00
|
|
|
template = 'WHEN %(condition)s THEN %(result)s'
|
|
|
|
|
2015-02-11 13:38:02 +08:00
|
|
|
def __init__(self, condition=None, then=None, **lookups):
|
2015-01-02 09:39:31 +08:00
|
|
|
if lookups and condition is None:
|
|
|
|
condition, lookups = Q(**lookups), None
|
|
|
|
if condition is None or not isinstance(condition, Q) or lookups:
|
|
|
|
raise TypeError("__init__() takes either a Q object or lookups as keyword arguments")
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__(output_field=None)
|
2015-01-02 09:39:31 +08:00
|
|
|
self.condition = condition
|
2015-02-11 13:38:02 +08:00
|
|
|
self.result = self._parse_expressions(then)[0]
|
2015-01-02 09:39:31 +08:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return "WHEN %r THEN %r" % (self.condition, self.result)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "<%s: %s>" % (self.__class__.__name__, self)
|
|
|
|
|
|
|
|
def get_source_expressions(self):
|
|
|
|
return [self.condition, self.result]
|
|
|
|
|
|
|
|
def set_source_expressions(self, exprs):
|
|
|
|
self.condition, self.result = exprs
|
|
|
|
|
|
|
|
def get_source_fields(self):
|
|
|
|
# We're only interested in the fields of the result expressions.
|
|
|
|
return [self.result._output_field_or_none]
|
|
|
|
|
|
|
|
def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False):
|
|
|
|
c = self.copy()
|
|
|
|
c.is_summary = summarize
|
2015-12-24 23:42:49 +08:00
|
|
|
if hasattr(c.condition, 'resolve_expression'):
|
|
|
|
c.condition = c.condition.resolve_expression(query, allow_joins, reuse, summarize, False)
|
2015-01-02 09:39:31 +08:00
|
|
|
c.result = c.result.resolve_expression(query, allow_joins, reuse, summarize, for_save)
|
|
|
|
return c
|
|
|
|
|
2016-02-16 04:42:24 +08:00
|
|
|
def as_sql(self, compiler, connection, template=None, **extra_context):
|
2015-01-17 13:03:46 +08:00
|
|
|
connection.ops.check_expression_support(self)
|
2016-02-16 04:42:24 +08:00
|
|
|
template_params = extra_context
|
2015-01-02 09:39:31 +08:00
|
|
|
sql_params = []
|
|
|
|
condition_sql, condition_params = compiler.compile(self.condition)
|
|
|
|
template_params['condition'] = condition_sql
|
|
|
|
sql_params.extend(condition_params)
|
|
|
|
result_sql, result_params = compiler.compile(self.result)
|
|
|
|
template_params['result'] = result_sql
|
|
|
|
sql_params.extend(result_params)
|
|
|
|
template = template or self.template
|
|
|
|
return template % template_params, sql_params
|
|
|
|
|
|
|
|
def get_group_by_cols(self):
|
|
|
|
# This is not a complete expression and cannot be used in GROUP BY.
|
|
|
|
cols = []
|
|
|
|
for source in self.get_source_expressions():
|
|
|
|
cols.extend(source.get_group_by_cols())
|
|
|
|
return cols
|
|
|
|
|
|
|
|
|
2015-03-17 08:38:55 +08:00
|
|
|
class Case(Expression):
|
2015-01-02 09:39:31 +08:00
|
|
|
"""
|
|
|
|
An SQL searched CASE expression:
|
|
|
|
|
|
|
|
CASE
|
|
|
|
WHEN n > 0
|
|
|
|
THEN 'positive'
|
|
|
|
WHEN n < 0
|
|
|
|
THEN 'negative'
|
|
|
|
ELSE 'zero'
|
|
|
|
END
|
|
|
|
"""
|
|
|
|
template = 'CASE %(cases)s ELSE %(default)s END'
|
|
|
|
case_joiner = ' '
|
|
|
|
|
2017-02-02 00:41:56 +08:00
|
|
|
def __init__(self, *cases, default=None, output_field=None, **extra):
|
2015-01-02 09:39:31 +08:00
|
|
|
if not all(isinstance(case, When) for case in cases):
|
|
|
|
raise TypeError("Positional arguments must all be When objects.")
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__(output_field)
|
2015-01-02 09:39:31 +08:00
|
|
|
self.cases = list(cases)
|
2015-02-11 13:38:02 +08:00
|
|
|
self.default = self._parse_expressions(default)[0]
|
2016-02-16 04:42:24 +08:00
|
|
|
self.extra = extra
|
2015-01-02 09:39:31 +08:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return "CASE %s, ELSE %r" % (', '.join(str(c) for c in self.cases), self.default)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "<%s: %s>" % (self.__class__.__name__, self)
|
|
|
|
|
|
|
|
def get_source_expressions(self):
|
|
|
|
return self.cases + [self.default]
|
|
|
|
|
|
|
|
def set_source_expressions(self, exprs):
|
|
|
|
self.cases = exprs[:-1]
|
|
|
|
self.default = exprs[-1]
|
|
|
|
|
|
|
|
def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False):
|
|
|
|
c = self.copy()
|
|
|
|
c.is_summary = summarize
|
|
|
|
for pos, case in enumerate(c.cases):
|
|
|
|
c.cases[pos] = case.resolve_expression(query, allow_joins, reuse, summarize, for_save)
|
|
|
|
c.default = c.default.resolve_expression(query, allow_joins, reuse, summarize, for_save)
|
|
|
|
return c
|
|
|
|
|
2015-05-05 19:11:58 +08:00
|
|
|
def copy(self):
|
2017-01-21 21:13:44 +08:00
|
|
|
c = super().copy()
|
2015-05-05 19:11:58 +08:00
|
|
|
c.cases = c.cases[:]
|
|
|
|
return c
|
|
|
|
|
2016-02-16 04:42:24 +08:00
|
|
|
def as_sql(self, compiler, connection, template=None, case_joiner=None, **extra_context):
|
2015-01-17 13:03:46 +08:00
|
|
|
connection.ops.check_expression_support(self)
|
2015-01-02 09:39:31 +08:00
|
|
|
if not self.cases:
|
|
|
|
return compiler.compile(self.default)
|
2016-02-16 04:42:24 +08:00
|
|
|
template_params = self.extra.copy()
|
|
|
|
template_params.update(extra_context)
|
2015-01-02 09:39:31 +08:00
|
|
|
case_parts = []
|
|
|
|
sql_params = []
|
|
|
|
for case in self.cases:
|
2016-08-05 20:58:36 +08:00
|
|
|
try:
|
|
|
|
case_sql, case_params = compiler.compile(case)
|
|
|
|
except EmptyResultSet:
|
|
|
|
continue
|
2015-01-02 09:39:31 +08:00
|
|
|
case_parts.append(case_sql)
|
|
|
|
sql_params.extend(case_params)
|
2016-08-05 20:58:36 +08:00
|
|
|
default_sql, default_params = compiler.compile(self.default)
|
|
|
|
if not case_parts:
|
|
|
|
return default_sql, default_params
|
2016-02-16 04:42:24 +08:00
|
|
|
case_joiner = case_joiner or self.case_joiner
|
|
|
|
template_params['cases'] = case_joiner.join(case_parts)
|
2015-01-02 09:39:31 +08:00
|
|
|
template_params['default'] = default_sql
|
|
|
|
sql_params.extend(default_params)
|
2016-02-16 04:42:24 +08:00
|
|
|
template = template or template_params.get('template', self.template)
|
2015-01-02 09:39:31 +08:00
|
|
|
sql = template % template_params
|
|
|
|
if self._output_field_or_none is not None:
|
|
|
|
sql = connection.ops.unification_cast_sql(self.output_field) % sql
|
|
|
|
return sql, sql_params
|
|
|
|
|
|
|
|
|
2016-04-20 14:56:51 +08:00
|
|
|
class Subquery(Expression):
|
|
|
|
"""
|
|
|
|
An explicit subquery. It may contain OuterRef() references to the outer
|
|
|
|
query which will be resolved when it is applied to that query.
|
|
|
|
"""
|
|
|
|
template = '(%(subquery)s)'
|
|
|
|
|
|
|
|
def __init__(self, queryset, output_field=None, **extra):
|
|
|
|
self.queryset = queryset
|
|
|
|
self.extra = extra
|
|
|
|
if output_field is None and len(self.queryset.query.select) == 1:
|
|
|
|
output_field = self.queryset.query.select[0].field
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__(output_field)
|
2016-04-20 14:56:51 +08:00
|
|
|
|
|
|
|
def copy(self):
|
2017-01-21 21:13:44 +08:00
|
|
|
clone = super().copy()
|
2016-04-20 14:56:51 +08:00
|
|
|
clone.queryset = clone.queryset.all()
|
|
|
|
return clone
|
|
|
|
|
|
|
|
def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False):
|
|
|
|
clone = self.copy()
|
|
|
|
clone.is_summary = summarize
|
|
|
|
clone.queryset.query.bump_prefix(query)
|
|
|
|
|
|
|
|
# Need to recursively resolve these.
|
|
|
|
def resolve_all(child):
|
|
|
|
if hasattr(child, 'children'):
|
|
|
|
[resolve_all(_child) for _child in child.children]
|
|
|
|
if hasattr(child, 'rhs'):
|
|
|
|
child.rhs = resolve(child.rhs)
|
|
|
|
|
|
|
|
def resolve(child):
|
|
|
|
if hasattr(child, 'resolve_expression'):
|
2017-02-25 18:41:56 +08:00
|
|
|
resolved = child.resolve_expression(
|
2016-04-20 14:56:51 +08:00
|
|
|
query=query, allow_joins=allow_joins, reuse=reuse,
|
|
|
|
summarize=summarize, for_save=for_save,
|
|
|
|
)
|
2017-02-25 18:41:56 +08:00
|
|
|
# Add table alias to the parent query's aliases to prevent
|
|
|
|
# quoting.
|
|
|
|
if hasattr(resolved, 'alias'):
|
|
|
|
clone.queryset.query.external_aliases.add(resolved.alias)
|
|
|
|
return resolved
|
2016-04-20 14:56:51 +08:00
|
|
|
return child
|
|
|
|
|
|
|
|
resolve_all(clone.queryset.query.where)
|
|
|
|
|
|
|
|
for key, value in clone.queryset.query.annotations.items():
|
|
|
|
if isinstance(value, Subquery):
|
|
|
|
clone.queryset.query.annotations[key] = resolve(value)
|
|
|
|
|
|
|
|
return clone
|
|
|
|
|
|
|
|
def get_source_expressions(self):
|
|
|
|
return [
|
|
|
|
x for x in [
|
|
|
|
getattr(expr, 'lhs', None)
|
|
|
|
for expr in self.queryset.query.where.children
|
|
|
|
] if x
|
|
|
|
]
|
|
|
|
|
|
|
|
def relabeled_clone(self, change_map):
|
|
|
|
clone = self.copy()
|
|
|
|
clone.queryset.query = clone.queryset.query.relabeled_clone(change_map)
|
|
|
|
clone.queryset.query.external_aliases.update(
|
|
|
|
alias for alias in change_map.values()
|
2017-06-28 14:23:37 +08:00
|
|
|
if alias not in clone.queryset.query.alias_map
|
2016-04-20 14:56:51 +08:00
|
|
|
)
|
|
|
|
return clone
|
|
|
|
|
|
|
|
def as_sql(self, compiler, connection, template=None, **extra_context):
|
|
|
|
connection.ops.check_expression_support(self)
|
|
|
|
template_params = self.extra.copy()
|
|
|
|
template_params.update(extra_context)
|
|
|
|
template_params['subquery'], sql_params = self.queryset.query.get_compiler(connection=connection).as_sql()
|
|
|
|
|
|
|
|
template = template or template_params.get('template', self.template)
|
|
|
|
sql = template % template_params
|
|
|
|
return sql, sql_params
|
|
|
|
|
|
|
|
def _prepare(self, output_field):
|
|
|
|
# This method will only be called if this instance is the "rhs" in an
|
|
|
|
# expression: the wrapping () must be removed (as the expression that
|
|
|
|
# contains this will provide them). SQLite evaluates ((subquery))
|
|
|
|
# differently than the other databases.
|
|
|
|
if self.template == '(%(subquery)s)':
|
|
|
|
clone = self.copy()
|
|
|
|
clone.template = '%(subquery)s'
|
|
|
|
return clone
|
|
|
|
return self
|
|
|
|
|
|
|
|
|
|
|
|
class Exists(Subquery):
|
|
|
|
template = 'EXISTS(%(subquery)s)'
|
2017-08-09 01:31:59 +08:00
|
|
|
output_field = fields.BooleanField()
|
2016-04-20 14:56:51 +08:00
|
|
|
|
2017-02-02 00:41:56 +08:00
|
|
|
def __init__(self, *args, negated=False, **kwargs):
|
|
|
|
self.negated = negated
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__(*args, **kwargs)
|
2016-04-20 14:56:51 +08:00
|
|
|
|
|
|
|
def __invert__(self):
|
2017-07-15 09:56:01 +08:00
|
|
|
return type(self)(self.queryset, negated=(not self.negated), **self.extra)
|
2016-04-20 14:56:51 +08:00
|
|
|
|
|
|
|
def resolve_expression(self, query=None, **kwargs):
|
|
|
|
# As a performance optimization, remove ordering since EXISTS doesn't
|
|
|
|
# care about it, just whether or not a row matches.
|
|
|
|
self.queryset = self.queryset.order_by()
|
2017-01-21 21:13:44 +08:00
|
|
|
return super().resolve_expression(query, **kwargs)
|
2016-04-20 14:56:51 +08:00
|
|
|
|
|
|
|
def as_sql(self, compiler, connection, template=None, **extra_context):
|
2017-01-21 21:13:44 +08:00
|
|
|
sql, params = super().as_sql(compiler, connection, template, **extra_context)
|
2016-04-20 14:56:51 +08:00
|
|
|
if self.negated:
|
|
|
|
sql = 'NOT {}'.format(sql)
|
|
|
|
return sql, params
|
|
|
|
|
|
|
|
def as_oracle(self, compiler, connection, template=None, **extra_context):
|
|
|
|
# Oracle doesn't allow EXISTS() in the SELECT list, so wrap it with a
|
|
|
|
# CASE WHEN expression. Change the template since the When expression
|
|
|
|
# requires a left hand side (column) to compare against.
|
|
|
|
sql, params = self.as_sql(compiler, connection, template, **extra_context)
|
|
|
|
sql = 'CASE WHEN {} THEN 1 ELSE 0 END'.format(sql)
|
|
|
|
return sql, params
|
|
|
|
|
|
|
|
|
2015-01-09 23:16:16 +08:00
|
|
|
class OrderBy(BaseExpression):
|
|
|
|
template = '%(expression)s %(ordering)s'
|
|
|
|
|
2016-07-27 21:17:05 +08:00
|
|
|
def __init__(self, expression, descending=False, nulls_first=False, nulls_last=False):
|
|
|
|
if nulls_first and nulls_last:
|
|
|
|
raise ValueError('nulls_first and nulls_last are mutually exclusive')
|
|
|
|
self.nulls_first = nulls_first
|
|
|
|
self.nulls_last = nulls_last
|
2015-01-09 23:16:16 +08:00
|
|
|
self.descending = descending
|
|
|
|
if not hasattr(expression, 'resolve_expression'):
|
|
|
|
raise ValueError('expression must be an expression type')
|
|
|
|
self.expression = expression
|
|
|
|
|
2015-01-27 10:40:32 +08:00
|
|
|
def __repr__(self):
|
|
|
|
return "{}({}, descending={})".format(
|
|
|
|
self.__class__.__name__, self.expression, self.descending)
|
|
|
|
|
2015-01-09 23:16:16 +08:00
|
|
|
def set_source_expressions(self, exprs):
|
|
|
|
self.expression = exprs[0]
|
|
|
|
|
|
|
|
def get_source_expressions(self):
|
|
|
|
return [self.expression]
|
|
|
|
|
2016-02-16 04:42:24 +08:00
|
|
|
def as_sql(self, compiler, connection, template=None, **extra_context):
|
2016-07-27 21:17:05 +08:00
|
|
|
if not template:
|
|
|
|
if self.nulls_last:
|
|
|
|
template = '%s NULLS LAST' % self.template
|
|
|
|
elif self.nulls_first:
|
|
|
|
template = '%s NULLS FIRST' % self.template
|
2015-01-17 13:03:46 +08:00
|
|
|
connection.ops.check_expression_support(self)
|
2015-01-09 23:16:16 +08:00
|
|
|
expression_sql, params = compiler.compile(self.expression)
|
2015-11-07 18:46:22 +08:00
|
|
|
placeholders = {
|
|
|
|
'expression': expression_sql,
|
|
|
|
'ordering': 'DESC' if self.descending else 'ASC',
|
|
|
|
}
|
2016-02-16 04:42:24 +08:00
|
|
|
placeholders.update(extra_context)
|
|
|
|
template = template or self.template
|
|
|
|
return (template % placeholders).rstrip(), params
|
2015-01-09 23:16:16 +08:00
|
|
|
|
2016-07-27 21:17:05 +08:00
|
|
|
def as_sqlite(self, compiler, connection):
|
|
|
|
template = None
|
|
|
|
if self.nulls_last:
|
|
|
|
template = '%(expression)s IS NULL, %(expression)s %(ordering)s'
|
|
|
|
elif self.nulls_first:
|
|
|
|
template = '%(expression)s IS NOT NULL, %(expression)s %(ordering)s'
|
|
|
|
return self.as_sql(compiler, connection, template=template)
|
|
|
|
|
|
|
|
def as_mysql(self, compiler, connection):
|
|
|
|
template = None
|
|
|
|
if self.nulls_last:
|
|
|
|
template = 'IF(ISNULL(%(expression)s),1,0), %(expression)s %(ordering)s '
|
|
|
|
elif self.nulls_first:
|
|
|
|
template = 'IF(ISNULL(%(expression)s),0,1), %(expression)s %(ordering)s '
|
|
|
|
return self.as_sql(compiler, connection, template=template)
|
|
|
|
|
2015-01-09 23:16:16 +08:00
|
|
|
def get_group_by_cols(self):
|
|
|
|
cols = []
|
|
|
|
for source in self.get_source_expressions():
|
|
|
|
cols.extend(source.get_group_by_cols())
|
|
|
|
return cols
|
|
|
|
|
|
|
|
def reverse_ordering(self):
|
|
|
|
self.descending = not self.descending
|
|
|
|
return self
|
|
|
|
|
|
|
|
def asc(self):
|
|
|
|
self.descending = False
|
|
|
|
|
|
|
|
def desc(self):
|
|
|
|
self.descending = True
|