-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathsteady_db.py
703 lines (626 loc) · 26.5 KB
/
steady_db.py
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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
"""SteadyDB - hardened DB-API 2 connections.
Implements steady connections to a database based on an
arbitrary DB-API 2 compliant database interface module.
The connections are transparently reopened when they are
closed or the database connection has been lost or when
they are used more often than an optional usage limit.
Database cursors are transparently reopened as well when
the execution of a database operation cannot be performed
due to a lost connection. Only if the connection is lost
after the execution, when rows are already fetched from the
database, this will give an error and the cursor will not
be reopened automatically, because there is no reliable way
to recover the state of the cursor in such a situation.
Connections which have been marked as being in a transaction
with a begin() call will not be silently replaced either.
A typical situation where database connections are lost
is when the database server or an intervening firewall is
shutdown and restarted for maintenance reasons. In such a
case, all database connections would become unusable, even
though the database service may be already available again.
The "hardened" connections provided by this module will
make the database connections immediately available again.
This approach results in a steady database connection that
can be used by PooledDB or PersistentDB to create pooled or
persistent connections to a database in a threaded environment
such as the application server of "Webware for Python."
Note, however, that the connections themselves may not be
thread-safe (depending on the used DB-API module).
For the Python DB-API 2 specification, see:
https://www.python.org/dev/peps/pep-0249/
For information on Webware for Python, see:
https://webwareforpython.github.io/w4py/
Usage:
You can use the connection constructor connect() in the same
way as you would use the connection constructor of a DB-API 2
module if you specify the DB-API 2 module to be used as the
first parameter, or alternatively you can specify an arbitrary
constructor function returning new DB-API 2 compliant connection
objects as the first parameter. Passing just a function allows
implementing failover mechanisms and load balancing strategies.
You may also specify a usage limit as the second parameter
(set it to None if you prefer unlimited usage), an optional
list of commands that may serve to prepare the session as a
third parameter, the exception classes for which the failover
mechanism shall be applied, and you can specify whether is is
allowed to close the connection (by default this is true).
When the connection to the database is lost or has been used
too often, it will be transparently reset in most situations,
without further notice.
import pgdb # import used DB-API 2 module
from dbutils.steady_db import connect
db = connect(pgdb, 10000, ["set datestyle to german"],
host=..., database=..., user=..., ...)
...
cursor = db.cursor()
...
cursor.execute('select ...')
result = cursor.fetchall()
...
cursor.close()
...
db.close()
Ideas for improvement:
* Alternatively to the maximum number of uses,
implement a maximum time to live for connections.
* Optionally log usage and loss of connection.
Copyright, credits and license:
* Contributed as supplement for Webware for Python and PyGreSQL
by Christoph Zwerschke in September 2005
* Allowing creator functions as first parameter as in SQLAlchemy
suggested by Ezio Vernacotola in December 2006
Licensed under the MIT license.
"""
import sys
from contextlib import suppress
from . import __version__
class SteadyDBError(Exception):
"""General SteadyDB error."""
class InvalidCursorError(SteadyDBError):
"""Database cursor is invalid."""
# deprecated alias names for error classes
InvalidCursor = InvalidCursorError
def connect(
creator, maxusage=None, setsession=None,
failures=None, ping=1, closeable=True, *args, **kwargs):
"""Create a "tough" connection.
A hardened version of the connection function of a DB-API 2 module.
creator: either an arbitrary function returning new DB-API 2 compliant
connection objects or a DB-API 2 compliant database module
maxusage: maximum usage limit for the underlying DB-API 2 connection
(number of database operations, 0 or None means unlimited usage)
callproc(), execute() and executemany() count as one operation.
When the limit is reached, the connection is automatically reset.
setsession: an optional list of SQL commands that may serve to prepare
the session, e.g. ["set datestyle to german", "set time zone mez"]
failures: an optional exception class or a tuple of exception classes
for which the failover mechanism shall be applied, if the default
(OperationalError, InternalError, Interface) is not adequate
for the used database module
ping: determines when the connection should be checked with ping()
(0 = None = never, 1 = default = when _ping_check() is called,
2 = whenever a cursor is created, 4 = when a query is executed,
7 = always, and all other bit combinations of these values)
closeable: if this is set to false, then closing the connection will
be silently ignored, but by default the connection can be closed
args, kwargs: the parameters that shall be passed to the creator
function or the connection constructor of the DB-API 2 module
"""
return SteadyDBConnection(
creator, maxusage, setsession,
failures, ping, closeable, *args, **kwargs)
class SteadyDBConnection:
"""A hardened version of DB-API 2 connections."""
version = __version__
def __init__(
self, creator, maxusage=None, setsession=None,
failures=None, ping=1, closeable=True, *args, **kwargs):
"""Create a "tough" DB-API 2 connection."""
# basic initialization to make finalizer work
self._con = None
self._closed = True
# proper initialization of the connection
try:
self._creator = creator.connect
try:
if creator.dbapi.connect:
self._dbapi = creator.dbapi
except AttributeError:
self._dbapi = creator
except AttributeError:
# try finding the DB-API 2 module via the connection creator
self._creator = creator
try:
self._dbapi = creator.dbapi
except AttributeError:
try:
self._dbapi = sys.modules[creator.__module__]
if self._dbapi.connect != creator:
raise AttributeError
except (AttributeError, KeyError):
self._dbapi = None
try:
self._threadsafety = creator.threadsafety
except AttributeError:
try:
self._threadsafety = self._dbapi.threadsafety
except AttributeError:
self._threadsafety = None
if not callable(self._creator):
raise TypeError(f"{creator!r} is not a connection provider.")
if maxusage is None:
maxusage = 0
if not isinstance(maxusage, int):
raise TypeError("'maxusage' must be an integer value.")
self._maxusage = maxusage
self._setsession_sql = setsession
if failures is not None and not isinstance(
failures, tuple) and not issubclass(failures, Exception):
raise TypeError("'failures' must be a tuple of exceptions.")
self._failures = failures
self._ping = ping if isinstance(ping, int) else 0
self._closeable = closeable
self._args, self._kwargs = args, kwargs
self._store(self._create())
def __enter__(self):
"""Enter the runtime context for the connection object."""
return self
def __exit__(self, *exc):
"""Exit the runtime context for the connection object.
This does not close the connection, but it ends a transaction.
"""
if exc[0] is None and exc[1] is None and exc[2] is None:
self.commit()
else:
self.rollback()
def _create(self):
"""Create a new connection using the creator function."""
con = self._creator(*self._args, **self._kwargs)
try:
try:
if self._dbapi.connect != self._creator:
raise AttributeError
except AttributeError:
# try finding the DB-API 2 module via the connection itself
try:
mod = con.__module__
except AttributeError:
mod = None
while mod:
try:
self._dbapi = sys.modules[mod]
if not callable(self._dbapi.connect):
raise AttributeError
except (AttributeError, KeyError):
pass
else:
break
i = mod.rfind('.')
mod = None if i < 0 else mod[:i]
else:
try:
mod = con.OperationalError.__module__
except AttributeError:
mod = None
while mod:
try:
self._dbapi = sys.modules[mod]
if not callable(self._dbapi.connect):
raise AttributeError
except (AttributeError, KeyError):
pass
else:
break
i = mod.rfind('.')
mod = None if i < 0 else mod[:i]
else:
self._dbapi = None
if self._threadsafety is None:
try:
self._threadsafety = self._dbapi.threadsafety
except AttributeError:
with suppress(AttributeError):
self._threadsafety = con.threadsafety
if self._failures is None:
try:
self._failures = (
self._dbapi.OperationalError,
self._dbapi.InterfaceError,
self._dbapi.InternalError)
except AttributeError:
try:
self._failures = (
self._creator.OperationalError,
self._creator.InterfaceError,
self._creator.InternalError)
except AttributeError:
try:
self._failures = (
con.OperationalError,
con.InterfaceError,
con.InternalError)
except AttributeError as error:
raise AttributeError(
"Could not determine failure exceptions"
" (please set failures or creator.dbapi).",
) from error
if isinstance(self._failures, tuple):
self._failure = self._failures[0]
else:
self._failure = self._failures
self._setsession(con)
except Exception as error:
# the database module could not be determined
# or the session could not be prepared
with suppress(Exception):
con.close() # close the connection first
raise error # re-raise the original error again
return con
def _setsession(self, con=None):
"""Execute the SQL commands for session preparation."""
if con is None:
con = self._con
if self._setsession_sql:
cursor = con.cursor()
for sql in self._setsession_sql:
cursor.execute(sql)
cursor.close()
def _store(self, con):
"""Store a database connection for subsequent use."""
self._con = con
self._transaction = False
self._closed = False
self._usage = 0
def _close(self):
"""Close the tough connection.
You can always close a tough connection with this method,
and it will not complain if you close it more than once.
"""
if not self._closed:
with suppress(Exception):
self._con.close()
self._transaction = False
self._closed = True
def _reset(self, force=False):
"""Reset a tough connection.
Rollback if forced or the connection was in a transaction.
"""
if not self._closed and (force or self._transaction):
with suppress(Exception):
self.rollback()
def _ping_check(self, ping=1, reconnect=True):
"""Check whether the connection is still alive using ping().
If the underlying connection is not active and the ping
parameter is set accordingly, the connection will be recreated
unless the connection is currently inside a transaction.
"""
if ping & self._ping:
try: # if possible, ping the connection
try: # pass a reconnect=False flag if this is supported
alive = self._con.ping(False)
except TypeError: # the reconnect flag is not supported
alive = self._con.ping()
except (AttributeError, IndexError, TypeError, ValueError):
self._ping = 0 # ping() is not available
alive = None
reconnect = False
except Exception:
alive = False
else:
if alive is None:
alive = True
if alive:
reconnect = False
if reconnect and not self._transaction:
try: # try to reopen the connection
con = self._create()
except Exception: # noqa: S110
pass
else:
self._close()
self._store(con)
alive = True
return alive
return None
def dbapi(self):
"""Return the underlying DB-API 2 module of the connection."""
if self._dbapi is None:
raise AttributeError(
"Could not determine DB-API 2 module"
" (please set creator.dbapi).")
return self._dbapi
def threadsafety(self):
"""Return the thread safety level of the connection."""
if self._threadsafety is None:
if self._dbapi is None:
raise AttributeError(
"Could not determine threadsafety"
" (please set creator.dbapi or creator.threadsafety).")
return 0
return self._threadsafety
def close(self):
"""Close the tough connection.
You are allowed to close a tough connection by default,
and it will not complain if you close it more than once.
You can disallow closing connections by setting
the closeable parameter to something false. In this case,
closing tough connections will be silently ignored.
"""
if self._closeable:
self._close()
elif self._transaction:
self._reset()
def begin(self, *args, **kwargs):
"""Indicate the beginning of a transaction.
During a transaction, connections won't be transparently
replaced, and all errors will be raised to the application.
If the underlying driver supports this method, it will be called
with the given parameters (e.g. for distributed transactions).
"""
self._transaction = True
try:
begin = self._con.begin
except AttributeError:
pass
else:
begin(*args, **kwargs)
def commit(self):
"""Commit any pending transaction."""
self._transaction = False
try:
self._con.commit()
except self._failures as error: # cannot commit
try: # try to reopen the connection
con = self._create()
except Exception: # noqa: S110
pass
else:
self._close()
self._store(con)
raise error # re-raise the original error
def rollback(self):
"""Rollback pending transaction."""
self._transaction = False
try:
self._con.rollback()
except self._failures as error: # cannot rollback
try: # try to reopen the connection
con = self._create()
except Exception: # noqa: S110
pass
else:
self._close()
self._store(con)
raise error # re-raise the original error
def cancel(self):
"""Cancel a long-running transaction.
If the underlying driver supports this method, it will be called.
"""
self._transaction = False
try:
cancel = self._con.cancel
except AttributeError:
pass
else:
cancel()
def ping(self, *args, **kwargs):
"""Ping connection."""
return self._con.ping(*args, **kwargs)
def _cursor(self, *args, **kwargs):
"""Create a "tough" cursor.
This is a hardened version of the method cursor().
"""
# The args and kwargs are not part of the standard,
# but some database modules seem to use these.
transaction = self._transaction
if not transaction:
self._ping_check(2)
try:
# check whether the connection has been used too often
if (self._maxusage and self._usage >= self._maxusage
and not transaction):
raise self._failure
cursor = self._con.cursor(*args, **kwargs) # try to get a cursor
except self._failures as error: # error in getting cursor
try: # try to reopen the connection
con = self._create()
except Exception: # noqa: S110
pass
else:
try: # and try one more time to get a cursor
cursor = con.cursor(*args, **kwargs)
except Exception: # noqa: S110
pass
else:
self._close()
self._store(con)
if transaction:
raise error # re-raise the original error again
return cursor
with suppress(Exception):
con.close()
if transaction:
self._transaction = False
raise error # re-raise the original error again
return cursor
def cursor(self, *args, **kwargs):
"""Return a new Cursor Object using the connection."""
return SteadyDBCursor(self, *args, **kwargs)
def __del__(self):
"""Delete the steady connection."""
# builtins (including Exceptions) might not exist anymore
try: # noqa: SIM105
self._close() # make sure the connection is closed
except: # noqa: E722, S110
pass
class SteadyDBCursor:
"""A hardened version of DB-API 2 cursors."""
def __init__(self, con, *args, **kwargs):
"""Create a "tough" DB-API 2 cursor."""
# basic initialization to make finalizer work
self._cursor = None
self._closed = True
# proper initialization of the cursor
self._con = con
self._args, self._kwargs = args, kwargs
self._clearsizes()
try:
self._cursor = con._cursor(*args, **kwargs)
except AttributeError as error:
raise TypeError(f"{con!r} is not a SteadyDBConnection.") from error
self._closed = False
def __enter__(self):
"""Enter the runtime context for the cursor object."""
return self
def __exit__(self, *exc):
"""Exit the runtime context for the cursor object."""
self.close()
def __iter__(self):
"""Make cursor compatible to the iteration protocol."""
cursor = self._cursor
try: # use iterator provided by original cursor
return iter(cursor)
except TypeError: # create iterator if not provided
return iter(cursor.fetchone, None)
def setinputsizes(self, sizes):
"""Store input sizes in case cursor needs to be reopened."""
self._inputsizes = sizes
def setoutputsize(self, size, column=None):
"""Store output sizes in case cursor needs to be reopened."""
self._outputsizes[column] = size
def _clearsizes(self):
"""Clear stored input and output sizes."""
self._inputsizes = []
self._outputsizes = {}
def _setsizes(self, cursor=None):
"""Set stored input and output sizes for cursor execution."""
if cursor is None:
cursor = self._cursor
if self._inputsizes:
cursor.setinputsizes(self._inputsizes)
for column, size in self._outputsizes.items():
if column is None:
cursor.setoutputsize(size)
else:
cursor.setoutputsize(size, column)
def close(self):
"""Close the tough cursor.
It will not complain if you close it more than once.
"""
if not self._closed:
with suppress(Exception):
self._cursor.close()
self._closed = True
def _get_tough_method(self, name):
"""Return a "tough" version of the given cursor method."""
def tough_method(*args, **kwargs):
execute = name.startswith('execute')
con = self._con
transaction = con._transaction
if not transaction:
con._ping_check(4)
try:
# check whether the connection has been used too often
if (con._maxusage and con._usage >= con._maxusage
and not transaction):
raise con._failure
if execute:
self._setsizes()
method = getattr(self._cursor, name)
result = method(*args, **kwargs) # try to execute
if execute:
self._clearsizes()
except con._failures as error: # execution error
if not transaction:
try:
cursor2 = con._cursor(
*self._args, **self._kwargs) # open new cursor
except Exception: # noqa: S110
pass
else:
try: # and try one more time to execute
if execute:
self._setsizes(cursor2)
method = getattr(cursor2, name)
result = method(*args, **kwargs)
if execute:
self._clearsizes()
except Exception: # noqa: S110
pass
else:
self.close()
self._cursor = cursor2
con._usage += 1
return result
with suppress(Exception):
cursor2.close()
try: # try to reopen the connection
con2 = con._create()
except Exception: # noqa: S110
pass
else:
try:
cursor2 = con2.cursor(
*self._args, **self._kwargs) # open new cursor
except Exception: # noqa: S110
pass
else:
if transaction:
self.close()
con._close()
con._store(con2)
self._cursor = cursor2
raise error # raise the original error again
error2 = None
try: # try one more time to execute
if execute:
self._setsizes(cursor2)
method2 = getattr(cursor2, name)
# if the following call hangs,
# you may have forgotten to call begin()
result = method2(*args, **kwargs)
if execute:
self._clearsizes()
except error.__class__: # same execution error
use2 = False
error2 = error
except Exception as error: # other execution errors
use2 = True
error2 = error
else:
use2 = True
if use2:
self.close()
con._close()
con._store(con2)
self._cursor = cursor2
con._usage += 1
if error2:
raise error2 # raise the other error
return result
with suppress(Exception):
cursor2.close()
with suppress(Exception):
con2.close()
if transaction:
self._transaction = False
raise error # re-raise the original error again
else:
con._usage += 1
return result
return tough_method
def __getattr__(self, name):
"""Inherit methods and attributes of underlying cursor."""
if self._cursor:
if name.startswith(('execute', 'call')):
# make execution methods "tough"
return self._get_tough_method(name)
return getattr(self._cursor, name)
raise InvalidCursorError
def __del__(self):
"""Delete the steady cursor."""
# builtins (including Exceptions) might not exist anymore
try: # noqa: SIM105
self.close() # make sure the cursor is closed
except: # noqa: E722, S110
pass