Skip to content

Commit

Permalink
Add codecs for a bunch of new builtin types (#665)
Browse files Browse the repository at this point in the history
The last round of support for esoteric builtin types was quite a while
ago, so catch up.  Out of non-internal types this adds support for the
new `jsonpath` type.

Fixes: #635.
  • Loading branch information
elprans committed Dec 2, 2020
1 parent 16183aa commit b53f038
Show file tree
Hide file tree
Showing 5 changed files with 78 additions and 7 deletions.
2 changes: 1 addition & 1 deletion asyncpg/pgproto
39 changes: 34 additions & 5 deletions asyncpg/protocol/codecs/pgproto.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,10 @@ cdef init_json_codecs():
<encode_func>pgproto.jsonb_encode,
<decode_func>pgproto.jsonb_decode,
PG_FORMAT_BINARY)
register_core_codec(JSONPATHOID,
<encode_func>pgproto.jsonpath_encode,
<decode_func>pgproto.jsonpath_decode,
PG_FORMAT_BINARY)


cdef init_int_codecs():
Expand Down Expand Up @@ -229,6 +233,17 @@ cdef init_pseudo_codecs():
<decode_func>pgproto.uint4_decode,
PG_FORMAT_BINARY)

# 64-bit OID types
oid8_types = [
XID8OID,
]

for oid_type in oid8_types:
register_core_codec(oid_type,
<encode_func>pgproto.uint8_encode,
<decode_func>pgproto.uint8_decode,
PG_FORMAT_BINARY)

# reg* types -- these are really system catalog OIDs, but
# allow the catalog object name as an input. We could just
# decode these as OIDs, but handling them as text seems more
Expand All @@ -237,7 +252,7 @@ cdef init_pseudo_codecs():
reg_types = [
REGPROCOID, REGPROCEDUREOID, REGOPEROID, REGOPERATOROID,
REGCLASSOID, REGTYPEOID, REGCONFIGOID, REGDICTIONARYOID,
REGNAMESPACEOID, REGROLEOID, REFCURSOROID
REGNAMESPACEOID, REGROLEOID, REFCURSOROID, REGCOLLATIONOID,
]

for reg_type in reg_types:
Expand All @@ -256,8 +271,10 @@ cdef init_pseudo_codecs():
no_io_types = [
ANYOID, TRIGGEROID, EVENT_TRIGGEROID, LANGUAGE_HANDLEROID,
FDW_HANDLEROID, TSM_HANDLEROID, INTERNALOID, OPAQUEOID,
ANYELEMENTOID, ANYNONARRAYOID, PG_DDL_COMMANDOID,
INDEX_AM_HANDLEROID,
ANYELEMENTOID, ANYNONARRAYOID, ANYCOMPATIBLEOID,
ANYCOMPATIBLEARRAYOID, ANYCOMPATIBLENONARRAYOID,
ANYCOMPATIBLERANGEOID, PG_DDL_COMMANDOID, INDEX_AM_HANDLEROID,
TABLE_AM_HANDLEROID,
]

register_core_codec(ANYENUMOID,
Expand Down Expand Up @@ -306,6 +323,13 @@ cdef init_pseudo_codecs():
<decode_func>pgproto.text_decode,
PG_FORMAT_TEXT)

# pg_mcv_list is a special type used in pg_statistic_ext_data
# system catalog
register_core_codec(PG_MCV_LISTOID,
<encode_func>pgproto.bytea_encode,
<decode_func>pgproto.bytea_decode,
PG_FORMAT_BINARY)


