Added oid parameter to register_hstore()

The parameter is mostly useful with async connections that would need a
different protocol to be queried.

Issue reported by Jan "the Asynchronous".
This commit is contained in:
Daniele Varrazzo 2011-02-21 00:58:52 +00:00
parent beffb02d56
commit 143dc2e911
2 changed files with 51 additions and 17 deletions

View File

@ -696,30 +696,44 @@ WHERE typname = 'hstore' and nspname = 'public';
return oids return oids
def register_hstore(conn_or_curs, globally=False, unicode=False): def register_hstore(conn_or_curs, globally=False, unicode=False, oid=None):
"""Register adapter and typecaster for `!dict`\-\ |hstore| conversions. """Register adapter and typecaster for `!dict`\-\ |hstore| conversions.
The function must receive a connection or cursor as the |hstore| oid is :param conn_or_curs: a connection or cursor: the typecaster will be
different in each database. The typecaster will normally be registered registered only on this object unless *globally* is set to `!True`
only on the connection or cursor passed as argument. If your application :param globally: register the adapter globally not only on *conn_or_curs*
uses a single database you can pass *globally*\=True to have the typecaster :param unicode: if `!True`, keys and values returned from the database
registered on all the connections. will be `!unicode` instead of `!str`. The option is not available on
Python 3
:param oid: the OID of the |hstore| type if known. If not, it will be
queried on *conn_or_curs*
On Python 2, by default the returned dicts will have `!str` objects as keys and values: The connection or cursor passed to the function will be used to query the
use *unicode*\=True to return `!unicode` objects instead. When adapting a database and look for the OID of the |hstore| type (which may be different
dictionary both `!str` and `!unicode` keys and values are handled (the across databases). If querying is not desirable (e.g. with
`unicode` values will be converted according to the current :ref:`asynchronous connections <async-support>`) you may specify it in the
`~connection.encoding`). The option is not available on Python 3. *oid* parameter (it can be found using a query such as :sql:`SELECT
'hstore'::regtype::oid;`).
Note that, when passing a dictionary from Python to the database, both
strings and unicode keys and values are supported. Dictionaries returned
from the database have keys/values according to the *unicode* parameter.
The |hstore| contrib module must be already installed in the database The |hstore| contrib module must be already installed in the database
(executing the ``hstore.sql`` script in your ``contrib`` directory). (executing the ``hstore.sql`` script in your ``contrib`` directory).
Raise `~psycopg2.ProgrammingError` if the type is not found. Raise `~psycopg2.ProgrammingError` if the type is not found.
.. versionchanged:: 2.4
added the *oid* parameter.
""" """
oids = HstoreAdapter.get_oids(conn_or_curs) if oid is None:
if oids is None: oid = HstoreAdapter.get_oids(conn_or_curs)
raise psycopg2.ProgrammingError( if oid is None:
"hstore type not found in the database. " raise psycopg2.ProgrammingError(
"please install it from your 'contrib/hstore.sql' file") "hstore type not found in the database. "
"please install it from your 'contrib/hstore.sql' file")
else:
oid = oid[0] # for the moment we don't have a HSTOREARRAY
# create and register the typecaster # create and register the typecaster
if sys.version_info[0] < 3 and unicode: if sys.version_info[0] < 3 and unicode:
@ -727,7 +741,7 @@ def register_hstore(conn_or_curs, globally=False, unicode=False):
else: else:
cast = HstoreAdapter.parse cast = HstoreAdapter.parse
HSTORE = _ext.new_type((oids[0],), "HSTORE", cast) HSTORE = _ext.new_type((oid,), "HSTORE", cast)
_ext.register_type(HSTORE, not globally and conn_or_curs or None) _ext.register_type(HSTORE, not globally and conn_or_curs or None)
_ext.register_adapter(dict, HstoreAdapter) _ext.register_adapter(dict, HstoreAdapter)

View File

@ -337,6 +337,26 @@ class HstoreTestCase(unittest.TestCase):
ok({u''.join(ab): u''.join(ab)}) ok({u''.join(ab): u''.join(ab)})
ok(dict(zip(ab, ab))) ok(dict(zip(ab, ab)))
@skip_if_no_hstore
def test_oid(self):
cur = self.conn.cursor()
cur.execute("select 'hstore'::regtype::oid")
oid = cur.fetchone()[0]
# Note: None as conn_or_cursor is just for testing: not public
# interface and it may break in future.
from psycopg2.extras import register_hstore
register_hstore(None, globally=True, oid=oid)
try:
cur.execute("select null::hstore, ''::hstore, 'a => b'::hstore")
t = cur.fetchone()
self.assert_(t[0] is None)
self.assertEqual(t[1], {})
self.assertEqual(t[2], {'a': 'b'})
finally:
psycopg2.extensions.string_types.pop(oid)
def skip_if_no_composite(f): def skip_if_no_composite(f):
def skip_if_no_composite_(self): def skip_if_no_composite_(self):