Skip to content

Commit 334d9bb

Browse files
committed
ext/pgsql: adding pg_service() alongside other connection infos.
returns the ongoing name of the service, if there is. available since postgres 18 close phpGH-18198
1 parent 2244810 commit 334d9bb

File tree

7 files changed

+55
-1
lines changed

7 files changed

+55
-1
lines changed

NEWS

+2
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ PHP NEWS
110110
. pg_connect checks if connection_string contains any null byte,
111111
pg_close_stmt check if the statement contains any null byte.
112112
(David Carlier)
113+
. Added pg_service to get the connection current service identifier.
114+
(David Carlier)
113115

114116
- POSIX:
115117
. Added POSIX_SC_OPEN_MAX constant to get the number of file descriptors

UPGRADING

+1
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ PHP 8.5 UPGRADE NOTES
273273
. pg_close_stmt offers an alternative way to close a prepared
274274
statement from the DEALLOCATE sql command in that we can reuse
275275
its name afterwards.
276+
. pg_service returns the ongoing service name of the connection.
276277

277278
- Reflection:
278279
. ReflectionConstant::getFileName() was introduced.

ext/pgsql/config.m4

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ if test "$PHP_PGSQL" != "no"; then
3131
PHP_CHECK_LIBRARY([pq], [PQclosePrepared],
3232
[AC_DEFINE([HAVE_PG_CLOSE_STMT], [1], [PostgreSQL 17 or later])],,
3333
[$PGSQL_LIBS])
34+
PHP_CHECK_LIBRARY([pq], [PQservice],
35+
[AC_DEFINE([HAVE_PG_SERVICE], [1], [PostgreSQL 18 or later])],,
36+
[$PGSQL_LIBS])
3437

3538
old_CFLAGS=$CFLAGS
3639
CFLAGS="$CFLAGS $PGSQL_CFLAGS"

ext/pgsql/pgsql.c

+14
Original file line numberDiff line numberDiff line change
@@ -907,6 +907,7 @@ PHP_FUNCTION(pg_close)
907907
#define PHP_PG_HOST 6
908908
#define PHP_PG_VERSION 7
909909
#define PHP_PG_JIT 8
910+
#define PHP_PG_SERVICE 9
910911

911912
/* php_pgsql_get_link_info */
912913
static void php_pgsql_get_link_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type)
@@ -991,6 +992,12 @@ static void php_pgsql_get_link_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type
991992
PQclear(res);
992993
return;
993994
}
995+
#if defined(HAVE_PG_SERVICE)
996+
case PHP_PG_SERVICE: {
997+
result = PQservice(pgsql);
998+
break;
999+
}
1000+
#endif
9941001
EMPTY_SWITCH_DEFAULT_CASE()
9951002
}
9961003
if (result) {
@@ -1047,6 +1054,13 @@ PHP_FUNCTION(pg_jit)
10471054
php_pgsql_get_link_info(INTERNAL_FUNCTION_PARAM_PASSTHRU,PHP_PG_JIT);
10481055
}
10491056

1057+
#if defined(HAVE_PG_SERVICE)
1058+
PHP_FUNCTION(pg_service)
1059+
{
1060+
php_pgsql_get_link_info(INTERNAL_FUNCTION_PARAM_PASSTHRU,PHP_PG_SERVICE);
1061+
}
1062+
#endif
1063+
10501064
/* Returns the value of a server parameter */
10511065
PHP_FUNCTION(pg_parameter_status)
10521066
{

ext/pgsql/pgsql.stub.php

+3
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,9 @@ function pg_version(?PgSql\Connection $connection = null): array {}
508508
*/
509509
function pg_jit(?PgSql\Connection $connection = null): array {}
510510

511+
#ifdef HAVE_PG_SERVICE
512+
function pg_service(?PgSql\Connection $connection = null): string {}
513+
#endif
511514
/**
512515
* @param PgSql\Connection|string $connection
513516
* @refcount 1

ext/pgsql/pgsql_arginfo.h

+13-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ext/pgsql/tests/pg_service.phpt

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
--TEST--
2+
PostgreSQL connection service field support
3+
--EXTENSIONS--
4+
pgsql
5+
--SKIPIF--
6+
<?php
7+
include("inc/skipif.inc");
8+
if (!function_exists("pg_service")) die("skip pg_service unsupported");
9+
?>
10+
--FILE--
11+
<?php
12+
include('inc/config.inc');
13+
14+
$db = pg_connect($conn_str);
15+
var_dump(pg_service($db));
16+
pg_close($db);
17+
?>
18+
--EXPECTF--
19+
string(%d) "%A"

0 commit comments

Comments
 (0)