intl_data.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  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. intl_error error;
  28. zend_object zo;
  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 );
  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 = Z_##oclass##_P( object ); \
  39. intl_error_reset( INTL_DATA_ERROR_P(obj) ); \
  40. /* Check status by error code, if error return false */
  41. #define INTL_CHECK_STATUS(err, msg) \
  42. intl_error_set_code( NULL, (err) ); \
  43. if( U_FAILURE((err)) ) \
  44. { \
  45. intl_error_set_custom_msg( NULL, msg, 0 ); \
  46. RETURN_FALSE; \
  47. }
  48. /* Check status by error code, if error return null */
  49. #define INTL_CHECK_STATUS_OR_NULL(err, msg) \
  50. intl_error_set_code( NULL, (err) ); \
  51. if( U_FAILURE((err)) ) \
  52. { \
  53. intl_error_set_custom_msg( NULL, msg, 0 ); \
  54. RETURN_NULL(); \
  55. }
  56. /* Check status in object, if error return false */
  57. #define INTL_METHOD_CHECK_STATUS(obj, msg) \
  58. intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) ); \
  59. if( U_FAILURE( INTL_DATA_ERROR_CODE((obj)) ) ) \
  60. { \
  61. intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 ); \
  62. RETURN_FALSE; \
  63. }
  64. /* Check status in object, if error return null */
  65. #define INTL_METHOD_CHECK_STATUS_OR_NULL(obj, msg) \
  66. intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) ); \
  67. if( U_FAILURE( INTL_DATA_ERROR_CODE((obj)) ) ) \
  68. { \
  69. intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 ); \
  70. zval_ptr_dtor(return_value); \
  71. RETURN_NULL(); \
  72. }
  73. /* Check status in object, if error return FAILURE */
  74. #define INTL_CTOR_CHECK_STATUS(obj, msg) \
  75. intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) ); \
  76. if( U_FAILURE( INTL_DATA_ERROR_CODE((obj)) ) ) \
  77. { \
  78. intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 ); \
  79. return FAILURE; \
  80. }
  81. #define INTL_METHOD_RETVAL_UTF8(obj, ustring, ulen, free_it) \
  82. { \
  83. zend_string *u8str; \
  84. u8str = intl_convert_utf16_to_utf8(ustring, ulen, &INTL_DATA_ERROR_CODE((obj))); \
  85. if((free_it)) { \
  86. efree(ustring); \
  87. } \
  88. INTL_METHOD_CHECK_STATUS((obj), "Error converting value to UTF-8"); \
  89. RETVAL_NEW_STR(u8str); \
  90. }
  91. #define INTL_MAX_LOCALE_LEN (ULOC_FULLNAME_CAPACITY-1)
  92. #define INTL_CHECK_LOCALE_LEN(locale_len) \
  93. if((locale_len) > INTL_MAX_LOCALE_LEN) { \
  94. char *_msg; \
  95. spprintf(&_msg, 0, "Locale string too long, should be no longer than %d characters", INTL_MAX_LOCALE_LEN); \
  96. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, _msg, 1); \
  97. efree(_msg); \
  98. RETURN_NULL(); \
  99. }
  100. #define INTL_CHECK_LOCALE_LEN_OR_FAILURE(locale_len) \
  101. if((locale_len) > INTL_MAX_LOCALE_LEN) { \
  102. char *_msg; \
  103. spprintf(&_msg, 0, "Locale string too long, should be no longer than %d characters", INTL_MAX_LOCALE_LEN); \
  104. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, _msg, 1); \
  105. efree(_msg); \
  106. return FAILURE; \
  107. }
  108. #endif // INTL_DATA_H