formatter_main.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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 "php_intl.h"
  21. #include "formatter_class.h"
  22. #include "intl_convert.h"
  23. /* {{{ */
  24. static int numfmt_ctor(INTERNAL_FUNCTION_PARAMETERS, zend_bool is_constructor)
  25. {
  26. const char* locale;
  27. char* pattern = NULL;
  28. size_t locale_len = 0, pattern_len = 0;
  29. zend_long style;
  30. UChar* spattern = NULL;
  31. int32_t spattern_len = 0;
  32. int zpp_flags = is_constructor ? ZEND_PARSE_PARAMS_THROW : 0;
  33. FORMATTER_METHOD_INIT_VARS;
  34. /* Parse parameters. */
  35. if( zend_parse_parameters_ex( zpp_flags, ZEND_NUM_ARGS(), "sl|s",
  36. &locale, &locale_len, &style, &pattern, &pattern_len ) == FAILURE )
  37. {
  38. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  39. "numfmt_create: unable to parse input parameters", 0 );
  40. return FAILURE;
  41. }
  42. INTL_CHECK_LOCALE_LEN_OR_FAILURE(locale_len);
  43. object = return_value;
  44. FORMATTER_METHOD_FETCH_OBJECT_NO_CHECK;
  45. /* Convert pattern (if specified) to UTF-16. */
  46. if(pattern && pattern_len) {
  47. intl_convert_utf8_to_utf16(&spattern, &spattern_len, pattern, pattern_len, &INTL_DATA_ERROR_CODE(nfo));
  48. INTL_CTOR_CHECK_STATUS(nfo, "numfmt_create: error converting pattern to UTF-16");
  49. }
  50. if(locale_len == 0) {
  51. locale = intl_locale_get_default();
  52. }
  53. /* Create an ICU number formatter. */
  54. FORMATTER_OBJECT(nfo) = unum_open(style, spattern, spattern_len, locale, NULL, &INTL_DATA_ERROR_CODE(nfo));
  55. if(spattern) {
  56. efree(spattern);
  57. }
  58. INTL_CTOR_CHECK_STATUS(nfo, "numfmt_create: number formatter creation failed");
  59. return SUCCESS;
  60. }
  61. /* }}} */
  62. /* {{{ proto NumberFormatter NumberFormatter::create( string $locale, int style[, string $pattern ] )
  63. * Create number formatter. }}} */
  64. /* {{{ proto NumberFormatter numfmt_create( string $locale, int style[, string $pattern ] )
  65. * Create number formatter.
  66. */
  67. PHP_FUNCTION( numfmt_create )
  68. {
  69. object_init_ex( return_value, NumberFormatter_ce_ptr );
  70. if (numfmt_ctor(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0) == FAILURE) {
  71. zval_ptr_dtor(return_value);
  72. RETURN_NULL();
  73. }
  74. }
  75. /* }}} */
  76. /* {{{ proto NumberFormatter::__construct( string $locale, int style[, string $pattern ] )
  77. * NumberFormatter object constructor.
  78. */
  79. PHP_METHOD( NumberFormatter, __construct )
  80. {
  81. zend_error_handling error_handling;
  82. zend_replace_error_handling(EH_THROW, IntlException_ce_ptr, &error_handling);
  83. return_value = getThis();
  84. if (numfmt_ctor(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1) == FAILURE) {
  85. if (!EG(exception)) {
  86. zend_throw_exception(IntlException_ce_ptr, "Constructor failed", 0);
  87. }
  88. }
  89. zend_restore_error_handling(&error_handling);
  90. }
  91. /* }}} */
  92. /* {{{ proto int NumberFormatter::getErrorCode()
  93. * Get formatter's last error code. }}} */
  94. /* {{{ proto int numfmt_get_error_code( NumberFormatter $nf )
  95. * Get formatter's last error code.
  96. */
  97. PHP_FUNCTION( numfmt_get_error_code )
  98. {
  99. FORMATTER_METHOD_INIT_VARS
  100. /* Parse parameters. */
  101. if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "O",
  102. &object, NumberFormatter_ce_ptr ) == FAILURE )
  103. {
  104. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  105. "numfmt_get_error_code: unable to parse input params", 0 );
  106. RETURN_FALSE;
  107. }
  108. nfo = Z_INTL_NUMBERFORMATTER_P(object);
  109. /* Return formatter's last error code. */
  110. RETURN_LONG( INTL_DATA_ERROR_CODE(nfo) );
  111. }
  112. /* }}} */
  113. /* {{{ proto string NumberFormatter::getErrorMessage( )
  114. * Get text description for formatter's last error code. }}} */
  115. /* {{{ proto string numfmt_get_error_message( NumberFormatter $nf )
  116. * Get text description for formatter's last error code.
  117. */
  118. PHP_FUNCTION( numfmt_get_error_message )
  119. {
  120. zend_string *message = NULL;
  121. FORMATTER_METHOD_INIT_VARS
  122. /* Parse parameters. */
  123. if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "O",
  124. &object, NumberFormatter_ce_ptr ) == FAILURE )
  125. {
  126. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  127. "numfmt_get_error_message: unable to parse input params", 0 );
  128. RETURN_FALSE;
  129. }
  130. nfo = Z_INTL_NUMBERFORMATTER_P(object);
  131. /* Return last error message. */
  132. message = intl_error_get_message( INTL_DATA_ERROR_P(nfo) );
  133. RETURN_STR(message);
  134. }
  135. /* }}} */
  136. /*
  137. * Local variables:
  138. * tab-width: 4
  139. * c-basic-offset: 4
  140. * End:
  141. * vim600: noet sw=4 ts=4 fdm=marker
  142. * vim<600: noet sw=4 ts=4
  143. */