dateformat.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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: Kirti Velankar <kirtig@yahoo-inc.com> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #ifdef HAVE_CONFIG_H
  17. #include "config.h"
  18. #endif
  19. #include <unicode/udat.h>
  20. #include "php_intl.h"
  21. #include "dateformat_class.h"
  22. #include "dateformat.h"
  23. /* {{{ dateformat_register_constants
  24. * Register constants common for the both (OO and procedural)
  25. * APIs.
  26. */
  27. void dateformat_register_constants( INIT_FUNC_ARGS )
  28. {
  29. if( IntlDateFormatter_ce_ptr == NULL) {
  30. zend_error(E_ERROR, "DateFormat class not defined");
  31. return;
  32. }
  33. #define DATEFORMATTER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_CS)
  34. #define DATEFORMATTER_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( IntlDateFormatter_ce_ptr, ZEND_STRS( #x ) - 1, UDAT_##x TSRMLS_CC );
  35. #define DATEFORMATTER_EXPOSE_CUSTOM_CLASS_CONST(name, value) zend_declare_class_constant_long( IntlDateFormatter_ce_ptr, ZEND_STRS( name ) - 1, value TSRMLS_CC );
  36. #define DATEFORMATTER_EXPOSE_UCAL_CLASS_CONST(x) zend_declare_class_constant_long( IntlDateFormatter_ce_ptr, ZEND_STRS( #x ) - 1, UCAL_##x TSRMLS_CC );
  37. /* UDateFormatStyle constants */
  38. DATEFORMATTER_EXPOSE_CLASS_CONST( FULL );
  39. DATEFORMATTER_EXPOSE_CLASS_CONST( LONG );
  40. DATEFORMATTER_EXPOSE_CLASS_CONST( MEDIUM );
  41. DATEFORMATTER_EXPOSE_CLASS_CONST( SHORT );
  42. DATEFORMATTER_EXPOSE_CLASS_CONST( NONE );
  43. /*
  44. DATEFORMATTER_EXPOSE_CUSTOM_CLASS_CONST( "GREGORIAN", DATEF_GREGORIAN );
  45. DATEFORMATTER_EXPOSE_CUSTOM_CLASS_CONST( "CUSTOMARY", DATEF_CUSTOMARY );
  46. DATEFORMATTER_EXPOSE_CUSTOM_CLASS_CONST( "BUDDHIST", DATEF_BUDDHIST );
  47. DATEFORMATTER_EXPOSE_CUSTOM_CLASS_CONST( "JAPANESE_IMPERIAL", DATEF_JAPANESE_IMPERIAL );
  48. */
  49. DATEFORMATTER_EXPOSE_UCAL_CLASS_CONST( GREGORIAN );
  50. DATEFORMATTER_EXPOSE_UCAL_CLASS_CONST( TRADITIONAL );
  51. #undef DATEFORMATTER_EXPOSE_UCAL_CLASS_CONST
  52. #undef DATEFORMATTER_EXPOSE_CUSTOM_CLASS_CONST
  53. #undef DATEFORMATTER_EXPOSE_CLASS_CONST
  54. #undef DATEFORMATTER_EXPOSE_CONST
  55. }
  56. /* }}} */
  57. /* {{{ proto int IntlDateFormatter::getErrorCode()
  58. * Get formatter's last error code. }}} */
  59. /* {{{ proto int datefmt_get_error_code( IntlDateFormatter $nf )
  60. * Get formatter's last error code.
  61. */
  62. PHP_FUNCTION( datefmt_get_error_code )
  63. {
  64. DATE_FORMAT_METHOD_INIT_VARS;
  65. /* Parse parameters. */
  66. if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O",
  67. &object, IntlDateFormatter_ce_ptr ) == FAILURE )
  68. {
  69. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  70. "datefmt_get_error_code: unable to parse input params", 0 TSRMLS_CC );
  71. RETURN_FALSE;
  72. }
  73. dfo = (IntlDateFormatter_object *) zend_object_store_get_object( object TSRMLS_CC );
  74. /* Return formatter's last error code. */
  75. RETURN_LONG( INTL_DATA_ERROR_CODE(dfo) );
  76. }
  77. /* }}} */
  78. /* {{{ proto string IntlDateFormatter::getErrorMessage( )
  79. * Get text description for formatter's last error code. }}} */
  80. /* {{{ proto string datefmt_get_error_message( IntlDateFormatter $coll )
  81. * Get text description for formatter's last error code.
  82. */
  83. PHP_FUNCTION( datefmt_get_error_message )
  84. {
  85. char* message = NULL;
  86. DATE_FORMAT_METHOD_INIT_VARS;
  87. /* Parse parameters. */
  88. if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O",
  89. &object, IntlDateFormatter_ce_ptr ) == FAILURE )
  90. {
  91. intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
  92. "datefmt_get_error_message: unable to parse input params", 0 TSRMLS_CC );
  93. RETURN_FALSE;
  94. }
  95. dfo = (IntlDateFormatter_object *) zend_object_store_get_object( object TSRMLS_CC );
  96. /* Return last error message. */
  97. message = intl_error_get_message( INTL_DATA_ERROR_P(dfo) TSRMLS_CC );
  98. RETURN_STRING( message, 0);
  99. }
  100. /* }}} */