formatter_parse.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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 "php_intl.h"
  20. #include <unicode/ustring.h>
  21. #include <locale.h>
  22. #include "formatter_class.h"
  23. #include "formatter_format.h"
  24. #include "formatter_parse.h"
  25. #include "intl_convert.h"
  26. #define ICU_LOCALE_BUG 1
  27. /* {{{ proto mixed NumberFormatter::parse( string $str[, int $type, int &$position ])
  28. * Parse a number. }}} */
  29. /* {{{ proto mixed numfmt_parse( NumberFormatter $nf, string $str[, int $type, int &$position ])
  30. * Parse a number.
  31. */
  32. PHP_FUNCTION( numfmt_parse )
  33. {
  34. zend_long type = FORMAT_TYPE_DOUBLE;
  35. UChar* sstr = NULL;
  36. int32_t sstr_len = 0;
  37. char* str = NULL;
  38. size_t str_len;
  39. int32_t val32, position = 0;
  40. int64_t val64;
  41. double val_double;
  42. int32_t* position_p = NULL;
  43. zval *zposition = NULL;
  44. char *oldlocale;
  45. FORMATTER_METHOD_INIT_VARS;
  46. /* Parse parameters. */
  47. if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "Os|lz/!",
  48. &object, NumberFormatter_ce_ptr, &str, &str_len, &type, &zposition ) == FAILURE )
  49. {
  50. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  51. "number_parse: unable to parse input params", 0 );
  52. RETURN_FALSE;
  53. }
  54. /* Fetch the object. */
  55. FORMATTER_METHOD_FETCH_OBJECT;
  56. /* Convert given string to UTF-16. */
  57. intl_convert_utf8_to_utf16(&sstr, &sstr_len, str, str_len, &INTL_DATA_ERROR_CODE(nfo));
  58. INTL_METHOD_CHECK_STATUS( nfo, "String conversion to UTF-16 failed" );
  59. if(zposition) {
  60. ZVAL_DEREF(zposition);
  61. position = (int32_t)zval_get_long( zposition );
  62. position_p = &position;
  63. }
  64. #if ICU_LOCALE_BUG && defined(LC_NUMERIC)
  65. /* need to copy here since setlocale may change it later */
  66. oldlocale = estrdup(setlocale(LC_NUMERIC, NULL));
  67. setlocale(LC_NUMERIC, "C");
  68. #endif
  69. switch(type) {
  70. case FORMAT_TYPE_INT32:
  71. val32 = unum_parse(FORMATTER_OBJECT(nfo), sstr, sstr_len, position_p, &INTL_DATA_ERROR_CODE(nfo));
  72. RETVAL_LONG(val32);
  73. break;
  74. case FORMAT_TYPE_INT64:
  75. val64 = unum_parseInt64(FORMATTER_OBJECT(nfo), sstr, sstr_len, position_p, &INTL_DATA_ERROR_CODE(nfo));
  76. if(val64 > ZEND_LONG_MAX || val64 < ZEND_LONG_MIN) {
  77. RETVAL_DOUBLE(val64);
  78. } else {
  79. RETVAL_LONG((zend_long)val64);
  80. }
  81. break;
  82. case FORMAT_TYPE_DOUBLE:
  83. val_double = unum_parseDouble(FORMATTER_OBJECT(nfo), sstr, sstr_len, position_p, &INTL_DATA_ERROR_CODE(nfo));
  84. RETVAL_DOUBLE(val_double);
  85. break;
  86. default:
  87. php_error_docref(NULL, E_WARNING, "Unsupported format type " ZEND_LONG_FMT, type);
  88. RETVAL_FALSE;
  89. break;
  90. }
  91. #if ICU_LOCALE_BUG && defined(LC_NUMERIC)
  92. setlocale(LC_NUMERIC, oldlocale);
  93. efree(oldlocale);
  94. #endif
  95. if(zposition) {
  96. zval_ptr_dtor(zposition);
  97. ZVAL_LONG(zposition, position);
  98. }
  99. if (sstr) {
  100. efree(sstr);
  101. }
  102. INTL_METHOD_CHECK_STATUS( nfo, "Number parsing failed" );
  103. }
  104. /* }}} */
  105. /* {{{ proto float NumberFormatter::parseCurrency( string $str, string &$currency[, int &$position] )
  106. * Parse a number as currency. }}} */
  107. /* {{{ proto float numfmt_parse_currency( NumberFormatter $nf, string $str, string &$currency[, int &$position] )
  108. * Parse a number as currency.
  109. */
  110. PHP_FUNCTION( numfmt_parse_currency )
  111. {
  112. double number;
  113. UChar currency[5] = {0};
  114. UChar* sstr = NULL;
  115. int32_t sstr_len = 0;
  116. zend_string *u8str;
  117. char *str;
  118. size_t str_len;
  119. int32_t* position_p = NULL;
  120. int32_t position = 0;
  121. zval *zcurrency, *zposition = NULL;
  122. FORMATTER_METHOD_INIT_VARS;
  123. /* Parse parameters. */
  124. if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "Osz/|z/!",
  125. &object, NumberFormatter_ce_ptr, &str, &str_len, &zcurrency, &zposition ) == FAILURE )
  126. {
  127. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  128. "number_parse_currency: unable to parse input params", 0 );
  129. RETURN_FALSE;
  130. }
  131. /* Fetch the object. */
  132. FORMATTER_METHOD_FETCH_OBJECT;
  133. /* Convert given string to UTF-16. */
  134. intl_convert_utf8_to_utf16(&sstr, &sstr_len, str, str_len, &INTL_DATA_ERROR_CODE(nfo));
  135. INTL_METHOD_CHECK_STATUS( nfo, "String conversion to UTF-16 failed" );
  136. if(zposition) {
  137. ZVAL_DEREF(zposition);
  138. position = (int32_t)zval_get_long( zposition );
  139. position_p = &position;
  140. }
  141. number = unum_parseDoubleCurrency(FORMATTER_OBJECT(nfo), sstr, sstr_len, position_p, currency, &INTL_DATA_ERROR_CODE(nfo));
  142. if(zposition) {
  143. zval_ptr_dtor(zposition);
  144. ZVAL_LONG(zposition, position);
  145. }
  146. if (sstr) {
  147. efree(sstr);
  148. }
  149. INTL_METHOD_CHECK_STATUS( nfo, "Number parsing failed" );
  150. /* Convert parsed currency to UTF-8 and pass it back to caller. */
  151. u8str = intl_convert_utf16_to_utf8(currency, u_strlen(currency), &INTL_DATA_ERROR_CODE(nfo));
  152. INTL_METHOD_CHECK_STATUS( nfo, "Currency conversion to UTF-8 failed" );
  153. zval_ptr_dtor( zcurrency );
  154. ZVAL_NEW_STR(zcurrency, u8str);
  155. RETVAL_DOUBLE( number );
  156. }
  157. /* }}} */
  158. /*
  159. * Local variables:
  160. * tab-width: 4
  161. * c-basic-offset: 4
  162. * End:
  163. * vim600: noet sw=4 ts=4 fdm=marker
  164. * vim<600: noet sw=4 ts=4
  165. */