php_pgsql.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 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. | Authors: Zeev Suraski <zeev@zend.com> |
  16. | Jouni Ahto <jouni.ahto@exdec.fi> |
  17. +----------------------------------------------------------------------+
  18. */
  19. /* $Id$ */
  20. #ifndef PHP_PGSQL_H
  21. #define PHP_PGSQL_H
  22. #if HAVE_PGSQL
  23. #define PHP_PGSQL_API_VERSION 20140217
  24. extern zend_module_entry pgsql_module_entry;
  25. #define pgsql_module_ptr &pgsql_module_entry
  26. #ifdef PHP_PGSQL_PRIVATE
  27. #undef SOCKET_SIZE_TYPE
  28. #include <libpq-fe.h>
  29. #ifdef PHP_WIN32
  30. #define INV_WRITE 0x00020000
  31. #define INV_READ 0x00040000
  32. #undef PHP_PGSQL_API
  33. #ifdef PGSQL_EXPORTS
  34. #define PHP_PGSQL_API __declspec(dllexport)
  35. #else
  36. #define PHP_PGSQL_API __declspec(dllimport)
  37. #endif
  38. #else
  39. #include <libpq/libpq-fs.h>
  40. # if defined(__GNUC__) && __GNUC__ >= 4
  41. # define PHP_PGSQL_API __attribute__ ((visibility("default")))
  42. # else
  43. # define PHP_PGSQL_API
  44. # endif
  45. #endif
  46. #ifdef HAVE_PG_CONFIG_H
  47. #include <pg_config.h>
  48. #endif
  49. #ifdef HAVE_PGSQL_WITH_MULTIBYTE_SUPPORT
  50. const char * pg_encoding_to_char(int encoding);
  51. #endif
  52. PHP_MINIT_FUNCTION(pgsql);
  53. PHP_MSHUTDOWN_FUNCTION(pgsql);
  54. PHP_RINIT_FUNCTION(pgsql);
  55. PHP_RSHUTDOWN_FUNCTION(pgsql);
  56. PHP_MINFO_FUNCTION(pgsql);
  57. /* connection functions */
  58. PHP_FUNCTION(pg_connect);
  59. PHP_FUNCTION(pg_pconnect);
  60. PHP_FUNCTION(pg_connect_poll);
  61. PHP_FUNCTION(pg_close);
  62. PHP_FUNCTION(pg_connection_reset);
  63. PHP_FUNCTION(pg_connection_status);
  64. PHP_FUNCTION(pg_connection_busy);
  65. PHP_FUNCTION(pg_host);
  66. PHP_FUNCTION(pg_dbname);
  67. PHP_FUNCTION(pg_port);
  68. PHP_FUNCTION(pg_tty);
  69. PHP_FUNCTION(pg_options);
  70. PHP_FUNCTION(pg_version);
  71. PHP_FUNCTION(pg_ping);
  72. #if HAVE_PQPARAMETERSTATUS
  73. PHP_FUNCTION(pg_parameter_status);
  74. #endif
  75. #if HAVE_PGTRANSACTIONSTATUS
  76. PHP_FUNCTION(pg_transaction_status);
  77. #endif
  78. /* query functions */
  79. PHP_FUNCTION(pg_query);
  80. #if HAVE_PQEXECPARAMS
  81. PHP_FUNCTION(pg_query_params);
  82. #endif
  83. #if HAVE_PQPREPARE
  84. PHP_FUNCTION(pg_prepare);
  85. #endif
  86. #if HAVE_PQEXECPREPARED
  87. PHP_FUNCTION(pg_execute);
  88. #endif
  89. PHP_FUNCTION(pg_send_query);
  90. #if HAVE_PQSENDQUERYPARAMS
  91. PHP_FUNCTION(pg_send_query_params);
  92. #endif
  93. #if HAVE_PQSENDPREPARE
  94. PHP_FUNCTION(pg_send_prepare);
  95. #endif
  96. #if HAVE_PQSENDQUERYPREPARED
  97. PHP_FUNCTION(pg_send_execute);
  98. #endif
  99. PHP_FUNCTION(pg_cancel_query);
  100. /* result functions */
  101. PHP_FUNCTION(pg_fetch_assoc);
  102. PHP_FUNCTION(pg_fetch_array);
  103. PHP_FUNCTION(pg_fetch_object);
  104. PHP_FUNCTION(pg_fetch_result);
  105. PHP_FUNCTION(pg_fetch_row);
  106. PHP_FUNCTION(pg_fetch_all);
  107. PHP_FUNCTION(pg_fetch_all_columns);
  108. #if HAVE_PQCMDTUPLES
  109. PHP_FUNCTION(pg_affected_rows);
  110. #endif
  111. PHP_FUNCTION(pg_get_result);
  112. PHP_FUNCTION(pg_result_seek);
  113. PHP_FUNCTION(pg_result_status);
  114. PHP_FUNCTION(pg_free_result);
  115. PHP_FUNCTION(pg_last_oid);
  116. PHP_FUNCTION(pg_num_rows);
  117. PHP_FUNCTION(pg_num_fields);
  118. PHP_FUNCTION(pg_field_name);
  119. PHP_FUNCTION(pg_field_num);
  120. PHP_FUNCTION(pg_field_size);
  121. PHP_FUNCTION(pg_field_type);
  122. PHP_FUNCTION(pg_field_type_oid);
  123. PHP_FUNCTION(pg_field_prtlen);
  124. PHP_FUNCTION(pg_field_is_null);
  125. PHP_FUNCTION(pg_field_table);
  126. /* async message functions */
  127. PHP_FUNCTION(pg_get_notify);
  128. PHP_FUNCTION(pg_socket);
  129. PHP_FUNCTION(pg_consume_input);
  130. PHP_FUNCTION(pg_flush);
  131. PHP_FUNCTION(pg_get_pid);
  132. /* error message functions */
  133. PHP_FUNCTION(pg_result_error);
  134. #if HAVE_PQRESULTERRORFIELD
  135. PHP_FUNCTION(pg_result_error_field);
  136. #endif
  137. PHP_FUNCTION(pg_last_error);
  138. PHP_FUNCTION(pg_last_notice);
  139. /* copy functions */
  140. PHP_FUNCTION(pg_put_line);
  141. PHP_FUNCTION(pg_end_copy);
  142. PHP_FUNCTION(pg_copy_to);
  143. PHP_FUNCTION(pg_copy_from);
  144. /* large object functions */
  145. PHP_FUNCTION(pg_lo_create);
  146. PHP_FUNCTION(pg_lo_unlink);
  147. PHP_FUNCTION(pg_lo_open);
  148. PHP_FUNCTION(pg_lo_close);
  149. PHP_FUNCTION(pg_lo_read);
  150. PHP_FUNCTION(pg_lo_write);
  151. PHP_FUNCTION(pg_lo_read_all);
  152. PHP_FUNCTION(pg_lo_import);
  153. PHP_FUNCTION(pg_lo_export);
  154. PHP_FUNCTION(pg_lo_seek);
  155. PHP_FUNCTION(pg_lo_tell);
  156. #if HAVE_PG_LO_TRUNCATE
  157. PHP_FUNCTION(pg_lo_truncate);
  158. #endif
  159. /* debugging functions */
  160. PHP_FUNCTION(pg_trace);
  161. PHP_FUNCTION(pg_untrace);
  162. /* utility functions */
  163. PHP_FUNCTION(pg_client_encoding);
  164. PHP_FUNCTION(pg_set_client_encoding);
  165. #if HAVE_PQSETERRORVERBOSITY
  166. PHP_FUNCTION(pg_set_error_verbosity);
  167. #endif
  168. #if HAVE_PQESCAPE
  169. PHP_FUNCTION(pg_escape_string);
  170. PHP_FUNCTION(pg_escape_bytea);
  171. PHP_FUNCTION(pg_unescape_bytea);
  172. PHP_FUNCTION(pg_escape_literal);
  173. PHP_FUNCTION(pg_escape_identifier);
  174. #endif
  175. /* misc functions */
  176. PHP_FUNCTION(pg_meta_data);
  177. PHP_FUNCTION(pg_convert);
  178. PHP_FUNCTION(pg_insert);
  179. PHP_FUNCTION(pg_update);
  180. PHP_FUNCTION(pg_delete);
  181. PHP_FUNCTION(pg_select);
  182. /* connection options - ToDo: Add async connection option */
  183. #define PGSQL_CONNECT_FORCE_NEW (1<<1)
  184. #define PGSQL_CONNECT_ASYNC (1<<2)
  185. /* php_pgsql_convert options */
  186. #define PGSQL_CONV_IGNORE_DEFAULT (1<<1) /* Do not use DEAFULT value by removing field from returned array */
  187. #define PGSQL_CONV_FORCE_NULL (1<<2) /* Convert to NULL if string is null string */
  188. #define PGSQL_CONV_IGNORE_NOT_NULL (1<<3) /* Ignore NOT NULL constraints */
  189. #define PGSQL_CONV_OPTS (PGSQL_CONV_IGNORE_DEFAULT|PGSQL_CONV_FORCE_NULL|PGSQL_CONV_IGNORE_NOT_NULL)
  190. /* php_pgsql_insert/update/select/delete options */
  191. #define PGSQL_DML_NO_CONV (1<<8) /* Do not call php_pgsql_convert() */
  192. #define PGSQL_DML_EXEC (1<<9) /* Execute query */
  193. #define PGSQL_DML_ASYNC (1<<10) /* Do async query */
  194. #define PGSQL_DML_STRING (1<<11) /* Return query string */
  195. #define PGSQL_DML_ESCAPE (1<<12) /* No convert, but escape only */
  196. /* exported functions */
  197. PHP_PGSQL_API int php_pgsql_meta_data(PGconn *pg_link, const char *table_name, zval *meta, zend_bool extended TSRMLS_DC);
  198. PHP_PGSQL_API int php_pgsql_convert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, ulong opt TSRMLS_DC);
  199. PHP_PGSQL_API int php_pgsql_insert(PGconn *pg_link, const char *table, zval *values, ulong opt, char **sql TSRMLS_DC);
  200. PHP_PGSQL_API int php_pgsql_update(PGconn *pg_link, const char *table, zval *values, zval *ids, ulong opt , char **sql TSRMLS_DC);
  201. PHP_PGSQL_API int php_pgsql_delete(PGconn *pg_link, const char *table, zval *ids, ulong opt, char **sql TSRMLS_DC);
  202. PHP_PGSQL_API int php_pgsql_select(PGconn *pg_link, const char *table, zval *ids, zval *ret_array, ulong opt, char **sql TSRMLS_DC);
  203. PHP_PGSQL_API int php_pgsql_result2array(PGresult *pg_result, zval *ret_array TSRMLS_DC);
  204. /* internal functions */
  205. static void php_pgsql_do_connect(INTERNAL_FUNCTION_PARAMETERS,int persistent);
  206. static void php_pgsql_get_link_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type);
  207. static void php_pgsql_get_result_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type);
  208. static char *get_field_name(PGconn *pgsql, Oid oid, HashTable *list TSRMLS_DC);
  209. static void php_pgsql_get_field_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type);
  210. static void php_pgsql_data_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type);
  211. static void php_pgsql_do_async(INTERNAL_FUNCTION_PARAMETERS,int entry_type);
  212. static size_t php_pgsql_fd_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC);
  213. static size_t php_pgsql_fd_read(php_stream *stream, char *buf, size_t count TSRMLS_DC);
  214. static int php_pgsql_fd_close(php_stream *stream, int close_handle TSRMLS_DC);
  215. static int php_pgsql_fd_flush(php_stream *stream TSRMLS_DC);
  216. static int php_pgsql_fd_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC);
  217. static int php_pgsql_fd_cast(php_stream *stream, int cast_as, void **ret TSRMLS_DC);
  218. typedef enum _php_pgsql_data_type {
  219. /* boolean */
  220. PG_BOOL,
  221. /* number */
  222. PG_OID,
  223. PG_INT2,
  224. PG_INT4,
  225. PG_INT8,
  226. PG_FLOAT4,
  227. PG_FLOAT8,
  228. PG_NUMERIC,
  229. PG_MONEY,
  230. /* character */
  231. PG_TEXT,
  232. PG_CHAR,
  233. PG_VARCHAR,
  234. /* time and interval */
  235. PG_UNIX_TIME,
  236. PG_UNIX_TIME_INTERVAL,
  237. PG_DATE,
  238. PG_TIME,
  239. PG_TIME_WITH_TIMEZONE,
  240. PG_TIMESTAMP,
  241. PG_TIMESTAMP_WITH_TIMEZONE,
  242. PG_INTERVAL,
  243. /* binary */
  244. PG_BYTEA,
  245. /* network */
  246. PG_CIDR,
  247. PG_INET,
  248. PG_MACADDR,
  249. /* bit */
  250. PG_BIT,
  251. PG_VARBIT,
  252. /* geometoric */
  253. PG_LINE,
  254. PG_LSEG,
  255. PG_POINT,
  256. PG_BOX,
  257. PG_PATH,
  258. PG_POLYGON,
  259. PG_CIRCLE,
  260. /* unknown and system */
  261. PG_UNKNOWN
  262. } php_pgsql_data_type;
  263. typedef struct pgLofp {
  264. PGconn *conn;
  265. int lofd;
  266. } pgLofp;
  267. typedef struct _php_pgsql_result_handle {
  268. PGconn *conn;
  269. PGresult *result;
  270. int row;
  271. } pgsql_result_handle;
  272. typedef struct _php_pgsql_notice {
  273. char *message;
  274. size_t len;
  275. } php_pgsql_notice;
  276. static php_stream_ops php_stream_pgsql_fd_ops = {
  277. php_pgsql_fd_write,
  278. php_pgsql_fd_read,
  279. php_pgsql_fd_close,
  280. php_pgsql_fd_flush,
  281. "PostgreSQL link",
  282. NULL, /* seek */
  283. php_pgsql_fd_cast, /* cast */
  284. NULL, /* stat */
  285. php_pgsql_fd_set_option
  286. };
  287. ZEND_BEGIN_MODULE_GLOBALS(pgsql)
  288. long default_link; /* default link when connection is omitted */
  289. long num_links,num_persistent;
  290. long max_links,max_persistent;
  291. long allow_persistent;
  292. long auto_reset_persistent;
  293. int le_lofp,le_string;
  294. int ignore_notices,log_notices;
  295. HashTable notices; /* notice message for each connection */
  296. ZEND_END_MODULE_GLOBALS(pgsql)
  297. ZEND_EXTERN_MODULE_GLOBALS(pgsql)
  298. #ifdef ZTS
  299. # define PGG(v) TSRMG(pgsql_globals_id, zend_pgsql_globals *, v)
  300. #else
  301. # define PGG(v) (pgsql_globals.v)
  302. #endif
  303. #endif
  304. #else
  305. #define pgsql_module_ptr NULL
  306. #endif
  307. #define phpext_pgsql_ptr pgsql_module_ptr
  308. #endif /* PHP_PGSQL_H */