More advanced topics ==================== .. sectionauthor:: Daniele Varrazzo .. testsetup:: * import re cur.execute("CREATE TABLE atable (apoint point)") conn.commit() .. index:: double: Subclassing; Cursor double: Subclassing; Connection .. _subclassing-connection: .. _subclassing-cursor: Connection and cursor factories ------------------------------- Psycopg exposes two new-style classes that can be sub-classed and expanded to adapt them to the needs of the programmer: :class:`psycopg2.extensions.cursor` and :class:`psycopg2.extensions.connection`. The :class:`connection` class is usually sub-classed only to provide an easy way to create customized cursors but other uses are possible. :class:`cursor` is much more interesting, because it is the class where query building, execution and result type-casting into Python variables happens. .. index:: single: Example; Cursor subclass 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) cur = conn.cursor(cursor_factory=LoggingCursor) cur.execute("INSERT INTO mytable VALUES (%s, %s, %s);", (10, 20, 30)) .. index:: single: Objects; Creating new adapters single: Adaptation; Creating new adapters single: Data types; Creating new adapters .. _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 by the :func:`psycopg2.extensions.adapt` function. The :meth:`~cursor.execute` method adapts its arguments to the :class:`~psycopg2.extensions.ISQLQuote` protocol. Objects that conform to this protocol expose a :meth:`!getquoted` method returning the SQL representation of the object as a string. The easiest way to adapt an object to an SQL string is to register an adapter function via the :func:`~psycopg2.extensions.register_adapter` function. The adapter function must take the value to be adapted as argument and return a conform object. A convenient object is the :class:`~psycopg2.extensions.AsIs` wrapper, whose :meth:`!getquoted` result is simply the :meth:`!str`\ ing conversion of the wrapped object. .. index:: single: Example; Types adaptation Example: mapping of a :class:`!Point` class into the |point|_ PostgreSQL geometric type: .. doctest:: >>> from psycopg2.extensions import adapt, register_adapter, AsIs >>> class Point(object): ... def __init__(self, x, y): ... self.x = x ... self.y = y >>> def adapt_point(point): ... return AsIs("'(%s, %s)'" % (adapt(point.x), adapt(point.y))) >>> register_adapter(Point, adapt_point) >>> cur.execute("INSERT INTO atable (apoint) VALUES (%s)", ... (Point(1.23, 4.56),)) .. |point| replace:: :sql:`point` .. _point: http://www.postgresql.org/docs/8.4/static/datatype-geometric.html#AEN6084 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: Type casting of SQL types into Python objects --------------------------------------------- PostgreSQL objects read from the database can be adapted to Python objects through an user-defined adapting function. An adapter function takes two arguments: the object string representation as returned by PostgreSQL and the cursor currently being read, and should return a new Python object. For example, the following function parses the PostgreSQL :sql:`point` representation into the previously defined :class:`!Point` class: >>> 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) 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 column of the :attr:`cursor.description`: >>> cur.execute("SELECT NULL::point") >>> point_oid = cur.description[0][1] >>> point_oid 600 or by querying the system catalogs for the type name and namespace (the namespace for system objects is :sql:`pg_catalog`): >>> 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] >>> point_oid 600 After you know the object OID, you must can and register the new type: >>> POINT = psycopg2.extensions.new_type((point_oid,), "POINT", cast_point) >>> psycopg2.extensions.register_type(POINT) The :func:`~psycopg2.extensions.new_type` function binds the object OIDs (more than one can be specified) to the adapter function. :func:`~psycopg2.extensions.register_type` completes the spell. Conversion is automatically performed when a column whose type is a registered OID is read: >>> cur.execute("SELECT '(10.2,20.3)'::point") >>> point = cur.fetchone()[0] >>> print type(point), point.x, point.y 10.2 20.3 .. 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. Notifications received are made available in the :attr:`connection.notifies` list. Notifications can be sent from Python code simply using a :sql:`NOTIFY` command in an :meth:`~cursor.execute` call. Because of the way sessions interact with notifications (see |NOTIFY|_ documentation), you should keep the connection in :ref:`autocommit ` mode while sending and receiveng notification. .. |LISTEN| replace:: :sql:`LISTEN` .. _LISTEN: http://www.postgresql.org/docs/8.4/static/sql-listen.html .. |NOTIFY| replace:: :sql:`NOTIFY` .. _NOTIFY: http://www.postgresql.org/docs/8.4/static/sql-notify.html .. index:: single: Example; Asynchronous notification Example:: import sys 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: if select.select([curs],[],[],5)==([],[],[]): print "Timeout" else: if curs.isready(): print "Got NOTIFY:", curs.connection.notifies.pop() Running the script and executing the command :sql:`NOTIFY test` in a separate :program:`psql` shell, the output may look similar to:: Waiting for 'NOTIFY test' Timeout Timeout Got NOTIFY: (6535, 'test') Timeout ... .. index:: double: Asynchronous; Query .. _asynchronous-queries: Asynchronous queries -------------------- .. warning:: Psycopg support for asynchronous queries is still experimental and the informations reported here may be out of date. Discussion, testing and suggestions are welcome. Program code can initiate an asynchronous query by passing an ``async=1`` flag to the :meth:`~cursor.execute` or :meth:`~cursor.callproc` cursor methods. A very simple example, from the connection to the query:: conn = psycopg2.connect(database='test') curs = conn.cursor() curs.execute("SELECT * from test WHERE fielda > %s", (1971,), async=1) From then on any query on other cursors derived from the same connection is doomed to fail (and raise an exception) until the original cursor (the one executing the query) complete the asynchronous operation. This can happen in a number of different ways: 1) one of the :meth:`!fetch*` methods is called, effectively blocking until data has been sent from the backend to the client, terminating the query. 2) :meth:`connection.cancel` is called. This method tries to abort the current query and will block until the query is aborted or fully executed. The return value is ``True`` if the query was successfully aborted or ``False`` if it was executed. Query result are discarded in both cases. 3) :meth:`~cursor.execute` is called again on the same cursor (:meth:`!execute` on a different cursor will simply raise an exception). This waits for the complete execution of the current query, discard any data and execute the new one. Note that calling :meth:`!execute` two times in a row will not abort the former query and will temporarily go to synchronous mode until the first of the two queries is executed. Cursors now have some extra methods that make them useful during asynchronous queries: :meth:`~cursor.fileno` Returns the file descriptor associated with the current connection and make possible to use a cursor in a context where a file object would be expected (like in a :func:`select` call). :meth:`~cursor.isready` Returns ``False`` if the backend is still processing the query or ``True`` if data is ready to be fetched (by one of the :meth:`!fetch*` methods). .. index:: single: Example; Asynchronous query A code snippet that shows how to use the cursor object in a :func:`!select` call:: import psycopg2 import select conn = psycopg2.connect(database='test') curs = conn.cursor() curs.execute("SELECT * from test WHERE fielda > %s", (1971,), async=1) # wait for input with a maximum timeout of 5 seconds query_ended = False while not query_ended: rread, rwrite, rspec = select([curs, another_file], [], [], 5) if curs.isready(): query_ended = True # manage input from other sources like other_file, etc. print "Query Results:" for row in curs: print row .. testcode:: :hide: conn.rollback() cur.execute("DROP TABLE atable") conn.commit() cur.close() conn.close()