123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- /*
- +----------------------------------------------------------------------+
- | PHP Version 5 |
- +----------------------------------------------------------------------+
- | This source file is subject to version 3.01 of the PHP license, |
- | that is bundled with this package in the file LICENSE, and is |
- | available through the world-wide-web at the following url: |
- | http://www.php.net/license/3_01.txt |
- | If you did not receive a copy of the PHP license and are unable to |
- | obtain it through the world-wide-web, please send a note to |
- | license@php.net so we can mail you a copy immediately. |
- +----------------------------------------------------------------------+
- | Authors: Gustavo Lopes <cataphract@php.net> |
- +----------------------------------------------------------------------+
- */
- #include "../intl_cppshims.h"
- #include <unicode/timezone.h>
- #include <unicode/calendar.h>
- #include <unicode/datefmt.h>
- extern "C" {
- #include "../php_intl.h"
- #include "dateformat_class.h"
- #include "dateformat_attrcpp.h"
- #define USE_TIMEZONE_POINTER 1
- #include "../timezone/timezone_class.h"
- #define USE_CALENDAR_POINTER 1
- #include "../calendar/calendar_class.h"
- }
- #include "../intl_convertcpp.h"
- #include "dateformat_helpers.h"
- static inline DateFormat *fetch_datefmt(IntlDateFormatter_object *dfo) {
- return (DateFormat *)dfo->datef_data.udatf;
- }
- /* {{{ proto string IntlDateFormatter::getTimeZoneId()
- * Get formatter timezone_id. }}} */
- /* {{{ proto string datefmt_get_timezone_id(IntlDateFormatter $mf)
- * Get formatter timezone_id.
- */
- U_CFUNC PHP_FUNCTION(datefmt_get_timezone_id)
- {
- DATE_FORMAT_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O",
- &object, IntlDateFormatter_ce_ptr ) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR, "datefmt_get_timezone_"
- "id: unable to parse input params", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- DATE_FORMAT_METHOD_FETCH_OBJECT;
- UnicodeString res = UnicodeString();
- fetch_datefmt(dfo)->getTimeZone().getID(res);
- intl_charFromString(res, &Z_STRVAL_P(return_value),
- &Z_STRLEN_P(return_value), &INTL_DATA_ERROR_CODE(dfo));
- INTL_METHOD_CHECK_STATUS(dfo, "Could not convert time zone id to UTF-8");
- Z_TYPE_P(return_value) = IS_STRING;
- }
- /* {{{ proto IntlTimeZone IntlDateFormatter::getTimeZone()
- * Get formatter timezone. }}} */
- /* {{{ proto IntlTimeZone datefmt_get_timezone(IntlDateFormatter $mf)
- * Get formatter timezone.
- */
- U_CFUNC PHP_FUNCTION(datefmt_get_timezone)
- {
- DATE_FORMAT_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O",
- &object, IntlDateFormatter_ce_ptr ) == FAILURE) {
- intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "datefmt_get_timezone: unable to parse input params", 0 TSRMLS_CC );
- RETURN_FALSE;
- }
- DATE_FORMAT_METHOD_FETCH_OBJECT;
- const TimeZone& tz = fetch_datefmt(dfo)->getTimeZone();
- TimeZone *tz_clone = tz.clone();
- if (tz_clone == NULL) {
- intl_errors_set(INTL_DATA_ERROR_P(dfo), U_MEMORY_ALLOCATION_ERROR,
- "datefmt_get_timezone: Out of memory when cloning time zone",
- 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- object_init_ex(return_value, TimeZone_ce_ptr);
- timezone_object_construct(tz_clone, return_value, 1 TSRMLS_CC);
- }
- U_CFUNC PHP_FUNCTION(datefmt_set_timezone_id)
- {
- php_error_docref0(NULL TSRMLS_CC, E_DEPRECATED,
- "Use datefmt_set_timezone() instead, which also accepts a plain "
- "time zone identifier and for which this function is now an "
- "alias");
- PHP_FN(datefmt_set_timezone)(INTERNAL_FUNCTION_PARAM_PASSTHRU);
- }
- /* {{{ proto boolean IntlDateFormatter::setTimeZone(mixed $timezone)
- * Set formatter's timezone. }}} */
- /* {{{ proto boolean datefmt_set_timezone_id(IntlDateFormatter $mf, $timezone_id)
- * Set formatter timezone_id.
- */
- U_CFUNC PHP_FUNCTION(datefmt_set_timezone)
- {
- zval **timezone_zv;
- TimeZone *timezone;
- DATE_FORMAT_METHOD_INIT_VARS;
- if ( zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(),
- "OZ", &object, IntlDateFormatter_ce_ptr, &timezone_zv) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR, "datefmt_set_timezone: "
- "unable to parse input params", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- DATE_FORMAT_METHOD_FETCH_OBJECT;
- timezone = timezone_process_timezone_argument(timezone_zv,
- INTL_DATA_ERROR_P(dfo), "datefmt_set_timezone" TSRMLS_CC);
- if (timezone == NULL) {
- RETURN_FALSE;
- }
- fetch_datefmt(dfo)->adoptTimeZone(timezone);
- }
- /* {{{ proto int IntlDateFormatter::getCalendar( )
- * Get formatter calendar type. }}} */
- /* {{{ proto int datefmt_get_calendar(IntlDateFormatter $mf)
- * Get formatter calendar type.
- */
- U_CFUNC PHP_FUNCTION(datefmt_get_calendar)
- {
- DATE_FORMAT_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O",
- &object, IntlDateFormatter_ce_ptr ) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "datefmt_get_calendar: unable to parse input params", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- DATE_FORMAT_METHOD_FETCH_OBJECT;
- if (dfo->calendar == -1) {
- /* an IntlCalendar was provided to the constructor */
- RETURN_FALSE;
- }
- RETURN_LONG(dfo->calendar);
- }
- /* }}} */
- /* {{{ proto IntlCalendar IntlDateFormatter::getCalendarObject()
- * Get formatter calendar. }}} */
- /* {{{ proto IntlCalendar datefmt_get_calendar_object(IntlDateFormatter $mf)
- * Get formatter calendar.
- */
- U_CFUNC PHP_FUNCTION(datefmt_get_calendar_object)
- {
- DATE_FORMAT_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O",
- &object, IntlDateFormatter_ce_ptr ) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "datefmt_get_calendar_object: unable to parse input params",
- 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- DATE_FORMAT_METHOD_FETCH_OBJECT;
- const Calendar *cal = fetch_datefmt(dfo)->getCalendar();
- if (cal == NULL) {
- RETURN_NULL();
- }
- Calendar *cal_clone = cal->clone();
- if (cal_clone == NULL) {
- intl_errors_set(INTL_DATA_ERROR_P(dfo), U_MEMORY_ALLOCATION_ERROR,
- "datefmt_get_calendar_object: Out of memory when cloning "
- "calendar", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- calendar_object_create(return_value, cal_clone TSRMLS_CC);
- }
- /* }}} */
- /* {{{ proto bool IntlDateFormatter::setCalendar(mixed $calendar)
- * Set formatter's calendar. }}} */
- /* {{{ proto bool datefmt_set_calendar(IntlDateFormatter $mf, mixed $calendar)
- * Set formatter's calendar.
- */
- U_CFUNC PHP_FUNCTION(datefmt_set_calendar)
- {
- zval *calendar_zv;
- DATE_FORMAT_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Oz",
- &object, IntlDateFormatter_ce_ptr, &calendar_zv) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "datefmt_set_calendar: unable to parse input params", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- DATE_FORMAT_METHOD_FETCH_OBJECT;
- Calendar *cal;
- long cal_type;
- bool cal_owned;
- Locale locale = Locale::createFromName(dfo->requested_locale);
- // getting the actual locale from the DateFormat is not enough
- // because we would have lost modifiers such as @calendar. We
- // must store the requested locale on object creation
- if (datefmt_process_calendar_arg(calendar_zv, locale,
- "datefmt_set_calendar", INTL_DATA_ERROR_P(dfo), cal, cal_type,
- cal_owned TSRMLS_CC) == FAILURE) {
- RETURN_FALSE;
- }
- if (cal_owned) {
- /* a non IntlCalendar was specified, we want to keep the timezone */
- TimeZone *old_timezone = fetch_datefmt(dfo)->getTimeZone().clone();
- if (old_timezone == NULL) {
- intl_errors_set(INTL_DATA_ERROR_P(dfo), U_MEMORY_ALLOCATION_ERROR,
- "datefmt_set_calendar: Out of memory when cloning calendar",
- 0 TSRMLS_CC);
- delete cal;
- RETURN_FALSE;
- }
- cal->adoptTimeZone(old_timezone);
- } else {
- cal = cal->clone();
- if (cal == NULL) {
- intl_errors_set(INTL_DATA_ERROR_P(dfo), U_MEMORY_ALLOCATION_ERROR,
- "datefmt_set_calendar: Out of memory when cloning calendar",
- 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- }
- fetch_datefmt(dfo)->adoptCalendar(cal);
- dfo->calendar = cal_type;
- RETURN_TRUE;
- }
- /* }}} */
|