author | Radek Brich <brich.radek@ifortuna.cz> |
Wed, 14 Dec 2011 16:29:33 +0100 | |
changeset 23 | dc2dbe872fc8 |
parent 20 | 73f0d53fef6b |
child 24 | 5664afa530e5 |
permissions | -rw-r--r-- |
0 | 1 |
# -*- coding: utf-8 -*- |
2 |
# |
|
3 |
# PgManager - manage database connections |
|
4 |
# |
|
5 |
# Requires: Python 2.6, psycopg2 |
|
6 |
# |
|
9
2fcc8ef0b97d
Reorganize again :-) Add setup.py.
Radek Brich <radek.brich@devl.cz>
parents:
8
diff
changeset
|
7 |
# Part of pgtoolkit |
2fcc8ef0b97d
Reorganize again :-) Add setup.py.
Radek Brich <radek.brich@devl.cz>
parents:
8
diff
changeset
|
8 |
# http://hg.devl.cz/pgtoolkit |
2fcc8ef0b97d
Reorganize again :-) Add setup.py.
Radek Brich <radek.brich@devl.cz>
parents:
8
diff
changeset
|
9 |
# |
0 | 10 |
# Copyright (c) 2010, 2011 Radek Brich <radek.brich@devl.cz> |
11 |
# |
|
12 |
# Permission is hereby granted, free of charge, to any person obtaining a copy |
|
13 |
# of this software and associated documentation files (the "Software"), to deal |
|
14 |
# in the Software without restriction, including without limitation the rights |
|
15 |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
16 |
# copies of the Software, and to permit persons to whom the Software is |
|
17 |
# furnished to do so, subject to the following conditions: |
|
18 |
# |
|
19 |
# The above copyright notice and this permission notice shall be included in |
|
20 |
# all copies or substantial portions of the Software. |
|
21 |
# |
|
22 |
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
23 |
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
24 |
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
25 |
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
26 |
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
27 |
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
28 |
# THE SOFTWARE. |
|
29 |
||
30 |
"""Postgres database connection manager |
|
31 |
||
32 |
PgManager wraps psycopg2 connect function, adding following features: |
|
33 |
||
34 |
* Manage database connection parameters - link connection parameters |
|
35 |
to an unique identifier, retrieve connection object by this identifier |
|
36 |
||
37 |
* Connection pooling - connections with same identifier are pooled and reused |
|
38 |
||
39 |
* Easy query using the with statement - retrieve cursor directly by connection |
|
40 |
identifier, don't worry about connections |
|
41 |
||
42 |
* Dict rows - cursor has additional methods like fetchall_dict(), which |
|
43 |
returns dict row instead of ordinary list-like row |
|
44 |
||
45 |
Example: |
|
46 |
||
47 |
import pgmanager |
|
48 |
||
49 |
pgm = pgmanager.get_instance() |
|
50 |
pgm.create_conn(hostaddr='127.0.0.1', dbname='postgres') |
|
51 |
||
52 |
with pgm.cursor() as curs: |
|
53 |
curs.execute('SELECT now() AS now') |
|
54 |
row = curs.fetchone_dict() |
|
55 |
print row.now |
|
56 |
||
57 |
First, we have obtained PgManager instance. This is like calling |
|
58 |
PgManager(), although in our example the instance is global. That means |
|
59 |
getting the instance in another module brings us all the defined connections |
|
60 |
etc. |
|
61 |
||
9
2fcc8ef0b97d
Reorganize again :-) Add setup.py.
Radek Brich <radek.brich@devl.cz>
parents:
8
diff
changeset
|
62 |
On second line we have created connection named 'default' (this name can be left out). |
0 | 63 |
The with statement obtains connection (actually connects to database when needed), |
9
2fcc8ef0b97d
Reorganize again :-) Add setup.py.
Radek Brich <radek.brich@devl.cz>
parents:
8
diff
changeset
|
64 |
then returns cursor for this connection. At the end of with statement, |
2fcc8ef0b97d
Reorganize again :-) Add setup.py.
Radek Brich <radek.brich@devl.cz>
parents:
8
diff
changeset
|
65 |
the connection is returned to the pool or closed (depending on number of connections |
2fcc8ef0b97d
Reorganize again :-) Add setup.py.
Radek Brich <radek.brich@devl.cz>
parents:
8
diff
changeset
|
66 |
in pool and on setting of keep_open parameter). |
0 | 67 |
|
68 |
The row returned by fetchone_dict() is special dict object, which can be accessed |
|
69 |
using item or attribute access, that is row['now'] or row.now. |
|
70 |
""" |
|
71 |
||
72 |
from contextlib import contextmanager |
|
73 |
import logging |
|
74 |
import threading |
|
75 |
import select |
|
8
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
76 |
import socket |
0 | 77 |
|
78 |
import psycopg2 |
|
79 |
import psycopg2.extensions |
|
80 |
||
19
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
81 |
from psycopg2 import DatabaseError, IntegrityError, OperationalError |
0 | 82 |
|
83 |
||
20
73f0d53fef6b
PgManager: Do not add NullHandler to logger. Rewrite get_instance(). ToolBase: fix prepare_conns() method.
Radek Brich <radek.brich@devl.cz>
parents:
19
diff
changeset
|
84 |
log = logging.getLogger("pgmanager") |
73f0d53fef6b
PgManager: Do not add NullHandler to logger. Rewrite get_instance(). ToolBase: fix prepare_conns() method.
Radek Brich <radek.brich@devl.cz>
parents:
19
diff
changeset
|
85 |
|
73f0d53fef6b
PgManager: Do not add NullHandler to logger. Rewrite get_instance(). ToolBase: fix prepare_conns() method.
Radek Brich <radek.brich@devl.cz>
parents:
19
diff
changeset
|
86 |
|
0 | 87 |
class PgManagerError(Exception): |
88 |
||
89 |
pass |
|
90 |
||
91 |
||
92 |
class ConnectionInfo: |
|
93 |
||
19
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
94 |
def __init__(self, dsn, isolation_level=None, keep_alive=True, |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
95 |
init_statement=None, keep_open=1): |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
96 |
|
0 | 97 |
self.dsn = dsn |
98 |
self.isolation_level = isolation_level |
|
19
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
99 |
self.keep_alive = keep_alive |
0 | 100 |
self.init_statement = init_statement |
101 |
self.keep_open = keep_open |
|
102 |
||
103 |
||
104 |
class RowDict(dict): |
|
105 |
||
106 |
def __getattr__(self, key): |
|
107 |
return self[key] |
|
108 |
||
109 |
||
110 |
class Cursor(psycopg2.extensions.cursor): |
|
111 |
||
112 |
def execute(self, query, args=None): |
|
113 |
try: |
|
114 |
return super(Cursor, self).execute(query, args) |
|
115 |
finally: |
|
1
ddce8990b976
Fix pgmanager logging in Python3.
Radek Brich <radek.brich@devl.cz>
parents:
0
diff
changeset
|
116 |
log.debug(self.query.decode('utf8')) |
0 | 117 |
|
118 |
def callproc(self, procname, args=None): |
|
119 |
try: |
|
120 |
return super(Cursor, self).callproc(procname, args) |
|
121 |
finally: |
|
1
ddce8990b976
Fix pgmanager logging in Python3.
Radek Brich <radek.brich@devl.cz>
parents:
0
diff
changeset
|
122 |
log.debug(self.query.decode('utf8')) |
0 | 123 |
|
124 |
def row_dict(self, row, lstrip=None): |
|
125 |
adjustname = lambda a: a |
|
126 |
if lstrip: |
|
127 |
adjustname = lambda a: a.lstrip(lstrip) |
|
128 |
return RowDict(zip([adjustname(desc[0]) for desc in self.description], row)) |
|
129 |
||
130 |
def fetchone_dict(self, lstrip=None): |
|
131 |
row = super(Cursor, self).fetchone() |
|
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
132 |
if row is None: |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
133 |
return None |
0 | 134 |
return self.row_dict(row, lstrip) |
135 |
||
136 |
def fetchall_dict(self, lstrip=None): |
|
137 |
rows = super(Cursor, self).fetchall() |
|
138 |
return [self.row_dict(row, lstrip) for row in rows] |
|
139 |
||
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
140 |
def fetchone_adapted(self): |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
141 |
'''Like fetchone() but values are quoted for direct inclusion in SQL query. |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
142 |
|
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
143 |
This is useful when you need to generate SQL script from data returned |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
144 |
by the query. Use mogrify() for simple cases. |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
145 |
|
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
146 |
''' |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
147 |
row = super(Cursor, self).fetchone() |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
148 |
if row is None: |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
149 |
return None |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
150 |
return [self.mogrify('%s', [x]).decode('utf8') for x in row] |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
151 |
|
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
152 |
def fetchall_adapted(self): |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
153 |
'''Like fetchall() but values are quoted for direct inclusion in SQL query.''' |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
154 |
rows = super(Cursor, self).fetchall() |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
155 |
return [[self.mogrify('%s', [x]).decode('utf8') for x in row] for row in rows] |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
156 |
|
0 | 157 |
|
158 |
class Connection(psycopg2.extensions.connection): |
|
159 |
||
160 |
def cursor(self, name=None): |
|
161 |
if name is None: |
|
162 |
return super(Connection, self).cursor(cursor_factory=Cursor) |
|
163 |
else: |
|
164 |
return super(Connection, self).cursor(name, cursor_factory=Cursor) |
|
165 |
||
8
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
166 |
def keep_alive(self): |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
167 |
'''Set socket to keepalive mode. Must be called before any query.''' |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
168 |
sock = socket.fromfd(self.fileno(), socket.AF_INET, socket.SOCK_STREAM) |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
169 |
sock.setsockopt(socket.SOL_SOCKET, socket.SO_KEEPALIVE, 1) |
19
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
170 |
try: |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
171 |
# Maximum keep-alive probes before asuming the connection is lost |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
172 |
sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_KEEPCNT, 5) |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
173 |
# Interval (in seconds) between keep-alive probes |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
174 |
sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_KEEPINTVL, 2) |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
175 |
# Maximum idle time (in seconds) before start sending keep-alive probes |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
176 |
sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_KEEPIDLE, 10) |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
177 |
except socket.error: |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
178 |
pass |
8
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
179 |
|
0 | 180 |
|
181 |
class PgManager: |
|
182 |
||
183 |
def __init__(self): |
|
184 |
self.conn_known = {} # available connections |
|
185 |
self.conn_pool = {} |
|
186 |
self.lock = threading.Lock() |
|
187 |
||
188 |
def __del__(self): |
|
189 |
for conn in tuple(self.conn_known.keys()): |
|
190 |
self.destroy_conn(conn) |
|
191 |
||
23
dc2dbe872fc8
Add keep_open parameter to create_conn.
Radek Brich <brich.radek@ifortuna.cz>
parents:
20
diff
changeset
|
192 |
def create_conn(self, name='default', keep_open=1, isolation_level=None, keep_alive=True, dsn=None, **kw): |
19
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
193 |
'''Create named connection. |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
194 |
|
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
195 |
name -- name for connection (default is "default") |
23
dc2dbe872fc8
Add keep_open parameter to create_conn.
Radek Brich <brich.radek@ifortuna.cz>
parents:
20
diff
changeset
|
196 |
keep_open -- how many connections will be kept open in pool (more connections will still be created, |
dc2dbe872fc8
Add keep_open parameter to create_conn.
Radek Brich <brich.radek@ifortuna.cz>
parents:
20
diff
changeset
|
197 |
but they will be closed by put_conn) |
19
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
198 |
isolation_level -- "autocommit", "read_committed", "serializable" or None for driver default |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
199 |
keep_alive -- set socket to keepalive mode |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
200 |
dsn -- string with connection parameters (dsn means Data Source Name) |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
201 |
|
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
202 |
Alternative for dsn is keyword args (same names as in dsn). |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
203 |
|
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
204 |
''' |
0 | 205 |
if name in self.conn_known: |
2 | 206 |
raise PgManagerError('Connection name "%s" already registered.' % name) |
0 | 207 |
|
208 |
if dsn is None: |
|
19
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
209 |
dsn = ' '.join([x[0]+'='+str(x[1]) for x in kw.items() if x[1] is not None]) |
0 | 210 |
|
211 |
isolation_level = self._normalize_isolation_level(isolation_level) |
|
23
dc2dbe872fc8
Add keep_open parameter to create_conn.
Radek Brich <brich.radek@ifortuna.cz>
parents:
20
diff
changeset
|
212 |
ci = ConnectionInfo(dsn, isolation_level, keep_alive, keep_open=keep_open) |
0 | 213 |
|
214 |
self.conn_known[name] = ci |
|
215 |
self.conn_pool[name] = [] |
|
216 |
||
217 |
def close_conn(self, name='default'): |
|
218 |
'''Close all connections of given name. |
|
219 |
||
220 |
Connection credentials are still saved. |
|
221 |
||
222 |
''' |
|
223 |
while len(self.conn_pool[name]): |
|
224 |
conn = self.conn_pool[name].pop() |
|
225 |
conn.close() |
|
226 |
||
227 |
def destroy_conn(self, name='default'): |
|
228 |
'''Destroy connection. |
|
229 |
||
230 |
Counterpart of create_conn. |
|
231 |
||
232 |
''' |
|
233 |
if not name in self.conn_known: |
|
2 | 234 |
raise PgManagerError('Connection name "%s" not registered.' % name) |
0 | 235 |
|
236 |
self.close_conn(name) |
|
237 |
||
238 |
del self.conn_known[name] |
|
239 |
del self.conn_pool[name] |
|
240 |
||
241 |
def get_conn(self, name='default'): |
|
242 |
'''Get connection of name 'name' from pool.''' |
|
243 |
self.lock.acquire() |
|
244 |
try: |
|
245 |
if not name in self.conn_known: |
|
2 | 246 |
raise PgManagerError("Connection name '%s' not registered." % name) |
0 | 247 |
|
248 |
conn = None |
|
249 |
while len(self.conn_pool[name]) and conn is None: |
|
250 |
conn = self.conn_pool[name].pop() |
|
251 |
if conn.closed: |
|
252 |
conn = None |
|
253 |
||
254 |
if conn is None: |
|
255 |
ci = self.conn_known[name] |
|
8
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
256 |
conn = self._connect(ci) |
0 | 257 |
finally: |
258 |
self.lock.release() |
|
259 |
return conn |
|
260 |
||
261 |
def put_conn(self, conn, name='default'): |
|
262 |
'''Put connection back to pool. |
|
263 |
||
264 |
Name must be same as used for get_conn, |
|
265 |
otherwise things become broken. |
|
266 |
||
267 |
''' |
|
268 |
self.lock.acquire() |
|
269 |
try: |
|
270 |
if not name in self.conn_known: |
|
2 | 271 |
raise PgManagerError("Connection name '%s' not registered." % name) |
0 | 272 |
|
273 |
if len(self.conn_pool[name]) >= self.conn_known[name].keep_open: |
|
274 |
conn.close() |
|
275 |
return |
|
276 |
||
277 |
if conn.get_transaction_status() == psycopg2.extensions.TRANSACTION_STATUS_UNKNOWN: |
|
278 |
conn.close() |
|
279 |
return |
|
280 |
||
281 |
# connection returned to the pool must not be in transaction |
|
282 |
if conn.get_transaction_status() != psycopg2.extensions.TRANSACTION_STATUS_IDLE: |
|
283 |
conn.rollback() |
|
284 |
||
285 |
self.conn_pool[name].append(conn) |
|
286 |
finally: |
|
287 |
self.lock.release() |
|
288 |
||
289 |
@contextmanager |
|
290 |
def cursor(self, name='default'): |
|
291 |
'''Cursor context. |
|
292 |
||
293 |
Uses any connection of name 'name' from pool |
|
294 |
and returns cursor for that connection. |
|
295 |
||
296 |
''' |
|
297 |
conn = self.get_conn(name) |
|
298 |
||
299 |
try: |
|
300 |
curs = conn.cursor() |
|
301 |
yield curs |
|
302 |
finally: |
|
303 |
curs.close() |
|
304 |
self.put_conn(conn, name) |
|
305 |
||
306 |
def wait_for_notify(self, name='default', timeout=5): |
|
307 |
'''Wait for asynchronous notifies, return the last one. |
|
308 |
||
309 |
Returns None on timeout. |
|
310 |
||
311 |
''' |
|
312 |
conn = self.get_conn(name) |
|
313 |
||
314 |
try: |
|
315 |
# any residual notify? |
|
316 |
# then return it, that should not break anything |
|
317 |
if conn.notifies: |
|
318 |
return conn.notifies.pop() |
|
319 |
||
320 |
if select.select([conn], [], [], timeout) == ([], [], []): |
|
321 |
# timeout |
|
322 |
return None |
|
323 |
else: |
|
324 |
conn.poll() |
|
325 |
||
326 |
# return just the last notify (we do not care for older ones) |
|
327 |
if conn.notifies: |
|
328 |
return conn.notifies.pop() |
|
329 |
return None |
|
330 |
finally: |
|
331 |
# clean notifies |
|
332 |
while conn.notifies: |
|
333 |
conn.notifies.pop() |
|
334 |
self.put_conn(conn, name) |
|
335 |
||
8
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
336 |
def _connect(self, ci): |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
337 |
conn = psycopg2.connect(ci.dsn, connection_factory=Connection) |
19
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
338 |
if ci.keep_alive: |
e526ca146fa9
Add documentation for create_conn(). Fix keep_alive - do not crash if socket settings are not supported.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
339 |
conn.keep_alive() |
8
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
340 |
if not ci.isolation_level is None: |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
341 |
conn.set_isolation_level(ci.isolation_level) |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
342 |
if ci.init_statement: |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
343 |
curs = conn.cursor() |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
344 |
curs.execute(ci.init_statement) |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
345 |
curs.close() |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
346 |
return conn |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
347 |
|
0 | 348 |
def _normalize_isolation_level(self, level): |
349 |
if type(level) == str: |
|
350 |
if level.lower() == 'autocommit': |
|
351 |
return psycopg2.extensions.ISOLATION_LEVEL_AUTOCOMMIT |
|
352 |
if level.lower() == 'read_committed': |
|
353 |
return psycopg2.extensions.ISOLATION_LEVEL_READ_COMMITTED |
|
354 |
if level.lower() == 'serializable': |
|
355 |
return psycopg2.extensions.ISOLATION_LEVEL_SERIALIZABLE |
|
356 |
raise PgManagerError('Unknown isolation level name: "%s"', level) |
|
357 |
return level |
|
358 |
||
20
73f0d53fef6b
PgManager: Do not add NullHandler to logger. Rewrite get_instance(). ToolBase: fix prepare_conns() method.
Radek Brich <radek.brich@devl.cz>
parents:
19
diff
changeset
|
359 |
@classmethod |
73f0d53fef6b
PgManager: Do not add NullHandler to logger. Rewrite get_instance(). ToolBase: fix prepare_conns() method.
Radek Brich <radek.brich@devl.cz>
parents:
19
diff
changeset
|
360 |
def get_instance(cls): |
73f0d53fef6b
PgManager: Do not add NullHandler to logger. Rewrite get_instance(). ToolBase: fix prepare_conns() method.
Radek Brich <radek.brich@devl.cz>
parents:
19
diff
changeset
|
361 |
if not hasattr(cls, '_instance'): |
73f0d53fef6b
PgManager: Do not add NullHandler to logger. Rewrite get_instance(). ToolBase: fix prepare_conns() method.
Radek Brich <radek.brich@devl.cz>
parents:
19
diff
changeset
|
362 |
cls._instance = cls() |
73f0d53fef6b
PgManager: Do not add NullHandler to logger. Rewrite get_instance(). ToolBase: fix prepare_conns() method.
Radek Brich <radek.brich@devl.cz>
parents:
19
diff
changeset
|
363 |
return cls._instance |
0 | 364 |
|
365 |
||
366 |
def get_instance(): |
|
20
73f0d53fef6b
PgManager: Do not add NullHandler to logger. Rewrite get_instance(). ToolBase: fix prepare_conns() method.
Radek Brich <radek.brich@devl.cz>
parents:
19
diff
changeset
|
367 |
return PgManager.get_instance() |
0 | 368 |