2010-02-09 07:58:28 +03:00
|
|
|
More advanced topics
|
|
|
|
====================
|
|
|
|
|
|
|
|
.. sectionauthor:: Daniele Varrazzo <daniele.varrazzo@gmail.com>
|
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
.. testsetup:: *
|
|
|
|
|
|
|
|
import re
|
2010-04-20 02:49:14 +04:00
|
|
|
import select
|
2010-02-13 19:06:39 +03:00
|
|
|
|
|
|
|
cur.execute("CREATE TABLE atable (apoint point)")
|
|
|
|
conn.commit()
|
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
def wait(conn):
|
|
|
|
while 1:
|
|
|
|
state = conn.poll()
|
|
|
|
if state == psycopg2.extensions.POLL_OK:
|
|
|
|
break
|
|
|
|
elif state == psycopg2.extensions.POLL_WRITE:
|
|
|
|
select.select([], [conn.fileno()], [])
|
|
|
|
elif state == psycopg2.extensions.POLL_READ:
|
|
|
|
select.select([conn.fileno()], [], [])
|
|
|
|
else:
|
|
|
|
raise psycopg2.OperationalError("poll() returned %s" % state)
|
|
|
|
|
|
|
|
aconn = psycopg2.connect(database='test', async=1)
|
|
|
|
wait(aconn)
|
|
|
|
acurs = aconn.cursor()
|
|
|
|
|
2010-02-14 07:59:40 +03:00
|
|
|
.. index::
|
|
|
|
double: Subclassing; Cursor
|
|
|
|
double: Subclassing; Connection
|
|
|
|
|
|
|
|
.. _subclassing-connection:
|
|
|
|
.. _subclassing-cursor:
|
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
Connection and cursor factories
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
Psycopg exposes two new-style classes that can be sub-classed and expanded to
|
2010-02-26 03:17:52 +03:00
|
|
|
adapt them to the needs of the programmer: `psycopg2.extensions.cursor`
|
|
|
|
and `psycopg2.extensions.connection`. The `connection` class is
|
2010-02-09 07:58:28 +03:00
|
|
|
usually sub-classed only to provide an easy way to create customized cursors
|
2010-02-26 03:17:52 +03:00
|
|
|
but other uses are possible. `cursor` is much more interesting, because
|
2010-02-09 07:58:28 +03:00
|
|
|
it is the class where query building, execution and result type-casting into
|
|
|
|
Python variables happens.
|
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
.. index::
|
|
|
|
single: Example; Cursor subclass
|
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
An example of cursor subclass performing logging is::
|
|
|
|
|
|
|
|
import psycopg2
|
|
|
|
import psycopg2.extensions
|
|
|
|
import logging
|
|
|
|
|
|
|
|
class LoggingCursor(psycopg2.extensions.cursor):
|
|
|
|
def execute(self, sql, args=None):
|
|
|
|
logger = logging.getLogger('sql_debug')
|
|
|
|
logger.info(self.mogrify(sql, args))
|
|
|
|
|
|
|
|
try:
|
|
|
|
psycopg2.extensions.cursor.execute(self, sql, args)
|
|
|
|
except Exception, exc:
|
|
|
|
logger.error("%s: %s" % (exc.__class__.__name__, exc))
|
|
|
|
raise
|
|
|
|
|
|
|
|
conn = psycopg2.connect(DSN)
|
2010-02-13 19:06:39 +03:00
|
|
|
cur = conn.cursor(cursor_factory=LoggingCursor)
|
|
|
|
cur.execute("INSERT INTO mytable VALUES (%s, %s, %s);",
|
2010-02-09 07:58:28 +03:00
|
|
|
(10, 20, 30))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. index::
|
|
|
|
single: Objects; Creating new adapters
|
|
|
|
single: Adaptation; Creating new adapters
|
|
|
|
single: Data types; Creating new adapters
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. _adapting-new-types:
|
|
|
|
|
|
|
|
Adapting new Python types to SQL syntax
|
|
|
|
---------------------------------------
|
|
|
|
|
|
|
|
Any Python class or type can be adapted to an SQL string. Adaptation mechanism
|
|
|
|
is similar to the Object Adaptation proposed in the :pep:`246` and is exposed
|
2010-02-26 03:17:52 +03:00
|
|
|
by the `psycopg2.extensions.adapt()` function.
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
The `~cursor.execute()` method adapts its arguments to the
|
|
|
|
`~psycopg2.extensions.ISQLQuote` protocol. Objects that conform to this
|
|
|
|
protocol expose a `!getquoted()` method returning the SQL representation
|
2010-02-10 07:03:30 +03:00
|
|
|
of the object as a string.
|
2010-02-09 07:58:28 +03:00
|
|
|
|
|
|
|
The easiest way to adapt an object to an SQL string is to register an adapter
|
2010-02-26 03:17:52 +03:00
|
|
|
function via the `~psycopg2.extensions.register_adapter()` function. The
|
2010-02-09 07:58:28 +03:00
|
|
|
adapter function must take the value to be adapted as argument and return a
|
2010-02-26 03:17:52 +03:00
|
|
|
conform object. A convenient object is the `~psycopg2.extensions.AsIs`
|
|
|
|
wrapper, whose `!getquoted()` result is simply the `!str()`\ ing
|
2010-02-10 07:03:30 +03:00
|
|
|
conversion of the wrapped object.
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
.. index::
|
|
|
|
single: Example; Types adaptation
|
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
Example: mapping of a `!Point` class into the |point|_ PostgreSQL
|
2010-02-13 19:06:39 +03:00
|
|
|
geometric type:
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
.. doctest::
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
>>> from psycopg2.extensions import adapt, register_adapter, AsIs
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
>>> class Point(object):
|
|
|
|
... def __init__(self, x, y):
|
|
|
|
... self.x = x
|
|
|
|
... self.y = y
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
>>> def adapt_point(point):
|
|
|
|
... return AsIs("'(%s, %s)'" % (adapt(point.x), adapt(point.y)))
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
>>> register_adapter(Point, adapt_point)
|
|
|
|
|
|
|
|
>>> cur.execute("INSERT INTO atable (apoint) VALUES (%s)",
|
|
|
|
... (Point(1.23, 4.56),))
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
.. |point| replace:: :sql:`point`
|
2010-02-10 07:03:30 +03:00
|
|
|
.. _point: http://www.postgresql.org/docs/8.4/static/datatype-geometric.html#AEN6084
|
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
The above function call results in the SQL command::
|
|
|
|
|
|
|
|
INSERT INTO atable (apoint) VALUES ((1.23, 4.56));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. index:: Type casting
|
|
|
|
|
|
|
|
.. _type-casting-from-sql-to-python:
|
|
|
|
|
2010-02-10 07:03:30 +03:00
|
|
|
Type casting of SQL types into Python objects
|
|
|
|
---------------------------------------------
|
2010-02-09 07:58:28 +03:00
|
|
|
|
|
|
|
PostgreSQL objects read from the database can be adapted to Python objects
|
|
|
|
through an user-defined adapting function. An adapter function takes two
|
2010-02-09 16:33:31 +03:00
|
|
|
arguments: the object string representation as returned by PostgreSQL and the
|
2010-02-09 07:58:28 +03:00
|
|
|
cursor currently being read, and should return a new Python object. For
|
2010-02-11 06:15:14 +03:00
|
|
|
example, the following function parses the PostgreSQL :sql:`point`
|
2010-02-26 03:17:52 +03:00
|
|
|
representation into the previously defined `!Point` class:
|
2010-02-11 06:15:14 +03:00
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
>>> def cast_point(value, cur):
|
|
|
|
... if value is None:
|
|
|
|
... return None
|
|
|
|
...
|
|
|
|
... # Convert from (f1, f2) syntax using a regular expression.
|
|
|
|
... m = re.match(r"\(([^)]+),([^)]+)\)", value)
|
|
|
|
... if m:
|
|
|
|
... return Point(float(m.group(1)), float(m.group(2)))
|
|
|
|
... else:
|
|
|
|
... raise InterfaceError("bad point representation: %r" % value)
|
2010-02-11 06:15:14 +03:00
|
|
|
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
In order to create a mapping from a PostgreSQL type (either standard or
|
|
|
|
user-defined), its OID must be known. It can be retrieved either by the second
|
2010-02-26 03:17:52 +03:00
|
|
|
column of the `cursor.description`:
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
>>> cur.execute("SELECT NULL::point")
|
2010-02-14 07:59:40 +03:00
|
|
|
>>> point_oid = cur.description[0][1]
|
|
|
|
>>> point_oid
|
|
|
|
600
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-03-03 20:43:24 +03:00
|
|
|
or by querying the system catalog for the type name and namespace (the
|
2010-02-13 19:06:39 +03:00
|
|
|
namespace for system objects is :sql:`pg_catalog`):
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
>>> cur.execute("""
|
|
|
|
... SELECT pg_type.oid
|
|
|
|
... FROM pg_type JOIN pg_namespace
|
|
|
|
... ON typnamespace = pg_namespace.oid
|
|
|
|
... WHERE typname = %(typename)s
|
|
|
|
... AND nspname = %(namespace)s""",
|
|
|
|
... {'typename': 'point', 'namespace': 'pg_catalog'})
|
|
|
|
>>> point_oid = cur.fetchone()[0]
|
2010-02-14 07:59:40 +03:00
|
|
|
>>> point_oid
|
|
|
|
600
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-03-03 20:43:24 +03:00
|
|
|
After you know the object OID, you can create and register the new type:
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
>>> POINT = psycopg2.extensions.new_type((point_oid,), "POINT", cast_point)
|
|
|
|
>>> psycopg2.extensions.register_type(POINT)
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
The `~psycopg2.extensions.new_type()` function binds the object OIDs
|
2010-02-09 07:58:28 +03:00
|
|
|
(more than one can be specified) to the adapter function.
|
2010-02-26 03:17:52 +03:00
|
|
|
`~psycopg2.extensions.register_type()` completes the spell. Conversion
|
2010-02-10 07:03:30 +03:00
|
|
|
is automatically performed when a column whose type is a registered OID is
|
2010-02-13 19:06:39 +03:00
|
|
|
read:
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
>>> cur.execute("SELECT '(10.2,20.3)'::point")
|
|
|
|
>>> point = cur.fetchone()[0]
|
2010-02-09 07:58:28 +03:00
|
|
|
>>> print type(point), point.x, point.y
|
2010-02-13 19:06:39 +03:00
|
|
|
<class 'Point'> 10.2 20.3
|
2010-02-09 07:58:28 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
2010-02-09 20:52:41 +03:00
|
|
|
.. index::
|
|
|
|
pair: Asynchronous; Notifications
|
|
|
|
pair: LISTEN; SQL command
|
|
|
|
pair: NOTIFY; SQL command
|
|
|
|
|
|
|
|
.. _async-notify:
|
|
|
|
|
|
|
|
Asynchronous notifications
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
Psycopg allows asynchronous interaction with other database sessions using the
|
|
|
|
facilities offered by PostgreSQL commands |LISTEN|_ and |NOTIFY|_. Please
|
|
|
|
refer to the PostgreSQL documentation for examples of how to use this form of
|
|
|
|
communications.
|
|
|
|
|
2010-02-26 03:17:52 +03:00
|
|
|
Notifications received are made available in the `connection.notifies`
|
2010-02-11 06:15:14 +03:00
|
|
|
list. Notifications can be sent from Python code simply using a :sql:`NOTIFY`
|
2010-02-26 03:17:52 +03:00
|
|
|
command in an `~cursor.execute()` call.
|
2010-02-09 20:52:41 +03:00
|
|
|
|
|
|
|
Because of the way sessions interact with notifications (see |NOTIFY|_
|
2010-02-11 06:15:14 +03:00
|
|
|
documentation), you should keep the connection in :ref:`autocommit
|
2010-04-20 15:30:41 +04:00
|
|
|
<autocommit>` mode if you wish to receive or send notifications in a timely
|
|
|
|
manner.
|
2010-02-09 20:52:41 +03:00
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
.. |LISTEN| replace:: :sql:`LISTEN`
|
2010-02-09 20:52:41 +03:00
|
|
|
.. _LISTEN: http://www.postgresql.org/docs/8.4/static/sql-listen.html
|
2010-02-11 06:15:14 +03:00
|
|
|
.. |NOTIFY| replace:: :sql:`NOTIFY`
|
2010-02-09 20:52:41 +03:00
|
|
|
.. _NOTIFY: http://www.postgresql.org/docs/8.4/static/sql-notify.html
|
|
|
|
|
2010-04-20 21:17:27 +04:00
|
|
|
Notification are received after every query execution. If the user is interested
|
|
|
|
in receiveing notification but not in performing any query, the
|
|
|
|
`~connection.poll()` method can be used to check for notification without
|
|
|
|
wasting resources.
|
|
|
|
|
|
|
|
A simple application could poll the connection from time to time to check if
|
|
|
|
something new has arrived. A better strategy is to use some I/O completion
|
|
|
|
function such as |select()|_ to sleep until awaken from the kernel when there is
|
|
|
|
some data to read on the connection, thereby using no CPU unless there is
|
|
|
|
something to read::
|
2010-02-09 20:52:41 +03:00
|
|
|
|
|
|
|
import select
|
|
|
|
import psycopg2
|
|
|
|
import psycopg2.extensions
|
|
|
|
|
|
|
|
conn = psycopg2.connect(DSN)
|
|
|
|
conn.set_isolation_level(psycopg2.extensions.ISOLATION_LEVEL_AUTOCOMMIT)
|
|
|
|
|
|
|
|
curs = conn.cursor()
|
|
|
|
curs.execute("LISTEN test;")
|
|
|
|
|
|
|
|
print "Waiting for 'NOTIFY test'"
|
|
|
|
while 1:
|
2010-04-20 15:30:41 +04:00
|
|
|
if select.select([conn],[],[],5) == ([],[],[]):
|
2010-02-09 20:52:41 +03:00
|
|
|
print "Timeout"
|
|
|
|
else:
|
2010-04-20 15:30:41 +04:00
|
|
|
conn.poll()
|
|
|
|
while conn.notifies:
|
|
|
|
print "Got NOTIFY:", conn.notifies.pop()
|
2010-02-09 20:52:41 +03:00
|
|
|
|
2010-02-11 06:15:14 +03:00
|
|
|
Running the script and executing the command :sql:`NOTIFY test` in a separate
|
2010-02-09 20:52:41 +03:00
|
|
|
:program:`psql` shell, the output may look similar to::
|
|
|
|
|
|
|
|
Waiting for 'NOTIFY test'
|
|
|
|
Timeout
|
|
|
|
Timeout
|
|
|
|
Got NOTIFY: (6535, 'test')
|
|
|
|
Timeout
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-02-09 07:58:28 +03:00
|
|
|
.. index::
|
2010-04-08 16:22:55 +04:00
|
|
|
double: Asynchronous; Connection
|
2010-02-10 07:03:30 +03:00
|
|
|
|
2010-04-08 16:22:55 +04:00
|
|
|
.. _async-support:
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-04-08 16:22:55 +04:00
|
|
|
Asynchronous support
|
2010-02-09 07:58:28 +03:00
|
|
|
--------------------
|
|
|
|
|
2010-04-08 16:22:55 +04:00
|
|
|
.. versionadded:: 2.2.0
|
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
Psycopg can issue asynchronous queries to a PostgreSQL database. An asynchronous
|
2010-04-20 15:30:41 +04:00
|
|
|
communication style is established passing the parameter *async*\=1 to the
|
2010-04-08 16:22:55 +04:00
|
|
|
`~psycopg2.connect()` function: the returned connection will work in
|
2010-04-20 02:49:14 +04:00
|
|
|
*asynchronous mode*.
|
2010-04-08 16:22:55 +04:00
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
In asynchronous mode, a Psycopg connection will rely on the caller to poll the
|
|
|
|
socket file descriptor, checking if it is ready to accept data or if a query
|
|
|
|
result has been transferred and is ready to be read on the client. The caller
|
|
|
|
can use the method `~connection.fileno()` to get the connection file
|
|
|
|
descriptor and `~connection.poll()` to make communication proceed according to
|
|
|
|
the current connection state.
|
2010-04-08 16:22:55 +04:00
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
The following is an example loop using methods `!fileno()` and `!poll()`
|
|
|
|
together with the Python |select()|_ function in order to carry on
|
|
|
|
asynchronous operations with Psycopg::
|
|
|
|
|
|
|
|
def wait(conn):
|
2010-04-08 16:22:55 +04:00
|
|
|
while 1:
|
2010-04-20 02:49:14 +04:00
|
|
|
state = conn.poll()
|
2010-04-08 16:22:55 +04:00
|
|
|
if state == psycopg2.extensions.POLL_OK:
|
|
|
|
break
|
|
|
|
elif state == psycopg2.extensions.POLL_WRITE:
|
2010-04-20 02:49:14 +04:00
|
|
|
select.select([], [conn.fileno()], [])
|
2010-04-08 16:22:55 +04:00
|
|
|
elif state == psycopg2.extensions.POLL_READ:
|
2010-04-20 02:49:14 +04:00
|
|
|
select.select([conn.fileno()], [], [])
|
2010-04-08 16:22:55 +04:00
|
|
|
else:
|
|
|
|
raise psycopg2.OperationalError("poll() returned %s" % state)
|
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
.. |select()| replace:: `!select()`
|
|
|
|
.. _select(): http://docs.python.org/library/select.html#select.select
|
2010-04-08 16:22:55 +04:00
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
The above loop of course would block an entire application: in a real
|
|
|
|
asynchronous framework, `!select()` would be called on many file descriptors
|
|
|
|
waiting for any of them to be ready. Nonetheless the function can be used to
|
|
|
|
connect to a PostgreSQL server only using nonblocking commands and the
|
|
|
|
connection obtained can be used to perform further nonblocking queries. After
|
|
|
|
`!poll()` has returned `~psycopg2.extensions.POLL_OK`, and thus `!wait()` has
|
|
|
|
returned, the connection can be safely used:
|
2010-04-08 16:22:55 +04:00
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
>>> aconn = psycopg2.connect(database='test', async=1)
|
|
|
|
>>> wait(aconn)
|
|
|
|
>>> acurs = aconn.cursor()
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-04-08 16:22:55 +04:00
|
|
|
Notice that there are a few other requirements to be met in order to have a
|
|
|
|
completely non-blocking connection attempt: see the libpq documentation for
|
|
|
|
|PQconnectStart|_.
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-04-08 16:22:55 +04:00
|
|
|
.. |PQconnectStart| replace:: `!PQconnectStart()`
|
|
|
|
.. _PQconnectStart: http://www.postgresql.org/docs/8.4/static/libpq-connect.html#AEN33199
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
The same loop should be also used to perform nonblocking queries: after
|
|
|
|
sending a query via `~cursor.execute()` or `~cursor.callproc()`, call
|
|
|
|
`!poll()` on the connection available from `cursor.connection` until it
|
|
|
|
returns `!POLL_OK`, at which pont the query has been completely sent to the
|
|
|
|
server and, if it produced data, the results have been transferred to the
|
|
|
|
client and available using the regular cursor methods:
|
|
|
|
|
|
|
|
>>> acurs.execute("SELECT pg_sleep(5); SELECT 42;")
|
|
|
|
>>> wait(acurs.connection)
|
|
|
|
>>> acurs.fetchone()[0]
|
|
|
|
42
|
|
|
|
|
2010-04-20 03:50:34 +04:00
|
|
|
When an asynchronous query is being executed, `connection.isexecuting()` returns
|
2010-04-08 16:22:55 +04:00
|
|
|
`True`. Two cursors can't execute concurrent queries on the same asynchronous
|
|
|
|
connection.
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
There are several limitations in using asynchronous connections: the
|
|
|
|
connection is always in :ref:`autocommit <autocommit>` mode and it is not
|
|
|
|
possible to change it using `~connection.set_isolation_level()`. So a
|
|
|
|
transaction is not implicitly started at the first query and is not possible
|
|
|
|
to use methods `~connection.commit()` and `~connection.rollback()`: you can
|
|
|
|
manually control transactions using `~cursor.execute()` to send database
|
|
|
|
commands such as :sql:`BEGIN`, :sql:`COMMIT` and :sql:`ROLLBACK`.
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-04-08 16:22:55 +04:00
|
|
|
With asynchronous connections it is also not possible to use
|
|
|
|
`~connection.set_client_encoding()`, `~cursor.executemany()`, :ref:`large
|
|
|
|
objects <large-objects>`, :ref:`named cursors <server-side-cursors>`.
|
2010-02-09 07:58:28 +03:00
|
|
|
|
2010-04-08 16:22:55 +04:00
|
|
|
:ref:`COPY commands <copy>` are not supported either in asynchronous mode, but
|
|
|
|
this will be probably implemented in a future release.
|
2010-02-09 07:58:28 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
2010-04-04 06:10:18 +04:00
|
|
|
|
|
|
|
.. index::
|
|
|
|
single: Greenlet, Coroutine, eventlet, gevent, Wait callback
|
|
|
|
|
|
|
|
.. _green-support:
|
|
|
|
|
|
|
|
Support to coroutine libraries
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
.. versionadded:: 2.2.0
|
|
|
|
|
|
|
|
Psycopg can be used together with coroutine_\-based libraries, and participate
|
|
|
|
to cooperative multithread.
|
|
|
|
|
|
|
|
Coroutine-based libraries (such as Eventlet_ or gevent_) can usually patch the
|
|
|
|
Python standard library in order to enable a coroutine switch in presence of
|
|
|
|
blocking I/O: the process is usually referred as making the system *green*, in
|
|
|
|
reference to greenlet_, the basic Python micro-thread library.
|
|
|
|
|
|
|
|
Because Psycopg is a C extension module, it is not possible for coroutine
|
|
|
|
libraries to patch it: Psycopg instead enables cooperative multithreading by
|
|
|
|
allowing the registration of a *wait callback* using the
|
|
|
|
`psycopg2.extensions.set_wait_callback()` function. When a wait callback is
|
|
|
|
registered, Psycopg will use `libpq non-blocking calls`__ instead of the regular
|
|
|
|
blocking ones, and will delegate to the callback the responsibility to wait
|
|
|
|
for available data.
|
|
|
|
|
|
|
|
This way of working is less flexible of complete asynchronous I/O, but has the
|
|
|
|
advantage of maintaining a complete |DBAPI| semantics: from the point of view
|
|
|
|
of the end user, all Psycopg functions and objects will work transparently
|
|
|
|
in the coroutine environment (the calling coroutine will be blocked while
|
|
|
|
other coroutines can be scheduled to run), allowing non modified code and
|
|
|
|
third party libraries (such as SQLAlchemy_) to be used in coroutine-based
|
|
|
|
programs.
|
|
|
|
|
|
|
|
Notice that, while I/O correctly yields control to other coroutines, each
|
|
|
|
connection has a lock allowing a single cursor at time to communicate with the
|
|
|
|
backend: such lock is not *green*, so blocking against it would block the
|
|
|
|
entire program waiting for data, not the single coroutine. Therefore,
|
|
|
|
programmers are advised to either avoid to share connections between coroutines
|
|
|
|
or to use a library-friendly lock to synchronize shares connections, e.g. for
|
|
|
|
pooling.
|
|
|
|
|
|
|
|
Coroutine libraries authors should provide a callback implementation (and
|
|
|
|
probably register it) to make Psycopg as green as they want. An example
|
|
|
|
callback (using `!select()` to block) is provided as
|
|
|
|
`psycopg2.extras.wait_select()`: it boils down to something similar to::
|
|
|
|
|
|
|
|
def wait_select(conn):
|
|
|
|
while 1:
|
|
|
|
state = conn.poll()
|
|
|
|
if state == extensions.POLL_OK:
|
|
|
|
break
|
|
|
|
elif state == extensions.POLL_READ:
|
|
|
|
select.select([conn.fileno()], [], [])
|
|
|
|
elif state == extensions.POLL_WRITE:
|
|
|
|
select.select([], [conn.fileno()], [])
|
|
|
|
else:
|
|
|
|
raise OperationalError("bad state from poll: %s" % state)
|
|
|
|
|
|
|
|
.. _coroutine: http://en.wikipedia.org/wiki/Coroutine
|
|
|
|
.. _greenlet: http://pypi.python.org/pypi/greenlet
|
|
|
|
.. _Eventlet: http://eventlet.net/
|
|
|
|
.. _gevent: http://www.gevent.org/
|
|
|
|
.. _SQLAlchemy: http://www.sqlalchemy.org/
|
|
|
|
.. __: http://www.postgresql.org/docs/8.4/static/libpq-async.html
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-02-13 19:06:39 +03:00
|
|
|
.. testcode::
|
|
|
|
:hide:
|
|
|
|
|
2010-04-20 02:49:14 +04:00
|
|
|
aconn.close()
|
2010-02-13 19:06:39 +03:00
|
|
|
conn.rollback()
|
|
|
|
cur.execute("DROP TABLE atable")
|
|
|
|
conn.commit()
|
|
|
|
cur.close()
|
|
|
|
conn.close()
|