formatter_class.c 8.0 KB

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