cdef init_text_codecs():
textoids = [
Expand Down Expand Up @@ -337,8 +361,13 @@ cdef init_tid_codecs():

cdef init_txid_codecs():
register_core_codec(TXID_SNAPSHOTOID,
<encode_func>pgproto.txid_snapshot_encode,
<decode_func>pgproto.txid_snapshot_decode,
<encode_func>pgproto.pg_snapshot_encode,
<decode_func>pgproto.pg_snapshot_decode,
PG_FORMAT_BINARY)

register_core_codec(PG_SNAPSHOTOID,
<encode_func>pgproto.pg_snapshot_encode,
<decode_func>pgproto.pg_snapshot_decode,
PG_FORMAT_BINARY)


Expand Down
22 changes: 21 additions & 1 deletion asyncpg/protocol/pgtypes.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

DEF INVALIDOID = 0
DEF MAXBUILTINOID = 9999
DEF MAXSUPPORTEDOID = 4096
DEF MAXSUPPORTEDOID = 5080

DEF BOOLOID = 16
DEF BYTEAOID = 17
Expand All @@ -30,6 +30,7 @@ DEF JSONOID = 114
DEF XMLOID = 142
DEF PG_NODE_TREEOID = 194
DEF SMGROID = 210
DEF TABLE_AM_HANDLEROID = 269
DEF INDEX_AM_HANDLEROID = 325
DEF POINTOID = 600
DEF LSEGOID = 601
Expand Down Expand Up @@ -96,15 +97,28 @@ DEF REGDICTIONARYOID = 3769
DEF JSONBOID = 3802
DEF ANYRANGEOID = 3831
DEF EVENT_TRIGGEROID = 3838
DEF JSONPATHOID = 4072
DEF REGNAMESPACEOID = 4089
DEF REGROLEOID = 4096
DEF REGCOLLATIONOID = 4191
DEF PG_MCV_LISTOID = 5017
DEF PG_SNAPSHOTOID = 5038
DEF XID8OID = 5069
DEF ANYCOMPATIBLEOID = 5077
DEF ANYCOMPATIBLEARRAYOID = 5078
DEF ANYCOMPATIBLENONARRAYOID = 5079
DEF ANYCOMPATIBLERANGEOID = 5080

cdef ARRAY_TYPES = (_TEXTOID, _OIDOID,)

BUILTIN_TYPE_OID_MAP = {
ABSTIMEOID: 'abstime',
ACLITEMOID: 'aclitem',
ANYARRAYOID: 'anyarray',
ANYCOMPATIBLEARRAYOID: 'anycompatiblearray',
ANYCOMPATIBLENONARRAYOID: 'anycompatiblenonarray',
ANYCOMPATIBLEOID: 'anycompatible',
ANYCOMPATIBLERANGEOID: 'anycompatiblerange',
ANYELEMENTOID: 'anyelement',
ANYENUMOID: 'anyenum',
ANYNONARRAYOID: 'anynonarray',
Expand Down Expand Up @@ -135,6 +149,7 @@ BUILTIN_TYPE_OID_MAP = {
INTERVALOID: 'interval',
JSONBOID: 'jsonb',
JSONOID: 'json',
JSONPATHOID: 'jsonpath',
LANGUAGE_HANDLEROID: 'language_handler',
LINEOID: 'line',
LSEGOID: 'lseg',
Expand All @@ -149,13 +164,16 @@ BUILTIN_TYPE_OID_MAP = {
PG_DDL_COMMANDOID: 'pg_ddl_command',
PG_DEPENDENCIESOID: 'pg_dependencies',
PG_LSNOID: 'pg_lsn',
PG_MCV_LISTOID: 'pg_mcv_list',
PG_NDISTINCTOID: 'pg_ndistinct',
PG_NODE_TREEOID: 'pg_node_tree',
PG_SNAPSHOTOID: 'pg_snapshot',
POINTOID: 'point',
POLYGONOID: 'polygon',
RECORDOID: 'record',
REFCURSOROID: 'refcursor',
REGCLASSOID: 'regclass',
REGCOLLATIONOID: 'regcollation',
REGCONFIGOID: 'regconfig',
REGDICTIONARYOID: 'regdictionary',
REGNAMESPACEOID: 'regnamespace',
Expand All @@ -167,6 +185,7 @@ BUILTIN_TYPE_OID_MAP = {
REGTYPEOID: 'regtype',
RELTIMEOID: 'reltime',
SMGROID: 'smgr',
TABLE_AM_HANDLEROID: 'table_am_handler',
TEXTOID: 'text',
TIDOID: 'tid',
TIMEOID: 'time',
Expand All @@ -184,6 +203,7 @@ BUILTIN_TYPE_OID_MAP = {
VARBITOID: 'varbit',
VARCHAROID: 'varchar',
VOIDOID: 'void',
XID8OID: 'xid8',
XIDOID: 'xid',
XMLOID: 'xml',
_OIDOID: 'oid[]',
Expand Down
16 changes: 16 additions & 0 deletions tests/test_codecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,9 @@ def _system_timezone():
'[1, 2, 3, 4]',
'{"a": [1, 2], "b": 0}'
], (9, 4)),
('jsonpath', 'jsonpath', [
'$."track"."segments"[*]."HR"?(@ > 130)',
], (12, 0)),
('oid[]', 'oid[]', [
[1, 2, 3, 4],
[]
Expand Down Expand Up @@ -389,6 +392,19 @@ def _system_timezone():
('txid_snapshot', 'txid_snapshot', [
(100, 1000, (100, 200, 300, 400))
]),
('pg_snapshot', 'pg_snapshot', [
(100, 1000, (100, 200, 300, 400))
], (13, 0)),
('xid', 'xid', (
2 ** 32 - 1,
0,
1,
)),
('xid8', 'xid8', (
2 ** 64 - 1,
0,
1,
), (13, 0)),
('varbit', 'varbit', [
asyncpg.BitString('0000 0001'),
asyncpg.BitString('00010001'),
Expand Down
6 changes: 6 additions & 0 deletions tools/generate_type_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@
'real': 'float4',
'double precision': 'float8',
'timestamp with timezone': 'timestamptz',
'timestamp without timezone': 'timestamp',
'time with timezone': 'timetz',
'time without timezone': 'time',
'char': 'bpchar',
'character': 'bpchar',
'character varying': 'varchar',
'bit varying': 'varbit'
}


Expand Down

0 comments on commit b53f038

Please sign in to comment.