msgformat_parse.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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 "msgformat_class.h"
  22. #include "msgformat_parse.h"
  23. #include "msgformat_data.h"
  24. #include "msgformat_helpers.h"
  25. #include "intl_convert.h"
  26. /* {{{ */
  27. static void msgfmt_do_parse(MessageFormatter_object *mfo, char *source, size_t src_len, zval *return_value)
  28. {
  29. zval *fargs;
  30. int count = 0;
  31. int i;
  32. UChar *usource = NULL;
  33. int usrc_len = 0;
  34. intl_convert_utf8_to_utf16(&usource, &usrc_len, source, src_len, &INTL_DATA_ERROR_CODE(mfo));
  35. INTL_METHOD_CHECK_STATUS(mfo, "Converting parse string failed");
  36. umsg_parse_helper(MSG_FORMAT_OBJECT(mfo), &count, &fargs, usource, usrc_len, &INTL_DATA_ERROR_CODE(mfo));
  37. if (usource) {
  38. efree(usource);
  39. }
  40. INTL_METHOD_CHECK_STATUS(mfo, "Parsing failed");
  41. array_init(return_value);
  42. for(i=0;i<count;i++) {
  43. add_next_index_zval(return_value, &fargs[i]);
  44. }
  45. efree(fargs);
  46. }
  47. /* }}} */
  48. /* {{{ proto array MessageFormatter::parse( string $source )
  49. * Parse a message }}} */
  50. /* {{{ proto array msgfmt_parse( MessageFormatter $nf, string $source )
  51. * Parse a message.
  52. */
  53. PHP_FUNCTION( msgfmt_parse )
  54. {
  55. char *source;
  56. size_t source_len;
  57. MSG_FORMAT_METHOD_INIT_VARS;
  58. /* Parse parameters. */
  59. if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "Os",
  60. &object, MessageFormatter_ce_ptr, &source, &source_len ) == FAILURE )
  61. {
  62. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  63. "msgfmt_parse: unable to parse input params", 0 );
  64. RETURN_FALSE;
  65. }
  66. /* Fetch the object. */
  67. MSG_FORMAT_METHOD_FETCH_OBJECT;
  68. msgfmt_do_parse(mfo, source, source_len, return_value);
  69. }
  70. /* }}} */
  71. /* {{{ proto array MessageFormatter::formatMessage( string $locale, string $pattern, string $source )
  72. * Parse a message. }}} */
  73. /* {{{ proto array numfmt_parse_message( string $locale, string $pattern, string $source )
  74. * Parse a message.
  75. */
  76. PHP_FUNCTION( msgfmt_parse_message )
  77. {
  78. UChar *spattern = NULL;
  79. int spattern_len = 0;
  80. char *pattern = NULL;
  81. size_t pattern_len = 0;
  82. const char *slocale = NULL;
  83. size_t slocale_len = 0;
  84. char *source = NULL;
  85. size_t src_len = 0;
  86. MessageFormatter_object mf;
  87. MessageFormatter_object *mfo = &mf;
  88. /* Parse parameters. */
  89. if( zend_parse_parameters( ZEND_NUM_ARGS(), "sss",
  90. &slocale, &slocale_len, &pattern, &pattern_len, &source, &src_len ) == FAILURE )
  91. {
  92. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  93. "msgfmt_parse_message: unable to parse input params", 0 );
  94. RETURN_FALSE;
  95. }
  96. INTL_CHECK_LOCALE_LEN(slocale_len);
  97. memset(mfo, 0, sizeof(*mfo));
  98. msgformat_data_init(&mfo->mf_data);
  99. if(pattern && pattern_len) {
  100. intl_convert_utf8_to_utf16(&spattern, &spattern_len, pattern, pattern_len, &INTL_DATA_ERROR_CODE(mfo));
  101. if( U_FAILURE(INTL_DATA_ERROR_CODE((mfo))) )
  102. {
  103. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  104. "msgfmt_parse_message: error converting pattern to UTF-16", 0 );
  105. RETURN_FALSE;
  106. }
  107. } else {
  108. spattern_len = 0;
  109. spattern = NULL;
  110. }
  111. if(slocale_len == 0) {
  112. slocale = intl_locale_get_default();
  113. }
  114. #ifdef MSG_FORMAT_QUOTE_APOS
  115. if(msgformat_fix_quotes(&spattern, &spattern_len, &INTL_DATA_ERROR_CODE(mfo)) != SUCCESS) {
  116. intl_error_set( NULL, U_INVALID_FORMAT_ERROR,
  117. "msgfmt_parse_message: error converting pattern to quote-friendly format", 0 );
  118. RETURN_FALSE;
  119. }
  120. #endif
  121. /* Create an ICU message formatter. */
  122. MSG_FORMAT_OBJECT(mfo) = umsg_open(spattern, spattern_len, slocale, NULL, &INTL_DATA_ERROR_CODE(mfo));
  123. if(spattern && spattern_len) {
  124. efree(spattern);
  125. }
  126. INTL_METHOD_CHECK_STATUS(mfo, "Creating message formatter failed");
  127. msgfmt_do_parse(mfo, source, src_len, return_value);
  128. /* drop the temporary formatter */
  129. msgformat_data_free(&mfo->mf_data);
  130. }
  131. /* }}} */
  132. /*
  133. * Local variables:
  134. * tab-width: 4
  135. * c-basic-offset: 4
  136. * End:
  137. * vim600: noet sw=4 ts=4 fdm=marker
  138. * vim<600: noet sw=4 ts=4
  139. */