2007-07-25 00:13:26 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP Version 6 |
|
|
|
|
+----------------------------------------------------------------------+
|
2008-12-31 19:12:40 +08:00
|
|
|
| Copyright (c) 2006-2009 The PHP Group |
|
2007-07-25 00:13:26 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.php.net/license/3_01.txt |
|
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Georg Richter <georg@mysql.com> |
|
|
|
|
| Andrey Hristov <andrey@mysql.com> |
|
|
|
|
| Ulf Wendel <uwendel@mysql.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
#include "php.h"
|
|
|
|
#include "mysqlnd.h"
|
|
|
|
#include "mysqlnd_wireprotocol.h"
|
|
|
|
#include "mysqlnd_priv.h"
|
|
|
|
#include "mysqlnd_result.h"
|
|
|
|
#include "mysqlnd_result_meta.h"
|
|
|
|
#include "mysqlnd_statistics.h"
|
|
|
|
#include "mysqlnd_charset.h"
|
2007-10-02 18:45:27 +08:00
|
|
|
#include "mysqlnd_debug.h"
|
2007-07-25 00:13:26 +08:00
|
|
|
#include "ext/standard/basic_functions.h"
|
|
|
|
|
|
|
|
#define MYSQLND_SILENT
|
|
|
|
|
2008-01-30 02:13:12 +08:00
|
|
|
#ifdef MYSQLND_THREADED
|
|
|
|
/* {{{ mysqlnd_fetch_thread */
|
|
|
|
void * mysqlnd_fetch_thread(void *arg)
|
|
|
|
{
|
|
|
|
MYSQLND *conn = (MYSQLND *) arg;
|
|
|
|
MYSQLND_RES * result = NULL;
|
|
|
|
void ***tsrm_ls = conn->tsrm_ls;
|
|
|
|
#ifndef MYSQLND_SILENT
|
2008-02-14 20:51:00 +08:00
|
|
|
printf("THREAD] conn=%p tsrm_ls=%p\n", conn, conn->tsrm_ls);
|
2008-01-30 02:13:12 +08:00
|
|
|
#endif
|
|
|
|
do {
|
|
|
|
pthread_mutex_lock(&conn->LOCK_work);
|
2008-02-14 20:51:00 +08:00
|
|
|
while (conn->thread_killed == FALSE && !conn->current_result) {
|
2008-01-30 02:13:12 +08:00
|
|
|
#ifndef MYSQLND_SILENT
|
2008-02-14 20:51:00 +08:00
|
|
|
printf("THREAD] Waiting for work in %s\n", __FUNCTION__);
|
2008-01-30 02:13:12 +08:00
|
|
|
#endif
|
|
|
|
pthread_cond_wait(&conn->COND_work, &conn->LOCK_work);
|
|
|
|
}
|
|
|
|
if (conn->thread_killed == TRUE) {
|
|
|
|
#ifndef MYSQLND_SILENT
|
2008-02-14 20:51:00 +08:00
|
|
|
printf("THREAD] Thread killed in %s\n", __FUNCTION__);
|
2008-01-30 02:13:12 +08:00
|
|
|
#endif
|
|
|
|
pthread_cond_signal(&conn->COND_thread_ended);
|
|
|
|
pthread_mutex_unlock(&conn->LOCK_work);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#ifndef MYSQLND_SILENT
|
2008-02-14 20:51:00 +08:00
|
|
|
printf("THREAD] Got work in %s\n", __FUNCTION__);
|
2008-01-30 02:13:12 +08:00
|
|
|
#endif
|
|
|
|
CONN_SET_STATE(conn, CONN_FETCHING_DATA);
|
|
|
|
result = conn->current_result;
|
|
|
|
conn->current_result = NULL;
|
2008-02-14 20:51:00 +08:00
|
|
|
pthread_cond_signal(&conn->COND_work); /* sent notification back */
|
2008-01-30 02:13:12 +08:00
|
|
|
pthread_mutex_unlock(&conn->LOCK_work);
|
|
|
|
|
2008-02-14 20:51:00 +08:00
|
|
|
#ifndef MYSQLND_SILENT
|
|
|
|
printf("THREAD] Starting fetch %s\n", __FUNCTION__);
|
|
|
|
#endif
|
2008-01-30 02:13:12 +08:00
|
|
|
mysqlnd_background_store_result_fetch_data(result TSRMLS_CC);
|
|
|
|
|
|
|
|
/* do fetch the data from the wire */
|
|
|
|
|
|
|
|
pthread_mutex_lock(&conn->LOCK_work);
|
|
|
|
CONN_SET_STATE(conn, CONN_READY);
|
|
|
|
pthread_cond_signal(&conn->COND_work_done);
|
|
|
|
#ifndef MYSQLND_SILENT
|
2008-02-14 20:51:00 +08:00
|
|
|
printf("THREAD] Signaling work done in %s\n", __FUNCTION__);
|
2008-01-30 02:13:12 +08:00
|
|
|
#endif
|
|
|
|
pthread_mutex_unlock(&conn->LOCK_work);
|
|
|
|
} while (1);
|
|
|
|
|
|
|
|
#ifndef MYSQLND_SILENT
|
2008-02-14 20:51:00 +08:00
|
|
|
printf("THREAD] Exiting worker thread in %s\n", __FUNCTION__);
|
2008-01-30 02:13:12 +08:00
|
|
|
#endif
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
#endif /* MYSQLND_THREADED */
|
|
|
|
|
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
/* {{{ mysqlnd_res_initialize_result_set_rest */
|
|
|
|
void mysqlnd_res_initialize_result_set_rest(MYSQLND_RES * const result TSRMLS_DC)
|
|
|
|
{
|
2008-11-06 18:36:30 +08:00
|
|
|
unsigned int i;
|
2008-01-29 02:27:49 +08:00
|
|
|
zval **data_cursor = result->stored_data->data;
|
|
|
|
zval **data_begin = result->stored_data->data;
|
2008-11-06 18:36:30 +08:00
|
|
|
unsigned int field_count = result->meta->field_count;
|
|
|
|
unsigned int row_count = result->stored_data->row_count;
|
2008-01-29 02:27:49 +08:00
|
|
|
if (!data_cursor || row_count == result->stored_data->initialized_rows) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
while ((data_cursor - data_begin) < (row_count * field_count)) {
|
|
|
|
if (NULL == data_cursor[0]) {
|
|
|
|
result->stored_data->initialized_rows++;
|
|
|
|
result->m.row_decoder(
|
|
|
|
result->stored_data->row_buffers[(data_cursor - data_begin) / field_count],
|
|
|
|
data_cursor,
|
|
|
|
result->meta->field_count,
|
|
|
|
result->meta->fields,
|
|
|
|
result->conn TSRMLS_CC);
|
|
|
|
for (i = 0; i < result->field_count; i++) {
|
|
|
|
/*
|
|
|
|
NULL fields are 0 length, 0 is not more than 0
|
|
|
|
String of zero size, definitely can't be the next max_length.
|
|
|
|
Thus for NULL and zero-length we are quite efficient.
|
|
|
|
*/
|
|
|
|
if (Z_TYPE_P(data_cursor[i]) >= IS_STRING) {
|
|
|
|
unsigned long len = Z_STRLEN_P(data_cursor[i]);
|
|
|
|
if (result->meta->fields[i].max_length < len) {
|
|
|
|
result->meta->fields[i].max_length = len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data_cursor += field_count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
/* {{{ mysqlnd_unbuffered_free_last_data */
|
|
|
|
void mysqlnd_unbuffered_free_last_data(MYSQLND_RES *result TSRMLS_DC)
|
|
|
|
{
|
|
|
|
MYSQLND_RES_UNBUFFERED *unbuf = result->unbuf;
|
2007-10-02 18:45:27 +08:00
|
|
|
|
|
|
|
DBG_ENTER("mysqlnd_unbuffered_free_last_data");
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
if (!unbuf) {
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
|
2009-05-29 00:35:16 +08:00
|
|
|
DBG_INF_FMT("last_row_data=%p", unbuf->last_row_data);
|
2007-07-25 00:13:26 +08:00
|
|
|
if (unbuf->last_row_data) {
|
|
|
|
unsigned int i, ctor_called_count = 0;
|
|
|
|
zend_bool copy_ctor_called;
|
|
|
|
MYSQLND_STATS *global_stats = result->conn? &result->conn->stats:NULL;
|
2009-05-29 00:35:16 +08:00
|
|
|
|
|
|
|
DBG_INF_FMT("%u columns to free", result->field_count);
|
2007-07-25 00:13:26 +08:00
|
|
|
for (i = 0; i < result->field_count; i++) {
|
|
|
|
mysqlnd_palloc_zval_ptr_dtor(&(unbuf->last_row_data[i]),
|
|
|
|
result->zval_cache, result->type,
|
|
|
|
©_ctor_called TSRMLS_CC);
|
|
|
|
if (copy_ctor_called) {
|
|
|
|
ctor_called_count++;
|
|
|
|
}
|
|
|
|
}
|
2009-05-29 00:35:16 +08:00
|
|
|
DBG_INF_FMT("copy_ctor_called_count=%u", ctor_called_count);
|
2007-07-25 00:13:26 +08:00
|
|
|
/* By using value3 macros we hold a mutex only once, there is no value2 */
|
|
|
|
MYSQLND_INC_CONN_STATISTIC_W_VALUE3(global_stats,
|
|
|
|
STAT_COPY_ON_WRITE_PERFORMED,
|
|
|
|
ctor_called_count,
|
|
|
|
STAT_COPY_ON_WRITE_SAVED,
|
|
|
|
result->field_count - ctor_called_count,
|
|
|
|
STAT_COPY_ON_WRITE_PERFORMED, 0);
|
|
|
|
|
|
|
|
/* Free last row's zvals */
|
|
|
|
efree(unbuf->last_row_data);
|
|
|
|
unbuf->last_row_data = NULL;
|
|
|
|
}
|
|
|
|
if (unbuf->last_row_buffer) {
|
2009-05-29 00:35:16 +08:00
|
|
|
DBG_INF("Freeing last row buffer");
|
2007-07-25 00:13:26 +08:00
|
|
|
/* Nothing points to this buffer now, free it */
|
2008-01-29 02:27:49 +08:00
|
|
|
unbuf->last_row_buffer->free_chunk(unbuf->last_row_buffer, TRUE TSRMLS_CC);
|
2007-07-25 00:13:26 +08:00
|
|
|
unbuf->last_row_buffer = NULL;
|
|
|
|
}
|
2007-10-02 18:45:27 +08:00
|
|
|
|
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2008-04-24 22:04:58 +08:00
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
/* {{{ mysqlnd_free_buffered_data */
|
|
|
|
void mysqlnd_free_buffered_data(MYSQLND_RES *result TSRMLS_DC)
|
|
|
|
{
|
|
|
|
MYSQLND_THD_ZVAL_PCACHE *zval_cache = result->zval_cache;
|
2008-01-29 02:27:49 +08:00
|
|
|
MYSQLND_RES_BUFFERED *set = result->stored_data;
|
2007-07-25 00:13:26 +08:00
|
|
|
unsigned int field_count = result->field_count;
|
2008-01-29 02:27:49 +08:00
|
|
|
int row;
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_free_buffered_data");
|
2008-01-29 02:27:49 +08:00
|
|
|
DBG_INF_FMT("Freeing "MYSQLND_LLU_SPEC" row(s)", set->row_count);
|
2007-10-02 18:45:27 +08:00
|
|
|
|
|
|
|
DBG_INF_FMT("before: real_usage=%lu usage=%lu", zend_memory_usage(TRUE TSRMLS_CC), zend_memory_usage(FALSE TSRMLS_CC));
|
2008-01-29 02:27:49 +08:00
|
|
|
for (row = set->row_count - 1; row >= 0; row--) {
|
|
|
|
zval **current_row = set->data + row * field_count;
|
|
|
|
MYSQLND_MEMORY_POOL_CHUNK *current_buffer = set->row_buffers[row];
|
|
|
|
int col;
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2008-04-16 20:53:18 +08:00
|
|
|
for (col = field_count - 1; col >= 0; --col) {
|
2007-07-25 00:13:26 +08:00
|
|
|
zend_bool copy_ctor_called;
|
2008-01-29 02:27:49 +08:00
|
|
|
if (current_row[0] == NULL) {
|
|
|
|
break;/* row that was never initialized */
|
|
|
|
}
|
2007-07-25 00:13:26 +08:00
|
|
|
mysqlnd_palloc_zval_ptr_dtor(&(current_row[col]), zval_cache,
|
|
|
|
result->type, ©_ctor_called TSRMLS_CC);
|
2007-10-02 18:45:27 +08:00
|
|
|
#if MYSQLND_DEBUG_MEMORY
|
|
|
|
DBG_INF_FMT("Copy_ctor_called=%d", copy_ctor_called);
|
|
|
|
#endif
|
|
|
|
MYSQLND_INC_GLOBAL_STATISTIC(copy_ctor_called? STAT_COPY_ON_WRITE_PERFORMED:
|
|
|
|
STAT_COPY_ON_WRITE_SAVED);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
2007-10-02 18:45:27 +08:00
|
|
|
#if MYSQLND_DEBUG_MEMORY
|
|
|
|
DBG_INF("Freeing current_row & current_buffer");
|
|
|
|
#endif
|
2008-01-29 02:27:49 +08:00
|
|
|
current_buffer->free_chunk(current_buffer, TRUE TSRMLS_CC);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_INF("Freeing data & row_buffer");
|
2008-10-27 23:13:42 +08:00
|
|
|
if (set->data) {
|
|
|
|
pefree(set->data, set->persistent);
|
|
|
|
set->data = NULL;
|
|
|
|
}
|
|
|
|
if (set->row_buffers) {
|
|
|
|
pefree(set->row_buffers, set->persistent);
|
|
|
|
set->row_buffers = NULL;
|
|
|
|
}
|
|
|
|
set->data_cursor = NULL;
|
2007-07-25 00:13:26 +08:00
|
|
|
set->row_count = 0;
|
|
|
|
if (set->qcache) {
|
|
|
|
mysqlnd_qcache_free_cache_reference(&set->qcache);
|
|
|
|
}
|
2008-01-29 02:27:49 +08:00
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_INF("Freeing set");
|
2007-07-25 00:13:26 +08:00
|
|
|
pefree(set, set->persistent);
|
2007-10-02 18:45:27 +08:00
|
|
|
|
|
|
|
DBG_INF_FMT("after: real_usage=%lu usage=%lu", zend_memory_usage(TRUE TSRMLS_CC), zend_memory_usage(FALSE TSRMLS_CC));
|
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2008-04-24 22:04:58 +08:00
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
#ifdef MYSQLND_THREADED
|
|
|
|
/* {{{ mysqlnd_free_background_buffered_data */
|
|
|
|
void mysqlnd_free_background_buffered_data(MYSQLND_RES *result TSRMLS_DC)
|
|
|
|
{
|
|
|
|
MYSQLND_THD_ZVAL_PCACHE *zval_cache = result->zval_cache;
|
|
|
|
MYSQLND_RES_BG_BUFFERED *set = result->bg_stored_data;
|
|
|
|
unsigned int field_count = result->field_count;
|
|
|
|
int row;
|
|
|
|
|
|
|
|
DBG_ENTER("mysqlnd_free_buffered_data");
|
|
|
|
DBG_INF_FMT("Freeing "MYSQLND_LLU_SPEC" row(s)", set->row_count);
|
|
|
|
|
|
|
|
do {
|
|
|
|
tsrm_mutex_lock(set->LOCK);
|
|
|
|
if (set->bg_fetch_finished) {
|
|
|
|
tsrm_mutex_unlock(set->LOCK);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
tsrm_mutex_unlock(set->LOCK);
|
|
|
|
#if HAVE_USLEEP
|
|
|
|
usleep(2000);
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
volatile int i;
|
|
|
|
for (i = 0; i < 1000; i++);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} while (1);
|
|
|
|
|
|
|
|
DBG_INF_FMT("before: real_usage=%lu usage=%lu", zend_memory_usage(TRUE TSRMLS_CC), zend_memory_usage(FALSE TSRMLS_CC));
|
|
|
|
for (row = set->row_count - 1; row >= 0; row--) {
|
|
|
|
MYSQLND_MEMORY_POOL_CHUNK *current_buffer = set->row_buffers[row];
|
|
|
|
/* It could be the case that the user fetched no rows - then no set->data */
|
|
|
|
if (row < set->data_size && set->data[row]) {
|
|
|
|
zval **current_row = set->data[row];
|
|
|
|
unsigned int col;
|
|
|
|
|
|
|
|
for (col = 0; col < field_count; col++) {
|
|
|
|
zend_bool copy_ctor_called;
|
|
|
|
mysqlnd_palloc_zval_ptr_dtor(&(current_row[col]), zval_cache,
|
|
|
|
result->type, ©_ctor_called TSRMLS_CC);
|
|
|
|
#if MYSQLND_DEBUG_MEMORY
|
|
|
|
DBG_INF_FMT("Copy_ctor_called=%d", copy_ctor_called);
|
|
|
|
#endif
|
|
|
|
MYSQLND_INC_GLOBAL_STATISTIC(copy_ctor_called? STAT_COPY_ON_WRITE_PERFORMED:
|
|
|
|
STAT_COPY_ON_WRITE_SAVED);
|
|
|
|
}
|
|
|
|
#if MYSQLND_DEBUG_MEMORY
|
|
|
|
DBG_INF("Freeing current_row & current_buffer");
|
|
|
|
#endif
|
|
|
|
pefree(current_row, set->persistent);
|
|
|
|
}
|
|
|
|
current_buffer->free_chunk(current_buffer, TRUE TSRMLS_CC);
|
|
|
|
}
|
|
|
|
DBG_INF("Freeing data & row_buffer");
|
|
|
|
pefree(set->data, set->persistent);
|
|
|
|
pefree(set->row_buffers, set->persistent);
|
|
|
|
set->data = NULL;
|
|
|
|
set->row_buffers = NULL;
|
|
|
|
set->data_cursor = NULL;
|
|
|
|
set->row_count = 0;
|
|
|
|
if (set->qcache) {
|
|
|
|
mysqlnd_qcache_free_cache_reference(&set->qcache);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (set->LOCK) {
|
|
|
|
tsrm_mutex_free(set->LOCK);
|
|
|
|
}
|
|
|
|
|
|
|
|
DBG_INF("Freeing set");
|
|
|
|
pefree(set, set->persistent);
|
|
|
|
|
|
|
|
DBG_INF_FMT("after: real_usage=%lu usage=%lu", zend_memory_usage(TRUE TSRMLS_CC), zend_memory_usage(FALSE TSRMLS_CC));
|
|
|
|
DBG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
#endif /* MYSQL_THREADING */
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2008-04-24 22:04:58 +08:00
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
/* {{{ mysqlnd_res::free_result_buffers */
|
2008-04-24 22:04:58 +08:00
|
|
|
static void
|
2007-07-25 00:13:26 +08:00
|
|
|
MYSQLND_METHOD(mysqlnd_res, free_result_buffers)(MYSQLND_RES *result TSRMLS_DC)
|
|
|
|
{
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_res::free_result_buffers");
|
2008-01-29 02:27:49 +08:00
|
|
|
DBG_INF_FMT("%s", result->unbuf? "unbuffered":(result->stored_data? "buffered":"unknown"));
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
if (result->unbuf) {
|
|
|
|
mysqlnd_unbuffered_free_last_data(result TSRMLS_CC);
|
|
|
|
efree(result->unbuf);
|
|
|
|
result->unbuf = NULL;
|
2008-01-29 02:27:49 +08:00
|
|
|
} else if (result->stored_data) {
|
2007-07-25 00:13:26 +08:00
|
|
|
mysqlnd_free_buffered_data(result TSRMLS_CC);
|
2008-01-29 02:27:49 +08:00
|
|
|
result->stored_data = NULL;
|
|
|
|
}
|
|
|
|
#ifdef MYSQLND_THREADED
|
|
|
|
else if (result->bg_stored_data) {
|
|
|
|
mysqlnd_free_background_buffered_data(result TSRMLS_CC);
|
|
|
|
result->bg_stored_data = NULL;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
2008-01-29 02:27:49 +08:00
|
|
|
#endif
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
if (result->lengths) {
|
|
|
|
efree(result->lengths);
|
|
|
|
result->lengths = NULL;
|
|
|
|
}
|
2007-10-02 18:45:27 +08:00
|
|
|
|
2008-02-20 23:20:14 +08:00
|
|
|
if (result->row_packet) {
|
|
|
|
DBG_INF("Freeing packet");
|
|
|
|
PACKET_FREE(result->row_packet);
|
|
|
|
result->row_packet = NULL;
|
|
|
|
}
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_internal_free_result_contents */
|
|
|
|
static
|
|
|
|
void mysqlnd_internal_free_result_contents(MYSQLND_RES *result TSRMLS_DC)
|
|
|
|
{
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_internal_free_result_contents");
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
result->m.free_result_buffers(result TSRMLS_CC);
|
|
|
|
|
|
|
|
if (result->meta) {
|
|
|
|
result->meta->m->free_metadata(result->meta, FALSE TSRMLS_CC);
|
|
|
|
result->meta = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result->zval_cache) {
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_INF("Freeing zval cache reference");
|
2007-07-25 00:13:26 +08:00
|
|
|
mysqlnd_palloc_free_thd_cache_reference(&result->zval_cache);
|
|
|
|
result->zval_cache = NULL;
|
|
|
|
}
|
2007-10-02 18:45:27 +08:00
|
|
|
|
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_internal_free_result */
|
|
|
|
static
|
|
|
|
void mysqlnd_internal_free_result(MYSQLND_RES *result TSRMLS_DC)
|
|
|
|
{
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_internal_free_result");
|
2008-02-05 01:32:43 +08:00
|
|
|
result->m.free_result_contents(result TSRMLS_CC);
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
if (result->conn) {
|
|
|
|
result->conn->m->free_reference(result->conn TSRMLS_CC);
|
|
|
|
result->conn = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
efree(result);
|
2007-10-02 18:45:27 +08:00
|
|
|
|
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_res::read_result_metadata */
|
|
|
|
static enum_func_status
|
|
|
|
MYSQLND_METHOD(mysqlnd_res, read_result_metadata)(MYSQLND_RES *result, MYSQLND *conn TSRMLS_DC)
|
|
|
|
{
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_res::read_result_metadata");
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
/*
|
|
|
|
Make it safe to call it repeatedly for PS -
|
|
|
|
better free and allocate a new because the number of field might change
|
|
|
|
(select *) with altered table. Also for statements which skip the PS
|
|
|
|
infrastructure!
|
|
|
|
*/
|
|
|
|
if (result->meta) {
|
|
|
|
result->meta->m->free_metadata(result->meta, FALSE TSRMLS_CC);
|
|
|
|
result->meta = NULL;
|
|
|
|
}
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
result->meta = mysqlnd_result_meta_init(result->field_count TSRMLS_CC);
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
/* 1. Read all fields metadata */
|
|
|
|
|
|
|
|
/* It's safe to reread without freeing */
|
|
|
|
if (FAIL == result->meta->m->read_metadata(result->meta, conn TSRMLS_CC)) {
|
|
|
|
result->m.free_result_contents(result TSRMLS_CC);
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_RETURN(FAIL);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
2. Follows an EOF packet, which the client of mysqlnd_read_result_metadata()
|
|
|
|
should consume.
|
|
|
|
3. If there is a result set, it follows. The last packet will have 'eof' set
|
|
|
|
If PS, then no result set follows.
|
|
|
|
*/
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_RETURN(PASS);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_query_read_result_set_header */
|
|
|
|
enum_func_status
|
|
|
|
mysqlnd_query_read_result_set_header(MYSQLND *conn, MYSQLND_STMT *stmt TSRMLS_DC)
|
|
|
|
{
|
|
|
|
enum_func_status ret;
|
|
|
|
php_mysql_packet_rset_header rset_header;
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_query_read_result_set_header");
|
|
|
|
DBG_INF_FMT("stmt=%d", stmt? stmt->stmt_id:0);
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
ret = FAIL;
|
|
|
|
PACKET_INIT_ALLOCA(rset_header, PROT_RSET_HEADER_PACKET);
|
|
|
|
do {
|
2008-02-06 22:11:32 +08:00
|
|
|
SET_ERROR_AFF_ROWS(conn);
|
2007-07-25 00:13:26 +08:00
|
|
|
if (FAIL == (ret = PACKET_READ_ALLOCA(rset_header, conn))) {
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error reading result set's header");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rset_header.error_info.error_no) {
|
|
|
|
/*
|
|
|
|
Cover a protocol design error: error packet does not
|
|
|
|
contain the server status. Therefore, the client has no way
|
|
|
|
to find out whether there are more result sets of
|
|
|
|
a multiple-result-set statement pending. Luckily, in 5.0 an
|
|
|
|
error always aborts execution of a statement, wherever it is
|
|
|
|
a multi-statement or a stored procedure, so it should be
|
|
|
|
safe to unconditionally turn off the flag here.
|
|
|
|
*/
|
|
|
|
conn->upsert_status.server_status &= ~SERVER_MORE_RESULTS_EXISTS;
|
|
|
|
/*
|
|
|
|
This will copy the error code and the messages, as they
|
|
|
|
are buffers in the struct
|
|
|
|
*/
|
|
|
|
conn->error_info = rset_header.error_info;
|
|
|
|
ret = FAIL;
|
2008-02-14 20:51:00 +08:00
|
|
|
/* Return back from CONN_QUERY_SENT */
|
|
|
|
CONN_SET_STATE(conn, CONN_READY);
|
2007-07-25 00:13:26 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
conn->error_info.error_no = 0;
|
|
|
|
|
|
|
|
switch (rset_header.field_count) {
|
|
|
|
case MYSQLND_NULL_LENGTH: { /* LOAD DATA LOCAL INFILE */
|
|
|
|
zend_bool is_warning;
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_INF("LOAD DATA");
|
2007-07-25 00:13:26 +08:00
|
|
|
conn->last_query_type = QUERY_LOAD_LOCAL;
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(conn, CONN_SENDING_LOAD_DATA);
|
2007-07-25 00:13:26 +08:00
|
|
|
ret = mysqlnd_handle_local_infile(conn, rset_header.info_or_local_file, &is_warning TSRMLS_CC);
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(conn, (ret == PASS || is_warning == TRUE)? CONN_READY:CONN_QUIT_SENT);
|
2007-07-25 00:13:26 +08:00
|
|
|
MYSQLND_INC_CONN_STATISTIC(&conn->stats, STAT_NON_RSET_QUERY);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 0: /* UPSERT */
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_INF("UPSERT");
|
2007-07-25 00:13:26 +08:00
|
|
|
conn->last_query_type = QUERY_UPSERT;
|
|
|
|
conn->field_count = rset_header.field_count;
|
|
|
|
conn->upsert_status.warning_count = rset_header.warning_count;
|
|
|
|
conn->upsert_status.server_status = rset_header.server_status;
|
|
|
|
conn->upsert_status.affected_rows = rset_header.affected_rows;
|
|
|
|
conn->upsert_status.last_insert_id = rset_header.last_insert_id;
|
|
|
|
SET_NEW_MESSAGE(conn->last_message, conn->last_message_len,
|
2007-08-06 23:11:46 +08:00
|
|
|
rset_header.info_or_local_file, rset_header.info_or_local_file_len,
|
|
|
|
conn->persistent);
|
2007-07-25 00:13:26 +08:00
|
|
|
/* Result set can follow UPSERT statement, check server_status */
|
|
|
|
if (conn->upsert_status.server_status & SERVER_MORE_RESULTS_EXISTS) {
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(conn, CONN_NEXT_RESULT_PENDING);
|
2007-07-25 00:13:26 +08:00
|
|
|
} else {
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(conn, CONN_READY);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
ret = PASS;
|
|
|
|
MYSQLND_INC_CONN_STATISTIC(&conn->stats, STAT_NON_RSET_QUERY);
|
|
|
|
break;
|
|
|
|
default:{ /* Result set */
|
|
|
|
php_mysql_packet_eof fields_eof;
|
|
|
|
MYSQLND_RES *result;
|
2007-10-02 18:45:27 +08:00
|
|
|
enum_mysqlnd_collected_stats stat = STAT_LAST;
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_INF("Result set pending");
|
2007-08-06 23:11:46 +08:00
|
|
|
SET_EMPTY_MESSAGE(conn->last_message, conn->last_message_len, conn->persistent);
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
MYSQLND_INC_CONN_STATISTIC(&conn->stats, STAT_RSET_QUERY);
|
|
|
|
memset(&conn->upsert_status, 0, sizeof(conn->upsert_status));
|
2008-02-06 22:11:32 +08:00
|
|
|
/* restore after zeroing */
|
|
|
|
SET_ERROR_AFF_ROWS(conn);
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
conn->last_query_type = QUERY_SELECT;
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(conn, CONN_FETCHING_DATA);
|
2007-07-25 00:13:26 +08:00
|
|
|
/* PS has already allocated it */
|
2008-05-29 23:50:10 +08:00
|
|
|
conn->field_count = rset_header.field_count;
|
2007-07-25 00:13:26 +08:00
|
|
|
if (!stmt) {
|
|
|
|
result =
|
|
|
|
conn->current_result=
|
|
|
|
mysqlnd_result_init(rset_header.field_count,
|
2007-10-02 18:45:27 +08:00
|
|
|
mysqlnd_palloc_get_thd_cache_reference(conn->zval_cache)
|
|
|
|
TSRMLS_CC);
|
2007-07-25 00:13:26 +08:00
|
|
|
} else {
|
|
|
|
if (!stmt->result) {
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_INF("This is 'SHOW'/'EXPLAIN'-like query.");
|
2007-07-25 00:13:26 +08:00
|
|
|
/*
|
|
|
|
This is 'SHOW'/'EXPLAIN'-like query. Current implementation of
|
|
|
|
prepared statements can't send result set metadata for these queries
|
|
|
|
on prepare stage. Read it now.
|
|
|
|
*/
|
|
|
|
result =
|
|
|
|
stmt->result =
|
|
|
|
mysqlnd_result_init(rset_header.field_count,
|
2007-10-02 18:45:27 +08:00
|
|
|
mysqlnd_palloc_get_thd_cache_reference(conn->zval_cache)
|
|
|
|
TSRMLS_CC);
|
2007-07-25 00:13:26 +08:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
Update result set metadata if it for some reason changed between
|
|
|
|
prepare and execute, i.e.:
|
|
|
|
- in case of 'SELECT ?' we don't know column type unless data was
|
|
|
|
supplied to mysql_stmt_execute, so updated column type is sent
|
|
|
|
now.
|
|
|
|
- if data dictionary changed between prepare and execute, for
|
|
|
|
example a table used in the query was altered.
|
|
|
|
Note, that now (4.1.3) we always send metadata in reply to
|
|
|
|
COM_STMT_EXECUTE (even if it is not necessary), so either this or
|
|
|
|
previous branch always works.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
result = stmt->result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FAIL == (ret = result->m.read_result_metadata(result, conn TSRMLS_CC))) {
|
|
|
|
/* For PS, we leave them in Prepared state */
|
|
|
|
if (!stmt) {
|
|
|
|
efree(conn->current_result);
|
|
|
|
conn->current_result = NULL;
|
|
|
|
}
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ERR("Error ocurred while reading metadata");
|
2007-07-25 00:13:26 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for SERVER_STATUS_MORE_RESULTS if needed */
|
|
|
|
PACKET_INIT_ALLOCA(fields_eof, PROT_EOF_PACKET);
|
|
|
|
if (FAIL == (ret = PACKET_READ_ALLOCA(fields_eof, conn))) {
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ERR("Error ocurred while reading the EOF packet");
|
2007-07-25 00:13:26 +08:00
|
|
|
result->m.free_result_contents(result TSRMLS_CC);
|
|
|
|
efree(result);
|
|
|
|
if (!stmt) {
|
|
|
|
conn->current_result = NULL;
|
|
|
|
} else {
|
|
|
|
stmt->result = NULL;
|
|
|
|
memset(stmt, 0, sizeof(MYSQLND_STMT));
|
|
|
|
stmt->state = MYSQLND_STMT_INITTED;
|
|
|
|
}
|
|
|
|
} else {
|
2008-05-07 23:16:27 +08:00
|
|
|
unsigned int to_log = MYSQLND_G(log_mask);
|
|
|
|
to_log &= fields_eof.server_status;
|
2008-04-24 22:04:58 +08:00
|
|
|
DBG_INF_FMT("warnings=%u server_status=%u", fields_eof.warning_count, fields_eof.server_status);
|
2007-07-25 00:13:26 +08:00
|
|
|
conn->upsert_status.warning_count = fields_eof.warning_count;
|
2008-04-24 22:04:58 +08:00
|
|
|
/*
|
|
|
|
If SERVER_MORE_RESULTS_EXISTS is set then this is either MULTI_QUERY or a CALL()
|
|
|
|
The first packet after sending the query/com_execute has the bit set only
|
|
|
|
in this cases. Not sure why it's a needed but it marks that the whole stream
|
|
|
|
will include many result sets. What actually matters are the bits set at the end
|
|
|
|
of every result set (the EOF packet).
|
|
|
|
*/
|
2007-07-25 00:13:26 +08:00
|
|
|
conn->upsert_status.server_status = fields_eof.server_status;
|
2008-05-07 23:16:27 +08:00
|
|
|
if (fields_eof.server_status & SERVER_QUERY_NO_GOOD_INDEX_USED) {
|
2007-07-25 00:13:26 +08:00
|
|
|
stat = STAT_BAD_INDEX_USED;
|
2008-05-07 23:16:27 +08:00
|
|
|
} else if (fields_eof.server_status & SERVER_QUERY_NO_INDEX_USED) {
|
2007-07-25 00:13:26 +08:00
|
|
|
stat = STAT_NO_INDEX_USED;
|
2008-05-07 23:16:27 +08:00
|
|
|
} else if (fields_eof.server_status & SERVER_QUERY_WAS_SLOW) {
|
|
|
|
stat = STAT_QUERY_WAS_SLOW;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
2008-05-07 23:16:27 +08:00
|
|
|
if (to_log) {
|
2007-10-02 18:45:27 +08:00
|
|
|
#if A0
|
2008-01-29 02:27:49 +08:00
|
|
|
char *backtrace = mysqlnd_get_backtrace(TSRMLS_C);
|
2007-10-02 18:45:27 +08:00
|
|
|
php_log_err(backtrace TSRMLS_CC);
|
|
|
|
efree(backtrace);
|
2008-01-29 02:27:49 +08:00
|
|
|
#endif
|
2007-07-25 00:13:26 +08:00
|
|
|
MYSQLND_INC_CONN_STATISTIC(&conn->stats, stat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PACKET_FREE_ALLOCA(fields_eof);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (0);
|
|
|
|
PACKET_FREE_ALLOCA(rset_header);
|
2007-10-02 18:45:27 +08:00
|
|
|
|
|
|
|
DBG_INF(ret == PASS? "PASS":"FAIL");
|
|
|
|
DBG_RETURN(ret);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_fetch_lengths_buffered */
|
|
|
|
/*
|
|
|
|
Do lazy initialization for buffered results. As PHP strings have
|
|
|
|
length inside, this function makes not much sense in the context
|
|
|
|
of PHP, to be called as separate function. But let's have it for
|
|
|
|
completeness.
|
|
|
|
*/
|
|
|
|
static
|
|
|
|
unsigned long * mysqlnd_fetch_lengths_buffered(MYSQLND_RES * const result)
|
|
|
|
{
|
2008-01-24 03:09:33 +08:00
|
|
|
unsigned int i;
|
2007-07-25 00:13:26 +08:00
|
|
|
zval **previous_row;
|
2008-01-29 02:27:49 +08:00
|
|
|
MYSQLND_RES_BUFFERED *set = result->stored_data;
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
If:
|
|
|
|
- unbuffered result
|
|
|
|
- first row has not been read
|
|
|
|
- last_row has been read
|
|
|
|
*/
|
2008-01-29 02:27:49 +08:00
|
|
|
if (set->data_cursor == NULL ||
|
|
|
|
set->data_cursor == set->data ||
|
|
|
|
((set->data_cursor - set->data) > (set->row_count * result->meta->field_count) ))
|
2007-07-25 00:13:26 +08:00
|
|
|
{
|
|
|
|
return NULL;/* No rows or no more rows */
|
|
|
|
}
|
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
previous_row = set->data_cursor - result->meta->field_count;
|
|
|
|
for (i = 0; i < result->meta->field_count; i++) {
|
|
|
|
result->lengths[i] = (Z_TYPE_P(previous_row[i]) == IS_NULL)? 0:Z_STRLEN_P(previous_row[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result->lengths;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2008-01-29 06:54:21 +08:00
|
|
|
#ifdef MYSQLND_THREADED
|
2008-01-29 02:27:49 +08:00
|
|
|
/* {{{ mysqlnd_fetch_lengths_async_buffered */
|
|
|
|
/*
|
|
|
|
Do lazy initialization for buffered results. As PHP strings have
|
|
|
|
length inside, this function makes not much sense in the context
|
|
|
|
of PHP, to be called as separate function. But let's have it for
|
|
|
|
completeness.
|
|
|
|
*/
|
|
|
|
static
|
|
|
|
unsigned long * mysqlnd_fetch_lengths_async_buffered(MYSQLND_RES * const result)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
zval **previous_row;
|
|
|
|
MYSQLND_RES_BG_BUFFERED *set = result->bg_stored_data;
|
|
|
|
|
|
|
|
/*
|
|
|
|
If:
|
|
|
|
- unbuffered result
|
|
|
|
- first row has not been read
|
|
|
|
- last_row has been read
|
|
|
|
*/
|
|
|
|
if (set->data_cursor == NULL ||
|
|
|
|
set->data_cursor == set->data ||
|
|
|
|
((set->data_cursor - set->data) > set->row_count))
|
|
|
|
{
|
|
|
|
return NULL;/* No rows or no more rows */
|
|
|
|
}
|
|
|
|
|
|
|
|
previous_row = *(set->data_cursor - 1);
|
|
|
|
for (i = 0; i < result->meta->field_count; i++) {
|
2007-07-25 00:13:26 +08:00
|
|
|
result->lengths[i] = (Z_TYPE_P(previous_row[i]) == IS_NULL)? 0:Z_STRLEN_P(previous_row[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result->lengths;
|
|
|
|
}
|
|
|
|
/* }}} */
|
2008-01-29 06:54:21 +08:00
|
|
|
#endif
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_fetch_lengths_unbuffered */
|
|
|
|
static
|
|
|
|
unsigned long * mysqlnd_fetch_lengths_unbuffered(MYSQLND_RES * const result)
|
|
|
|
{
|
|
|
|
return result->lengths;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2008-05-07 23:16:27 +08:00
|
|
|
#if !defined(MYSQLND_USE_OPTIMISATIONS) || MYSQLND_USE_OPTIMISATIONS == 0
|
2007-07-25 00:13:26 +08:00
|
|
|
/* {{{ mysqlnd_res::fetch_lengths */
|
|
|
|
PHPAPI unsigned long * mysqlnd_fetch_lengths(MYSQLND_RES * const result)
|
|
|
|
{
|
|
|
|
return result->m.fetch_lengths? result->m.fetch_lengths(result):NULL;
|
|
|
|
}
|
|
|
|
/* }}} */
|
2008-05-07 23:16:27 +08:00
|
|
|
#endif
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2008-01-24 03:09:33 +08:00
|
|
|
/* {{{ mysqlnd_fetch_row_unbuffered_c */
|
|
|
|
static MYSQLND_ROW_C
|
|
|
|
mysqlnd_fetch_row_unbuffered_c(MYSQLND_RES *result TSRMLS_DC)
|
|
|
|
{
|
|
|
|
enum_func_status ret;
|
|
|
|
MYSQLND_ROW_C retrow = NULL;
|
|
|
|
unsigned int i,
|
|
|
|
field_count = result->field_count;
|
|
|
|
php_mysql_packet_row *row_packet = result->row_packet;
|
|
|
|
unsigned long *lengths = result->lengths;
|
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
DBG_ENTER("mysqlnd_fetch_row_unbuffered_c");
|
2008-01-24 03:09:33 +08:00
|
|
|
|
|
|
|
if (result->unbuf->eof_reached) {
|
|
|
|
/* No more rows obviously */
|
|
|
|
DBG_RETURN(retrow);
|
|
|
|
}
|
2008-01-29 02:27:49 +08:00
|
|
|
if (CONN_GET_STATE(result->conn) != CONN_FETCHING_DATA) {
|
2008-01-24 03:09:33 +08:00
|
|
|
SET_CLIENT_ERROR(result->conn->error_info, CR_COMMANDS_OUT_OF_SYNC,
|
|
|
|
UNKNOWN_SQLSTATE, mysqlnd_out_of_sync);
|
|
|
|
DBG_RETURN(retrow);
|
|
|
|
}
|
|
|
|
/* Let the row packet fill our buffer and skip additional mnd_malloc + memcpy */
|
|
|
|
row_packet->skip_extraction = FALSE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
If we skip rows (row == NULL) we have to
|
|
|
|
mysqlnd_unbuffered_free_last_data() before it. The function returns always true.
|
|
|
|
*/
|
|
|
|
if (PASS == (ret = PACKET_READ(row_packet, result->conn)) && !row_packet->eof) {
|
|
|
|
result->unbuf->row_count++;
|
|
|
|
|
|
|
|
mysqlnd_unbuffered_free_last_data(result TSRMLS_CC);
|
|
|
|
|
|
|
|
result->unbuf->last_row_data = row_packet->fields;
|
|
|
|
result->unbuf->last_row_buffer = row_packet->row_buffer;
|
|
|
|
row_packet->fields = NULL;
|
|
|
|
row_packet->row_buffer = NULL;
|
|
|
|
|
|
|
|
MYSQLND_INC_CONN_STATISTIC(&result->conn->stats, STAT_ROWS_FETCHED_FROM_CLIENT_NORMAL_UNBUF);
|
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
if (!row_packet->skip_extraction) {
|
|
|
|
MYSQLND_FIELD *field = result->meta->fields;
|
|
|
|
struct mysqlnd_field_hash_key *zend_hash_key = result->meta->zend_hash_keys;
|
2008-01-24 03:09:33 +08:00
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
result->m.row_decoder(result->unbuf->last_row_buffer,
|
|
|
|
result->unbuf->last_row_data,
|
|
|
|
row_packet->field_count,
|
|
|
|
row_packet->fields_metadata,
|
|
|
|
result->conn TSRMLS_CC);
|
2008-01-24 03:09:33 +08:00
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
retrow = mnd_malloc(result->field_count * sizeof(char *));
|
|
|
|
|
|
|
|
for (i = 0; i < field_count; i++, field++, zend_hash_key++) {
|
|
|
|
zval *data = result->unbuf->last_row_data[i];
|
|
|
|
int len;
|
2008-01-24 03:09:33 +08:00
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
if (Z_TYPE_P(data) != IS_NULL) {
|
|
|
|
convert_to_string(data);
|
|
|
|
retrow[i] = Z_STRVAL_P(data);
|
|
|
|
len = Z_STRLEN_P(data);
|
|
|
|
} else {
|
|
|
|
retrow[i] = NULL;
|
|
|
|
len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lengths) {
|
|
|
|
lengths[i] = len;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (field->max_length < len) {
|
|
|
|
field->max_length = len;
|
|
|
|
}
|
2008-01-24 03:09:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (ret == FAIL) {
|
|
|
|
if (row_packet->error_info.error_no) {
|
|
|
|
result->conn->error_info = row_packet->error_info;
|
|
|
|
DBG_ERR_FMT("errorno=%d error=%s", row_packet->error_info.error_no, row_packet->error_info.error);
|
|
|
|
}
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(result->conn, CONN_READY);
|
2008-01-24 03:09:33 +08:00
|
|
|
result->unbuf->eof_reached = TRUE; /* so next time we won't get an error */
|
|
|
|
} else if (row_packet->eof) {
|
|
|
|
/* Mark the connection as usable again */
|
2008-04-24 22:04:58 +08:00
|
|
|
DBG_INF_FMT("warningss=%u server_status=%u", row_packet->warning_count, row_packet->server_status);
|
2008-01-24 03:09:33 +08:00
|
|
|
result->unbuf->eof_reached = TRUE;
|
|
|
|
result->conn->upsert_status.warning_count = row_packet->warning_count;
|
|
|
|
result->conn->upsert_status.server_status = row_packet->server_status;
|
|
|
|
/*
|
|
|
|
result->row_packet will be cleaned when
|
|
|
|
destroying the result object
|
|
|
|
*/
|
|
|
|
if (result->conn->upsert_status.server_status & SERVER_MORE_RESULTS_EXISTS) {
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(result->conn, CONN_NEXT_RESULT_PENDING);
|
2008-01-24 03:09:33 +08:00
|
|
|
} else {
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(result->conn, CONN_READY);
|
2008-01-24 03:09:33 +08:00
|
|
|
}
|
|
|
|
mysqlnd_unbuffered_free_last_data(result TSRMLS_CC);
|
|
|
|
}
|
|
|
|
|
|
|
|
DBG_RETURN(retrow);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
/* {{{ mysqlnd_fetch_row_unbuffered */
|
|
|
|
static enum_func_status
|
|
|
|
mysqlnd_fetch_row_unbuffered(MYSQLND_RES *result, void *param, unsigned int flags,
|
|
|
|
zend_bool *fetched_anything TSRMLS_DC)
|
|
|
|
{
|
|
|
|
enum_func_status ret;
|
|
|
|
zval *row = (zval *) param;
|
|
|
|
php_mysql_packet_row *row_packet = result->row_packet;
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_fetch_row_unbuffered");
|
|
|
|
DBG_INF_FMT("flags=%d", flags);
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
if (result->unbuf->eof_reached) {
|
|
|
|
/* No more rows obviously */
|
|
|
|
*fetched_anything = FALSE;
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_RETURN(PASS);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
2008-01-29 02:27:49 +08:00
|
|
|
if (CONN_GET_STATE(result->conn) != CONN_FETCHING_DATA) {
|
2007-07-25 00:13:26 +08:00
|
|
|
SET_CLIENT_ERROR(result->conn->error_info, CR_COMMANDS_OUT_OF_SYNC,
|
|
|
|
UNKNOWN_SQLSTATE, mysqlnd_out_of_sync);
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_RETURN(FAIL);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
2007-10-02 18:45:27 +08:00
|
|
|
/* Let the row packet fill our buffer and skip additional mnd_malloc + memcpy */
|
2007-07-25 00:13:26 +08:00
|
|
|
row_packet->skip_extraction = row? FALSE:TRUE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
If we skip rows (row == NULL) we have to
|
|
|
|
mysqlnd_unbuffered_free_last_data() before it. The function returns always true.
|
|
|
|
*/
|
|
|
|
if (PASS == (ret = PACKET_READ(row_packet, result->conn)) && !row_packet->eof) {
|
|
|
|
result->unbuf->row_count++;
|
|
|
|
*fetched_anything = TRUE;
|
|
|
|
|
|
|
|
mysqlnd_unbuffered_free_last_data(result TSRMLS_CC);
|
|
|
|
|
|
|
|
result->unbuf->last_row_data = row_packet->fields;
|
|
|
|
result->unbuf->last_row_buffer = row_packet->row_buffer;
|
|
|
|
row_packet->fields = NULL;
|
|
|
|
row_packet->row_buffer = NULL;
|
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
MYSQLND_INC_CONN_STATISTIC(&result->conn->stats, STAT_ROWS_FETCHED_FROM_CLIENT_NORMAL_UNBUF);
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
if (!row_packet->skip_extraction) {
|
|
|
|
HashTable *row_ht = Z_ARRVAL_P(row);
|
2008-01-24 03:09:33 +08:00
|
|
|
MYSQLND_FIELD *field = result->meta->fields;
|
|
|
|
struct mysqlnd_field_hash_key *zend_hash_key = result->meta->zend_hash_keys;
|
2008-04-16 20:53:18 +08:00
|
|
|
unsigned int i, field_count = result->field_count;
|
|
|
|
unsigned long *lengths = result->lengths;
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
result->m.row_decoder(result->unbuf->last_row_buffer,
|
|
|
|
result->unbuf->last_row_data,
|
2008-04-16 20:53:18 +08:00
|
|
|
field_count,
|
2008-01-29 02:27:49 +08:00
|
|
|
row_packet->fields_metadata,
|
|
|
|
result->conn TSRMLS_CC);
|
|
|
|
|
2008-01-24 03:09:33 +08:00
|
|
|
for (i = 0; i < field_count; i++, field++, zend_hash_key++) {
|
2007-07-25 00:13:26 +08:00
|
|
|
zval *data = result->unbuf->last_row_data[i];
|
|
|
|
int len = (Z_TYPE_P(data) == IS_NULL)? 0:Z_STRLEN_P(data);
|
|
|
|
|
|
|
|
if (lengths) {
|
|
|
|
lengths[i] = len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Forbid ZE to free it, we will clean it */
|
2007-10-07 13:15:07 +08:00
|
|
|
Z_ADDREF_P(data);
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
if ((flags & MYSQLND_FETCH_BOTH) == MYSQLND_FETCH_BOTH) {
|
2007-10-07 13:15:07 +08:00
|
|
|
Z_ADDREF_P(data);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
if (flags & MYSQLND_FETCH_NUM) {
|
|
|
|
zend_hash_next_index_insert(row_ht, &data, sizeof(zval *), NULL);
|
|
|
|
}
|
|
|
|
if (flags & MYSQLND_FETCH_ASSOC) {
|
|
|
|
/* zend_hash_quick_update needs length + trailing zero */
|
|
|
|
/* QQ: Error handling ? */
|
|
|
|
/*
|
|
|
|
zend_hash_quick_update does not check, as add_assoc_zval_ex do, whether
|
|
|
|
the index is a numeric and convert it to it. This however means constant
|
|
|
|
hashing of the column name, which is not needed as it can be precomputed.
|
|
|
|
*/
|
2008-01-24 03:09:33 +08:00
|
|
|
if (zend_hash_key->is_numeric == FALSE) {
|
2007-07-25 00:13:26 +08:00
|
|
|
#if PHP_MAJOR_VERSION >= 6
|
2009-03-28 03:28:26 +08:00
|
|
|
zend_u_hash_quick_update(Z_ARRVAL_P(row), IS_UNICODE,
|
|
|
|
zend_hash_key->ustr,
|
|
|
|
zend_hash_key->ulen + 1,
|
|
|
|
zend_hash_key->key,
|
|
|
|
(void *) &data, sizeof(zval *), NULL);
|
|
|
|
#else
|
|
|
|
zend_hash_quick_update(Z_ARRVAL_P(row),
|
|
|
|
field->name,
|
|
|
|
field->name_length + 1,
|
|
|
|
zend_hash_key->key,
|
|
|
|
(void *) &data, sizeof(zval *), NULL);
|
2007-07-25 00:13:26 +08:00
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
zend_hash_index_update(Z_ARRVAL_P(row),
|
2008-01-24 03:09:33 +08:00
|
|
|
zend_hash_key->key,
|
2007-07-25 00:13:26 +08:00
|
|
|
(void *) &data, sizeof(zval *), NULL);
|
|
|
|
}
|
|
|
|
}
|
2008-01-24 03:09:33 +08:00
|
|
|
if (field->max_length < len) {
|
|
|
|
field->max_length = len;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (ret == FAIL) {
|
|
|
|
if (row_packet->error_info.error_no) {
|
2007-10-02 18:45:27 +08:00
|
|
|
result->conn->error_info = row_packet->error_info;
|
|
|
|
DBG_ERR_FMT("errorno=%d error=%s", row_packet->error_info.error_no, row_packet->error_info.error);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
*fetched_anything = FALSE;
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(result->conn, CONN_READY);
|
2007-07-25 00:13:26 +08:00
|
|
|
result->unbuf->eof_reached = TRUE; /* so next time we won't get an error */
|
|
|
|
} else if (row_packet->eof) {
|
|
|
|
/* Mark the connection as usable again */
|
2008-04-24 22:04:58 +08:00
|
|
|
DBG_INF_FMT("warnings=%u server_status=%u", row_packet->warning_count, row_packet->server_status);
|
2007-07-25 00:13:26 +08:00
|
|
|
result->unbuf->eof_reached = TRUE;
|
|
|
|
result->conn->upsert_status.warning_count = row_packet->warning_count;
|
|
|
|
result->conn->upsert_status.server_status = row_packet->server_status;
|
|
|
|
/*
|
|
|
|
result->row_packet will be cleaned when
|
|
|
|
destroying the result object
|
|
|
|
*/
|
|
|
|
if (result->conn->upsert_status.server_status & SERVER_MORE_RESULTS_EXISTS) {
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(result->conn, CONN_NEXT_RESULT_PENDING);
|
2007-07-25 00:13:26 +08:00
|
|
|
} else {
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(result->conn, CONN_READY);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
mysqlnd_unbuffered_free_last_data(result TSRMLS_CC);
|
|
|
|
*fetched_anything = FALSE;
|
|
|
|
}
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_INF_FMT("ret=%s fetched=%d", ret == PASS? "PASS":"FAIL", *fetched_anything);
|
|
|
|
DBG_RETURN(PASS);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_res::use_result */
|
2008-01-24 03:09:33 +08:00
|
|
|
static MYSQLND_RES *
|
2007-07-25 00:13:26 +08:00
|
|
|
MYSQLND_METHOD(mysqlnd_res, use_result)(MYSQLND_RES * const result, zend_bool ps TSRMLS_DC)
|
|
|
|
{
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_res::use_result");
|
|
|
|
DBG_INF_FMT("ps=%d", ps);
|
|
|
|
|
2008-01-24 03:09:33 +08:00
|
|
|
SET_EMPTY_ERROR(result->conn->error_info);
|
|
|
|
|
|
|
|
if (ps == FALSE) {
|
|
|
|
result->type = MYSQLND_RES_NORMAL;
|
|
|
|
result->m.fetch_row = result->m.fetch_row_normal_unbuffered;
|
|
|
|
result->m.fetch_lengths = mysqlnd_fetch_lengths_unbuffered;
|
|
|
|
result->lengths = mnd_ecalloc(result->field_count, sizeof(unsigned long));
|
2008-01-29 02:27:49 +08:00
|
|
|
result->m.row_decoder = php_mysqlnd_rowp_read_text_protocol;
|
2008-01-24 03:09:33 +08:00
|
|
|
} else {
|
|
|
|
result->type = MYSQLND_RES_PS_UNBUF;
|
|
|
|
/* result->m.fetch_row() will be set in mysqlnd_ps.c */
|
|
|
|
result->m.fetch_lengths = NULL; /* makes no sense */
|
|
|
|
result->lengths = NULL;
|
2008-01-29 02:27:49 +08:00
|
|
|
result->m.row_decoder = php_mysqlnd_rowp_read_binary_protocol;
|
2008-01-24 03:09:33 +08:00
|
|
|
}
|
|
|
|
result->unbuf = mnd_ecalloc(1, sizeof(MYSQLND_RES_UNBUFFERED));
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
Will be freed in the mysqlnd_internal_free_result_contents() called
|
|
|
|
by the resource destructor. mysqlnd_fetch_row_unbuffered() expects
|
|
|
|
this to be not NULL.
|
|
|
|
*/
|
2008-02-14 20:51:00 +08:00
|
|
|
/* FALSE = non-persistent */
|
|
|
|
PACKET_INIT(result->row_packet, PROT_ROW_PACKET, php_mysql_packet_row *, FALSE);
|
2007-07-25 00:13:26 +08:00
|
|
|
result->row_packet->field_count = result->field_count;
|
2008-01-24 03:09:33 +08:00
|
|
|
result->row_packet->binary_protocol = ps;
|
2007-07-25 00:13:26 +08:00
|
|
|
result->row_packet->fields_metadata = result->meta->fields;
|
|
|
|
result->row_packet->bit_fields_count = result->meta->bit_fields_count;
|
|
|
|
result->row_packet->bit_fields_total_len = result->meta->bit_fields_total_len;
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_RETURN(result);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2008-01-24 03:09:33 +08:00
|
|
|
/* {{{ mysqlnd_fetch_row_buffered_c */
|
|
|
|
static MYSQLND_ROW_C
|
|
|
|
mysqlnd_fetch_row_buffered_c(MYSQLND_RES *result TSRMLS_DC)
|
|
|
|
{
|
|
|
|
MYSQLND_ROW_C ret = NULL;
|
2008-01-29 02:27:49 +08:00
|
|
|
MYSQLND_RES_BUFFERED *set = result->stored_data;
|
2008-01-24 03:09:33 +08:00
|
|
|
|
|
|
|
DBG_ENTER("mysqlnd_fetch_row_buffered_c");
|
|
|
|
|
|
|
|
/* If we haven't read everything */
|
2008-01-29 02:27:49 +08:00
|
|
|
if (set->data_cursor &&
|
|
|
|
(set->data_cursor - set->data) < (set->row_count * result->meta->field_count))
|
2008-01-24 03:09:33 +08:00
|
|
|
{
|
2008-01-29 02:27:49 +08:00
|
|
|
zval **current_row = set->data_cursor;
|
|
|
|
MYSQLND_FIELD *field = result->meta->fields;
|
|
|
|
struct mysqlnd_field_hash_key *zend_hash_key = result->meta->zend_hash_keys;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (NULL == current_row[0]) {
|
2008-11-01 04:30:33 +08:00
|
|
|
uint64_t row_num = (set->data_cursor - set->data) / result->meta->field_count;
|
2008-01-30 06:06:16 +08:00
|
|
|
set->initialized_rows++;
|
2008-01-29 02:27:49 +08:00
|
|
|
result->m.row_decoder(set->row_buffers[row_num],
|
|
|
|
current_row,
|
|
|
|
result->meta->field_count,
|
|
|
|
result->meta->fields,
|
|
|
|
result->conn TSRMLS_CC);
|
|
|
|
for (i = 0; i < result->field_count; i++) {
|
|
|
|
/*
|
|
|
|
NULL fields are 0 length, 0 is not more than 0
|
|
|
|
String of zero size, definitely can't be the next max_length.
|
|
|
|
Thus for NULL and zero-length we are quite efficient.
|
|
|
|
*/
|
|
|
|
if (Z_TYPE_P(current_row[i]) >= IS_STRING) {
|
|
|
|
unsigned long len = Z_STRLEN_P(current_row[i]);
|
|
|
|
if (field->max_length < len) {
|
|
|
|
field->max_length = len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-01-25 23:54:31 +08:00
|
|
|
|
|
|
|
ret = mnd_malloc(result->field_count * sizeof(char *));
|
2008-01-29 02:27:49 +08:00
|
|
|
|
|
|
|
for (i = 0; i < result->field_count; i++, field++, zend_hash_key++) {
|
2008-01-24 03:09:33 +08:00
|
|
|
zval *data = current_row[i];
|
2008-01-29 02:27:49 +08:00
|
|
|
|
2008-01-24 03:09:33 +08:00
|
|
|
if (Z_TYPE_P(data) != IS_NULL) {
|
|
|
|
convert_to_string(data);
|
|
|
|
ret[i] = Z_STRVAL_P(data);
|
|
|
|
} else {
|
|
|
|
ret[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
2008-01-29 02:27:49 +08:00
|
|
|
set->data_cursor += result->meta->field_count;
|
2008-01-24 03:09:33 +08:00
|
|
|
MYSQLND_INC_GLOBAL_STATISTIC(STAT_ROWS_FETCHED_FROM_CLIENT_NORMAL_BUF);
|
|
|
|
} else {
|
2008-01-29 02:27:49 +08:00
|
|
|
set->data_cursor = NULL;
|
2008-01-24 03:09:33 +08:00
|
|
|
DBG_INF("EOF reached");
|
|
|
|
}
|
|
|
|
DBG_RETURN(ret);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
/* {{{ mysqlnd_fetch_row_buffered */
|
|
|
|
static enum_func_status
|
|
|
|
mysqlnd_fetch_row_buffered(MYSQLND_RES *result, void *param, unsigned int flags,
|
|
|
|
zend_bool *fetched_anything TSRMLS_DC)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
zval *row = (zval *) param;
|
2008-01-29 02:27:49 +08:00
|
|
|
MYSQLND_RES_BUFFERED *set = result->stored_data;
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_fetch_row_buffered");
|
|
|
|
DBG_INF_FMT("flags=%u row=%p", flags, row);
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
/* If we haven't read everything */
|
2008-01-29 02:27:49 +08:00
|
|
|
if (set->data_cursor &&
|
|
|
|
(set->data_cursor - set->data) < (set->row_count * result->meta->field_count))
|
2007-07-25 00:13:26 +08:00
|
|
|
{
|
2008-01-29 02:27:49 +08:00
|
|
|
zval **current_row = set->data_cursor;
|
2008-01-24 03:09:33 +08:00
|
|
|
MYSQLND_FIELD *field = result->meta->fields;
|
|
|
|
struct mysqlnd_field_hash_key *zend_hash_key = result->meta->zend_hash_keys;
|
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
if (NULL == current_row[0]) {
|
2008-11-01 04:30:33 +08:00
|
|
|
uint64_t row_num = (set->data_cursor - set->data) / result->meta->field_count;
|
2008-01-30 06:06:16 +08:00
|
|
|
set->initialized_rows++;
|
2008-01-29 02:27:49 +08:00
|
|
|
result->m.row_decoder(set->row_buffers[row_num],
|
|
|
|
current_row,
|
|
|
|
result->meta->field_count,
|
|
|
|
result->meta->fields,
|
|
|
|
result->conn TSRMLS_CC);
|
|
|
|
for (i = 0; i < result->field_count; i++) {
|
|
|
|
/*
|
|
|
|
NULL fields are 0 length, 0 is not more than 0
|
|
|
|
String of zero size, definitely can't be the next max_length.
|
|
|
|
Thus for NULL and zero-length we are quite efficient.
|
|
|
|
*/
|
|
|
|
if (Z_TYPE_P(current_row[i]) >= IS_STRING) {
|
|
|
|
unsigned long len = Z_STRLEN_P(current_row[i]);
|
|
|
|
if (field->max_length < len) {
|
|
|
|
field->max_length = len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-24 03:09:33 +08:00
|
|
|
for (i = 0; i < result->field_count; i++, field++, zend_hash_key++) {
|
2007-07-25 00:13:26 +08:00
|
|
|
zval *data = current_row[i];
|
|
|
|
|
|
|
|
/*
|
|
|
|
Let us later know what to do with this zval. If ref_count > 1, we will just
|
|
|
|
decrease it, otherwise free it. zval_ptr_dtor() make this very easy job.
|
|
|
|
*/
|
2007-10-07 13:15:07 +08:00
|
|
|
Z_ADDREF_P(data);
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
if ((flags & MYSQLND_FETCH_BOTH) == MYSQLND_FETCH_BOTH) {
|
2007-10-07 13:15:07 +08:00
|
|
|
Z_ADDREF_P(data);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
if (flags & MYSQLND_FETCH_NUM) {
|
|
|
|
zend_hash_next_index_insert(Z_ARRVAL_P(row), &data, sizeof(zval *), NULL);
|
|
|
|
}
|
|
|
|
if (flags & MYSQLND_FETCH_ASSOC) {
|
|
|
|
/* zend_hash_quick_update needs length + trailing zero */
|
|
|
|
/* QQ: Error handling ? */
|
|
|
|
/*
|
|
|
|
zend_hash_quick_update does not check, as add_assoc_zval_ex do, whether
|
|
|
|
the index is a numeric and convert it to it. This however means constant
|
|
|
|
hashing of the column name, which is not needed as it can be precomputed.
|
|
|
|
*/
|
2008-01-24 03:09:33 +08:00
|
|
|
if (zend_hash_key->is_numeric == FALSE) {
|
2007-07-25 00:13:26 +08:00
|
|
|
#if PHP_MAJOR_VERSION >= 6
|
2009-03-28 03:28:26 +08:00
|
|
|
zend_u_hash_quick_update(Z_ARRVAL_P(row), IS_UNICODE,
|
|
|
|
zend_hash_key->ustr,
|
|
|
|
zend_hash_key->ulen + 1,
|
|
|
|
zend_hash_key->key,
|
|
|
|
(void *) &data, sizeof(zval *), NULL);
|
|
|
|
#else
|
|
|
|
zend_hash_quick_update(Z_ARRVAL_P(row),
|
|
|
|
field->name,
|
|
|
|
field->name_length + 1,
|
|
|
|
zend_hash_key->key,
|
|
|
|
(void *) &data, sizeof(zval *), NULL);
|
2007-07-25 00:13:26 +08:00
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
zend_hash_index_update(Z_ARRVAL_P(row),
|
2008-01-24 03:09:33 +08:00
|
|
|
zend_hash_key->key,
|
2007-07-25 00:13:26 +08:00
|
|
|
(void *) &data, sizeof(zval *), NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-01-29 02:27:49 +08:00
|
|
|
set->data_cursor += result->meta->field_count;
|
2007-07-25 00:13:26 +08:00
|
|
|
*fetched_anything = TRUE;
|
2007-10-02 18:45:27 +08:00
|
|
|
MYSQLND_INC_GLOBAL_STATISTIC(STAT_ROWS_FETCHED_FROM_CLIENT_NORMAL_BUF);
|
2007-07-25 00:13:26 +08:00
|
|
|
} else {
|
2008-01-29 02:27:49 +08:00
|
|
|
set->data_cursor = NULL;
|
2007-07-25 00:13:26 +08:00
|
|
|
*fetched_anything = FALSE;
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_INF("EOF reached");
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_INF_FMT("ret=PASS fetched=%d", *fetched_anything);
|
|
|
|
DBG_RETURN(PASS);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2008-10-27 23:13:42 +08:00
|
|
|
#define STORE_RESULT_PREALLOCATED_SET_IF_NOT_EMPTY 2
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
/* {{{ mysqlnd_store_result_fetch_data */
|
|
|
|
enum_func_status
|
|
|
|
mysqlnd_store_result_fetch_data(MYSQLND * const conn, MYSQLND_RES *result,
|
|
|
|
MYSQLND_RES_METADATA *meta,
|
|
|
|
zend_bool binary_protocol,
|
|
|
|
zend_bool to_cache TSRMLS_DC)
|
|
|
|
{
|
|
|
|
enum_func_status ret;
|
2008-01-29 02:27:49 +08:00
|
|
|
php_mysql_packet_row *row_packet;
|
2008-10-27 23:13:42 +08:00
|
|
|
unsigned int next_extend = STORE_RESULT_PREALLOCATED_SET_IF_NOT_EMPTY, free_rows = 1;
|
2007-07-25 00:13:26 +08:00
|
|
|
MYSQLND_RES_BUFFERED *set;
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_store_result_fetch_data");
|
2008-01-29 02:27:49 +08:00
|
|
|
DBG_INF_FMT("conn=%llu binary_proto=%d to_cache=%d",
|
|
|
|
conn->thread_id, binary_protocol, to_cache);
|
2007-10-02 18:45:27 +08:00
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
result->stored_data = set = mnd_pecalloc(1, sizeof(MYSQLND_RES_BUFFERED), to_cache);
|
2008-10-27 23:13:42 +08:00
|
|
|
if (free_rows) {
|
|
|
|
set->row_buffers = mnd_pemalloc(free_rows * sizeof(MYSQLND_MEMORY_POOL_CHUNK *), to_cache);
|
|
|
|
}
|
2007-07-25 00:13:26 +08:00
|
|
|
set->persistent = to_cache;
|
|
|
|
set->qcache = to_cache? mysqlnd_qcache_get_cache_reference(conn->qcache):NULL;
|
|
|
|
set->references = 1;
|
|
|
|
|
2008-10-27 23:13:42 +08:00
|
|
|
result->m.row_decoder = binary_protocol? php_mysqlnd_rowp_read_binary_protocol:
|
|
|
|
php_mysqlnd_rowp_read_text_protocol;
|
|
|
|
|
2008-02-14 20:51:00 +08:00
|
|
|
/* non-persistent */
|
|
|
|
PACKET_INIT(row_packet, PROT_ROW_PACKET, php_mysql_packet_row *, FALSE);
|
2008-01-29 02:27:49 +08:00
|
|
|
row_packet->field_count = meta->field_count;
|
|
|
|
row_packet->binary_protocol = binary_protocol;
|
|
|
|
row_packet->fields_metadata = meta->fields;
|
|
|
|
row_packet->bit_fields_count = meta->bit_fields_count;
|
|
|
|
row_packet->bit_fields_total_len = meta->bit_fields_total_len;
|
|
|
|
|
|
|
|
row_packet->skip_extraction = TRUE; /* let php_mysqlnd_rowp_read() not allocate row_packet->fields, we will do it */
|
|
|
|
|
|
|
|
while (FAIL != (ret = PACKET_READ(row_packet, conn)) && !row_packet->eof) {
|
2007-07-25 00:13:26 +08:00
|
|
|
if (!free_rows) {
|
2008-11-01 04:30:33 +08:00
|
|
|
uint64_t total_allocated_rows = free_rows = next_extend = next_extend * 11 / 10; /* extend with 10% */
|
2008-10-27 23:13:42 +08:00
|
|
|
total_allocated_rows += set->row_count;
|
2007-10-02 18:45:27 +08:00
|
|
|
set->row_buffers = mnd_perealloc(set->row_buffers,
|
2008-10-27 23:13:42 +08:00
|
|
|
total_allocated_rows * sizeof(MYSQLND_MEMORY_POOL_CHUNK *),
|
2008-01-29 02:27:49 +08:00
|
|
|
set->persistent);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
free_rows--;
|
2008-01-29 02:27:49 +08:00
|
|
|
set->row_buffers[set->row_count] = row_packet->row_buffer;
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
set->row_count++;
|
|
|
|
|
|
|
|
/* So row_packet's destructor function won't efree() it */
|
2008-01-29 02:27:49 +08:00
|
|
|
row_packet->fields = NULL;
|
|
|
|
row_packet->row_buffer = NULL;
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
No need to FREE_ALLOCA as we can reuse the
|
|
|
|
'lengths' and 'fields' arrays. For lengths its absolutely safe.
|
|
|
|
'fields' is reused because the ownership of the strings has been
|
|
|
|
transfered above.
|
|
|
|
*/
|
|
|
|
}
|
2008-01-29 02:27:49 +08:00
|
|
|
/* Overflow ? */
|
2008-10-27 23:13:42 +08:00
|
|
|
if (set->row_count) {
|
|
|
|
/* if pecalloc is used valgrind barks gcc version 4.3.1 20080507 (prerelease) [gcc-4_3-branch revision 135036] (SUSE Linux) */
|
|
|
|
set->data = mnd_pemalloc(set->row_count * meta->field_count * sizeof(zval *), to_cache);
|
|
|
|
memset(set->data, 0, set->row_count * meta->field_count * sizeof(zval *));
|
|
|
|
}
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
MYSQLND_INC_CONN_STATISTIC_W_VALUE(&conn->stats,
|
|
|
|
binary_protocol? STAT_ROWS_BUFFERED_FROM_CLIENT_PS:
|
|
|
|
STAT_ROWS_BUFFERED_FROM_CLIENT_NORMAL,
|
2007-07-25 00:13:26 +08:00
|
|
|
set->row_count);
|
|
|
|
|
|
|
|
/* Finally clean */
|
2008-01-29 02:27:49 +08:00
|
|
|
if (row_packet->eof) {
|
|
|
|
conn->upsert_status.warning_count = row_packet->warning_count;
|
|
|
|
conn->upsert_status.server_status = row_packet->server_status;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* save some memory */
|
|
|
|
if (free_rows) {
|
2007-10-02 18:45:27 +08:00
|
|
|
set->row_buffers = mnd_perealloc(set->row_buffers,
|
2008-01-29 02:27:49 +08:00
|
|
|
set->row_count * sizeof(MYSQLND_MEMORY_POOL_CHUNK *),
|
|
|
|
set->persistent);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (conn->upsert_status.server_status & SERVER_MORE_RESULTS_EXISTS) {
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(conn, CONN_NEXT_RESULT_PENDING);
|
2007-07-25 00:13:26 +08:00
|
|
|
} else {
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(conn, CONN_READY);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ret == FAIL) {
|
2008-01-29 02:27:49 +08:00
|
|
|
set->error_info = row_packet->error_info;
|
2007-07-25 00:13:26 +08:00
|
|
|
} else {
|
|
|
|
/* Position at the first row */
|
|
|
|
set->data_cursor = set->data;
|
|
|
|
|
|
|
|
/* libmysql's documentation says it should be so for SELECT statements */
|
2008-01-29 02:27:49 +08:00
|
|
|
conn->upsert_status.affected_rows = set->row_count;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
2008-01-29 02:27:49 +08:00
|
|
|
PACKET_FREE(row_packet);
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2008-04-24 22:04:58 +08:00
|
|
|
DBG_INF_FMT("ret=%s row_count=%u warnings=%u server_status=%u", ret == PASS? "PASS":"FAIL",
|
2007-10-02 18:45:27 +08:00
|
|
|
set->row_count, conn->upsert_status.warning_count, conn->upsert_status.server_status);
|
|
|
|
DBG_RETURN(ret);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_res::store_result */
|
2008-01-24 03:09:33 +08:00
|
|
|
static MYSQLND_RES *
|
2007-07-25 00:13:26 +08:00
|
|
|
MYSQLND_METHOD(mysqlnd_res, store_result)(MYSQLND_RES * result,
|
|
|
|
MYSQLND * const conn,
|
|
|
|
zend_bool ps_protocol TSRMLS_DC)
|
|
|
|
{
|
|
|
|
enum_func_status ret;
|
|
|
|
zend_bool to_cache = FALSE;
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_res::store_result");
|
|
|
|
DBG_INF_FMT("conn=%d ps_protocol=%d", conn->thread_id, ps_protocol);
|
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
/* We need the conn because we are doing lazy zval initialization in buffered_fetch_row */
|
2008-04-24 22:04:58 +08:00
|
|
|
result->conn = conn->m->get_reference(conn TSRMLS_CC);
|
2007-07-25 00:13:26 +08:00
|
|
|
result->type = MYSQLND_RES_NORMAL;
|
|
|
|
result->m.fetch_row = result->m.fetch_row_normal_buffered;
|
|
|
|
result->m.fetch_lengths = mysqlnd_fetch_lengths_buffered;
|
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
CONN_SET_STATE(conn, CONN_FETCHING_DATA);
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
result->lengths = mnd_ecalloc(result->field_count, sizeof(unsigned long));
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
ret = mysqlnd_store_result_fetch_data(conn, result, result->meta,
|
2008-01-29 02:27:49 +08:00
|
|
|
ps_protocol, to_cache TSRMLS_CC);
|
2007-07-25 00:13:26 +08:00
|
|
|
if (PASS == ret) {
|
|
|
|
/* libmysql's documentation says it should be so for SELECT statements */
|
2008-01-29 02:27:49 +08:00
|
|
|
conn->upsert_status.affected_rows = result->stored_data->row_count;
|
2007-07-25 00:13:26 +08:00
|
|
|
} else {
|
2008-01-29 02:27:49 +08:00
|
|
|
conn->error_info = result->stored_data->error_info;
|
2007-07-25 00:13:26 +08:00
|
|
|
result->m.free_result_internal(result TSRMLS_CC);
|
|
|
|
result = NULL;
|
|
|
|
}
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_RETURN(result);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2008-04-24 22:04:58 +08:00
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
#ifdef MYSQLND_THREADED
|
|
|
|
/* {{{ mysqlnd_fetch_row_async_buffered */
|
|
|
|
static enum_func_status
|
|
|
|
mysqlnd_fetch_row_async_buffered(MYSQLND_RES *result, void *param, unsigned int flags,
|
|
|
|
zend_bool *fetched_anything TSRMLS_DC)
|
|
|
|
{
|
|
|
|
zval *row = (zval *) param;
|
|
|
|
MYSQLND_RES_BG_BUFFERED *set = result->bg_stored_data;
|
|
|
|
|
|
|
|
DBG_ENTER("mysqlnd_fetch_row_async_buffered");
|
|
|
|
DBG_INF_FMT("flags=%u row=%p", flags, row);
|
|
|
|
|
|
|
|
do {
|
|
|
|
tsrm_mutex_lock(set->LOCK);
|
|
|
|
if (set->bg_fetch_finished == TRUE) {
|
2008-02-14 20:51:00 +08:00
|
|
|
/* Don't unlock here, will be done later */
|
2008-01-29 02:27:49 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!set->data_cursor || (set->data_cursor - set->data) < (set->row_count)) {
|
|
|
|
tsrm_mutex_unlock(set->LOCK);
|
2008-01-30 02:13:12 +08:00
|
|
|
#if HAVE_USLEEP
|
2008-01-29 02:27:49 +08:00
|
|
|
usleep(2000);
|
|
|
|
#else
|
|
|
|
volatile int i = 0;
|
|
|
|
for (int i = 0; i < 100; i++);
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (1);
|
|
|
|
|
|
|
|
/* At the point we are still under LOCK */
|
|
|
|
if (set->data_cursor && (set->data_cursor - set->data) < (set->row_count)) {
|
2008-11-01 04:30:33 +08:00
|
|
|
uint64_t row_num = set->data_cursor - set->data;
|
2008-01-29 02:27:49 +08:00
|
|
|
zval **current_row = *set->data_cursor++;
|
2009-03-17 17:51:04 +08:00
|
|
|
unsigned int i;
|
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
set->initialized_rows++;
|
|
|
|
/* We don't forget to release the lock */
|
|
|
|
tsrm_mutex_unlock(set->LOCK);
|
|
|
|
|
2008-01-30 02:13:12 +08:00
|
|
|
/* If there was no decoding in background, we have to decode here */
|
2008-01-29 02:27:49 +08:00
|
|
|
if (set->decode_in_foreground == TRUE) {
|
|
|
|
MYSQLND_MEMORY_POOL_CHUNK *current_buffer = set->row_buffers[row_num];
|
|
|
|
result->m.row_decoder(current_buffer,
|
|
|
|
current_row,
|
|
|
|
result->meta->field_count,
|
|
|
|
result->meta->fields,
|
|
|
|
result->conn TSRMLS_CC);
|
|
|
|
|
|
|
|
for (i = 0; i < result->field_count; i++) {
|
|
|
|
/*
|
|
|
|
NULL fields are 0 length, 0 is not more than 0
|
|
|
|
String of zero size, definitely can't be the next max_length.
|
|
|
|
Thus for NULL and zero-length we are quite efficient.
|
|
|
|
*/
|
|
|
|
if (Z_TYPE_P(current_row[i]) >= IS_STRING) {
|
|
|
|
unsigned long len = Z_STRLEN_P(current_row[i]);
|
|
|
|
if (result->meta->fields[i].max_length < len) {
|
|
|
|
result->meta->fields[i].max_length = len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < result->field_count; i++) {
|
|
|
|
zval *data = current_row[i];
|
|
|
|
|
|
|
|
/*
|
|
|
|
Let us later know what to do with this zval. If ref_count > 1, we will just
|
|
|
|
decrease it, otherwise free it. zval_ptr_dtor() make this very easy job.
|
|
|
|
*/
|
|
|
|
Z_ADDREF_P(data);
|
|
|
|
|
|
|
|
if ((flags & MYSQLND_FETCH_BOTH) == MYSQLND_FETCH_BOTH) {
|
|
|
|
Z_ADDREF_P(data);
|
|
|
|
}
|
|
|
|
if (flags & MYSQLND_FETCH_NUM) {
|
|
|
|
zend_hash_next_index_insert(Z_ARRVAL_P(row), &data, sizeof(zval *), NULL);
|
|
|
|
}
|
|
|
|
if (flags & MYSQLND_FETCH_ASSOC) {
|
|
|
|
/* zend_hash_quick_update needs length + trailing zero */
|
|
|
|
/* QQ: Error handling ? */
|
|
|
|
/*
|
|
|
|
zend_hash_quick_update does not check, as add_assoc_zval_ex do, whether
|
|
|
|
the index is a numeric and convert it to it. This however means constant
|
|
|
|
hashing of the column name, which is not needed as it can be precomputed.
|
|
|
|
*/
|
|
|
|
if (result->meta->zend_hash_keys[i].is_numeric == FALSE) {
|
|
|
|
#if PHP_MAJOR_VERSION >= 6
|
2009-03-28 03:28:26 +08:00
|
|
|
zend_u_hash_quick_update(Z_ARRVAL_P(row), IS_UNICODE,
|
|
|
|
result->meta->zend_hash_keys[i].ustr,
|
|
|
|
result->meta->zend_hash_keys[i].ulen + 1,
|
|
|
|
result->meta->zend_hash_keys[i].key,
|
|
|
|
(void *) &data, sizeof(zval *), NULL);
|
|
|
|
#else
|
|
|
|
zend_hash_quick_update(Z_ARRVAL_P(row),
|
|
|
|
result->meta->fields[i].name,
|
|
|
|
result->meta->fields[i].name_length + 1,
|
|
|
|
result->meta->zend_hash_keys[i].key,
|
|
|
|
(void *) &data, sizeof(zval *), NULL);
|
2008-01-29 02:27:49 +08:00
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
zend_hash_index_update(Z_ARRVAL_P(row),
|
|
|
|
result->meta->zend_hash_keys[i].key,
|
|
|
|
(void *) &data, sizeof(zval *), NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*fetched_anything = TRUE;
|
|
|
|
MYSQLND_INC_GLOBAL_STATISTIC(STAT_ROWS_FETCHED_FROM_CLIENT_NORMAL_BUF);
|
|
|
|
} else {
|
|
|
|
set->data_cursor = NULL;
|
|
|
|
/* We don't forget to release the lock */
|
|
|
|
tsrm_mutex_unlock(set->LOCK);
|
|
|
|
*fetched_anything = FALSE;
|
|
|
|
DBG_INF("EOF reached");
|
|
|
|
}
|
|
|
|
|
|
|
|
DBG_INF_FMT("ret=PASS fetched=%d", *fetched_anything);
|
|
|
|
DBG_RETURN(PASS);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2008-04-24 22:04:58 +08:00
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
/* {{{ mysqlnd_background_store_result_fetch_data */
|
|
|
|
enum_func_status
|
|
|
|
mysqlnd_background_store_result_fetch_data(MYSQLND_RES *result TSRMLS_DC)
|
|
|
|
{
|
|
|
|
enum_func_status ret;
|
|
|
|
php_mysql_packet_row *row_packet;
|
2009-03-17 17:51:04 +08:00
|
|
|
unsigned int next_extend = STORE_RESULT_PREALLOCATED_SET_IF_NOT_EMPTY, free_rows;
|
2008-01-29 02:27:49 +08:00
|
|
|
MYSQLND_RES_BG_BUFFERED *set = result->bg_stored_data;
|
|
|
|
MYSQLND *conn = result->conn;
|
|
|
|
|
|
|
|
DBG_ENTER("mysqlnd_background_store_result_fetch_data");
|
|
|
|
|
|
|
|
free_rows = next_extend;
|
|
|
|
|
2008-02-14 20:51:00 +08:00
|
|
|
/* persistent */
|
|
|
|
PACKET_INIT(row_packet, PROT_ROW_PACKET, php_mysql_packet_row *, TRUE);
|
2008-01-29 02:27:49 +08:00
|
|
|
row_packet->field_count = result->meta->field_count;
|
|
|
|
row_packet->binary_protocol = result->m.row_decoder == php_mysqlnd_rowp_read_binary_protocol;
|
|
|
|
row_packet->fields_metadata = result->meta->fields;
|
|
|
|
row_packet->bit_fields_count = result->meta->bit_fields_count;
|
|
|
|
row_packet->bit_fields_total_len= result->meta->bit_fields_total_len;
|
2008-02-14 20:51:00 +08:00
|
|
|
row_packet->persistent_alloc = TRUE;
|
2008-01-29 02:27:49 +08:00
|
|
|
|
|
|
|
while (FAIL != (ret = PACKET_READ(row_packet, conn)) && !row_packet->eof) {
|
|
|
|
tsrm_mutex_lock(set->LOCK);
|
|
|
|
if (!free_rows) {
|
2008-11-01 04:30:33 +08:00
|
|
|
uint64_t total_rows = free_rows = next_extend = next_extend * 5 / 3; /* extend with 33% */
|
|
|
|
uint64_t old_size;
|
2008-01-29 02:27:49 +08:00
|
|
|
total_rows += set->row_count;
|
|
|
|
|
|
|
|
old_size = set->data_size;
|
|
|
|
set->data_size = total_rows;
|
|
|
|
set->data = mnd_perealloc(set->data, set->data_size * sizeof(zval **), set->persistent);
|
2008-04-24 22:04:58 +08:00
|
|
|
#if 0
|
|
|
|
memset(set->data + old_size, 0, (set->data_size - old_size) * sizeof(zval **));
|
|
|
|
#endif
|
2008-01-29 02:27:49 +08:00
|
|
|
set->row_buffers = mnd_perealloc(set->row_buffers,
|
|
|
|
total_rows * sizeof(MYSQLND_MEMORY_POOL_CHUNK *),
|
|
|
|
set->persistent);
|
|
|
|
}
|
|
|
|
set->row_buffers[set->row_count] = row_packet->row_buffer;
|
|
|
|
set->data[set->row_count] = row_packet->fields;
|
|
|
|
|
|
|
|
if (set->decode_in_foreground == FALSE) {
|
2008-11-06 18:36:30 +08:00
|
|
|
unsigned int i;
|
2008-01-29 02:27:49 +08:00
|
|
|
result->m.row_decoder(set->row_buffers[set->row_count],
|
|
|
|
set->data[set->row_count],
|
|
|
|
result->meta->field_count,
|
|
|
|
result->meta->fields,
|
|
|
|
result->conn TSRMLS_CC);
|
|
|
|
|
|
|
|
for (i = 0; i < result->field_count; i++) {
|
|
|
|
/*
|
|
|
|
NULL fields are 0 length, 0 is not more than 0
|
|
|
|
String of zero size, definitely can't be the next max_length.
|
|
|
|
Thus for NULL and zero-length we are quite efficient.
|
|
|
|
*/
|
|
|
|
if (Z_TYPE_P(set->data[set->row_count][i]) >= IS_STRING) {
|
|
|
|
unsigned long len = Z_STRLEN_P(set->data[set->row_count][i]);
|
|
|
|
if (result->meta->fields[i].max_length < len) {
|
|
|
|
result->meta->fields[i].max_length = len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
set->row_count++;
|
|
|
|
|
|
|
|
tsrm_mutex_unlock(set->LOCK);
|
|
|
|
free_rows--;
|
|
|
|
|
|
|
|
/* So row_packet's destructor function won't efree() it */
|
|
|
|
row_packet->row_buffer = NULL;
|
|
|
|
row_packet->fields = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
No need to FREE_ALLOCA as we can reuse the
|
|
|
|
'lengths' and 'fields' arrays. For lengths its absolutely safe.
|
|
|
|
'fields' is reused because the ownership of the strings has been
|
|
|
|
transfered above.
|
|
|
|
*/
|
|
|
|
}
|
2008-04-24 22:04:58 +08:00
|
|
|
#if 0
|
|
|
|
MYSQLND_INC_CONN_STATISTIC_W_VALUE(&conn->stats,
|
|
|
|
binary_protocol? STAT_ROWS_BUFFERED_FROM_CLIENT_PS:
|
|
|
|
STAT_ROWS_BUFFERED_FROM_CLIENT_NORMAL,
|
|
|
|
set->row_count);
|
|
|
|
#endif
|
2008-01-29 02:27:49 +08:00
|
|
|
tsrm_mutex_lock(set->LOCK);
|
|
|
|
/* Finally clean */
|
|
|
|
if (row_packet->eof) {
|
|
|
|
set->upsert_status.warning_count = row_packet->warning_count;
|
|
|
|
set->upsert_status.server_status = row_packet->server_status;
|
|
|
|
}
|
|
|
|
/* save some memory */
|
|
|
|
if (free_rows) {
|
|
|
|
set->data_size = set->row_count;
|
|
|
|
set->data = mnd_perealloc(set->data,
|
|
|
|
(size_t) set->data_size * sizeof(zval **), set->persistent);
|
|
|
|
set->row_buffers = mnd_perealloc(set->row_buffers,
|
|
|
|
set->row_count * sizeof(MYSQLND_MEMORY_POOL_CHUNK *),
|
|
|
|
set->persistent);
|
|
|
|
}
|
|
|
|
if (ret == FAIL) {
|
|
|
|
set->error_info = row_packet->error_info;
|
|
|
|
} else {
|
|
|
|
/* Position at the first row */
|
|
|
|
set->data_cursor = set->data;
|
|
|
|
|
|
|
|
/* libmysql's documentation says it should be so for SELECT statements */
|
|
|
|
conn->upsert_status.affected_rows = set->row_count;
|
|
|
|
set->upsert_status.affected_rows = set->row_count;
|
|
|
|
}
|
|
|
|
set->bg_fetch_finished = TRUE;
|
|
|
|
tsrm_mutex_unlock(set->LOCK);
|
|
|
|
|
|
|
|
PACKET_FREE(row_packet);
|
|
|
|
|
|
|
|
if (conn->upsert_status.server_status & SERVER_MORE_RESULTS_EXISTS) {
|
|
|
|
CONN_SET_STATE(conn, CONN_NEXT_RESULT_PENDING);
|
|
|
|
} else {
|
|
|
|
CONN_SET_STATE(conn, CONN_READY);
|
|
|
|
}
|
2008-04-24 22:04:58 +08:00
|
|
|
DBG_INF_FMT("ret=%s row_count=%u warnings=%u server_status=%u", ret == PASS? "PASS":"FAIL",
|
2008-01-29 02:27:49 +08:00
|
|
|
set->row_count, conn->upsert_status.warning_count, conn->upsert_status.server_status);
|
|
|
|
DBG_RETURN(ret);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_res::background_store_result */
|
2008-04-24 22:04:58 +08:00
|
|
|
static MYSQLND_RES *
|
2008-01-29 02:27:49 +08:00
|
|
|
MYSQLND_METHOD(mysqlnd_res, background_store_result)(MYSQLND_RES * result, MYSQLND * const conn, zend_bool ps TSRMLS_DC)
|
|
|
|
{
|
|
|
|
#ifndef MYSQLND_THREADED
|
|
|
|
return (result->m.store_result(result, conn, ps TSRMLS_CC));
|
|
|
|
#else
|
|
|
|
enum_func_status ret;
|
2008-02-14 20:51:00 +08:00
|
|
|
zend_bool to_cache = TRUE;
|
2008-01-29 02:27:49 +08:00
|
|
|
|
|
|
|
DBG_ENTER("mysqlnd_res::background_store_result");
|
|
|
|
DBG_INF_FMT("conn=%d ps_protocol=%d", conn->thread_id, ps);
|
|
|
|
|
|
|
|
/* We need the conn because we are doing lazy zval initialization in buffered_fetch_row */
|
2008-04-24 22:04:58 +08:00
|
|
|
result->conn = conn->m->get_reference(conn TSRMLS_CC);
|
2008-01-29 02:27:49 +08:00
|
|
|
result->type = MYSQLND_RES_NORMAL;
|
|
|
|
result->m.fetch_row = mysqlnd_fetch_row_async_buffered;
|
|
|
|
result->m.fetch_lengths = mysqlnd_fetch_lengths_async_buffered;
|
|
|
|
|
|
|
|
result->bg_stored_data = mnd_pecalloc(1, sizeof(MYSQLND_RES_BG_BUFFERED), to_cache);
|
2009-03-17 17:51:04 +08:00
|
|
|
result->bg_stored_data->data_size = STORE_RESULT_PREALLOCATED_SET_IF_NOT_EMPTY;
|
2008-01-29 02:27:49 +08:00
|
|
|
result->bg_stored_data->data = mnd_pecalloc(result->bg_stored_data->data_size, sizeof(zval **), to_cache);
|
2009-03-17 17:51:04 +08:00
|
|
|
result->bg_stored_data->row_buffers = mnd_pemalloc(STORE_RESULT_PREALLOCATED_SET_IF_NOT_EMPTY * sizeof(MYSQLND_MEMORY_POOL_CHUNK *), to_cache);
|
2008-01-29 02:27:49 +08:00
|
|
|
result->bg_stored_data->persistent = to_cache;
|
|
|
|
result->bg_stored_data->qcache = to_cache? mysqlnd_qcache_get_cache_reference(conn->qcache):NULL;
|
|
|
|
result->bg_stored_data->references = 1;
|
|
|
|
|
|
|
|
result->bg_stored_data->LOCK = tsrm_mutex_alloc();
|
|
|
|
|
|
|
|
result->m.row_decoder = ps? php_mysqlnd_rowp_read_binary_protocol:
|
|
|
|
php_mysqlnd_rowp_read_text_protocol;
|
|
|
|
|
|
|
|
CONN_SET_STATE(conn, CONN_FETCHING_DATA);
|
2008-02-14 20:51:00 +08:00
|
|
|
/*
|
|
|
|
This should be definitely TRUE. Decoding in background means creating zvals
|
|
|
|
which is not very safe for Zend MM, will complain in debug mode and more problems
|
|
|
|
also manifest themselves - unstable.
|
|
|
|
*/
|
|
|
|
result->bg_stored_data->decode_in_foreground = TRUE;
|
2008-01-29 02:27:49 +08:00
|
|
|
|
|
|
|
result->lengths = mnd_ecalloc(result->field_count, sizeof(unsigned long));
|
|
|
|
|
2008-02-14 20:51:00 +08:00
|
|
|
pthread_mutex_lock(&conn->LOCK_work);
|
|
|
|
|
|
|
|
pthread_cond_signal(&conn->COND_work);
|
|
|
|
do {
|
|
|
|
pthread_cond_wait(&conn->COND_work, &conn->LOCK_work);
|
|
|
|
} while (conn->current_result); /* this is our invariant */
|
|
|
|
pthread_mutex_unlock(&conn->LOCK_work);
|
|
|
|
|
|
|
|
#if 0
|
2008-01-29 02:27:49 +08:00
|
|
|
ret = mysqlnd_background_store_result_fetch_data(result TSRMLS_CC);
|
2008-02-14 20:51:00 +08:00
|
|
|
#endif
|
2008-01-29 02:27:49 +08:00
|
|
|
|
|
|
|
DBG_RETURN(result);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
/* {{{ mysqlnd_res::skip_result */
|
|
|
|
static enum_func_status
|
|
|
|
MYSQLND_METHOD(mysqlnd_res, skip_result)(MYSQLND_RES * const result TSRMLS_DC)
|
|
|
|
{
|
|
|
|
zend_bool fetched_anything;
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_res::skip_result");
|
2007-07-25 00:13:26 +08:00
|
|
|
/*
|
|
|
|
Unbuffered sets
|
|
|
|
A PS could be prepared - there is metadata and thus a stmt->result but the
|
|
|
|
fetch_row function isn't actually set (NULL), thus we have to skip these.
|
|
|
|
*/
|
2008-01-29 02:27:49 +08:00
|
|
|
if (!result->stored_data && result->unbuf &&
|
2007-07-25 00:13:26 +08:00
|
|
|
!result->unbuf->eof_reached && result->m.fetch_row)
|
|
|
|
{
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_INF("skipping result");
|
2007-07-25 00:13:26 +08:00
|
|
|
/* We have to fetch all data to clean the line */
|
|
|
|
MYSQLND_INC_CONN_STATISTIC(&result->conn->stats,
|
|
|
|
result->type == MYSQLND_RES_NORMAL? STAT_FLUSHED_NORMAL_SETS:
|
|
|
|
STAT_FLUSHED_PS_SETS);
|
|
|
|
|
|
|
|
while ((PASS == result->m.fetch_row(result, NULL, 0, &fetched_anything TSRMLS_CC)) &&
|
|
|
|
fetched_anything == TRUE)
|
|
|
|
{
|
|
|
|
/* do nothing */;
|
|
|
|
}
|
|
|
|
}
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_RETURN(PASS);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_res::free_result */
|
|
|
|
static enum_func_status
|
|
|
|
MYSQLND_METHOD(mysqlnd_res, free_result)(MYSQLND_RES *result, zend_bool implicit TSRMLS_DC)
|
|
|
|
{
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_res::free_result");
|
|
|
|
DBG_INF_FMT("implicit=%d", implicit);
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
result->m.skip_result(result TSRMLS_CC);
|
|
|
|
MYSQLND_INC_CONN_STATISTIC(result->conn? &result->conn->stats : NULL,
|
2007-10-02 18:45:27 +08:00
|
|
|
implicit == TRUE? STAT_FREE_RESULT_IMPLICIT:
|
|
|
|
STAT_FREE_RESULT_EXPLICIT);
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
result->m.free_result_internal(result TSRMLS_CC);
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_RETURN(PASS);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
/* {{{ mysqlnd_res::data_seek */
|
2007-07-25 00:13:26 +08:00
|
|
|
static enum_func_status
|
2008-11-01 04:30:33 +08:00
|
|
|
MYSQLND_METHOD(mysqlnd_res, data_seek)(MYSQLND_RES *result, uint64_t row TSRMLS_DC)
|
2007-07-25 00:13:26 +08:00
|
|
|
{
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_res::data_seek");
|
|
|
|
DBG_INF_FMT("row=%lu", row);
|
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
if (!result->stored_data) {
|
2007-07-25 00:13:26 +08:00
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* libmysql just moves to the end, it does traversing of a linked list */
|
2008-01-29 02:27:49 +08:00
|
|
|
if (row >= result->stored_data->row_count) {
|
|
|
|
result->stored_data->data_cursor = NULL;
|
2007-07-25 00:13:26 +08:00
|
|
|
} else {
|
2008-01-29 02:27:49 +08:00
|
|
|
result->stored_data->data_cursor = result->stored_data->data + row * result->meta->field_count;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_RETURN(PASS);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
/* {{{ mysqlnd_res::num_rows */
|
2008-11-01 04:30:33 +08:00
|
|
|
static uint64_t
|
2008-01-29 02:27:49 +08:00
|
|
|
MYSQLND_METHOD(mysqlnd_res, num_rows)(const MYSQLND_RES * const result)
|
2007-07-25 00:13:26 +08:00
|
|
|
{
|
|
|
|
/* Be compatible with libmysql. We count row_count, but will return 0 */
|
2008-01-29 02:27:49 +08:00
|
|
|
return result->stored_data? result->stored_data->row_count:0;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_res::num_fields */
|
2008-01-24 03:09:33 +08:00
|
|
|
static unsigned int
|
2008-01-29 02:27:49 +08:00
|
|
|
MYSQLND_METHOD(mysqlnd_res, num_fields)(const MYSQLND_RES * const result)
|
2007-07-25 00:13:26 +08:00
|
|
|
{
|
2008-01-29 02:27:49 +08:00
|
|
|
return result->field_count;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_res::fetch_field */
|
2008-04-16 20:53:18 +08:00
|
|
|
static const MYSQLND_FIELD *
|
2007-10-02 18:45:27 +08:00
|
|
|
MYSQLND_METHOD(mysqlnd_res, fetch_field)(MYSQLND_RES * const result TSRMLS_DC)
|
2007-07-25 00:13:26 +08:00
|
|
|
{
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_res::fetch_field");
|
2008-01-29 02:27:49 +08:00
|
|
|
if (result->meta) {
|
2009-05-28 19:47:15 +08:00
|
|
|
/*
|
|
|
|
We optimize the result set, so we don't convert all the data from raw buffer format to
|
|
|
|
zval arrays during store. In the case someone doesn't read all the lines this will
|
|
|
|
save time. However, when a metadata call is done, we need to calculate max_length.
|
|
|
|
We don't have control whether max_length will be used, unfortunately. Otherwise we
|
|
|
|
could have been able to skip that step.
|
|
|
|
Well, if the mysqli API switches from returning stdClass to class like mysqli_field_metadata,
|
|
|
|
then we can have max_length as dynamic property, which will be calculated during runtime and
|
|
|
|
not during mysqli_fetch_field() time.
|
|
|
|
*/
|
2008-01-29 02:27:49 +08:00
|
|
|
if (result->stored_data && (result->stored_data->initialized_rows < result->stored_data->row_count)) {
|
|
|
|
/* we have to initialize the rest to get the updated max length */
|
|
|
|
mysqlnd_res_initialize_result_set_rest(result TSRMLS_CC);
|
|
|
|
}
|
|
|
|
DBG_RETURN(result->meta->m->fetch_field(result->meta TSRMLS_CC));
|
|
|
|
}
|
|
|
|
DBG_RETURN(NULL);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_res::fetch_field_direct */
|
2008-04-16 20:53:18 +08:00
|
|
|
static const MYSQLND_FIELD *
|
2008-01-29 02:27:49 +08:00
|
|
|
MYSQLND_METHOD(mysqlnd_res, fetch_field_direct)(MYSQLND_RES * const result,
|
2007-10-02 18:45:27 +08:00
|
|
|
MYSQLND_FIELD_OFFSET fieldnr TSRMLS_DC)
|
2007-07-25 00:13:26 +08:00
|
|
|
{
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_res::fetch_field_direct");
|
2008-01-29 02:27:49 +08:00
|
|
|
if (result->meta) {
|
2009-05-28 19:47:15 +08:00
|
|
|
/*
|
|
|
|
We optimize the result set, so we don't convert all the data from raw buffer format to
|
|
|
|
zval arrays during store. In the case someone doesn't read all the lines this will
|
|
|
|
save time. However, when a metadata call is done, we need to calculate max_length.
|
|
|
|
We don't have control whether max_length will be used, unfortunately. Otherwise we
|
|
|
|
could have been able to skip that step.
|
|
|
|
Well, if the mysqli API switches from returning stdClass to class like mysqli_field_metadata,
|
|
|
|
then we can have max_length as dynamic property, which will be calculated during runtime and
|
|
|
|
not during mysqli_fetch_field_direct() time.
|
|
|
|
*/
|
2008-01-29 02:27:49 +08:00
|
|
|
if (result->stored_data && (result->stored_data->initialized_rows < result->stored_data->row_count)) {
|
|
|
|
/* we have to initialized the rest to get the updated max length */
|
|
|
|
mysqlnd_res_initialize_result_set_rest(result TSRMLS_CC);
|
|
|
|
}
|
|
|
|
DBG_RETURN(result->meta->m->fetch_field_direct(result->meta, fieldnr TSRMLS_CC));
|
|
|
|
}
|
|
|
|
|
|
|
|
DBG_RETURN(NULL);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2008-04-16 20:53:18 +08:00
|
|
|
/* {{{ mysqlnd_res::fetch_field */
|
|
|
|
static const MYSQLND_FIELD *
|
|
|
|
MYSQLND_METHOD(mysqlnd_res, fetch_fields)(MYSQLND_RES * const result TSRMLS_DC)
|
|
|
|
{
|
|
|
|
DBG_ENTER("mysqlnd_res::fetch_fields");
|
|
|
|
if (result->meta) {
|
|
|
|
if (result->stored_data && (result->stored_data->initialized_rows < result->stored_data->row_count)) {
|
|
|
|
/* we have to initialize the rest to get the updated max length */
|
|
|
|
mysqlnd_res_initialize_result_set_rest(result TSRMLS_CC);
|
|
|
|
}
|
|
|
|
DBG_RETURN(result->meta->m->fetch_fields(result->meta TSRMLS_CC));
|
|
|
|
}
|
|
|
|
DBG_RETURN(NULL);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
/* {{{ mysqlnd_res::field_seek */
|
|
|
|
static MYSQLND_FIELD_OFFSET
|
|
|
|
MYSQLND_METHOD(mysqlnd_res, field_seek)(MYSQLND_RES * const result,
|
|
|
|
MYSQLND_FIELD_OFFSET field_offset)
|
|
|
|
{
|
|
|
|
MYSQLND_FIELD_OFFSET return_value = 0;
|
|
|
|
if (result->meta) {
|
|
|
|
return_value = result->meta->current_field;
|
|
|
|
result->meta->current_field = field_offset;
|
|
|
|
}
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_res::field_tell */
|
|
|
|
static MYSQLND_FIELD_OFFSET
|
|
|
|
MYSQLND_METHOD(mysqlnd_res, field_tell)(const MYSQLND_RES * const result)
|
|
|
|
{
|
|
|
|
return result->meta? result->meta->m->field_tell(result->meta):0;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_res::fetch_into */
|
|
|
|
static void
|
|
|
|
MYSQLND_METHOD(mysqlnd_res, fetch_into)(MYSQLND_RES *result, unsigned int flags,
|
|
|
|
zval *return_value,
|
|
|
|
enum_mysqlnd_extension extension TSRMLS_DC ZEND_FILE_LINE_DC)
|
|
|
|
{
|
|
|
|
zend_bool fetched_anything;
|
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_res::fetch_into");
|
|
|
|
DBG_INF_FMT("flags=%u mysqlnd_extension=%d", flags, extension);
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
if (!result->m.fetch_row) {
|
2007-10-02 18:45:27 +08:00
|
|
|
RETVAL_NULL();
|
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
Hint Zend how many elements we will have in the hash. Thus it won't
|
|
|
|
extend and rehash the hash constantly.
|
|
|
|
*/
|
|
|
|
mysqlnd_array_init(return_value, mysqlnd_num_fields(result) * 2);
|
|
|
|
if (FAIL == result->m.fetch_row(result, (void *)return_value, flags, &fetched_anything TSRMLS_CC)) {
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error while reading a row");
|
2007-10-02 18:45:27 +08:00
|
|
|
RETVAL_FALSE;
|
2007-07-25 00:13:26 +08:00
|
|
|
} else if (fetched_anything == FALSE) {
|
|
|
|
zval_dtor(return_value);
|
|
|
|
switch (extension) {
|
|
|
|
case MYSQLND_MYSQLI:
|
2007-10-02 18:45:27 +08:00
|
|
|
RETVAL_NULL();
|
2007-07-25 00:13:26 +08:00
|
|
|
break;
|
|
|
|
case MYSQLND_MYSQL:
|
2007-10-02 18:45:27 +08:00
|
|
|
RETVAL_FALSE;
|
2007-07-25 00:13:26 +08:00
|
|
|
break;
|
|
|
|
default:exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
return_value is IS_NULL for no more data and an array for data. Thus it's ok
|
|
|
|
to return here.
|
|
|
|
*/
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2008-01-24 03:09:33 +08:00
|
|
|
/* {{{ mysqlnd_res::fetch_row_c */
|
|
|
|
static MYSQLND_ROW_C
|
|
|
|
MYSQLND_METHOD(mysqlnd_res, fetch_row_c)(MYSQLND_RES *result TSRMLS_DC)
|
|
|
|
{
|
|
|
|
MYSQLND_ROW_C ret = NULL;
|
|
|
|
DBG_ENTER("mysqlnd_res::fetch_row_c");
|
|
|
|
|
|
|
|
if (result->m.fetch_row) {
|
|
|
|
if (result->m.fetch_row == result->m.fetch_row_normal_buffered) {
|
|
|
|
return mysqlnd_fetch_row_buffered_c(result TSRMLS_CC);
|
|
|
|
} else if (result->m.fetch_row == result->m.fetch_row_normal_unbuffered) {
|
|
|
|
return mysqlnd_fetch_row_unbuffered_c(result TSRMLS_CC);
|
|
|
|
} else {
|
|
|
|
*((int*)NULL) = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DBG_RETURN(ret);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
/* {{{ mysqlnd_res::fetch_all */
|
|
|
|
static void
|
|
|
|
MYSQLND_METHOD(mysqlnd_res, fetch_all)(MYSQLND_RES *result, unsigned int flags,
|
|
|
|
zval *return_value TSRMLS_DC ZEND_FILE_LINE_DC)
|
|
|
|
{
|
|
|
|
zval *row;
|
|
|
|
ulong i = 0;
|
2008-01-29 02:27:49 +08:00
|
|
|
MYSQLND_RES_BUFFERED *set = result->stored_data;
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_res::fetch_all");
|
|
|
|
DBG_INF_FMT("flags=%u", flags);
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
/* mysqlnd_res::fetch_all works with buffered resultsets only */
|
2008-01-29 02:27:49 +08:00
|
|
|
if (!set ||
|
|
|
|
!set->row_count || !set->data_cursor ||
|
|
|
|
set->data_cursor >= set->data + set->row_count)
|
2007-07-25 00:13:26 +08:00
|
|
|
{
|
2007-10-02 18:45:27 +08:00
|
|
|
RETVAL_NULL();
|
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
|
2008-11-06 18:36:30 +08:00
|
|
|
mysqlnd_array_init(return_value, (unsigned int) set->row_count);
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
while (set->data_cursor &&
|
|
|
|
(set->data_cursor - set->data) < (set->row_count * result->meta->field_count))
|
2007-07-25 00:13:26 +08:00
|
|
|
{
|
|
|
|
MAKE_STD_ZVAL(row);
|
|
|
|
mysqlnd_fetch_into(result, flags, row, MYSQLND_MYSQLI);
|
|
|
|
add_index_zval(return_value, i++, row);
|
|
|
|
}
|
2007-10-02 18:45:27 +08:00
|
|
|
|
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2008-01-29 02:27:49 +08:00
|
|
|
/* {{{ mysqlnd_res::fetch_field_data */
|
2007-07-25 00:13:26 +08:00
|
|
|
static void
|
|
|
|
MYSQLND_METHOD(mysqlnd_res, fetch_field_data)(MYSQLND_RES *result, unsigned int offset,
|
|
|
|
zval *return_value TSRMLS_DC)
|
|
|
|
{
|
|
|
|
zval row;
|
|
|
|
zval **entry;
|
2008-01-24 03:09:33 +08:00
|
|
|
unsigned int i = 0;
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_ENTER("mysqlnd_res::fetch_field_data");
|
|
|
|
DBG_INF_FMT("offset=%u", offset);
|
|
|
|
|
2007-07-25 00:13:26 +08:00
|
|
|
if (!result->m.fetch_row) {
|
2007-10-02 18:45:27 +08:00
|
|
|
RETVAL_NULL();
|
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
Hint Zend how many elements we will have in the hash. Thus it won't
|
|
|
|
extend and rehash the hash constantly.
|
|
|
|
*/
|
|
|
|
INIT_PZVAL(&row);
|
|
|
|
mysqlnd_fetch_into(result, MYSQLND_FETCH_NUM, &row, MYSQLND_MYSQL);
|
|
|
|
if (Z_TYPE(row) != IS_ARRAY) {
|
|
|
|
zval_dtor(&row);
|
2007-10-02 18:45:27 +08:00
|
|
|
RETVAL_NULL();
|
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
zend_hash_internal_pointer_reset(Z_ARRVAL(row));
|
|
|
|
while (i++ < offset) {
|
|
|
|
zend_hash_move_forward(Z_ARRVAL(row));
|
|
|
|
zend_hash_get_current_data(Z_ARRVAL(row), (void **)&entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
zend_hash_get_current_data(Z_ARRVAL(row), (void **)&entry);
|
|
|
|
|
|
|
|
*return_value = **entry;
|
|
|
|
zval_copy_ctor(return_value);
|
2007-10-07 20:23:29 +08:00
|
|
|
Z_SET_REFCOUNT_P(return_value, 1);
|
2007-07-25 00:13:26 +08:00
|
|
|
zval_dtor(&row);
|
2007-10-02 18:45:27 +08:00
|
|
|
|
|
|
|
DBG_VOID_RETURN;
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ mysqlnd_result_init */
|
2007-10-02 18:45:27 +08:00
|
|
|
MYSQLND_RES *mysqlnd_result_init(unsigned int field_count, MYSQLND_THD_ZVAL_PCACHE *cache TSRMLS_DC)
|
2007-07-25 00:13:26 +08:00
|
|
|
{
|
2007-10-02 18:45:27 +08:00
|
|
|
MYSQLND_RES *ret = mnd_ecalloc(1, sizeof(MYSQLND_RES));
|
|
|
|
|
|
|
|
DBG_ENTER("mysqlnd_result_init");
|
|
|
|
DBG_INF_FMT("field_count=%u cache=%p", field_count, cache);
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
ret->field_count = field_count;
|
|
|
|
ret->zval_cache = cache;
|
|
|
|
|
|
|
|
ret->m.use_result = MYSQLND_METHOD(mysqlnd_res, use_result);
|
|
|
|
ret->m.store_result = MYSQLND_METHOD(mysqlnd_res, store_result);
|
2008-01-29 02:27:49 +08:00
|
|
|
ret->m.background_store_result = MYSQLND_METHOD(mysqlnd_res, background_store_result);
|
2007-07-25 00:13:26 +08:00
|
|
|
ret->m.free_result = MYSQLND_METHOD(mysqlnd_res, free_result);
|
|
|
|
ret->m.seek_data = MYSQLND_METHOD(mysqlnd_res, data_seek);
|
|
|
|
ret->m.num_rows = MYSQLND_METHOD(mysqlnd_res, num_rows);
|
|
|
|
ret->m.num_fields = MYSQLND_METHOD(mysqlnd_res, num_fields);
|
|
|
|
ret->m.fetch_into = MYSQLND_METHOD(mysqlnd_res, fetch_into);
|
2008-01-24 03:09:33 +08:00
|
|
|
ret->m.fetch_row_c = MYSQLND_METHOD(mysqlnd_res, fetch_row_c);
|
2007-07-25 00:13:26 +08:00
|
|
|
ret->m.fetch_all = MYSQLND_METHOD(mysqlnd_res, fetch_all);
|
|
|
|
ret->m.fetch_field_data = MYSQLND_METHOD(mysqlnd_res, fetch_field_data);
|
|
|
|
ret->m.seek_field = MYSQLND_METHOD(mysqlnd_res, field_seek);
|
|
|
|
ret->m.field_tell = MYSQLND_METHOD(mysqlnd_res, field_tell);
|
|
|
|
ret->m.fetch_field = MYSQLND_METHOD(mysqlnd_res, fetch_field);
|
|
|
|
ret->m.fetch_field_direct = MYSQLND_METHOD(mysqlnd_res, fetch_field_direct);
|
2008-04-16 20:53:18 +08:00
|
|
|
ret->m.fetch_fields = MYSQLND_METHOD(mysqlnd_res, fetch_fields);
|
2007-07-25 00:13:26 +08:00
|
|
|
|
|
|
|
ret->m.skip_result = MYSQLND_METHOD(mysqlnd_res, skip_result);
|
|
|
|
ret->m.free_result_buffers = MYSQLND_METHOD(mysqlnd_res, free_result_buffers);
|
|
|
|
ret->m.free_result_internal = mysqlnd_internal_free_result;
|
|
|
|
ret->m.free_result_contents = mysqlnd_internal_free_result_contents;
|
|
|
|
|
|
|
|
ret->m.read_result_metadata = MYSQLND_METHOD(mysqlnd_res, read_result_metadata);
|
|
|
|
ret->m.fetch_row_normal_buffered = mysqlnd_fetch_row_buffered;
|
|
|
|
ret->m.fetch_row_normal_unbuffered = mysqlnd_fetch_row_unbuffered;
|
2008-01-29 02:27:49 +08:00
|
|
|
ret->m.row_decoder = NULL;
|
2007-07-25 00:13:26 +08:00
|
|
|
|
2007-10-02 18:45:27 +08:00
|
|
|
DBG_RETURN(ret);
|
2007-07-25 00:13:26 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: noet sw=4 ts=4
|
|
|
|
*/
|