msgformat_class.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. #include <unicode/unum.h>
  17. #include "msgformat_class.h"
  18. #include "php_intl.h"
  19. #include "msgformat_data.h"
  20. #include "msgformat_format.h"
  21. #include "msgformat_parse.h"
  22. #include "msgformat.h"
  23. #include "msgformat_attr.h"
  24. #include <zend_exceptions.h>
  25. zend_class_entry *MessageFormatter_ce_ptr = NULL;
  26. static zend_object_handlers MessageFormatter_handlers;
  27. /*
  28. * Auxiliary functions needed by objects of 'MessageFormatter' class
  29. */
  30. /* {{{ MessageFormatter_objects_free */
  31. void MessageFormatter_object_free( zend_object *object )
  32. {
  33. MessageFormatter_object* mfo = php_intl_messageformatter_fetch_object(object);
  34. zend_object_std_dtor( &mfo->zo );
  35. msgformat_data_free( &mfo->mf_data );
  36. }
  37. /* }}} */
  38. /* {{{ MessageFormatter_object_create */
  39. zend_object *MessageFormatter_object_create(zend_class_entry *ce)
  40. {
  41. MessageFormatter_object* intern;
  42. intern = zend_object_alloc(sizeof(MessageFormatter_object), ce);
  43. msgformat_data_init( &intern->mf_data );
  44. zend_object_std_init( &intern->zo, ce );
  45. object_properties_init(&intern->zo, ce);
  46. intern->zo.handlers = &MessageFormatter_handlers;
  47. return &intern->zo;
  48. }
  49. /* }}} */
  50. /* {{{ MessageFormatter_object_clone */
  51. zend_object *MessageFormatter_object_clone(zval *object)
  52. {
  53. MessageFormatter_object *mfo, *new_mfo;
  54. zend_object *new_obj;
  55. MSG_FORMAT_METHOD_FETCH_OBJECT_NO_CHECK;
  56. new_obj = MessageFormatter_ce_ptr->create_object(Z_OBJCE_P(object));
  57. new_mfo = php_intl_messageformatter_fetch_object(new_obj);
  58. /* clone standard parts */
  59. zend_objects_clone_members(&new_mfo->zo, &mfo->zo);
  60. /* clone formatter object */
  61. if (MSG_FORMAT_OBJECT(mfo) != NULL) {
  62. MSG_FORMAT_OBJECT(new_mfo) = umsg_clone(MSG_FORMAT_OBJECT(mfo),
  63. &INTL_DATA_ERROR_CODE(mfo));
  64. if (U_FAILURE(INTL_DATA_ERROR_CODE(mfo))) {
  65. intl_errors_set(INTL_DATA_ERROR_P(mfo), INTL_DATA_ERROR_CODE(mfo),
  66. "Failed to clone MessageFormatter object", 0);
  67. zend_throw_exception_ex(NULL, 0, "Failed to clone MessageFormatter object");
  68. }
  69. } else {
  70. zend_throw_exception_ex(NULL, 0, "Cannot clone unconstructed MessageFormatter");
  71. }
  72. return new_obj;
  73. }
  74. /* }}} */
  75. /*
  76. * 'MessageFormatter' class registration structures & functions
  77. */
  78. /* {{{ arginfo */
  79. ZEND_BEGIN_ARG_INFO_EX(arginfo_messageformatter___construct, 0, 0, 2)
  80. ZEND_ARG_INFO(0, locale)
  81. ZEND_ARG_INFO(0, pattern)
  82. ZEND_END_ARG_INFO()
  83. ZEND_BEGIN_ARG_INFO(arginfo_messageformatter_geterrormessage, 0)
  84. ZEND_END_ARG_INFO()
  85. ZEND_BEGIN_ARG_INFO_EX(arginfo_messageformatter_formatmessage, 0, 0, 3)
  86. ZEND_ARG_INFO(0, locale)
  87. ZEND_ARG_INFO(0, pattern)
  88. ZEND_ARG_INFO(0, args)
  89. ZEND_END_ARG_INFO()
  90. ZEND_BEGIN_ARG_INFO_EX(arginfo_messageformatter_format, 0, 0, 1)
  91. ZEND_ARG_INFO(0, args)
  92. ZEND_END_ARG_INFO()
  93. ZEND_BEGIN_ARG_INFO_EX(arginfo_messageformatter_setpattern, 0, 0, 1)
  94. ZEND_ARG_INFO(0, pattern)
  95. ZEND_END_ARG_INFO()
  96. ZEND_BEGIN_ARG_INFO_EX(arginfo_messageformatter_parse, 0, 0, 1)
  97. ZEND_ARG_INFO(0, source)
  98. ZEND_END_ARG_INFO()
  99. /* }}} */
  100. /* {{{ MessageFormatter_class_functions
  101. * Every 'MessageFormatter' class method has an entry in this table
  102. */
  103. static const zend_function_entry MessageFormatter_class_functions[] = {
  104. PHP_ME( MessageFormatter, __construct, arginfo_messageformatter___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR )
  105. ZEND_FENTRY( create, ZEND_FN( msgfmt_create ), arginfo_messageformatter___construct, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
  106. PHP_NAMED_FE( format, ZEND_FN( msgfmt_format ), arginfo_messageformatter_format )
  107. ZEND_FENTRY( formatMessage, ZEND_FN( msgfmt_format_message ), arginfo_messageformatter_formatmessage, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
  108. PHP_NAMED_FE( parse, ZEND_FN( msgfmt_parse ), arginfo_messageformatter_parse )
  109. ZEND_FENTRY( parseMessage, ZEND_FN( msgfmt_parse_message ), arginfo_messageformatter_formatmessage, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
  110. PHP_NAMED_FE( setPattern, ZEND_FN( msgfmt_set_pattern ), arginfo_messageformatter_setpattern )
  111. PHP_NAMED_FE( getPattern, ZEND_FN( msgfmt_get_pattern ), arginfo_messageformatter_geterrormessage )
  112. PHP_NAMED_FE( getLocale, ZEND_FN( msgfmt_get_locale ), arginfo_messageformatter_geterrormessage )
  113. PHP_NAMED_FE( getErrorCode, ZEND_FN( msgfmt_get_error_code ), arginfo_messageformatter_geterrormessage )
  114. PHP_NAMED_FE( getErrorMessage, ZEND_FN( msgfmt_get_error_message ), arginfo_messageformatter_geterrormessage )
  115. PHP_FE_END
  116. };
  117. /* }}} */
  118. /* {{{ msgformat_register_class
  119. * Initialize 'MessageFormatter' class
  120. */
  121. void msgformat_register_class( void )
  122. {
  123. zend_class_entry ce;
  124. /* Create and register 'MessageFormatter' class. */
  125. INIT_CLASS_ENTRY( ce, "MessageFormatter", MessageFormatter_class_functions );
  126. ce.create_object = MessageFormatter_object_create;
  127. MessageFormatter_ce_ptr = zend_register_internal_class( &ce );
  128. memcpy(&MessageFormatter_handlers, &std_object_handlers,
  129. sizeof MessageFormatter_handlers);
  130. MessageFormatter_handlers.offset = XtOffsetOf(MessageFormatter_object, zo);
  131. MessageFormatter_handlers.clone_obj = MessageFormatter_object_clone;
  132. MessageFormatter_handlers.free_obj = MessageFormatter_object_free;
  133. }
  134. /* }}} */
  135. /*
  136. * Local variables:
  137. * tab-width: 4
  138. * c-basic-offset: 4
  139. * End:
  140. * vim600: noet sw=4 ts=4 fdm=marker
  141. * vim<600: noet sw=4 ts=4
  142. */