intl_data.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | This source file is subject to version 3.01 of the PHP license, |
  6. | that is bundled with this package in the file LICENSE, and is |
  7. | available through the world-wide-web at the following url: |
  8. | http://www.php.net/license/3_01.txt |
  9. | If you did not receive a copy of the PHP license and are unable to |
  10. | obtain it through the world-wide-web, please send a note to |
  11. | license@php.net so we can mail you a copy immediately. |
  12. +----------------------------------------------------------------------+
  13. | Authors: Vadim Savchuk <vsavchuk@productengine.com> |
  14. | Dmitry Lakhtyuk <dlakhtyuk@productengine.com> |
  15. | Stanislav Malyshev <stas@zend.com> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef INTL_DATA_H
  19. #define INTL_DATA_H
  20. #include <unicode/utypes.h>
  21. #include "intl_error.h"
  22. /* Mock object to generalize error handling in sub-modules.
  23. Sub-module data structures should always have error as first element
  24. for this to work!
  25. */
  26. typedef struct _intl_data {
  27. zend_object zo;
  28. intl_error error;
  29. } intl_object;
  30. #define INTL_METHOD_INIT_VARS(oclass, obj) \
  31. zval* object = NULL; \
  32. oclass##_object* obj = NULL; \
  33. intl_error_reset( NULL TSRMLS_CC );
  34. #define INTL_DATA_ERROR(obj) (((intl_object *)(obj))->error)
  35. #define INTL_DATA_ERROR_P(obj) (&(INTL_DATA_ERROR((obj))))
  36. #define INTL_DATA_ERROR_CODE(obj) INTL_ERROR_CODE(INTL_DATA_ERROR((obj)))
  37. #define INTL_METHOD_FETCH_OBJECT(oclass, obj) \
  38. obj = (oclass##_object *) zend_object_store_get_object( object TSRMLS_CC ); \
  39. intl_error_reset( INTL_DATA_ERROR_P(obj) TSRMLS_CC ); \
  40. /* Check status by error code, if error - exit */
  41. #define INTL_CHECK_STATUS(err, msg) \
  42. intl_error_set_code( NULL, (err) TSRMLS_CC ); \
  43. if( U_FAILURE((err)) ) \
  44. { \
  45. intl_error_set_custom_msg( NULL, msg, 0 TSRMLS_CC ); \
  46. RETURN_FALSE; \
  47. }
  48. /* Check status in object, if error - exit */
  49. #define INTL_METHOD_CHECK_STATUS(obj, msg) \
  50. intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) TSRMLS_CC ); \
  51. if( U_FAILURE( INTL_DATA_ERROR_CODE((obj)) ) ) \
  52. { \
  53. intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 TSRMLS_CC ); \
  54. RETURN_FALSE; \
  55. }
  56. /* Check status, if error - destroy value and exit */
  57. #define INTL_CTOR_CHECK_STATUS(obj, msg) \
  58. intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) TSRMLS_CC ); \
  59. if( U_FAILURE( INTL_DATA_ERROR_CODE((obj)) ) ) \
  60. { \
  61. intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 TSRMLS_CC ); \
  62. zval_dtor(return_value); \
  63. RETURN_NULL(); \
  64. }
  65. #define INTL_METHOD_RETVAL_UTF8(obj, ustring, ulen, free_it) \
  66. { \
  67. char *u8value; \
  68. int u8len; \
  69. intl_convert_utf16_to_utf8(&u8value, &u8len, ustring, ulen, &INTL_DATA_ERROR_CODE((obj))); \
  70. if((free_it)) { \
  71. efree(ustring); \
  72. } \
  73. INTL_METHOD_CHECK_STATUS((obj), "Error converting value to UTF-8"); \
  74. RETVAL_STRINGL(u8value, u8len, 0); \
  75. }
  76. #define INTL_MAX_LOCALE_LEN 80
  77. #define INTL_CHECK_LOCALE_LEN(locale_len) \
  78. if((locale_len) > INTL_MAX_LOCALE_LEN) { \
  79. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, \
  80. "Locale string too long, should be no longer than 80 characters", 0 TSRMLS_CC ); \
  81. RETURN_NULL(); \
  82. }
  83. #define INTL_CHECK_LOCALE_LEN_OBJ(locale_len, object) \
  84. if((locale_len) > INTL_MAX_LOCALE_LEN) { \
  85. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, \
  86. "Locale string too long, should be no longer than 80 characters", 0 TSRMLS_CC ); \
  87. zval_dtor(object); \
  88. ZVAL_NULL(object); \
  89. RETURN_NULL(); \
  90. }
  91. #endif // INTL_DATA_H