1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
|
# Copyright (C) 2013-2022 the SQLAlchemy authors and contributors
# <see AUTHORS file>
#
# This module is part of SQLAlchemy and is released under
# the MIT License: https://www.opensource.org/licenses/mit-license.php
# mypy: ignore-errors
from __future__ import annotations
import dataclasses
from datetime import date
from datetime import datetime
from datetime import timedelta
from typing import Any
from typing import Generic
from typing import Optional
from typing import TypeVar
from typing import Union
from ... import types as sqltypes
from ...util import py310
from ...util.typing import Literal
_T = TypeVar("_T", bound=Any)
if py310:
dc_slots = {"slots": True}
dc_kwonly = {"kw_only": True}
else:
dc_slots = {}
dc_kwonly = {}
@dataclasses.dataclass(frozen=True, **dc_slots)
class Range(Generic[_T]):
"""Represent a PostgreSQL range.
E.g.::
r = Range(10, 50, bounds="()")
The calling style is similar to that of psycopg and psycopg2, in part
to allow easier migration from previous SQLAlchemy versions that used
these objects directly.
:param lower: Lower bound value, or None
:param upper: Upper bound value, or None
:param bounds: keyword-only, optional string value that is one of
``"()"``, ``"[)"``, ``"(]"``, ``"[]"``. Defaults to ``"[)"``.
:param empty: keyword-only, optional bool indicating this is an "empty"
range
.. versionadded:: 2.0
"""
lower: Optional[_T] = None
"""the lower bound"""
upper: Optional[_T] = None
"""the upper bound"""
bounds: Literal["()", "[)", "(]", "[]"] = dataclasses.field(
default="[)", **dc_kwonly
)
empty: bool = dataclasses.field(default=False, **dc_kwonly)
if not py310:
def __init__(
self, lower=None, upper=None, *, bounds="[)", empty=False
):
# no __slots__ either so we can update dict
self.__dict__.update(
{
"lower": lower,
"upper": upper,
"bounds": bounds,
"empty": empty,
}
)
def __bool__(self) -> bool:
return self.empty
def _contains_value(self, value: _T) -> bool:
"Check whether this range contains the given `value`."
if self.empty:
return False
if self.lower is None:
return self.upper is None or (
value < self.upper
if self.bounds[1] == ")"
else value <= self.upper
)
if self.upper is None:
return (
value > self.lower
if self.bounds[0] == "("
else value >= self.lower
)
return (
value > self.lower
if self.bounds[0] == "("
else value >= self.lower
) and (
value < self.upper
if self.bounds[1] == ")"
else value <= self.upper
)
def _get_discrete_step(self):
"Determine the “step” for this range, if it is a discrete one."
# See
# https://www.postgresql.org/docs/current/rangetypes.html#RANGETYPES-DISCRETE
# for the rationale
if isinstance(self.lower, int) or isinstance(self.upper, int):
return 1
elif isinstance(self.lower, datetime) or isinstance(
self.upper, datetime
):
# This is required, because a `isinstance(datetime.now(), date)`
# is True
return None
elif isinstance(self.lower, date) or isinstance(self.upper, date):
return timedelta(days=1)
else:
return None
def contained_by(self, other: Range) -> bool:
"Determine whether this range is a contained by `other`."
# Any range contains the empty one
if self.empty:
return True
# An empty range does not contain any range except the empty one
if other.empty:
return False
olower = other.lower
oupper = other.upper
# A bilateral unbound range contains any other range
if olower is oupper is None:
return True
slower = self.lower
supper = self.upper
# A lower-bound range cannot contain a lower-unbound range
if slower is None and olower is not None:
return False
# Likewise on the right side
if supper is None and oupper is not None:
return False
slower_inc = self.bounds[0] == "["
supper_inc = self.bounds[1] == "]"
olower_inc = other.bounds[0] == "["
oupper_inc = other.bounds[1] == "]"
# Check the lower end
step = -1
if slower is not None and olower is not None:
lside = olower < slower
if not lside:
if not slower_inc or olower_inc:
lside = olower == slower
if not lside:
# Cover (1,x] vs [2,x) and (0,x] vs [1,x)
if not slower_inc and olower_inc and slower < olower:
step = self._get_discrete_step()
if step is not None:
lside = olower == (slower + step)
elif slower_inc and not olower_inc and slower > olower:
step = self._get_discrete_step()
if step is not None:
lside = (olower + step) == slower
if not lside:
return False
# Lower end already considered, an upper-unbound range surely contains
# this
if oupper is None:
return True
# Check the upper end
uside = oupper > supper
if not uside:
if not supper_inc or oupper_inc:
uside = oupper == supper
if not uside:
# Cover (x,2] vs [x,3) and (x,1] vs [x,2)
if supper_inc and not oupper_inc and supper < oupper:
if step == -1:
step = self._get_discrete_step()
if step is not None:
uside = oupper == (supper + step)
elif not supper_inc and oupper_inc and supper > oupper:
if step == -1:
step = self._get_discrete_step()
if step is not None:
uside = (oupper + step) == supper
return uside
def contains(self, value: Union[_T, Range]) -> bool:
"Determine whether this range contains `value`."
if isinstance(value, Range):
return value.contained_by(self)
else:
return self._contains_value(value)
def overlaps(self, other):
"""Boolean expression. Returns true if the column overlaps
(has points in common with) the right hand operand.
"""
raise NotImplementedError("not yet implemented")
def strictly_left_of(self, other):
"""Boolean expression. Returns true if the column is strictly
left of the right hand operand.
"""
raise NotImplementedError("not yet implemented")
__lshift__ = strictly_left_of
def strictly_right_of(self, other):
"""Boolean expression. Returns true if the column is strictly
right of the right hand operand.
"""
raise NotImplementedError("not yet implemented")
__rshift__ = strictly_right_of
def not_extend_right_of(self, other):
"""Boolean expression. Returns true if the range in the column
does not extend right of the range in the operand.
"""
raise NotImplementedError("not yet implemented")
def not_extend_left_of(self, other):
"""Boolean expression. Returns true if the range in the column
does not extend left of the range in the operand.
"""
raise NotImplementedError("not yet implemented")
def adjacent_to(self, other):
"""Boolean expression. Returns true if the range in the column
is adjacent to the range in the operand.
"""
raise NotImplementedError("not yet implemented")
def __add__(self, other):
"""Range expression. Returns the union of the two ranges.
Will raise an exception if the resulting range is not
contiguous.
"""
raise NotImplementedError("not yet implemented")
def __str__(self):
return self._stringify()
def _stringify(self):
if self.empty:
return "empty"
l, r = self.lower, self.upper
l = "" if l is None else l
r = "" if r is None else r
b0, b1 = self.bounds
return f"{b0}{l},{r}{b1}"
class AbstractRange(sqltypes.TypeEngine):
"""
Base for PostgreSQL RANGE types.
.. seealso::
`PostgreSQL range functions <https://www.postgresql.org/docs/current/static/functions-range.html>`_
""" # noqa: E501
render_bind_cast = True
__abstract__ = True
def adapt(self, impltype):
"""dynamically adapt a range type to an abstract impl.
For example ``INT4RANGE().adapt(_Psycopg2NumericRange)`` should
produce a type that will have ``_Psycopg2NumericRange`` behaviors
and also render as ``INT4RANGE`` in SQL and DDL.
"""
if issubclass(impltype, AbstractRangeImpl):
# two ways to do this are: 1. create a new type on the fly
# or 2. have AbstractRangeImpl(visit_name) constructor and a
# visit_abstract_range_impl() method in the PG compiler.
# I'm choosing #1 as the resulting type object
# will then make use of the same mechanics
# as if we had made all these sub-types explicitly, and will
# also look more obvious under pdb etc.
# The adapt() operation here is cached per type-class-per-dialect,
# so is not much of a performance concern
visit_name = self.__visit_name__
return type(
f"{visit_name}RangeImpl",
(impltype, self.__class__),
{"__visit_name__": visit_name},
)()
else:
return super().adapt(impltype)
class comparator_factory(sqltypes.Concatenable.Comparator):
"""Define comparison operations for range types."""
def __ne__(self, other):
"Boolean expression. Returns true if two ranges are not equal"
if other is None:
return super().__ne__(other)
else:
return self.expr.op("<>", is_comparison=True)(other)
def contains(self, other, **kw):
"""Boolean expression. Returns true if the right hand operand,
which can be an element or a range, is contained within the
column.
kwargs may be ignored by this operator but are required for API
conformance.
"""
return self.expr.op("@>", is_comparison=True)(other)
def contained_by(self, other):
"""Boolean expression. Returns true if the column is contained
within the right hand operand.
"""
return self.expr.op("<@", is_comparison=True)(other)
def overlaps(self, other):
"""Boolean expression. Returns true if the column overlaps
(has points in common with) the right hand operand.
"""
return self.expr.op("&&", is_comparison=True)(other)
def strictly_left_of(self, other):
"""Boolean expression. Returns true if the column is strictly
left of the right hand operand.
"""
return self.expr.op("<<", is_comparison=True)(other)
__lshift__ = strictly_left_of
def strictly_right_of(self, other):
"""Boolean expression. Returns true if the column is strictly
right of the right hand operand.
"""
return self.expr.op(">>", is_comparison=True)(other)
__rshift__ = strictly_right_of
def not_extend_right_of(self, other):
"""Boolean expression. Returns true if the range in the column
does not extend right of the range in the operand.
"""
return self.expr.op("&<", is_comparison=True)(other)
def not_extend_left_of(self, other):
"""Boolean expression. Returns true if the range in the column
does not extend left of the range in the operand.
"""
return self.expr.op("&>", is_comparison=True)(other)
def adjacent_to(self, other):
"""Boolean expression. Returns true if the range in the column
is adjacent to the range in the operand.
"""
return self.expr.op("-|-", is_comparison=True)(other)
def __add__(self, other):
"""Range expression. Returns the union of the two ranges.
Will raise an exception if the resulting range is not
contiguous.
"""
return self.expr.op("+")(other)
class AbstractRangeImpl(AbstractRange):
"""marker for AbstractRange that will apply a subclass-specific
adaptation"""
class AbstractMultiRange(AbstractRange):
"""base for PostgreSQL MULTIRANGE types"""
__abstract__ = True
class AbstractMultiRangeImpl(AbstractRangeImpl, AbstractMultiRange):
"""marker for AbstractRange that will apply a subclass-specific
adaptation"""
class INT4RANGE(AbstractRange):
"""Represent the PostgreSQL INT4RANGE type."""
__visit_name__ = "INT4RANGE"
class INT8RANGE(AbstractRange):
"""Represent the PostgreSQL INT8RANGE type."""
__visit_name__ = "INT8RANGE"
class NUMRANGE(AbstractRange):
"""Represent the PostgreSQL NUMRANGE type."""
__visit_name__ = "NUMRANGE"
class DATERANGE(AbstractRange):
"""Represent the PostgreSQL DATERANGE type."""
__visit_name__ = "DATERANGE"
class TSRANGE(AbstractRange):
"""Represent the PostgreSQL TSRANGE type."""
__visit_name__ = "TSRANGE"
class TSTZRANGE(AbstractRange):
"""Represent the PostgreSQL TSTZRANGE type."""
__visit_name__ = "TSTZRANGE"
class INT4MULTIRANGE(AbstractMultiRange):
"""Represent the PostgreSQL INT4MULTIRANGE type."""
__visit_name__ = "INT4MULTIRANGE"
class INT8MULTIRANGE(AbstractMultiRange):
"""Represent the PostgreSQL INT8MULTIRANGE type."""
__visit_name__ = "INT8MULTIRANGE"
class NUMMULTIRANGE(AbstractMultiRange):
"""Represent the PostgreSQL NUMMULTIRANGE type."""
__visit_name__ = "NUMMULTIRANGE"
class DATEMULTIRANGE(AbstractMultiRange):
"""Represent the PostgreSQL DATEMULTIRANGE type."""
__visit_name__ = "DATEMULTIRANGE"
class TSMULTIRANGE(AbstractMultiRange):
"""Represent the PostgreSQL TSRANGE type."""
__visit_name__ = "TSMULTIRANGE"
class TSTZMULTIRANGE(AbstractMultiRange):
"""Represent the PostgreSQL TSTZRANGE type."""
__visit_name__ = "TSTZMULTIRANGE"
|