Annotation of embedaddon/php/ext/mysqli/mysqli_priv.h, revision 1.1.1.1

1.1       misho       1: /*
                      2:   +----------------------------------------------------------------------+
                      3:   | PHP Version 5                                                        |
                      4:   +----------------------------------------------------------------------+
                      5:   | Copyright (c) 1997-2012 The PHP Group                                |
                      6:   +----------------------------------------------------------------------+
                      7:   | This source file is subject to version 3.01 of the PHP license,      |
                      8:   | that is bundled with this package in the file LICENSE, and is        |
                      9:   | available through the world-wide-web at the following url:           |
                     10:   | http://www.php.net/license/3_01.txt                                  |
                     11:   | If you did not receive a copy of the PHP license and are unable to   |
                     12:   | obtain it through the world-wide-web, please send a note to          |
                     13:   | license@php.net so we can mail you a copy immediately.               |
                     14:   +----------------------------------------------------------------------+
                     15:   | Author: Georg Richter <georg@php.net>                                |
                     16:   +----------------------------------------------------------------------+
                     17: 
                     18:   $Id: php_mysqli_structs.h 302179 2010-08-13 09:57:04Z andrey $
                     19: */
                     20: 
                     21: #ifndef MYSQLI_PRIV_H
                     22: #define MYSQLI_PRIV_H
                     23: 
                     24: #ifdef PHP_MYSQL_UNIX_SOCK_ADDR
                     25: #ifdef MYSQL_UNIX_ADDR
                     26: #undef MYSQL_UNIX_ADDR
                     27: #endif
                     28: #define MYSQL_UNIX_ADDR PHP_MYSQL_UNIX_SOCK_ADDR
                     29: #endif
                     30: 
                     31: /* character set support */
                     32: #if defined(MYSQLND_VERSION_ID) || MYSQL_VERSION_ID > 50009
                     33: #define HAVE_MYSQLI_GET_CHARSET
                     34: #endif
                     35: 
                     36: #if defined(MYSQLND_VERSION_ID) || (MYSQL_VERSION_ID > 40112 && MYSQL_VERSION_ID < 50000) || MYSQL_VERSION_ID > 50005
                     37: #define HAVE_MYSQLI_SET_CHARSET
                     38: #endif
                     39: 
                     40: 
                     41: extern const zend_function_entry mysqli_functions[];
                     42: extern const zend_function_entry mysqli_link_methods[];
                     43: extern const zend_function_entry mysqli_stmt_methods[];
                     44: extern const zend_function_entry mysqli_result_methods[];
                     45: extern const zend_function_entry mysqli_driver_methods[];
                     46: extern const zend_function_entry mysqli_warning_methods[];
                     47: extern const zend_function_entry mysqli_exception_methods[];
                     48: 
                     49: extern const mysqli_property_entry mysqli_link_property_entries[];
                     50: extern const mysqli_property_entry mysqli_result_property_entries[];
                     51: extern const mysqli_property_entry mysqli_stmt_property_entries[];
                     52: extern const mysqli_property_entry mysqli_driver_property_entries[];
                     53: extern const mysqli_property_entry mysqli_warning_property_entries[];
                     54: 
                     55: extern zend_property_info mysqli_link_property_info_entries[];
                     56: extern zend_property_info mysqli_result_property_info_entries[];
                     57: extern zend_property_info mysqli_stmt_property_info_entries[];
                     58: extern zend_property_info mysqli_driver_property_info_entries[];
                     59: extern zend_property_info mysqli_warning_property_info_entries[];
                     60: 
                     61: extern int php_le_pmysqli(void);
                     62: extern void php_mysqli_dtor_p_elements(void *data);
                     63: 
                     64: extern void php_mysqli_close(MY_MYSQL * mysql, int close_type, int resource_status TSRMLS_DC);
                     65: 
                     66: extern void php_mysqli_fetch_into_hash(INTERNAL_FUNCTION_PARAMETERS, int override_flag, int into_object);
                     67: extern void php_clear_stmt_bind(MY_STMT *stmt TSRMLS_DC);
                     68: extern void php_clear_mysql(MY_MYSQL *);
                     69: extern MYSQLI_WARNING *php_get_warnings(MYSQL *mysql TSRMLS_DC);
                     70: extern void php_clear_warnings(MYSQLI_WARNING *w);
                     71: extern void php_free_stmt_bind_buffer(BIND_BUFFER bbuf, int type);
                     72: extern void php_mysqli_report_error(const char *sqlstate, int errorno, const char *error TSRMLS_DC);
                     73: extern void php_mysqli_report_index(const char *query, unsigned int status TSRMLS_DC);
                     74: extern void php_set_local_infile_handler_default(MY_MYSQL *);
                     75: extern void php_mysqli_throw_sql_exception(char *sqlstate, int errorno TSRMLS_DC, char *format, ...);
                     76: 
                     77: #ifdef HAVE_SPL
                     78: extern PHPAPI zend_class_entry *spl_ce_RuntimeException;
                     79: #endif
                     80: 
                     81: #define REGISTER_MYSQLI_CLASS_ENTRY(name, mysqli_entry, class_functions) { \
                     82:        zend_class_entry tmp_ce; \
                     83:        INIT_CLASS_ENTRY(tmp_ce, name,class_functions); \
                     84:        tmp_ce.create_object = mysqli_objects_new; \
                     85:        mysqli_entry = zend_register_internal_class(&tmp_ce TSRMLS_CC); \
                     86: } \
                     87: 
                     88: #define PHP_MYSQLI_EXPORT(__type) PHP_MYSQLI_API __type
                     89: 
                     90: PHP_MYSQLI_EXPORT(zend_object_value) mysqli_objects_new(zend_class_entry * TSRMLS_DC);
                     91: 
                     92: 
                     93: #define MYSQLI_DISABLE_MQ if (mysql->multi_query) { \
                     94:        mysql_set_server_option(mysql->mysql, MYSQL_OPTION_MULTI_STATEMENTS_OFF); \
                     95:        mysql->multi_query = 0; \
                     96: }
                     97: 
                     98: #define MYSQLI_ENABLE_MQ if (!mysql->multi_query) { \
                     99:        mysql_set_server_option(mysql->mysql, MYSQL_OPTION_MULTI_STATEMENTS_ON); \
                    100:        mysql->multi_query = 1; \
                    101: }
                    102: 
                    103: 
                    104: #define MYSQLI_RETURN_LONG_LONG(__val) \
                    105: { \
                    106:        if ((__val) < LONG_MAX) {               \
                    107:                RETURN_LONG((long) (__val));            \
                    108:        } else {                                \
                    109:                char *ret;                      \
                    110:                /* always used with my_ulonglong -> %llu */ \
                    111:                int l = spprintf(&ret, 0, MYSQLI_LLU_SPEC, (__val));    \
                    112:                RETURN_STRINGL(ret, l, 0);              \
                    113:        }                                       \
                    114: }
                    115: 
                    116: #define MYSQLI_STORE_RESULT 0
                    117: #define MYSQLI_USE_RESULT      1
                    118: #ifdef MYSQLI_USE_MYSQLND
                    119: #define MYSQLI_ASYNC           8
                    120: #else
                    121: /* libmysql */
                    122: #define MYSQLI_ASYNC           0
                    123: #endif
                    124: 
                    125: /* for mysqli_fetch_assoc */
                    126: #define MYSQLI_ASSOC   1
                    127: #define MYSQLI_NUM             2
                    128: #define MYSQLI_BOTH            3
                    129: 
                    130: /* fetch types */
                    131: #define FETCH_SIMPLE           1
                    132: #define FETCH_RESULT           2
                    133: 
                    134: /*** REPORT MODES ***/
                    135: #define MYSQLI_REPORT_OFF           0
                    136: #define MYSQLI_REPORT_ERROR                    1
                    137: #define MYSQLI_REPORT_STRICT           2
                    138: #define MYSQLI_REPORT_INDEX                    4
                    139: #define MYSQLI_REPORT_CLOSE                    8
                    140: #define MYSQLI_REPORT_ALL                255
                    141: 
                    142: #define MYSQLI_REPORT_MYSQL_ERROR(mysql) \
                    143: if ((MyG(report_mode) & MYSQLI_REPORT_ERROR) && mysql_errno(mysql)) { \
                    144:        php_mysqli_report_error(mysql_sqlstate(mysql), mysql_errno(mysql), mysql_error(mysql) TSRMLS_CC); \
                    145: }
                    146: 
                    147: #define MYSQLI_REPORT_STMT_ERROR(stmt) \
                    148: if ((MyG(report_mode) & MYSQLI_REPORT_ERROR) && mysql_stmt_errno(stmt)) { \
                    149:        php_mysqli_report_error(mysql_stmt_sqlstate(stmt), mysql_stmt_errno(stmt), mysql_stmt_error(stmt) TSRMLS_CC); \
                    150: }
                    151: 
                    152: void mysqli_common_connect(INTERNAL_FUNCTION_PARAMETERS, zend_bool is_real_connect, zend_bool in_ctor);
                    153: 
                    154: void php_mysqli_init(INTERNAL_FUNCTION_PARAMETERS);
                    155: 
                    156: #endif /* MYSQLI_PRIV_H */

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>