mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
Added pg_unescape_bytea(). Fixed pg_data_seek().
php_pgsql_unescape_bytea(PQunescapeBytea) is shamelessly stolen from PostgreSQL 7.3 :)
This commit is contained in:
parent
2745e8b9b2
commit
69957c56b3
2 changed files with 130 additions and 3 deletions
3
NEWS
3
NEWS
|
@ -8,7 +8,8 @@ PHP 4 NEWS
|
||||||
- Fixed output buffering implicit flush. (Yasuo)
|
- Fixed output buffering implicit flush. (Yasuo)
|
||||||
- Added getopt() for parsing command line options and arguments. (Jon)
|
- Added getopt() for parsing command line options and arguments. (Jon)
|
||||||
- Added pg_fetch_assoc(), pg_fetch_all(), pg_ping(), pg_meta_data(), pg_convert(),
|
- Added pg_fetch_assoc(), pg_fetch_all(), pg_ping(), pg_meta_data(), pg_convert(),
|
||||||
pg_insert(), pg_select(), pg_update(), pg_delete() and pg_data_seek(). (Yasuo)
|
pg_insert(), pg_select(), pg_update(), pg_delete(), pg_data_seek() and
|
||||||
|
pg_unescape_bytea(). (Yasuo)
|
||||||
- Fixed bug #17281 (Sanity checks for encoding sessions). (Ilia)
|
- Fixed bug #17281 (Sanity checks for encoding sessions). (Ilia)
|
||||||
- Fixed bug #16995 and #19392 (Prevent crash if $HTTP_SESSION_VARS != ARRAY).
|
- Fixed bug #16995 and #19392 (Prevent crash if $HTTP_SESSION_VARS != ARRAY).
|
||||||
(Ilia)
|
(Ilia)
|
||||||
|
|
|
@ -1423,7 +1423,6 @@ PHP_FUNCTION(pg_data_seek)
|
||||||
{
|
{
|
||||||
zval *result;
|
zval *result;
|
||||||
int row;
|
int row;
|
||||||
PGresult *pgsql_result;
|
|
||||||
pgsql_result_handle *pg_result;
|
pgsql_result_handle *pg_result;
|
||||||
|
|
||||||
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|l",
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|l",
|
||||||
|
@ -1438,7 +1437,7 @@ PHP_FUNCTION(pg_data_seek)
|
||||||
/* if (ZEND_NUM_ARGS() == 1) */
|
/* if (ZEND_NUM_ARGS() == 1) */
|
||||||
/* RETURN_LONG(pg_result->row); */
|
/* RETURN_LONG(pg_result->row); */
|
||||||
|
|
||||||
if (row < 0 || row >= PQntuples(pg_result))
|
if (row < 0 || row >= PQntuples(pg_result->result))
|
||||||
RETURN_FALSE;
|
RETURN_FALSE;
|
||||||
|
|
||||||
/* seek to offset */
|
/* seek to offset */
|
||||||
|
@ -2616,6 +2615,133 @@ PHP_FUNCTION(pg_escape_bytea)
|
||||||
free(to);
|
free(to);
|
||||||
}
|
}
|
||||||
/* }}} */
|
/* }}} */
|
||||||
|
|
||||||
|
/* PQunescapeBytea() from PostgreSQL 7.3 to provide bytea unescape feature to 7.2 users.
|
||||||
|
Renamed to php_pgsql_unescape_bytea() */
|
||||||
|
/*
|
||||||
|
* PQunescapeBytea - converts the null terminated string representation
|
||||||
|
* of a bytea, strtext, into binary, filling a buffer. It returns a
|
||||||
|
* pointer to the buffer which is NULL on error, and the size of the
|
||||||
|
* buffer in retbuflen. The pointer may subsequently be used as an
|
||||||
|
* argument to the function free(3). It is the reverse of PQescapeBytea.
|
||||||
|
*
|
||||||
|
* The following transformations are reversed:
|
||||||
|
* '\0' == ASCII 0 == \000
|
||||||
|
* '\'' == ASCII 39 == \'
|
||||||
|
* '\\' == ASCII 92 == \\
|
||||||
|
*
|
||||||
|
* States:
|
||||||
|
* 0 normal 0->1->2->3->4
|
||||||
|
* 1 \ 1->5
|
||||||
|
* 2 \0 1->6
|
||||||
|
* 3 \00
|
||||||
|
* 4 \000
|
||||||
|
* 5 \'
|
||||||
|
* 6 \\
|
||||||
|
*/
|
||||||
|
static unsigned char * php_pgsql_unescape_bytea(unsigned char *strtext, size_t *retbuflen)
|
||||||
|
{
|
||||||
|
size_t buflen;
|
||||||
|
unsigned char *buffer,
|
||||||
|
*sp,
|
||||||
|
*bp;
|
||||||
|
unsigned int state = 0;
|
||||||
|
|
||||||
|
if (strtext == NULL)
|
||||||
|
return NULL;
|
||||||
|
buflen = strlen(strtext); /* will shrink, also we discover if
|
||||||
|
* strtext */
|
||||||
|
buffer = (unsigned char *) malloc(buflen); /* isn't NULL terminated */
|
||||||
|
if (buffer == NULL)
|
||||||
|
return NULL;
|
||||||
|
for (bp = buffer, sp = strtext; *sp != '\0'; bp++, sp++)
|
||||||
|
{
|
||||||
|
switch (state)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
if (*sp == '\\')
|
||||||
|
state = 1;
|
||||||
|
*bp = *sp;
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
if (*sp == '\'') /* state=5 */
|
||||||
|
{ /* replace \' with 39 */
|
||||||
|
bp--;
|
||||||
|
*bp = '\'';
|
||||||
|
buflen--;
|
||||||
|
state = 0;
|
||||||
|
}
|
||||||
|
else if (*sp == '\\') /* state=6 */
|
||||||
|
{ /* replace \\ with 92 */
|
||||||
|
bp--;
|
||||||
|
*bp = '\\';
|
||||||
|
buflen--;
|
||||||
|
state = 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (isdigit(*sp))
|
||||||
|
state = 2;
|
||||||
|
else
|
||||||
|
state = 0;
|
||||||
|
*bp = *sp;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
if (isdigit(*sp))
|
||||||
|
state = 3;
|
||||||
|
else
|
||||||
|
state = 0;
|
||||||
|
*bp = *sp;
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
if (isdigit(*sp)) /* state=4 */
|
||||||
|
{
|
||||||
|
int v;
|
||||||
|
|
||||||
|
bp -= 3;
|
||||||
|
sscanf(sp - 2, "%03o", &v);
|
||||||
|
*bp = v;
|
||||||
|
buflen -= 3;
|
||||||
|
state = 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
*bp = *sp;
|
||||||
|
state = 0;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
buffer = realloc(buffer, buflen);
|
||||||
|
if (buffer == NULL)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
*retbuflen = buflen;
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* {{{ proto string pg_unescape_bytea(string data)
|
||||||
|
Unescape binary for bytea type */
|
||||||
|
PHP_FUNCTION(pg_unescape_bytea)
|
||||||
|
{
|
||||||
|
char *from = NULL, *to = NULL;
|
||||||
|
size_t from_len, to_len;
|
||||||
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s",
|
||||||
|
&from, &from_len) == FAILURE) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
to = (char *)php_pgsql_unescape_bytea((unsigned char*)from, from_len);
|
||||||
|
if (!to) {
|
||||||
|
RETVAL_FALSE;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
RETVAL_STRINGL(to, to_len-1, 1); /* to_len includes addtional '\0' */
|
||||||
|
}
|
||||||
|
free(to);
|
||||||
|
}
|
||||||
|
/* }}} */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* {{{ proto string pg_result_error(resource result)
|
/* {{{ proto string pg_result_error(resource result)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue