formatter_class.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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 "formatter_class.h"
  18. #include "php_intl.h"
  19. #include "formatter_data.h"
  20. #include "formatter_format.h"
  21. #include "formatter_parse.h"
  22. #include "formatter_main.h"
  23. #include "formatter_attr.h"
  24. #include <zend_exceptions.h>
  25. zend_class_entry *NumberFormatter_ce_ptr = NULL;
  26. static zend_object_handlers NumberFormatter_handlers;
  27. /*
  28. * Auxiliary functions needed by objects of 'NumberFormatter' class
  29. */
  30. /* {{{ NumberFormatter_objects_free */
  31. void NumberFormatter_object_free( zend_object *object )
  32. {
  33. NumberFormatter_object* nfo = php_intl_number_format_fetch_object(object);
  34. zend_object_std_dtor( &nfo->zo );
  35. formatter_data_free( &nfo->nf_data );
  36. }
  37. /* }}} */
  38. /* {{{ NumberFormatter_object_create */
  39. zend_object *NumberFormatter_object_create(zend_class_entry *ce)
  40. {
  41. NumberFormatter_object* intern;
  42. intern = zend_object_alloc(sizeof(NumberFormatter_object), ce);
  43. formatter_data_init( &intern->nf_data );
  44. zend_object_std_init( &intern->zo, ce );
  45. object_properties_init(&intern->zo, ce);
  46. intern->zo.handlers = &NumberFormatter_handlers;
  47. return &intern->zo;
  48. }
  49. /* }}} */
  50. /* {{{ NumberFormatter_object_clone */
  51. zend_object *NumberFormatter_object_clone(zval *object)
  52. {
  53. NumberFormatter_object *nfo, *new_nfo;
  54. zend_object *new_obj;
  55. FORMATTER_METHOD_FETCH_OBJECT_NO_CHECK;
  56. new_obj = NumberFormatter_ce_ptr->create_object(Z_OBJCE_P(object));
  57. new_nfo = php_intl_number_format_fetch_object(new_obj);
  58. /* clone standard parts */
  59. zend_objects_clone_members(&new_nfo->zo, &nfo->zo);
  60. /* clone formatter object. It may fail, the destruction code must handle this case */
  61. if (FORMATTER_OBJECT(nfo) != NULL) {
  62. FORMATTER_OBJECT(new_nfo) = unum_clone(FORMATTER_OBJECT(nfo),
  63. &INTL_DATA_ERROR_CODE(nfo));
  64. if (U_FAILURE(INTL_DATA_ERROR_CODE(nfo))) {
  65. /* set up error in case error handler is interested */
  66. intl_errors_set(INTL_DATA_ERROR_P(nfo), INTL_DATA_ERROR_CODE(nfo),
  67. "Failed to clone NumberFormatter object", 0);
  68. zend_throw_exception(NULL, "Failed to clone NumberFormatter object", 0);
  69. }
  70. } else {
  71. zend_throw_exception(NULL, "Cannot clone unconstructed NumberFormatter", 0);
  72. }
  73. return new_obj;
  74. }
  75. /* }}} */
  76. /*
  77. * 'NumberFormatter' class registration structures & functions
  78. */
  79. /* {{{ arginfo */
  80. ZEND_BEGIN_ARG_INFO_EX(number_parse_arginfo, 0, 0, 1)
  81. ZEND_ARG_INFO(0, string)
  82. ZEND_ARG_INFO(0, type)
  83. ZEND_ARG_INFO(1, position)
  84. ZEND_END_ARG_INFO()
  85. ZEND_BEGIN_ARG_INFO_EX(number_parse_currency_arginfo, 0, 0, 2)
  86. ZEND_ARG_INFO(0, string)
  87. ZEND_ARG_INFO(1, currency)
  88. ZEND_ARG_INFO(1, position)
  89. ZEND_END_ARG_INFO()
  90. ZEND_BEGIN_ARG_INFO_EX(arginfo_numberformatter_getattribute, 0, 0, 1)
  91. ZEND_ARG_INFO(0, attr)
  92. ZEND_END_ARG_INFO()
  93. ZEND_BEGIN_ARG_INFO_EX(arginfo_numberformatter_setattribute, 0, 0, 2)
  94. ZEND_ARG_INFO(0, attr)
  95. ZEND_ARG_INFO(0, value)
  96. ZEND_END_ARG_INFO()
  97. ZEND_BEGIN_ARG_INFO_EX(arginfo_numberformatter_setsymbol, 0, 0, 2)
  98. ZEND_ARG_INFO(0, attr)
  99. ZEND_ARG_INFO(0, symbol)
  100. ZEND_END_ARG_INFO()
  101. ZEND_BEGIN_ARG_INFO(arginfo_numberformatter_getpattern, 0)
  102. ZEND_END_ARG_INFO()
  103. ZEND_BEGIN_ARG_INFO_EX(arginfo_numberformatter_setpattern, 0, 0, 1)
  104. ZEND_ARG_INFO(0, pattern)
  105. ZEND_END_ARG_INFO()
  106. ZEND_BEGIN_ARG_INFO_EX(arginfo_numberformatter_getlocale, 0, 0, 0)
  107. ZEND_ARG_INFO(0, type)
  108. ZEND_END_ARG_INFO()
  109. ZEND_BEGIN_ARG_INFO_EX(arginfo_numberformatter___construct, 0, 0, 2)
  110. ZEND_ARG_INFO(0, locale)
  111. ZEND_ARG_INFO(0, style)
  112. ZEND_ARG_INFO(0, pattern)
  113. ZEND_END_ARG_INFO()
  114. ZEND_BEGIN_ARG_INFO_EX(arginfo_numberformatter_formatcurrency, 0, 0, 2)
  115. ZEND_ARG_INFO(0, num)
  116. ZEND_ARG_INFO(0, currency)
  117. ZEND_END_ARG_INFO()
  118. ZEND_BEGIN_ARG_INFO_EX(arginfo_numberformatter_format, 0, 0, 1)
  119. ZEND_ARG_INFO(0, num)
  120. ZEND_ARG_INFO(0, type)
  121. ZEND_END_ARG_INFO()
  122. /* }}} */
  123. /* {{{ NumberFormatter_class_functions
  124. * Every 'NumberFormatter' class method has an entry in this table
  125. */
  126. static const zend_function_entry NumberFormatter_class_functions[] = {
  127. PHP_ME( NumberFormatter, __construct, arginfo_numberformatter___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR )
  128. ZEND_FENTRY( create, ZEND_FN( numfmt_create ), arginfo_numberformatter___construct, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
  129. PHP_NAMED_FE( format, ZEND_FN( numfmt_format ), arginfo_numberformatter_format )
  130. PHP_NAMED_FE( parse, ZEND_FN( numfmt_parse ), number_parse_arginfo )
  131. PHP_NAMED_FE( formatCurrency, ZEND_FN( numfmt_format_currency ), arginfo_numberformatter_formatcurrency )
  132. PHP_NAMED_FE( parseCurrency, ZEND_FN( numfmt_parse_currency ), number_parse_currency_arginfo )
  133. PHP_NAMED_FE( setAttribute, ZEND_FN( numfmt_set_attribute ), arginfo_numberformatter_setattribute )
  134. PHP_NAMED_FE( getAttribute, ZEND_FN( numfmt_get_attribute ), arginfo_numberformatter_getattribute )
  135. PHP_NAMED_FE( setTextAttribute, ZEND_FN( numfmt_set_text_attribute ), arginfo_numberformatter_setattribute )
  136. PHP_NAMED_FE( getTextAttribute, ZEND_FN( numfmt_get_text_attribute ), arginfo_numberformatter_getattribute )
  137. PHP_NAMED_FE( setSymbol, ZEND_FN( numfmt_set_symbol ), arginfo_numberformatter_setsymbol )
  138. PHP_NAMED_FE( getSymbol, ZEND_FN( numfmt_get_symbol ), arginfo_numberformatter_getattribute )
  139. PHP_NAMED_FE( setPattern, ZEND_FN( numfmt_set_pattern ), arginfo_numberformatter_setpattern )
  140. PHP_NAMED_FE( getPattern, ZEND_FN( numfmt_get_pattern ), arginfo_numberformatter_getpattern )
  141. PHP_NAMED_FE( getLocale, ZEND_FN( numfmt_get_locale ), arginfo_numberformatter_getlocale )
  142. PHP_NAMED_FE( getErrorCode, ZEND_FN( numfmt_get_error_code ), arginfo_numberformatter_getpattern )
  143. PHP_NAMED_FE( getErrorMessage, ZEND_FN( numfmt_get_error_message ), arginfo_numberformatter_getpattern )
  144. PHP_FE_END
  145. };
  146. /* }}} */
  147. /* {{{ formatter_register_class
  148. * Initialize 'NumberFormatter' class
  149. */
  150. void formatter_register_class( void )
  151. {
  152. zend_class_entry ce;
  153. /* Create and register 'NumberFormatter' class. */
  154. INIT_CLASS_ENTRY( ce, "NumberFormatter", NumberFormatter_class_functions );
  155. ce.create_object = NumberFormatter_object_create;
  156. NumberFormatter_ce_ptr = zend_register_internal_class( &ce );
  157. memcpy(&NumberFormatter_handlers, &std_object_handlers,
  158. sizeof(NumberFormatter_handlers));
  159. NumberFormatter_handlers.offset = XtOffsetOf(NumberFormatter_object, zo);
  160. NumberFormatter_handlers.clone_obj = NumberFormatter_object_clone;
  161. NumberFormatter_handlers.free_obj = NumberFormatter_object_free;
  162. }
  163. /* }}} */
  164. /*
  165. * Local variables:
  166. * tab-width: 4
  167. * c-basic-offset: 4
  168. * End:
  169. * vim600: noet sw=4 ts=4 fdm=marker
  170. * vim<600: noet sw=4 ts=4
  171. */