Skip to content

Commit 0ceca4e

Browse files
committed
refactor(c): mor compact guard for unsupported libpq versions
1 parent a7f2802 commit 0ceca4e

File tree

1 file changed

+17
-56
lines changed

1 file changed

+17
-56
lines changed

psycopg_c/psycopg_c/pq/pgconn.pyx

+17-56
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ from psycopg.pq import Format as PqFormat, Trace
2828
from psycopg.pq.misc import PGnotify, connection_summary
2929
from psycopg_c.pq cimport PQBuffer
3030

31+
cdef object _check_supported(fname, int pgversion):
32+
if libpq.PG_VERSION_NUM < pgversion:
33+
raise e.NotSupportedError(
34+
f"{fname} requires libpq from PostgreSQL {pgversion // 10000} on the"
35+
f" client; version {libpq.PG_VERSION_NUM // 10000} available instead"
36+
)
3137

3238
cdef class PGconn:
3339
@staticmethod
@@ -128,12 +134,7 @@ cdef class PGconn:
128134

129135
@property
130136
def hostaddr(self) -> bytes:
131-
if libpq.PG_VERSION_NUM < 120000:
132-
raise e.NotSupportedError(
133-
f"PQhostaddr requires libpq from PostgreSQL 12,"
134-
f" {libpq.PG_VERSION_NUM} available instead"
135-
)
136-
137+
_check_supported("PQhostaddr", 120000)
137138
_ensure_pgconn(self)
138139
cdef char *rv = libpq.PQhostaddr(self._pgconn_ptr)
139140
assert rv is not NULL
@@ -423,11 +424,7 @@ cdef class PGconn:
423424
)
424425

425426
def close_prepared(self, const char *name) -> PGresult:
426-
if libpq.PG_VERSION_NUM < 170000:
427-
raise e.NotSupportedError(
428-
f"PQclosePrepared requires libpq from PostgreSQL 17,"
429-
f" {libpq.PG_VERSION_NUM} available instead"
430-
)
427+
_check_supported("PQclosePrepared", 170000)
431428
_ensure_pgconn(self)
432429
cdef libpq.PGresult *rv = libpq.PQclosePrepared(self._pgconn_ptr, name)
433430
if rv is NULL:
@@ -437,11 +434,7 @@ cdef class PGconn:
437434
return PGresult._from_ptr(rv)
438435

439436
def send_close_prepared(self, const char *name) -> None:
440-
if libpq.PG_VERSION_NUM < 170000:
441-
raise e.NotSupportedError(
442-
f"PQsendClosePrepared requires libpq from PostgreSQL 17,"
443-
f" {libpq.PG_VERSION_NUM} available instead"
444-
)
437+
_check_supported("PQsendClosePrepared", 170000)
445438
_ensure_pgconn(self)
446439
cdef int rv = libpq.PQsendClosePrepared(self._pgconn_ptr, name)
447440
if not rv:
@@ -450,11 +443,7 @@ cdef class PGconn:
450443
)
451444

452445
def close_portal(self, const char *name) -> PGresult:
453-
if libpq.PG_VERSION_NUM < 170000:
454-
raise e.NotSupportedError(
455-
f"PQclosePortal requires libpq from PostgreSQL 17,"
456-
f" {libpq.PG_VERSION_NUM} available instead"
457-
)
446+
_check_supported("PQclosePortal", 170000)
458447
_ensure_pgconn(self)
459448
cdef libpq.PGresult *rv = libpq.PQclosePortal(self._pgconn_ptr, name)
460449
if rv is NULL:
@@ -464,11 +453,7 @@ cdef class PGconn:
464453
return PGresult._from_ptr(rv)
465454

466455
def send_close_portal(self, const char *name) -> None:
467-
if libpq.PG_VERSION_NUM < 170000:
468-
raise e.NotSupportedError(
469-
f"PQsendClosePortal requires libpq from PostgreSQL 17,"
470-
f" {libpq.PG_VERSION_NUM} available instead"
471-
)
456+
_check_supported("PQsendClosePortal", 170000)
472457
_ensure_pgconn(self)
473458
cdef int rv = libpq.PQsendClosePortal(self._pgconn_ptr, name)
474459
if not rv:
@@ -571,11 +556,7 @@ cdef class PGconn:
571556
libpq.PQtrace(self._pgconn_ptr, stream)
572557

