author | Radek Brich <radek.brich@devl.cz> |
Sat, 29 Sep 2012 14:01:47 +0200 | |
changeset 50 | f71d3abbb18f |
parent 48 | b82c7c2fb5af |
child 54 | 291473ab847c |
permissions | -rw-r--r-- |
0 | 1 |
# -*- coding: utf-8 -*- |
2 |
# |
|
3 |
# PgManager - manage database connections |
|
4 |
# |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
5 |
# Requires: Python 3.2, psycopg2 |
0 | 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 |
# |
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
10 |
# Copyright (c) 2010, 2011, 2012 Radek Brich <radek.brich@devl.cz> |
0 | 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 |
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
66 |
in pool and on setting of pool_size 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 |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
73 |
from collections import OrderedDict |
0 | 74 |
import logging |
75 |
import threading |
|
24
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
76 |
import multiprocessing |
0 | 77 |
import select |
8
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
78 |
import socket |
0 | 79 |
|
80 |
import psycopg2 |
|
81 |
import psycopg2.extensions |
|
82 |
||
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
|
83 |
from psycopg2 import DatabaseError, IntegrityError, OperationalError |
0 | 84 |
|
85 |
||
26
7f219da7ab71
Add logging mechanism for notices from postgres server. Rename SQL log to "pgmanager_sql".
Radek Brich <radek.brich@devl.cz>
parents:
24
diff
changeset
|
86 |
log_sql = logging.getLogger("pgmanager_sql") |
7f219da7ab71
Add logging mechanism for notices from postgres server. Rename SQL log to "pgmanager_sql".
Radek Brich <radek.brich@devl.cz>
parents:
24
diff
changeset
|
87 |
log_notices = logging.getLogger("pgmanager_notices") |
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
|
88 |
|
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
|
89 |
|
0 | 90 |
class PgManagerError(Exception): |
91 |
||
92 |
pass |
|
93 |
||
94 |
||
95 |
class ConnectionInfo: |
|
96 |
||
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
97 |
def __init__(self, name, dsn, isolation_level=None, keep_alive=True, |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
98 |
init_statement=None, pool_size=1): |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
99 |
self.name = name # connection name is logged with SQL queries |
42
9e3775460792
PgManager: update comments.
Radek Brich <radek.brich@devl.cz>
parents:
41
diff
changeset
|
100 |
self.dsn = dsn # dsn or string with connection parameters |
0 | 101 |
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
|
102 |
self.keep_alive = keep_alive |
0 | 103 |
self.init_statement = init_statement |
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
104 |
self.pool_size = pool_size |
0 | 105 |
|
106 |
||
45 | 107 |
class RowDict: |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
108 |
"""Special read-only dictionary used for rows returned from queries. |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
109 |
|
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
110 |
Initialization is same as for dict: |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
111 |
row = RowDict([('id', 123), ('name', 'hello')]) |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
112 |
|
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
113 |
Allows key and attribute access to contained items: |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
114 |
row['id'] |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
115 |
row.id |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
116 |
|
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
117 |
Items keep order in which columns where returned from database. |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
118 |
|
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
119 |
Tuple style access is also supported: |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
120 |
row[0] |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
121 |
id, name = row |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
122 |
|
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
123 |
""" |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
124 |
|
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
125 |
def __init__(self, data): |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
126 |
self._dict = OrderedDict(data) |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
127 |
|
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
128 |
def __getitem__(self, key): |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
129 |
if isinstance(key, int): |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
130 |
return tuple(self._dict.values())[key] |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
131 |
return self._dict[key] |
0 | 132 |
|
133 |
def __getattr__(self, key): |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
134 |
try: |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
135 |
return self._dict[key] |
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
136 |
except KeyError: |
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
137 |
raise AttributeError(key) |
0 | 138 |
|
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
139 |
def __contains__(self, key): |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
140 |
return key in self._dict |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
141 |
|
48
b82c7c2fb5af
PgManager: Fix logging, log queries before executing, possible exceptions are logged after. Add tests for RowDict. Add tests.py - runs all tests.
Radek Brich <radek.brich@devl.cz>
parents:
46
diff
changeset
|
142 |
def keys(self): |
b82c7c2fb5af
PgManager: Fix logging, log queries before executing, possible exceptions are logged after. Add tests for RowDict. Add tests.py - runs all tests.
Radek Brich <radek.brich@devl.cz>
parents:
46
diff
changeset
|
143 |
return self._dict.keys() |
b82c7c2fb5af
PgManager: Fix logging, log queries before executing, possible exceptions are logged after. Add tests for RowDict. Add tests.py - runs all tests.
Radek Brich <radek.brich@devl.cz>
parents:
46
diff
changeset
|
144 |
|
0 | 145 |
|
146 |
class Cursor(psycopg2.extensions.cursor): |
|
147 |
||
148 |
def execute(self, query, args=None): |
|
48
b82c7c2fb5af
PgManager: Fix logging, log queries before executing, possible exceptions are logged after. Add tests for RowDict. Add tests.py - runs all tests.
Radek Brich <radek.brich@devl.cz>
parents:
46
diff
changeset
|
149 |
# log query before executing |
b82c7c2fb5af
PgManager: Fix logging, log queries before executing, possible exceptions are logged after. Add tests for RowDict. Add tests.py - runs all tests.
Radek Brich <radek.brich@devl.cz>
parents:
46
diff
changeset
|
150 |
self._log_query(query, args) |
0 | 151 |
try: |
152 |
return super(Cursor, self).execute(query, args) |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
153 |
except DatabaseError: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
154 |
self._log_exception() |
46 | 155 |
raise |
0 | 156 |
|
157 |
def callproc(self, procname, args=None): |
|
48
b82c7c2fb5af
PgManager: Fix logging, log queries before executing, possible exceptions are logged after. Add tests for RowDict. Add tests.py - runs all tests.
Radek Brich <radek.brich@devl.cz>
parents:
46
diff
changeset
|
158 |
# log query before executing (not query actually executed but should correspond) |
b82c7c2fb5af
PgManager: Fix logging, log queries before executing, possible exceptions are logged after. Add tests for RowDict. Add tests.py - runs all tests.
Radek Brich <radek.brich@devl.cz>
parents:
46
diff
changeset
|
159 |
self._log_query(self._build_callproc_query(procname, len(args)), args) |
0 | 160 |
try: |
161 |
return super(Cursor, self).callproc(procname, args) |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
162 |
except DatabaseError: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
163 |
self._log_exception() |
46 | 164 |
raise |
0 | 165 |
|
166 |
def row_dict(self, row, lstrip=None): |
|
167 |
adjustname = lambda a: a |
|
168 |
if lstrip: |
|
169 |
adjustname = lambda a: a.lstrip(lstrip) |
|
170 |
return RowDict(zip([adjustname(desc[0]) for desc in self.description], row)) |
|
171 |
||
172 |
def fetchone_dict(self, lstrip=None): |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
173 |
'''Return one row as OrderedDict''' |
0 | 174 |
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
|
175 |
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
|
176 |
return None |
0 | 177 |
return self.row_dict(row, lstrip) |
178 |
||
179 |
def fetchall_dict(self, lstrip=None): |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
180 |
'''Return all rows as OrderedDict''' |
0 | 181 |
rows = super(Cursor, self).fetchall() |
182 |
return [self.row_dict(row, lstrip) for row in rows] |
|
183 |
||
41
6aad5e35efe8
PgDataDiff: Fix sorting - do not adapt primary key before sort condition.
Radek Brich <radek.brich@devl.cz>
parents:
37
diff
changeset
|
184 |
def adapt(self, row): |
6aad5e35efe8
PgDataDiff: Fix sorting - do not adapt primary key before sort condition.
Radek Brich <radek.brich@devl.cz>
parents:
37
diff
changeset
|
185 |
if isinstance(row, RowDict): |
6aad5e35efe8
PgDataDiff: Fix sorting - do not adapt primary key before sort condition.
Radek Brich <radek.brich@devl.cz>
parents:
37
diff
changeset
|
186 |
# dict |
6aad5e35efe8
PgDataDiff: Fix sorting - do not adapt primary key before sort condition.
Radek Brich <radek.brich@devl.cz>
parents:
37
diff
changeset
|
187 |
adapted = RowDict() |
6aad5e35efe8
PgDataDiff: Fix sorting - do not adapt primary key before sort condition.
Radek Brich <radek.brich@devl.cz>
parents:
37
diff
changeset
|
188 |
for key in row.keys(): |
6aad5e35efe8
PgDataDiff: Fix sorting - do not adapt primary key before sort condition.
Radek Brich <radek.brich@devl.cz>
parents:
37
diff
changeset
|
189 |
adapted[key] = self.mogrify('%s', [row[key]]).decode('utf8') |
6aad5e35efe8
PgDataDiff: Fix sorting - do not adapt primary key before sort condition.
Radek Brich <radek.brich@devl.cz>
parents:
37
diff
changeset
|
190 |
else: |
6aad5e35efe8
PgDataDiff: Fix sorting - do not adapt primary key before sort condition.
Radek Brich <radek.brich@devl.cz>
parents:
37
diff
changeset
|
191 |
# list |
6aad5e35efe8
PgDataDiff: Fix sorting - do not adapt primary key before sort condition.
Radek Brich <radek.brich@devl.cz>
parents:
37
diff
changeset
|
192 |
adapted = [self.mogrify('%s', [x]).decode('utf8') for x in row] |
6aad5e35efe8
PgDataDiff: Fix sorting - do not adapt primary key before sort condition.
Radek Brich <radek.brich@devl.cz>
parents:
37
diff
changeset
|
193 |
return adapted |
6aad5e35efe8
PgDataDiff: Fix sorting - do not adapt primary key before sort condition.
Radek Brich <radek.brich@devl.cz>
parents:
37
diff
changeset
|
194 |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
195 |
def fetchone_adapted(self, lstrip=None): |
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
196 |
'''Like fetchone_dict() but values are quoted for direct inclusion in SQL query. |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
197 |
|
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
198 |
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
|
199 |
by the query. Use mogrify() for simple cases. |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
200 |
|
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
201 |
''' |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
202 |
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
|
203 |
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
|
204 |
return None |
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
205 |
return self.row_dict([self.mogrify('%s', [x]).decode('utf8') for x in row], lstrip) |
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
206 |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
207 |
def fetchall_adapted(self, lstrip=None): |
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
208 |
'''Like fetchall_dict() but values are quoted for direct inclusion in SQL query.''' |
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
209 |
rows = super(Cursor, self).fetchall() |
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
26
diff
changeset
|
210 |
return [self.row_dict([self.mogrify('%s', [x]).decode('utf8') for x in row], lstrip) for row in rows] |
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
4
diff
changeset
|
211 |
|
46 | 212 |
def _log_query(self, query='?', args=None): |
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
213 |
name = self.connection.name if hasattr(self.connection, 'name') else '-' |
46 | 214 |
query = self.query or self.mogrify(query, args) |
215 |
log_sql.info('[%s] %s' % (name, query.decode('utf8'))) |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
216 |
|
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
217 |
def _log_exception(self): |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
218 |
name = self.connection.name if hasattr(self.connection, 'name') else '-' |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
219 |
log_sql.exception('[%s] exception:' % (name,)) |
0 | 220 |
|
46 | 221 |
def _build_callproc_query(self, procname, num_args): |
48
b82c7c2fb5af
PgManager: Fix logging, log queries before executing, possible exceptions are logged after. Add tests for RowDict. Add tests.py - runs all tests.
Radek Brich <radek.brich@devl.cz>
parents:
46
diff
changeset
|
222 |
return 'SELECT * FROM %s(%s)' % (procname, ', '.join(['%s'] * num_args)) |
46 | 223 |
|
224 |
||
0 | 225 |
class Connection(psycopg2.extensions.connection): |
226 |
||
227 |
def cursor(self, name=None): |
|
228 |
if name is None: |
|
229 |
return super(Connection, self).cursor(cursor_factory=Cursor) |
|
230 |
else: |
|
231 |
return super(Connection, self).cursor(name, cursor_factory=Cursor) |
|
232 |
||
8
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
233 |
def keep_alive(self): |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
234 |
'''Set socket to keepalive mode. Must be called before any query.''' |
37 | 235 |
sock = socket.fromfd(self.fileno(), socket.AF_INET, socket.SOCK_STREAM) |
8
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
236 |
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
|
237 |
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
|
238 |
# 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
|
239 |
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
|
240 |
# 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
|
241 |
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
|
242 |
# 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
|
243 |
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
|
244 |
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
|
245 |
pass |
37 | 246 |
# close duplicated fd, options set for socket stays |
247 |
sock.close() |
|
8
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
248 |
|
0 | 249 |
|
250 |
class PgManager: |
|
251 |
||
252 |
def __init__(self): |
|
253 |
self.conn_known = {} # available connections |
|
24
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
254 |
self.conn_pool = {} # active connetions |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
255 |
self.lock = threading.Lock() # mutual exclusion for threads |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
256 |
self.pid = multiprocessing.current_process().pid # forking check |
0 | 257 |
|
258 |
def __del__(self): |
|
259 |
for conn in tuple(self.conn_known.keys()): |
|
260 |
self.destroy_conn(conn) |
|
261 |
||
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
262 |
def create_conn(self, name='default', isolation_level=None, keep_alive=True, init_statement=None, |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
263 |
pool_size=1, dsn=None, **kwargs): |
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
|
264 |
'''Create named connection. |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
265 |
|
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
|
266 |
name -- name for connection (default is "default") |
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
267 |
pool_size -- how many connections will be kept open in pool |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
268 |
(more connections will still be created but they will be closed by put_conn) |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
269 |
None - disable pool, always return same 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
|
270 |
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
|
271 |
keep_alive -- set socket to keepalive mode |
42
9e3775460792
PgManager: update comments.
Radek Brich <radek.brich@devl.cz>
parents:
41
diff
changeset
|
272 |
dsn -- connection string (parameters or data source name) |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
273 |
|
42
9e3775460792
PgManager: update comments.
Radek Brich <radek.brich@devl.cz>
parents:
41
diff
changeset
|
274 |
Other keyword args are used as connection parameters. |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
275 |
|
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
|
276 |
''' |
0 | 277 |
if name in self.conn_known: |
2 | 278 |
raise PgManagerError('Connection name "%s" already registered.' % name) |
0 | 279 |
|
280 |
if dsn is None: |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
281 |
dsn = ' '.join([x[0]+'='+str(x[1]) for x in kwargs.items() if x[1] is not None]) |
0 | 282 |
|
283 |
isolation_level = self._normalize_isolation_level(isolation_level) |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
284 |
ci = ConnectionInfo(name, dsn, isolation_level, keep_alive, init_statement, pool_size) |
0 | 285 |
|
286 |
self.conn_known[name] = ci |
|
287 |
self.conn_pool[name] = [] |
|
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
288 |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
289 |
def create_conn_listen(self, name, channel, dsn=None, copy_dsn=None, **kwargs): |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
290 |
'''Create connection listening for notifies. |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
291 |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
292 |
Disables pool. If you want to use pool, create other connection for that. |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
293 |
This connection can be used as usual: conn.cursor() etc. |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
294 |
Don't use PgManager's cursor() and put_conn(). |
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
295 |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
296 |
name -- name for connection |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
297 |
channel -- listen on this channel |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
298 |
copy_dsn -- specify name of other connection and its dsn will be used |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
299 |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
300 |
Other parameters forwarded to create_conn(). |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
301 |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
302 |
''' |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
303 |
if dsn is None and copy_dsn: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
304 |
try: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
305 |
dsn = self.conn_known[copy_dsn].dsn |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
306 |
except KeyError: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
307 |
raise PgManagerError("Connection name '%s' not registered." % copy_dsn) |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
308 |
listen_query = "LISTEN " + channel |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
309 |
self.create_conn(name=name, pool_size=None, isolation_level='autocommit', init_statement=listen_query, |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
310 |
dsn=dsn, **kwargs) |
0 | 311 |
|
312 |
def close_conn(self, name='default'): |
|
313 |
'''Close all connections of given name. |
|
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
314 |
|
0 | 315 |
Connection credentials are still saved. |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
316 |
|
0 | 317 |
''' |
318 |
while len(self.conn_pool[name]): |
|
319 |
conn = self.conn_pool[name].pop() |
|
320 |
conn.close() |
|
321 |
||
322 |
def destroy_conn(self, name='default'): |
|
323 |
'''Destroy connection. |
|
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
324 |
|
0 | 325 |
Counterpart of create_conn. |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
326 |
|
0 | 327 |
''' |
328 |
if not name in self.conn_known: |
|
2 | 329 |
raise PgManagerError('Connection name "%s" not registered.' % name) |
0 | 330 |
|
331 |
self.close_conn(name) |
|
332 |
||
333 |
del self.conn_known[name] |
|
334 |
del self.conn_pool[name] |
|
335 |
||
336 |
def get_conn(self, name='default'): |
|
337 |
'''Get connection of name 'name' from pool.''' |
|
24
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
338 |
self._check_fork() |
0 | 339 |
self.lock.acquire() |
340 |
try: |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
341 |
try: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
342 |
ci = self.conn_known[name] |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
343 |
except KeyError: |
2 | 344 |
raise PgManagerError("Connection name '%s' not registered." % name) |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
345 |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
346 |
# no pool, just one static connection |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
347 |
if ci.pool_size is None: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
348 |
# check for existing connection |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
349 |
try: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
350 |
conn = self.conn_pool[name][0] |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
351 |
if conn.closed: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
352 |
conn = None |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
353 |
except IndexError: |
0 | 354 |
conn = None |
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
355 |
self.conn_pool[name].append(conn) |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
356 |
# if no existing connection is valid, connect new one and save it |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
357 |
if conn is None: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
358 |
conn = self._connect(ci) |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
359 |
self.conn_pool[name][0] = conn |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
360 |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
361 |
# connection from pool |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
362 |
else: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
363 |
conn = None |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
364 |
while len(self.conn_pool[name]) and conn is None: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
365 |
conn = self.conn_pool[name].pop() |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
366 |
if conn.closed: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
367 |
conn = None |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
368 |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
369 |
if conn is None: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
370 |
conn = self._connect(ci) |
0 | 371 |
finally: |
372 |
self.lock.release() |
|
373 |
return conn |
|
374 |
||
375 |
def put_conn(self, conn, name='default'): |
|
376 |
'''Put connection back to pool. |
|
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
377 |
|
0 | 378 |
Name must be same as used for get_conn, |
379 |
otherwise things become broken. |
|
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
380 |
|
0 | 381 |
''' |
382 |
self.lock.acquire() |
|
383 |
try: |
|
384 |
if not name in self.conn_known: |
|
2 | 385 |
raise PgManagerError("Connection name '%s' not registered." % name) |
0 | 386 |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
387 |
if len(self.conn_pool[name]) >= self.conn_known[name].pool_size: |
0 | 388 |
conn.close() |
389 |
return |
|
390 |
||
391 |
if conn.get_transaction_status() == psycopg2.extensions.TRANSACTION_STATUS_UNKNOWN: |
|
392 |
conn.close() |
|
393 |
return |
|
394 |
||
395 |
# connection returned to the pool must not be in transaction |
|
396 |
if conn.get_transaction_status() != psycopg2.extensions.TRANSACTION_STATUS_IDLE: |
|
33
bd0beda49bcb
PgManager: log connection name with queries. BatchUpdateTool: handle some possible exceptions and try reconnect to database.
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
397 |
try: |
bd0beda49bcb
PgManager: log connection name with queries. BatchUpdateTool: handle some possible exceptions and try reconnect to database.
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
398 |
conn.rollback() |
bd0beda49bcb
PgManager: log connection name with queries. BatchUpdateTool: handle some possible exceptions and try reconnect to database.
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
399 |
except OperationalError: |
bd0beda49bcb
PgManager: log connection name with queries. BatchUpdateTool: handle some possible exceptions and try reconnect to database.
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
400 |
if not conn.closed: |
bd0beda49bcb
PgManager: log connection name with queries. BatchUpdateTool: handle some possible exceptions and try reconnect to database.
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
401 |
conn.close() |
bd0beda49bcb
PgManager: log connection name with queries. BatchUpdateTool: handle some possible exceptions and try reconnect to database.
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
402 |
return |
0 | 403 |
|
404 |
self.conn_pool[name].append(conn) |
|
405 |
finally: |
|
406 |
self.lock.release() |
|
407 |
||
408 |
@contextmanager |
|
409 |
def cursor(self, name='default'): |
|
410 |
'''Cursor context. |
|
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
411 |
|
0 | 412 |
Uses any connection of name 'name' from pool |
413 |
and returns cursor for that connection. |
|
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
414 |
|
0 | 415 |
''' |
416 |
conn = self.get_conn(name) |
|
417 |
||
418 |
try: |
|
419 |
curs = conn.cursor() |
|
420 |
yield curs |
|
421 |
finally: |
|
422 |
curs.close() |
|
26
7f219da7ab71
Add logging mechanism for notices from postgres server. Rename SQL log to "pgmanager_sql".
Radek Brich <radek.brich@devl.cz>
parents:
24
diff
changeset
|
423 |
self.log_notices(conn) |
0 | 424 |
self.put_conn(conn, name) |
425 |
||
26
7f219da7ab71
Add logging mechanism for notices from postgres server. Rename SQL log to "pgmanager_sql".
Radek Brich <radek.brich@devl.cz>
parents:
24
diff
changeset
|
426 |
def log_notices(self, conn): |
7f219da7ab71
Add logging mechanism for notices from postgres server. Rename SQL log to "pgmanager_sql".
Radek Brich <radek.brich@devl.cz>
parents:
24
diff
changeset
|
427 |
for notice in conn.notices: |
7f219da7ab71
Add logging mechanism for notices from postgres server. Rename SQL log to "pgmanager_sql".
Radek Brich <radek.brich@devl.cz>
parents:
24
diff
changeset
|
428 |
log_notices.info(notice.rstrip()) |
7f219da7ab71
Add logging mechanism for notices from postgres server. Rename SQL log to "pgmanager_sql".
Radek Brich <radek.brich@devl.cz>
parents:
24
diff
changeset
|
429 |
conn.notices[:] = [] |
7f219da7ab71
Add logging mechanism for notices from postgres server. Rename SQL log to "pgmanager_sql".
Radek Brich <radek.brich@devl.cz>
parents:
24
diff
changeset
|
430 |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
431 |
def wait_for_notify(self, name='default', timeout=5.0): |
0 | 432 |
'''Wait for asynchronous notifies, return the last one. |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
433 |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
434 |
name -- name of connection, must be created using create_conn_listen() |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
435 |
timeout -- in seconds, floating point (None - wait forever) |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
436 |
|
0 | 437 |
Returns None on timeout. |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
438 |
|
0 | 439 |
''' |
440 |
conn = self.get_conn(name) |
|
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
441 |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
442 |
# return any notifies on stack |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
443 |
if conn.notifies: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
444 |
return conn.notifies.pop() |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
445 |
|
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
446 |
if select.select([conn], [], [], timeout) == ([], [], []): |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
447 |
# timeout |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
448 |
return None |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
449 |
else: |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
450 |
conn.poll() |
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
451 |
|
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
452 |
# return just the last notify (we do not care for older ones) |
0 | 453 |
if conn.notifies: |
454 |
return conn.notifies.pop() |
|
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
455 |
return None |
0 | 456 |
|
8
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
457 |
def _connect(self, ci): |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
458 |
conn = psycopg2.connect(ci.dsn, connection_factory=Connection) |
36
e67101c22e83
pgmanager: Add create_conn_listen() which should be used with wait_for_notify. Update wait_for_notify() to not use put_conn(). Add name to ConnectionInfo. Log queries before they are called. Log exceptions. Add notifyexample.
Radek Brich <radek.brich@devl.cz>
parents:
33
diff
changeset
|
459 |
conn.name = ci.name |
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
|
460 |
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
|
461 |
conn.keep_alive() |
8
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
462 |
if not ci.isolation_level is None: |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
463 |
conn.set_isolation_level(ci.isolation_level) |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
464 |
if ci.init_statement: |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
465 |
curs = conn.cursor() |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
466 |
curs.execute(ci.init_statement) |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
467 |
curs.close() |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
468 |
return conn |
2911935c524d
pgmanager: Add keep_alive support.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
469 |
|
0 | 470 |
def _normalize_isolation_level(self, level): |
471 |
if type(level) == str: |
|
472 |
if level.lower() == 'autocommit': |
|
473 |
return psycopg2.extensions.ISOLATION_LEVEL_AUTOCOMMIT |
|
474 |
if level.lower() == 'read_committed': |
|
475 |
return psycopg2.extensions.ISOLATION_LEVEL_READ_COMMITTED |
|
476 |
if level.lower() == 'serializable': |
|
477 |
return psycopg2.extensions.ISOLATION_LEVEL_SERIALIZABLE |
|
478 |
raise PgManagerError('Unknown isolation level name: "%s"', level) |
|
479 |
return level |
|
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
480 |
|
24
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
481 |
def _check_fork(self): |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
482 |
'''Check if process was forked (PID has changed). |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
483 |
|
24
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
484 |
If it was, clean parent's connections. |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
485 |
New connections are created for children. |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
486 |
Known connection credentials are inherited, but not shared. |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
487 |
|
24
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
488 |
''' |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
489 |
if self.pid == multiprocessing.current_process().pid: |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
490 |
# PID has not changed |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
491 |
return |
43
a921669e913a
PgManager: rewrite RowDict class.
Radek Brich <radek.brich@devl.cz>
parents:
42
diff
changeset
|
492 |
|
24
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
493 |
# update saved PID |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
494 |
self.pid = multiprocessing.current_process().pid |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
495 |
# reinitialize lock |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
496 |
self.lock = threading.Lock() |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
497 |
# clean parent's connections |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
498 |
for name in self.conn_pool: |
5664afa530e5
PgManager: Add partial support for multiprocessing.
Radek Brich <radek.brich@devl.cz>
parents:
23
diff
changeset
|
499 |
self.conn_pool[name] = [] |
0 | 500 |
|
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
|
501 |
@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
|
502 |
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
|
503 |
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
|
504 |
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
|
505 |
return cls._instance |
0 | 506 |
|
507 |
||
508 |
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
|
509 |
return PgManager.get_instance() |
0 | 510 |