msgformat_attr.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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 "msgformat_class.h"
  21. #include "msgformat_attr.h"
  22. #include "msgformat_data.h"
  23. #include "intl_convert.h"
  24. #include <unicode/ustring.h>
  25. /* {{{ proto string MessageFormatter::getPattern( )
  26. * Get formatter pattern. }}} */
  27. /* {{{ proto string msgfmt_get_pattern( MessageFormatter $mf )
  28. * Get formatter pattern.
  29. */
  30. PHP_FUNCTION( msgfmt_get_pattern )
  31. {
  32. MSG_FORMAT_METHOD_INIT_VARS;
  33. /* Parse parameters. */
  34. if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "O", &object, MessageFormatter_ce_ptr ) == FAILURE )
  35. {
  36. intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
  37. "msgfmt_get_pattern: unable to parse input params", 0 );
  38. RETURN_FALSE;
  39. }
  40. /* Fetch the object. */
  41. MSG_FORMAT_METHOD_FETCH_OBJECT;
  42. if(mfo->mf_data.orig_format) {
  43. RETURN_STRINGL(mfo->mf_data.orig_format, mfo->mf_data.orig_format_len);
  44. }
  45. RETURN_FALSE;
  46. }
  47. /* }}} */
  48. /* {{{ proto bool MessageFormatter::setPattern( string $pattern )
  49. * Set formatter pattern. }}} */
  50. /* {{{ proto bool msgfmt_set_pattern( MessageFormatter $mf, string $pattern )
  51. * Set formatter pattern.
  52. */
  53. PHP_FUNCTION( msgfmt_set_pattern )
  54. {
  55. char* value = NULL;
  56. size_t value_len = 0;
  57. int32_t spattern_len = 0;
  58. UChar* spattern = NULL;
  59. MSG_FORMAT_METHOD_INIT_VARS;
  60. /* Parse parameters. */
  61. if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "Os",
  62. &object, MessageFormatter_ce_ptr, &value, &value_len ) == FAILURE )
  63. {
  64. intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
  65. "msgfmt_set_pattern: unable to parse input params", 0);
  66. RETURN_FALSE;
  67. }
  68. MSG_FORMAT_METHOD_FETCH_OBJECT;
  69. /* Convert given pattern to UTF-16. */
  70. intl_convert_utf8_to_utf16(&spattern, &spattern_len, value, value_len, &INTL_DATA_ERROR_CODE(mfo));
  71. INTL_METHOD_CHECK_STATUS(mfo, "Error converting pattern to UTF-16" );
  72. #ifdef MSG_FORMAT_QUOTE_APOS
  73. if(msgformat_fix_quotes(&spattern, &spattern_len, &INTL_DATA_ERROR_CODE(mfo)) != SUCCESS) {
  74. intl_error_set( NULL, U_INVALID_FORMAT_ERROR,
  75. "msgfmt_set_pattern: error converting pattern to quote-friendly format", 0 );
  76. RETURN_FALSE;
  77. }
  78. #endif
  79. /* TODO: add parse error information */
  80. umsg_applyPattern(MSG_FORMAT_OBJECT(mfo), spattern, spattern_len, NULL, &INTL_DATA_ERROR_CODE(mfo));
  81. if (spattern) {
  82. efree(spattern);
  83. }
  84. INTL_METHOD_CHECK_STATUS(mfo, "Error setting symbol value");
  85. if(mfo->mf_data.orig_format) {
  86. efree(mfo->mf_data.orig_format);
  87. }
  88. mfo->mf_data.orig_format = estrndup(value, value_len);
  89. mfo->mf_data.orig_format_len = value_len;
  90. /* invalidate cached format types */
  91. if (mfo->mf_data.arg_types) {
  92. zend_hash_destroy(mfo->mf_data.arg_types);
  93. efree(mfo->mf_data.arg_types);
  94. mfo->mf_data.arg_types = NULL;
  95. }
  96. RETURN_TRUE;
  97. }
  98. /* }}} */
  99. /* {{{ proto string MessageFormatter::getLocale()
  100. * Get formatter locale. }}} */
  101. /* {{{ proto string msgfmt_get_locale(MessageFormatter $mf)
  102. * Get formatter locale.
  103. */
  104. PHP_FUNCTION( msgfmt_get_locale )
  105. {
  106. char *loc;
  107. MSG_FORMAT_METHOD_INIT_VARS;
  108. /* Parse parameters. */
  109. if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "O",
  110. &object, MessageFormatter_ce_ptr ) == FAILURE )
  111. {
  112. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  113. "msgfmt_get_locale: unable to parse input params", 0 );
  114. RETURN_FALSE;
  115. }
  116. /* Fetch the object. */
  117. MSG_FORMAT_METHOD_FETCH_OBJECT;
  118. loc = (char *)umsg_getLocale(MSG_FORMAT_OBJECT(mfo));
  119. RETURN_STRING(loc);
  120. }
  121. /* }}} */
  122. /*
  123. * Local variables:
  124. * tab-width: 4
  125. * c-basic-offset: 4
  126. * End:
  127. * vim600: noet sw=4 ts=4 fdm=marker
  128. * vim<600: noet sw=4 ts=4
  129. */