php_pdo_driver.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 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: Wez Furlong <wez@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef PHP_PDO_DRIVER_H
  19. #define PHP_PDO_DRIVER_H
  20. #include "php_pdo.h"
  21. /* forward declarations */
  22. typedef struct _pdo_dbh_t pdo_dbh_t;
  23. typedef struct _pdo_dbh_object_t pdo_dbh_object_t;
  24. typedef struct _pdo_stmt_t pdo_stmt_t;
  25. typedef struct _pdo_row_t pdo_row_t;
  26. struct pdo_bound_param_data;
  27. #ifdef PHP_WIN32
  28. typedef __int64 pdo_int64_t;
  29. typedef unsigned __int64 pdo_uint64_t;
  30. #else
  31. typedef long long int pdo_int64_t;
  32. typedef unsigned long long int pdo_uint64_t;
  33. #endif
  34. PDO_API char *php_pdo_int64_to_str(pdo_int64_t i64);
  35. #ifndef TRUE
  36. # define TRUE 1
  37. #endif
  38. #ifndef FALSE
  39. # define FALSE 0
  40. #endif
  41. #define PDO_DRIVER_API 20170320
  42. enum pdo_param_type {
  43. PDO_PARAM_NULL,
  44. /* int as in long (the php native int type).
  45. * If you mark a column as an int, PDO expects get_col to return
  46. * a pointer to a long */
  47. PDO_PARAM_INT,
  48. /* get_col ptr should point to start of the string buffer */
  49. PDO_PARAM_STR,
  50. /* get_col: when len is 0 ptr should point to a php_stream *,
  51. * otherwise it should behave like a string. Indicate a NULL field
  52. * value by setting the ptr to NULL */
  53. PDO_PARAM_LOB,
  54. /* get_col: will expect the ptr to point to a new PDOStatement object handle,
  55. * but this isn't wired up yet */
  56. PDO_PARAM_STMT, /* hierarchical result set */
  57. /* get_col ptr should point to a zend_bool */
  58. PDO_PARAM_BOOL,
  59. /* get_col ptr should point to a zval*
  60. and the driver is responsible for adding correct type information to get_column_meta()
  61. */
  62. PDO_PARAM_ZVAL,
  63. /* magic flag to denote a parameter as being input/output */
  64. PDO_PARAM_INPUT_OUTPUT = 0x80000000,
  65. /* magic flag to denote a string that uses the national character set
  66. see section 4.2.1 of SQL-92: http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt
  67. */
  68. PDO_PARAM_STR_NATL = 0x40000000,
  69. /* magic flag to denote a string that uses the regular character set */
  70. PDO_PARAM_STR_CHAR = 0x20000000,
  71. };
  72. #define PDO_PARAM_FLAGS 0xFFFF0000
  73. #define PDO_PARAM_TYPE(x) ((x) & ~PDO_PARAM_FLAGS)
  74. enum pdo_fetch_type {
  75. PDO_FETCH_USE_DEFAULT,
  76. PDO_FETCH_LAZY,
  77. PDO_FETCH_ASSOC,
  78. PDO_FETCH_NUM,
  79. PDO_FETCH_BOTH,
  80. PDO_FETCH_OBJ,
  81. PDO_FETCH_BOUND, /* return true/false only; rely on bound columns */
  82. PDO_FETCH_COLUMN, /* fetch a numbered column only */
  83. PDO_FETCH_CLASS, /* create an instance of named class, call ctor and set properties */
  84. PDO_FETCH_INTO, /* fetch row into an existing object */
  85. PDO_FETCH_FUNC, /* fetch into function and return its result */
  86. PDO_FETCH_NAMED, /* like PDO_FETCH_ASSOC, but can handle duplicate names */
  87. PDO_FETCH_KEY_PAIR, /* fetch into an array where the 1st column is a key and all subsequent columns are values */
  88. PDO_FETCH__MAX /* must be last */
  89. };
  90. #define PDO_FETCH_FLAGS 0xFFFF0000 /* fetchAll() modes or'd to PDO_FETCH_XYZ */
  91. #define PDO_FETCH_GROUP 0x00010000 /* fetch into groups */
  92. #define PDO_FETCH_UNIQUE 0x00030000 /* fetch into groups assuming first col is unique */
  93. #define PDO_FETCH_CLASSTYPE 0x00040000 /* fetch class gets its class name from 1st column */
  94. #define PDO_FETCH_SERIALIZE 0x00080000 /* fetch class instances by calling serialize */
  95. #define PDO_FETCH_PROPS_LATE 0x00100000 /* fetch props after calling ctor */
  96. /* fetch orientation for scrollable cursors */
  97. enum pdo_fetch_orientation {
  98. PDO_FETCH_ORI_NEXT, /* default: fetch the next available row */
  99. PDO_FETCH_ORI_PRIOR, /* scroll back to prior row and fetch that */
  100. PDO_FETCH_ORI_FIRST, /* scroll to the first row and fetch that */
  101. PDO_FETCH_ORI_LAST, /* scroll to the last row and fetch that */
  102. PDO_FETCH_ORI_ABS, /* scroll to an absolute numbered row and fetch that */
  103. PDO_FETCH_ORI_REL /* scroll relative to the current row, and fetch that */
  104. };
  105. enum pdo_attribute_type {
  106. PDO_ATTR_AUTOCOMMIT, /* use to turn on or off auto-commit mode */
  107. PDO_ATTR_PREFETCH, /* configure the prefetch size for drivers that support it. Size is in KB */
  108. PDO_ATTR_TIMEOUT, /* connection timeout in seconds */
  109. PDO_ATTR_ERRMODE, /* control how errors are handled */
  110. PDO_ATTR_SERVER_VERSION, /* database server version */
  111. PDO_ATTR_CLIENT_VERSION, /* client library version */
  112. PDO_ATTR_SERVER_INFO, /* server information */
  113. PDO_ATTR_CONNECTION_STATUS, /* connection status */
  114. PDO_ATTR_CASE, /* control case folding for portability */
  115. PDO_ATTR_CURSOR_NAME, /* name a cursor for use in "WHERE CURRENT OF <name>" */
  116. PDO_ATTR_CURSOR, /* cursor type */
  117. PDO_ATTR_ORACLE_NULLS, /* convert empty strings to NULL */
  118. PDO_ATTR_PERSISTENT, /* pconnect style connection */
  119. PDO_ATTR_STATEMENT_CLASS, /* array(classname, array(ctor_args)) to specify the class of the constructed statement */
  120. PDO_ATTR_FETCH_TABLE_NAMES, /* include table names in the column names, where available */
  121. PDO_ATTR_FETCH_CATALOG_NAMES, /* include the catalog/db name names in the column names, where available */
  122. PDO_ATTR_DRIVER_NAME, /* name of the driver (as used in the constructor) */
  123. PDO_ATTR_STRINGIFY_FETCHES, /* converts integer/float types to strings during fetch */
  124. PDO_ATTR_MAX_COLUMN_LEN, /* make database calculate maximum length of data found in a column */
  125. PDO_ATTR_DEFAULT_FETCH_MODE, /* Set the default fetch mode */
  126. PDO_ATTR_EMULATE_PREPARES, /* use query emulation rather than native */
  127. PDO_ATTR_DEFAULT_STR_PARAM, /* set the default string parameter type (see the PDO::PARAM_STR_* magic flags) */
  128. /* this defines the start of the range for driver specific options.
  129. * Drivers should define their own attribute constants beginning with this
  130. * value. */
  131. PDO_ATTR_DRIVER_SPECIFIC = 1000
  132. };
  133. enum pdo_cursor_type {
  134. PDO_CURSOR_FWDONLY, /* forward only cursor (default) */
  135. PDO_CURSOR_SCROLL /* scrollable cursor */
  136. };
  137. /* SQL-92 SQLSTATE error codes.
  138. The character string value returned for an SQLSTATE consists of a two-character
  139. class value followed by a three-character subclass value. A class value of 01
  140. indicates a warning and is accompanied by a return code of
  141. SQL_SUCCESS_WITH_INFO.
  142. Class values other than '01', except for the class 'IM',
  143. indicate an error and are accompanied by a return code of SQL_ERROR. The class
  144. 'IM' is specific to warnings and errors that derive from the implementation of
  145. ODBC itself.
  146. The subclass value '000' in any class indicates that there is no
  147. subclass for that SQLSTATE. The assignment of class and subclass values is
  148. defined by SQL-92.
  149. */
  150. typedef char pdo_error_type[6]; /* SQLSTATE */
  151. #define PDO_ERR_NONE "00000"
  152. enum pdo_error_mode {
  153. PDO_ERRMODE_SILENT, /* just set error codes */
  154. PDO_ERRMODE_WARNING, /* raise E_WARNING */
  155. PDO_ERRMODE_EXCEPTION /* throw exceptions */
  156. };
  157. enum pdo_case_conversion {
  158. PDO_CASE_NATURAL,
  159. PDO_CASE_UPPER,
  160. PDO_CASE_LOWER
  161. };
  162. /* oracle interop settings */
  163. enum pdo_null_handling {
  164. PDO_NULL_NATURAL = 0,
  165. PDO_NULL_EMPTY_STRING = 1,
  166. PDO_NULL_TO_STRING = 2
  167. };
  168. /* {{{ utils for reading attributes set as driver_options */
  169. static inline zend_long pdo_attr_lval(zval *options, enum pdo_attribute_type option_name, zend_long defval)
  170. {
  171. zval *v;
  172. if (options && (v = zend_hash_index_find(Z_ARRVAL_P(options), option_name))) {
  173. return zval_get_long(v);
  174. }
  175. return defval;
  176. }
  177. static inline zend_string *pdo_attr_strval(zval *options, enum pdo_attribute_type option_name, zend_string *defval)
  178. {
  179. zval *v;
  180. if (options && (v = zend_hash_index_find(Z_ARRVAL_P(options), option_name))) {
  181. return zval_get_string(v);
  182. }
  183. return defval ? zend_string_copy(defval) : NULL;
  184. }
  185. /* }}} */
  186. /* This structure is registered with PDO when a PDO driver extension is
  187. * initialized */
  188. typedef struct {
  189. const char *driver_name;
  190. size_t driver_name_len;
  191. zend_ulong api_version; /* needs to be compatible with PDO */
  192. #define PDO_DRIVER_HEADER(name) \
  193. #name, sizeof(#name)-1, \
  194. PDO_DRIVER_API
  195. /* create driver specific portion of the database handle and stash it into
  196. * the dbh. dbh contains the data source string and flags for this
  197. * instance. You MUST respect dbh->is_persistent and pass that flag to
  198. * pemalloc() for all allocations that are stored in the dbh or your instance
  199. * data in the db, otherwise you will crash PHP when persistent connections
  200. * are used.
  201. */
  202. int (*db_handle_factory)(pdo_dbh_t *dbh, zval *driver_options);
  203. } pdo_driver_t;
  204. /* {{{ methods for a database handle */
  205. /* close or otherwise disconnect the database */
  206. typedef int (*pdo_dbh_close_func)(pdo_dbh_t *dbh);
  207. /* prepare a statement and stash driver specific portion into stmt */
  208. typedef int (*pdo_dbh_prepare_func)(pdo_dbh_t *dbh, const char *sql, size_t sql_len, pdo_stmt_t *stmt, zval *driver_options);
  209. /* execute a statement (that does not return a result set) */
  210. typedef zend_long (*pdo_dbh_do_func)(pdo_dbh_t *dbh, const char *sql, size_t sql_len);
  211. /* quote a string */
  212. typedef int (*pdo_dbh_quote_func)(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen, enum pdo_param_type paramtype);
  213. /* transaction related */
  214. typedef int (*pdo_dbh_txn_func)(pdo_dbh_t *dbh);
  215. /* setting of attributes */
  216. typedef int (*pdo_dbh_set_attr_func)(pdo_dbh_t *dbh, zend_long attr, zval *val);
  217. /* return last insert id. NULL indicates error condition, otherwise, the return value
  218. * MUST be an emalloc'd NULL terminated string. */
  219. typedef char *(*pdo_dbh_last_id_func)(pdo_dbh_t *dbh, const char *name, size_t *len);
  220. /* fetch error information. if stmt is not null, fetch information pertaining
  221. * to the statement, otherwise fetch global error information. The driver
  222. * should add the following information to the array "info" in this order:
  223. * - native error code
  224. * - string representation of the error code ... any other optional driver
  225. * specific data ... */
  226. typedef int (*pdo_dbh_fetch_error_func)(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info);
  227. /* fetching of attributes */
  228. typedef int (*pdo_dbh_get_attr_func)(pdo_dbh_t *dbh, zend_long attr, zval *val);
  229. /* checking/pinging persistent connections; return SUCCESS if the connection
  230. * is still alive and ready to be used, FAILURE otherwise.
  231. * You may set this handler to NULL, which is equivalent to returning SUCCESS. */
  232. typedef int (*pdo_dbh_check_liveness_func)(pdo_dbh_t *dbh);
  233. /* called at request end for each persistent dbh; this gives the driver
  234. * the opportunity to safely release resources that only have per-request
  235. * scope */
  236. typedef void (*pdo_dbh_request_shutdown)(pdo_dbh_t *dbh);
  237. /* for adding methods to the dbh or stmt objects
  238. pointer to a list of driver specific functions. The convention is
  239. to prefix the function names using the PDO driver name; this will
  240. reduce the chance of collisions with future functionality in the
  241. PDO class or in user code (they can extend the PDO object).
  242. */
  243. enum {
  244. PDO_DBH_DRIVER_METHOD_KIND_DBH = 0,
  245. PDO_DBH_DRIVER_METHOD_KIND_STMT,
  246. PDO_DBH_DRIVER_METHOD_KIND__MAX
  247. };
  248. typedef const zend_function_entry *(*pdo_dbh_get_driver_methods_func)(pdo_dbh_t *dbh, int kind);
  249. struct pdo_dbh_methods {
  250. pdo_dbh_close_func closer;
  251. pdo_dbh_prepare_func preparer;
  252. pdo_dbh_do_func doer;
  253. pdo_dbh_quote_func quoter;
  254. pdo_dbh_txn_func begin;
  255. pdo_dbh_txn_func commit;
  256. pdo_dbh_txn_func rollback;
  257. pdo_dbh_set_attr_func set_attribute;
  258. pdo_dbh_last_id_func last_id;
  259. pdo_dbh_fetch_error_func fetch_err;
  260. pdo_dbh_get_attr_func get_attribute;
  261. pdo_dbh_check_liveness_func check_liveness;
  262. pdo_dbh_get_driver_methods_func get_driver_methods;
  263. pdo_dbh_request_shutdown persistent_shutdown;
  264. pdo_dbh_txn_func in_transaction;
  265. };
  266. /* }}} */
  267. /* {{{ methods for a statement handle */
  268. /* free the statement handle */
  269. typedef int (*pdo_stmt_dtor_func)(pdo_stmt_t *stmt);
  270. /* start the query */
  271. typedef int (*pdo_stmt_execute_func)(pdo_stmt_t *stmt);
  272. /* causes the next row in the set to be fetched; indicates if there are no
  273. * more rows. The ori and offset params modify which row should be returned,
  274. * if the stmt represents a scrollable cursor */
  275. typedef int (*pdo_stmt_fetch_func)(pdo_stmt_t *stmt,
  276. enum pdo_fetch_orientation ori, zend_long offset);
  277. /* queries information about the type of a column, by index (0 based).
  278. * Driver should populate stmt->columns[colno] with appropriate info */
  279. typedef int (*pdo_stmt_describe_col_func)(pdo_stmt_t *stmt, int colno);
  280. /* retrieves pointer and size of the value for a column.
  281. * Note that PDO expects the driver to manage the lifetime of this data;
  282. * it will copy the value into a zval on behalf of the script.
  283. * If the driver sets caller_frees, ptr should point to emalloc'd memory
  284. * and PDO will free it as soon as it is done using it.
  285. */
  286. typedef int (*pdo_stmt_get_col_data_func)(pdo_stmt_t *stmt, int colno, char **ptr, size_t *len, int *caller_frees);
  287. /* hook for bound params */
  288. enum pdo_param_event {
  289. PDO_PARAM_EVT_ALLOC,
  290. PDO_PARAM_EVT_FREE,
  291. PDO_PARAM_EVT_EXEC_PRE,
  292. PDO_PARAM_EVT_EXEC_POST,
  293. PDO_PARAM_EVT_FETCH_PRE,
  294. PDO_PARAM_EVT_FETCH_POST,
  295. PDO_PARAM_EVT_NORMALIZE
  296. };
  297. typedef int (*pdo_stmt_param_hook_func)(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, enum pdo_param_event event_type);
  298. /* setting of attributes */
  299. typedef int (*pdo_stmt_set_attr_func)(pdo_stmt_t *stmt, zend_long attr, zval *val);
  300. /* fetching of attributes */
  301. typedef int (*pdo_stmt_get_attr_func)(pdo_stmt_t *stmt, zend_long attr, zval *val);
  302. /* retrieves meta data for a numbered column.
  303. * Returns SUCCESS/FAILURE.
  304. * On SUCCESS, fill in return_value with an array with the following fields.
  305. * If a particular field is not supported, then the driver simply does not add it to
  306. * the array, so that scripts can use isset() to check for it.
  307. *
  308. * ### this is just a rough first cut, and subject to change ###
  309. *
  310. * these are added by PDO itself, based on data from the describe handler:
  311. * name => the column name
  312. * len => the length/size of the column
  313. * precision => precision of the column
  314. * pdo_type => an integer, one of the PDO_PARAM_XXX values
  315. *
  316. * scale => the floating point scale
  317. * table => the table for that column
  318. * type => a string representation of the type, mapped to the PHP equivalent type name
  319. * native_type => a string representation of the type, native style, if different from
  320. * the mapped name.
  321. * flags => an array of flags including zero or more of the following:
  322. * primary_key, not_null, unique_key, multiple_key, unsigned, auto_increment, blob
  323. *
  324. * Any driver specific data should be returned using a prefixed key or value.
  325. * Eg: custom data for the mysql driver would use either
  326. * 'mysql:foobar' => 'some data' // to add a new key to the array
  327. * or
  328. * 'flags' => array('not_null', 'mysql:some_flag'); // to add data to an existing key
  329. */
  330. typedef int (*pdo_stmt_get_column_meta_func)(pdo_stmt_t *stmt, zend_long colno, zval *return_value);
  331. /* advances the statement to the next rowset of the batch.
  332. * If it returns 1, PDO will tear down its idea of columns
  333. * and meta data. If it returns 0, PDO will indicate an error
  334. * to the caller. */
  335. typedef int (*pdo_stmt_next_rowset_func)(pdo_stmt_t *stmt);
  336. /* closes the active cursor on a statement, leaving the prepared
  337. * statement ready for re-execution. Useful to explicitly state
  338. * that you are done with a given rowset, without having to explicitly
  339. * fetch all the rows. */
  340. typedef int (*pdo_stmt_cursor_closer_func)(pdo_stmt_t *stmt);
  341. struct pdo_stmt_methods {
  342. pdo_stmt_dtor_func dtor;
  343. pdo_stmt_execute_func executer;
  344. pdo_stmt_fetch_func fetcher;
  345. pdo_stmt_describe_col_func describer;
  346. pdo_stmt_get_col_data_func get_col;
  347. pdo_stmt_param_hook_func param_hook;
  348. pdo_stmt_set_attr_func set_attribute;
  349. pdo_stmt_get_attr_func get_attribute;
  350. pdo_stmt_get_column_meta_func get_column_meta;
  351. pdo_stmt_next_rowset_func next_rowset;
  352. pdo_stmt_cursor_closer_func cursor_closer;
  353. };
  354. /* }}} */
  355. enum pdo_placeholder_support {
  356. PDO_PLACEHOLDER_NONE=0,
  357. PDO_PLACEHOLDER_NAMED=1,
  358. PDO_PLACEHOLDER_POSITIONAL=2
  359. };
  360. struct _pdo_dbh_t {
  361. /* driver specific methods */
  362. const struct pdo_dbh_methods *methods;
  363. /* driver specific data */
  364. void *driver_data;
  365. /* credentials */
  366. char *username, *password;
  367. /* if true, then data stored and pointed at by this handle must all be
  368. * persistently allocated */
  369. unsigned is_persistent:1;
  370. /* if true, driver should act as though a COMMIT were executed between
  371. * each executed statement; otherwise, COMMIT must be carried out manually
  372. * */
  373. unsigned auto_commit:1;
  374. /* if true, the handle has been closed and will not function anymore */
  375. unsigned is_closed:1;
  376. /* if true, the driver requires that memory be allocated explicitly for
  377. * the columns that are returned */
  378. unsigned alloc_own_columns:1;
  379. /* if true, commit or rollBack is allowed to be called */
  380. unsigned in_txn:1;
  381. /* max length a single character can become after correct quoting */
  382. unsigned max_escaped_char_length:3;
  383. /* oracle compat; see enum pdo_null_handling */
  384. unsigned oracle_nulls:2;
  385. /* when set, convert int/floats to strings */
  386. unsigned stringify:1;
  387. /* bitmap for pdo_param_event(s) to skip in dispatch_param_event */
  388. unsigned skip_param_evt:7;
  389. /* the sum of the number of bits here and the bit fields preceding should
  390. * equal 32 */
  391. unsigned _reserved_flags:14;
  392. /* data source string used to open this handle */
  393. const char *data_source;
  394. size_t data_source_len;
  395. /* the global error code. */
  396. pdo_error_type error_code;
  397. enum pdo_error_mode error_mode;
  398. enum pdo_case_conversion native_case, desired_case;
  399. /* persistent hash key associated with this handle */
  400. const char *persistent_id;
  401. size_t persistent_id_len;
  402. unsigned int refcount;
  403. /* driver specific "class" methods for the dbh and stmt */
  404. HashTable *cls_methods[PDO_DBH_DRIVER_METHOD_KIND__MAX];
  405. pdo_driver_t *driver;
  406. zend_class_entry *def_stmt_ce;
  407. zval def_stmt_ctor_args;
  408. /* when calling PDO::query(), we need to keep the error
  409. * context from the statement around until we next clear it.
  410. * This will allow us to report the correct error message
  411. * when PDO::query() fails */
  412. pdo_stmt_t *query_stmt;
  413. zval query_stmt_zval;
  414. /* defaults for fetches */
  415. enum pdo_fetch_type default_fetch_type;
  416. };
  417. /* represents a connection to a database */
  418. struct _pdo_dbh_object_t {
  419. pdo_dbh_t *inner;
  420. /* these items must appear in this order at the beginning of the
  421. struct so that this can be cast as a zend_object. we need this
  422. to allow the extending class to escape all the custom handlers
  423. that PDO declares.
  424. */
  425. zend_object std;
  426. };
  427. static inline pdo_dbh_t *php_pdo_dbh_fetch_inner(zend_object *obj) {
  428. return (pdo_dbh_t *)(((pdo_dbh_object_t *)((char*)(obj) - XtOffsetOf(pdo_dbh_object_t, std)))->inner);
  429. }
  430. static inline pdo_dbh_object_t *php_pdo_dbh_fetch_object(zend_object *obj) {
  431. return (pdo_dbh_object_t *)((char*)(obj) - XtOffsetOf(pdo_dbh_object_t, std));
  432. }
  433. #define Z_PDO_DBH_P(zv) php_pdo_dbh_fetch_inner(Z_OBJ_P((zv)))
  434. #define Z_PDO_OBJECT_P(zv) php_pdo_dbh_fetch_object(Z_OBJ_P((zv)))
  435. /* describes a column */
  436. struct pdo_column_data {
  437. zend_string *name;
  438. size_t maxlen;
  439. zend_ulong precision;
  440. enum pdo_param_type param_type;
  441. };
  442. /* describes a bound parameter */
  443. struct pdo_bound_param_data {
  444. zval parameter; /* the variable itself */
  445. zval driver_params; /* optional parameter(s) for the driver */
  446. zend_long paramno; /* if -1, then it has a name, and we don't know the index *yet* */
  447. zend_string *name;
  448. zend_long max_value_len; /* as a hint for pre-allocation */
  449. void *driver_data;
  450. pdo_stmt_t *stmt; /* for convenience in dtor */
  451. enum pdo_param_type param_type; /* desired or suggested variable type */
  452. int is_param; /* parameter or column ? */
  453. };
  454. /* represents a prepared statement */
  455. struct _pdo_stmt_t {
  456. /* driver specifics */
  457. const struct pdo_stmt_methods *methods;
  458. void *driver_data;
  459. /* if true, we've already successfully executed this statement at least
  460. * once */
  461. unsigned executed:1;
  462. /* if true, the statement supports placeholders and can implement
  463. * bindParam() for its prepared statements, if false, PDO should
  464. * emulate prepare and bind on its behalf */
  465. unsigned supports_placeholders:2;
  466. unsigned _reserved:29;
  467. /* the number of columns in the result set; not valid until after
  468. * the statement has been executed at least once. In some cases, might
  469. * not be valid until fetch (at the driver level) has been called at least once.
  470. * */
  471. int column_count;
  472. struct pdo_column_data *columns;
  473. /* we want to keep the dbh alive while we live, so we own a reference */
  474. zval database_object_handle;
  475. pdo_dbh_t *dbh;
  476. /* keep track of bound input parameters. Some drivers support
  477. * input/output parameters, but you can't rely on that working */
  478. HashTable *bound_params;
  479. /* When rewriting from named to positional, this maps positions to names */
  480. HashTable *bound_param_map;
  481. /* keep track of PHP variables bound to named (or positional) columns
  482. * in the result set */
  483. HashTable *bound_columns;
  484. /* not always meaningful */
  485. zend_long row_count;
  486. /* used to hold the statement's current query */
  487. char *query_string;
  488. size_t query_stringlen;
  489. /* the copy of the query with expanded binds ONLY for emulated-prepare drivers */
  490. char *active_query_string;
  491. size_t active_query_stringlen;
  492. /* the cursor specific error code. */
  493. pdo_error_type error_code;
  494. /* for lazy fetches, we always return the same lazy object handle.
  495. * Let's keep it here. */
  496. zval lazy_object_ref;
  497. zend_ulong refcount;
  498. /* defaults for fetches */
  499. enum pdo_fetch_type default_fetch_type;
  500. union {
  501. int column;
  502. struct {
  503. zval ctor_args; /* freed */
  504. zend_fcall_info fci;
  505. zend_fcall_info_cache fcc;
  506. zval retval;
  507. zend_class_entry *ce;
  508. } cls;
  509. struct {
  510. zval fetch_args; /* freed */
  511. zend_fcall_info fci;
  512. zend_fcall_info_cache fcc;
  513. zval object;
  514. zval function;
  515. zval *values; /* freed */
  516. } func;
  517. zval into;
  518. } fetch;
  519. /* used by the query parser for driver specific
  520. * parameter naming (see pgsql driver for example) */
  521. const char *named_rewrite_template;
  522. /* these items must appear in this order at the beginning of the
  523. struct so that this can be cast as a zend_object. we need this
  524. to allow the extending class to escape all the custom handlers
  525. that PDO declares.
  526. */
  527. zend_object std;
  528. };
  529. static inline pdo_stmt_t *php_pdo_stmt_fetch_object(zend_object *obj) {
  530. return (pdo_stmt_t *)((char*)(obj) - XtOffsetOf(pdo_stmt_t, std));
  531. }
  532. #define Z_PDO_STMT_P(zv) php_pdo_stmt_fetch_object(Z_OBJ_P((zv)))
  533. struct _pdo_row_t {
  534. zend_object std;
  535. pdo_stmt_t *stmt;
  536. };
  537. /* call this in MINIT to register your PDO driver */
  538. PDO_API int php_pdo_register_driver(const pdo_driver_t *driver);
  539. /* call this in MSHUTDOWN to unregister your PDO driver */
  540. PDO_API void php_pdo_unregister_driver(const pdo_driver_t *driver);
  541. /* For the convenience of drivers, this function will parse a data source
  542. * string, of the form "name=value; name2=value2" and populate variables
  543. * according to the data you pass in and array of pdo_data_src_parser structures */
  544. struct pdo_data_src_parser {
  545. const char *optname;
  546. char *optval;
  547. int freeme;
  548. };
  549. PDO_API int php_pdo_parse_data_source(const char *data_source,
  550. zend_ulong data_source_len, struct pdo_data_src_parser *parsed,
  551. int nparams);
  552. PDO_API zend_class_entry *php_pdo_get_dbh_ce(void);
  553. PDO_API zend_class_entry *php_pdo_get_exception(void);
  554. PDO_API int pdo_parse_params(pdo_stmt_t *stmt, char *inquery, size_t inquery_len,
  555. char **outquery, size_t *outquery_len);
  556. PDO_API void pdo_raise_impl_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt,
  557. const char *sqlstate, const char *supp);
  558. PDO_API void php_pdo_dbh_addref(pdo_dbh_t *dbh);
  559. PDO_API void php_pdo_dbh_delref(pdo_dbh_t *dbh);
  560. PDO_API void php_pdo_free_statement(pdo_stmt_t *stmt);
  561. PDO_API void pdo_throw_exception(unsigned int driver_errcode, char *driver_errmsg, pdo_error_type *pdo_error);
  562. #endif /* PHP_PDO_DRIVER_H */
  563. /*
  564. * Local variables:
  565. * tab-width: 4
  566. * c-basic-offset: 4
  567. * End:
  568. * vim600: noet sw=4 ts=4 fdm=marker
  569. * vim<600: noet sw=4 ts=4
  570. */