573558
def set_trace_flags(self, flags: Trace) -> None:
574-
if libpq.PG_VERSION_NUM < 140000:
575-
raise e.NotSupportedError(
576-
f"PQsetTraceFlags requires libpq from PostgreSQL 14,"
577-
f" {libpq.PG_VERSION_NUM} available instead"
578-
)
559+
_check_supported("PQsetTraceFlags", 140000)
579560
libpq.PQsetTraceFlags(self._pgconn_ptr, flags)
580561

581562
def untrace(self) -> None:
@@ -584,11 +565,7 @@ cdef class PGconn:
584565
def encrypt_password(
585566
self, const char *passwd, const char *user, algorithm = None
586567
) -> bytes:
587-
if libpq.PG_VERSION_NUM < 100000:
588-
raise e.NotSupportedError(
589-
f"PQencryptPasswordConn requires libpq from PostgreSQL 10,"
590-
f" {libpq.PG_VERSION_NUM} available instead"
591-
)
568+
_check_supported("PQencryptPasswordConn", 100000)
592569

593570
cdef char *out
594571
cdef const char *calgo = NULL
@@ -628,11 +605,7 @@ cdef class PGconn:
628605
:raises ~e.OperationalError: in case of failure to enter the pipeline
629606
mode.
630607
"""
631-
if libpq.PG_VERSION_NUM < 140000:
632-
raise e.NotSupportedError(
633-
f"PQenterPipelineMode requires libpq from PostgreSQL 14,"
634-
f" {libpq.PG_VERSION_NUM} available instead"
635-
)
608+
_check_supported("PQenterPipelineMode", 140000)
636609
if libpq.PQenterPipelineMode(self._pgconn_ptr) != 1:
637610
raise e.OperationalError("failed to enter pipeline mode")
638611

@@ -642,11 +615,7 @@ cdef class PGconn:
642615
:raises ~e.OperationalError: in case of failure to exit the pipeline
643616
mode.
644617
"""
645-
if libpq.PG_VERSION_NUM < 140000:
646-
raise e.NotSupportedError(
647-
f"PQexitPipelineMode requires libpq from PostgreSQL 14,"
648-
f" {libpq.PG_VERSION_NUM} available instead"
649-
)
618+
_check_supported("PQexitPipelineMode", 140000)
650619
if libpq.PQexitPipelineMode(self._pgconn_ptr) != 1:
651620
raise e.OperationalError(error_message(self))
652621

@@ -656,11 +625,7 @@ cdef class PGconn:
656625
:raises ~e.OperationalError: if the connection is not in pipeline mode
657626
or if sync failed.
658627
"""
659-
if libpq.PG_VERSION_NUM < 140000:
660-
raise e.NotSupportedError(
661-
f"PQpipelineSync requires libpq from PostgreSQL 14,"
662-
f" {libpq.PG_VERSION_NUM} available instead"
663-
)
628+
_check_supported("PQpipelineSync", 140000)
664629
rv = libpq.PQpipelineSync(self._pgconn_ptr)
665630
if rv == 0:
666631
raise e.OperationalError("connection not in pipeline mode")
@@ -672,11 +637,7 @@ cdef class PGconn:
672637

673638
:raises ~e.OperationalError: if the flush request failed.
674639
"""
675-
if libpq.PG_VERSION_NUM < 140000:
676-
raise e.NotSupportedError(
677-
f"PQsendFlushRequest requires libpq from PostgreSQL 14,"
678-
f" {libpq.PG_VERSION_NUM} available instead"
679-
)
640+
_check_supported("PQsendFlushRequest ", 140000)
680641
cdef int rv = libpq.PQsendFlushRequest(self._pgconn_ptr)
681642
if rv == 0:
682643
raise e.OperationalError(f"flush request failed: {error_message(self)}")

0 commit comments

Comments
 (0)