forked from Xof/xact
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_xact.py
More file actions
180 lines (152 loc) · 7.36 KB
/
Copy path_xact.py
File metadata and controls
180 lines (152 loc) · 7.36 KB
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
""" This code provides a decorator / context manager for transaction management in
Django on PostgreSQL. It is intended as a replacement for the existing Django
commit_on_success() function, and provides some nice features:
* Nested transactions: The top-level transaction will be a BEGIN/COMMIT/ROLLBACK
block; inner "transactions" are implemented as savepoints.
* Commits even if is_dirty is False, eliminating the mistake of forgetting to set
the dirty flag when doing database-modifying raw SQL.
* Better interaction with pgPool II, if you're using it.
* A workaround for a subtle but nasty bug in Django's transaction management.
For full details, check the README.md file.
"""
from functools import wraps
import psycopg2.extensions
from django.db import transaction, DEFAULT_DB_ALIAS, connections
class Rollback(Exception):
""" This class provides a standard exception that can be thrown to handle a
rollback condition. If Xact receives an exception of this class (or
a subclass), it swallows it and continues exception, rather than
re-raising the exception.
"""
pass
class _Transaction(object):
""" This class manages a particular transaction or savepoint block, using context
manager-style __enter__ and __exit__ statements. We don't use it directly
(for reasons noted below), but as a delegate for the _TransactionWrapper
class.
"""
def __init__(self, using):
self.using = using
self.sid = None
def __enter__(self):
if transaction.is_managed(self.using):
# We're already in a transaction; create a savepoint.
self.sid = transaction.savepoint(self.using)
else:
transaction.enter_transaction_management(using=self.using)
transaction.managed(True, using=self.using)
def __exit__(self, exc_type, exc_value, traceback):
if exc_type is None:
# commit operation
if self.sid is None:
# Outer transaction
try:
transaction.commit(self.using)
except:
transaction.rollback(self.using)
raise
finally:
self._leave_transaction_management()
else:
# Inner savepoint
try:
transaction.savepoint_commit(self.sid, self.using)
except:
transaction.savepoint_rollback(self.sid, self.using)
raise
else:
# rollback operation
if self.sid is None:
# Outer transaction
transaction.rollback(self.using)
self._leave_transaction_management()
else:
# Inner savepoint
transaction.savepoint_rollback(self.sid, self.using)
if exc_type is None:
return False
else:
return issubclass(exc_type, Rollback)
# Returning False here means we did not gobble up the exception, so the
# exception process should continue.
def _leave_transaction_management(self):
transaction.leave_transaction_management(using=self.using)
if not connections[self.using].is_managed() and connections[self.using].features.uses_autocommit:
connections[self.using]._set_isolation_level(psycopg2.extensions.ISOLATION_LEVEL_AUTOCOMMIT)
# Patch for bug in Django's psycopg2 backend; see:
# https://code.djangoproject.com/ticket/16047
class _TransactionWrapper:
""" This class wraps the above _Transaction class. We do this to allow reentrancy
and thread-safety. When being used as a decorator, only one _TransactionWrapper
object is created per function being wrapped, and thus we can't store the state
of the tranasction here (because multiple concurrent calls in the same address
space to the same function would cause the state to be crunched), so delegate
that to a _Transaction object that is created at the appropriate time.
The "appropriate time" is two places: If the _TransactionWrapper is being used
as a context manager, it's when the __enter__ function is called; if it is being
used as a decorator, it's when the decorated function is about to be called
(see the `inner` function below in __call__).
The __enter__ and __exit__ functions on _TransactionWrapper are only called
if we're using xact() as a context manager; if we're using it as a decorator,
they're skipped and self.transaction is always None. Similarly, __call__ is
not used if this is a context manager usage. This is not super-elegant, but
it's the only way I've found to allow xact() to be used as both a context
manager and a decorator using the same syntax.
"""
def __init__(self, using):
self.using = using
self.transaction = None
def __enter__(self):
if self.transaction is None:
self.transaction = _Transaction(self.using)
return self.transaction.__enter__()
def __exit__(self, exc_type, exc_value, traceback):
return self.transaction.__exit__(exc_type, exc_value, traceback)
def __call__(self, func):
@wraps(func)
def inner(*args, **kwargs):
with _Transaction(self.using):
return func(*args, **kwargs)
return inner
def xact(using=None):
if using is None:
using = DEFAULT_DB_ALIAS
if callable(using):
# We end up here if xact is being used as a completely bare decorator:
# @xact
# (not even an empty parameter list)
return _TransactionWrapper(DEFAULT_DB_ALIAS)(using)
# Note that `using` here is *not* the database alias; it's the actual function
# being decorated.
else:
# We end up here if xact is being used as a parameterized decorator (including
# default parameter):
# @xact(db)
# or @xact()
# ... or as a context manager:
# with xact():
# ...
return _TransactionWrapper(using)
# -----------------------------------------------------------------------------
# This software is licensed under the PostgreSQL License:
#
# http://www.postgresql.org/about/licence/
#
# Copyright (c) 2012 Christophe Pettus
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose, without fee, and without a written agreement is
# hereby granted, provided that the above copyright notice and this paragraph
# and the following two paragraphs appear in all copies.
#
# IN NO EVENT SHALL CHRISTOPHE PETTUS BE LIABLE TO ANY PARTY FOR DIRECT,
# INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST
# PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
# IF CHRISTOPHE PETTUS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
# DAMAGE.
#
# CHRISTOPHE PETTUS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT
# NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
# PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS,
# AND CHRISTOPHE PETTUS HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.