msgformat.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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: Stanislav Malyshev <stas@zend.com> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #ifdef HAVE_CONFIG_H
  17. #include "config.h"
  18. #endif
  19. #include <unicode/ustring.h>
  20. #include <unicode/umsg.h>
  21. #include "php_intl.h"
  22. #include "msgformat_class.h"
  23. #include "msgformat_data.h"
  24. #include "intl_convert.h"
  25. /* {{{ */
  26. static int msgfmt_ctor(INTERNAL_FUNCTION_PARAMETERS, zend_bool is_constructor)
  27. {
  28. const char* locale;
  29. char* pattern;
  30. size_t locale_len = 0, pattern_len = 0;
  31. UChar* spattern = NULL;
  32. int spattern_len = 0;
  33. zval* object;
  34. MessageFormatter_object* mfo;
  35. int zpp_flags = is_constructor ? ZEND_PARSE_PARAMS_THROW : 0;
  36. intl_error_reset( NULL );
  37. object = return_value;
  38. /* Parse parameters. */
  39. if( zend_parse_parameters_ex( zpp_flags, ZEND_NUM_ARGS(), "ss",
  40. &locale, &locale_len, &pattern, &pattern_len ) == FAILURE )
  41. {
  42. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  43. "msgfmt_create: unable to parse input parameters", 0 );
  44. return FAILURE;
  45. }
  46. INTL_CHECK_LOCALE_LEN_OR_FAILURE(locale_len);
  47. MSG_FORMAT_METHOD_FETCH_OBJECT_NO_CHECK;
  48. /* Convert pattern (if specified) to UTF-16. */
  49. if(pattern && pattern_len) {
  50. intl_convert_utf8_to_utf16(&spattern, &spattern_len, pattern, pattern_len, &INTL_DATA_ERROR_CODE(mfo));
  51. INTL_CTOR_CHECK_STATUS(mfo, "msgfmt_create: error converting pattern to UTF-16");
  52. } else {
  53. spattern_len = 0;
  54. spattern = NULL;
  55. }
  56. if(locale_len == 0) {
  57. locale = intl_locale_get_default();
  58. }
  59. #ifdef MSG_FORMAT_QUOTE_APOS
  60. if(msgformat_fix_quotes(&spattern, &spattern_len, &INTL_DATA_ERROR_CODE(mfo)) != SUCCESS) {
  61. INTL_CTOR_CHECK_STATUS(mfo, "msgfmt_create: error converting pattern to quote-friendly format");
  62. }
  63. #endif
  64. if ((mfo)->mf_data.orig_format) {
  65. msgformat_data_free(&mfo->mf_data);
  66. }
  67. (mfo)->mf_data.orig_format = estrndup(pattern, pattern_len);
  68. (mfo)->mf_data.orig_format_len = pattern_len;
  69. /* Create an ICU message formatter. */
  70. MSG_FORMAT_OBJECT(mfo) = umsg_open(spattern, spattern_len, locale, NULL, &INTL_DATA_ERROR_CODE(mfo));
  71. if(spattern) {
  72. efree(spattern);
  73. }
  74. INTL_CTOR_CHECK_STATUS(mfo, "msgfmt_create: message formatter creation failed");
  75. return SUCCESS;
  76. }
  77. /* }}} */
  78. /* {{{ proto MessageFormatter MesssageFormatter::create( string $locale, string $pattern )
  79. * Create formatter. }}} */
  80. /* {{{ proto MessageFormatter msgfmt_create( string $locale, string $pattern )
  81. * Create formatter.
  82. */
  83. PHP_FUNCTION( msgfmt_create )
  84. {
  85. object_init_ex( return_value, MessageFormatter_ce_ptr );
  86. if (msgfmt_ctor(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0) == FAILURE) {
  87. zval_ptr_dtor(return_value);
  88. RETURN_NULL();
  89. }
  90. }
  91. /* }}} */
  92. /* {{{ proto MessageFormatter::__construct( string $locale, string $pattern )
  93. * MessageFormatter object constructor.
  94. */
  95. PHP_METHOD( MessageFormatter, __construct )
  96. {
  97. zend_error_handling error_handling;
  98. zend_replace_error_handling(EH_THROW, IntlException_ce_ptr, &error_handling);
  99. return_value = getThis();
  100. if (msgfmt_ctor(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1) == FAILURE) {
  101. if (!EG(exception)) {
  102. zend_throw_exception(IntlException_ce_ptr, "Constructor failed", 0);
  103. }
  104. }
  105. zend_restore_error_handling(&error_handling);
  106. }
  107. /* }}} */
  108. /* {{{ proto int MessageFormatter::getErrorCode()
  109. * Get formatter's last error code. }}} */
  110. /* {{{ proto int msgfmt_get_error_code( MessageFormatter $nf )
  111. * Get formatter's last error code.
  112. */
  113. PHP_FUNCTION( msgfmt_get_error_code )
  114. {
  115. zval* object = NULL;
  116. MessageFormatter_object* mfo = NULL;
  117. /* Parse parameters. */
  118. if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "O",
  119. &object, MessageFormatter_ce_ptr ) == FAILURE )
  120. {
  121. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  122. "msgfmt_get_error_code: unable to parse input params", 0 );
  123. RETURN_FALSE;
  124. }
  125. mfo = Z_INTL_MESSAGEFORMATTER_P( object );
  126. /* Return formatter's last error code. */
  127. RETURN_LONG( INTL_DATA_ERROR_CODE(mfo) );
  128. }
  129. /* }}} */
  130. /* {{{ proto string MessageFormatter::getErrorMessage( )
  131. * Get text description for formatter's last error code. }}} */
  132. /* {{{ proto string msgfmt_get_error_message( MessageFormatter $coll )
  133. * Get text description for formatter's last error code.
  134. */
  135. PHP_FUNCTION( msgfmt_get_error_message )
  136. {
  137. zend_string* message = NULL;
  138. zval* object = NULL;
  139. MessageFormatter_object* mfo = NULL;
  140. /* Parse parameters. */
  141. if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "O",
  142. &object, MessageFormatter_ce_ptr ) == FAILURE )
  143. {
  144. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  145. "msgfmt_get_error_message: unable to parse input params", 0 );
  146. RETURN_FALSE;
  147. }
  148. mfo = Z_INTL_MESSAGEFORMATTER_P( object );
  149. /* Return last error message. */
  150. message = intl_error_get_message( &mfo->mf_data.error );
  151. RETURN_STR(message);
  152. }
  153. /* }}} */
  154. /*
  155. * Local variables:
  156. * tab-width: 4
  157. * c-basic-offset: 4
  158. * End:
  159. * vim600: noet sw=4 ts=4 fdm=marker
  160. * vim<600: noet sw=4 ts=4
  161. */