php_ibase_includes.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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. | Authors: Jouni Ahto <jouni.ahto@exdec.fi> |
  16. | Andrew Avdeev <andy@simgts.mv.ru> |
  17. | Ard Biesheuvel <a.k.biesheuvel@ewi.tudelft.nl> |
  18. +----------------------------------------------------------------------+
  19. */
  20. #ifndef PHP_IBASE_INCLUDES_H
  21. #define PHP_IBASE_INCLUDES_H
  22. #include <ibase.h>
  23. #ifndef SQLDA_CURRENT_VERSION
  24. #define SQLDA_CURRENT_VERSION SQLDA_VERSION1
  25. #endif
  26. #ifndef METADATALENGTH
  27. #define METADATALENGTH 68
  28. #endif
  29. #define RESET_ERRMSG do { IBG(errmsg)[0] = '\0'; IBG(sql_code) = 0; } while (0)
  30. #define IB_STATUS (IBG(status))
  31. #ifdef IBASE_DEBUG
  32. #define IBDEBUG(a) php_printf("::: %s (%d)\n", a, __LINE__);
  33. #endif
  34. #ifndef IBDEBUG
  35. #define IBDEBUG(a)
  36. #endif
  37. extern int le_link, le_plink, le_trans;
  38. #define LE_LINK "Firebird/InterBase link"
  39. #define LE_PLINK "Firebird/InterBase persistent link"
  40. #define LE_TRANS "Firebird/InterBase transaction"
  41. #define IBASE_MSGSIZE 512
  42. #define MAX_ERRMSG (IBASE_MSGSIZE*2)
  43. #define IB_DEF_DATE_FMT "%Y-%m-%d"
  44. #define IB_DEF_TIME_FMT "%H:%M:%S"
  45. /* this value should never be > USHRT_MAX */
  46. #define IBASE_BLOB_SEG 4096
  47. ZEND_BEGIN_MODULE_GLOBALS(ibase)
  48. ISC_STATUS status[20];
  49. zend_resource *default_link;
  50. zend_long num_links, num_persistent;
  51. char errmsg[MAX_ERRMSG];
  52. zend_long sql_code;
  53. ZEND_END_MODULE_GLOBALS(ibase)
  54. ZEND_EXTERN_MODULE_GLOBALS(ibase)
  55. typedef struct {
  56. isc_db_handle handle;
  57. struct tr_list *tr_list;
  58. unsigned short dialect;
  59. struct event *event_head;
  60. } ibase_db_link;
  61. typedef struct {
  62. isc_tr_handle handle;
  63. unsigned short link_cnt;
  64. unsigned long affected_rows;
  65. ibase_db_link *db_link[1]; /* last member */
  66. } ibase_trans;
  67. typedef struct tr_list {
  68. ibase_trans *trans;
  69. struct tr_list *next;
  70. } ibase_tr_list;
  71. typedef struct {
  72. isc_blob_handle bl_handle;
  73. unsigned short type;
  74. ISC_QUAD bl_qd;
  75. } ibase_blob;
  76. typedef struct event {
  77. ibase_db_link *link;
  78. zend_resource* link_res;
  79. ISC_LONG event_id;
  80. unsigned short event_count;
  81. char **events;
  82. char *event_buffer, *result_buffer;
  83. zval callback;
  84. void *thread_ctx;
  85. struct event *event_next;
  86. enum event_state { NEW, ACTIVE, DEAD } state;
  87. } ibase_event;
  88. enum php_interbase_option {
  89. PHP_IBASE_DEFAULT = 0,
  90. PHP_IBASE_CREATE = 0,
  91. /* fetch flags */
  92. PHP_IBASE_FETCH_BLOBS = 1,
  93. PHP_IBASE_FETCH_ARRAYS = 2,
  94. PHP_IBASE_UNIXTIME = 4,
  95. /* transaction access mode */
  96. PHP_IBASE_WRITE = 1,
  97. PHP_IBASE_READ = 2,
  98. /* transaction isolation level */
  99. PHP_IBASE_CONCURRENCY = 4,
  100. PHP_IBASE_COMMITTED = 8,
  101. PHP_IBASE_REC_NO_VERSION = 32,
  102. PHP_IBASE_REC_VERSION = 64,
  103. PHP_IBASE_CONSISTENCY = 16,
  104. /* transaction lock resolution */
  105. PHP_IBASE_WAIT = 128,
  106. PHP_IBASE_NOWAIT = 256
  107. };
  108. #define IBG(v) ZEND_MODULE_GLOBALS_ACCESSOR(ibase, v)
  109. #if defined(ZTS) && defined(COMPILE_DL_INTERBASE)
  110. ZEND_TSRMLS_CACHE_EXTERN()
  111. #endif
  112. #define BLOB_ID_LEN 18
  113. #define BLOB_ID_MASK "0x%" LL_MASK "x"
  114. #define BLOB_INPUT 1
  115. #define BLOB_OUTPUT 2
  116. #ifdef PHP_WIN32
  117. #define LL_MASK "I64"
  118. #define LL_LIT(lit) lit ## I64
  119. typedef void (__stdcall *info_func_t)(char*);
  120. #else
  121. #define LL_MASK "ll"
  122. #define LL_LIT(lit) lit ## ll
  123. typedef void (*info_func_t)(char*);
  124. #endif
  125. void _php_ibase_error(void);
  126. void _php_ibase_module_error(char *, ...)
  127. PHP_ATTRIBUTE_FORMAT(printf,1,2);
  128. /* determine if a resource is a link or transaction handle */
  129. #define PHP_IBASE_LINK_TRANS(zv, lh, th) \
  130. do { \
  131. if (!zv) { \
  132. lh = (ibase_db_link *)zend_fetch_resource2( \
  133. IBG(default_link), "InterBase link", le_link, le_plink); \
  134. } else { \
  135. _php_ibase_get_link_trans(INTERNAL_FUNCTION_PARAM_PASSTHRU, zv, &lh, &th); \
  136. } \
  137. if (SUCCESS != _php_ibase_def_trans(lh, &th)) { RETURN_FALSE; } \
  138. } while (0)
  139. int _php_ibase_def_trans(ibase_db_link *ib_link, ibase_trans **trans);
  140. void _php_ibase_get_link_trans(INTERNAL_FUNCTION_PARAMETERS, zval *link_id,
  141. ibase_db_link **ib_link, ibase_trans **trans);
  142. /* provided by ibase_query.c */
  143. void php_ibase_query_minit(INIT_FUNC_ARGS);
  144. /* provided by ibase_blobs.c */
  145. void php_ibase_blobs_minit(INIT_FUNC_ARGS);
  146. int _php_ibase_string_to_quad(char const *id, ISC_QUAD *qd);
  147. zend_string *_php_ibase_quad_to_string(ISC_QUAD const qd);
  148. int _php_ibase_blob_get(zval *return_value, ibase_blob *ib_blob, zend_ulong max_len);
  149. int _php_ibase_blob_add(zval *string_arg, ibase_blob *ib_blob);
  150. /* provided by ibase_events.c */
  151. void php_ibase_events_minit(INIT_FUNC_ARGS);
  152. void _php_ibase_free_event(ibase_event *event);
  153. /* provided by ibase_service.c */
  154. void php_ibase_service_minit(INIT_FUNC_ARGS);
  155. #ifndef max
  156. #define max(a,b) ((a)>(b)?(a):(b))
  157. #endif
  158. #endif /* PHP_IBASE_INCLUDES_H */
  159. /*
  160. * Local variables:
  161. * tab-width: 4
  162. * c-basic-offset: 4
  163. * End:
  164. */