php_pdo.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. | Author: Wez Furlong <wez@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifndef PHP_PDO_H
  20. #define PHP_PDO_H
  21. #include "zend.h"
  22. #if PHP_MAJOR_VERSION > 5 || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 1)
  23. #define can_handle_soft_dependency_on_SPL 1
  24. #endif
  25. extern zend_module_entry pdo_module_entry;
  26. #define phpext_pdo_ptr &pdo_module_entry
  27. #ifdef PHP_WIN32
  28. # if defined(PDO_EXPORTS) || (!defined(COMPILE_DL_PDO))
  29. # define PDO_API __declspec(dllexport)
  30. # elif defined(COMPILE_DL_PDO)
  31. # define PDO_API __declspec(dllimport)
  32. # else
  33. # define PDO_API /* nothing special */
  34. # endif
  35. #elif defined(__GNUC__) && __GNUC__ >= 4
  36. # define PDO_API __attribute__ ((visibility("default")))
  37. #else
  38. # define PDO_API /* nothing special */
  39. #endif
  40. #ifdef ZTS
  41. # include "TSRM.h"
  42. #endif
  43. PHP_MINIT_FUNCTION(pdo);
  44. PHP_MSHUTDOWN_FUNCTION(pdo);
  45. PHP_MINFO_FUNCTION(pdo);
  46. ZEND_BEGIN_MODULE_GLOBALS(pdo)
  47. long global_value;
  48. ZEND_END_MODULE_GLOBALS(pdo)
  49. #ifdef ZTS
  50. # define PDOG(v) TSRMG(pdo_globals_id, zend_pdo_globals *, v)
  51. #else
  52. # define PDOG(v) (pdo_globals.v)
  53. #endif
  54. #define REGISTER_PDO_CLASS_CONST_LONG(const_name, value) \
  55. zend_declare_class_constant_long(php_pdo_get_dbh_ce(), const_name, sizeof(const_name)-1, (long)value TSRMLS_CC);
  56. #define REGISTER_PDO_CONST_LONG(const_name, value) { \
  57. zend_class_entry **pce; \
  58. if (zend_hash_find(CG(class_table), "pdo", sizeof("pdo"), (void **) &pce) != FAILURE) \
  59. zend_declare_class_constant_long(*pce, const_name, sizeof(const_name)-1, (long)value TSRMLS_CC); \
  60. } \
  61. #define REGISTER_PDO_CLASS_CONST_STRING(const_name, value) \
  62. zend_declare_class_constant_stringl(php_pdo_get_dbh_ce(), const_name, sizeof(const_name)-1, value, sizeof(value)-1 TSRMLS_CC);
  63. #define PDO_CONSTRUCT_CHECK \
  64. if (!dbh->driver) { \
  65. pdo_raise_impl_error(dbh, NULL, "00000", "PDO constructor was not called" TSRMLS_CC); \
  66. return; \
  67. } \
  68. #endif /* PHP_PDO_H */
  69. /*
  70. * Local variables:
  71. * tab-width: 4
  72. * c-basic-offset: 4
  73. * End:
  74. * vim600: noet sw=4 ts=4 fdm=marker
  75. * vim<600: noet sw=4 ts=4
  76. */