php-src/ext/intl/dateformat/dateformat_attr.c

410 lines
12 KiB
C
Raw Normal View History

2008-07-07 23:10:15 +00:00
/*
+----------------------------------------------------------------------+
| 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: Kirti Velankar <kirtig@yahoo-inc.com> |
+----------------------------------------------------------------------+
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php_intl.h"
#include "intl_convert.h"
#include "dateformat_class.h"
#include "dateformat_attr.h"
#include <unicode/ustring.h>
#include <unicode/udat.h>
#include <unicode/ucal.h>
2008-09-04 00:08:17 +00:00
static void internal_set_calendar(IntlDateFormatter_object *dfo, char* timezone_id, int timezone_id_len, int calendar, zval* return_value TSRMLS_DC){
int timezone_utf16_len = 0;
UChar* timezone_utf16 = NULL; /* timezone_id in UTF-16 */
char* locale = NULL;
2008-07-07 23:10:15 +00:00
UCalendar* ucal_obj = NULL;
2008-07-07 23:10:15 +00:00
/* check for the validity of value of calendar passed */
intl_error_reset( NULL TSRMLS_CC );
if( calendar > 1){
intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
"datefmt_set_calendar: calendar value specified is out of valid range", 0 TSRMLS_CC);
RETURN_FALSE;
}
2008-07-07 23:10:15 +00:00
/* Convert timezone to UTF-16. */
2008-09-04 00:08:17 +00:00
intl_convert_utf8_to_utf16(&timezone_utf16, &timezone_utf16_len, timezone_id, timezone_id_len, &INTL_DATA_ERROR_CODE(dfo));
INTL_METHOD_CHECK_STATUS(dfo, "Error converting timezone to UTF-16" );
2008-07-07 23:10:15 +00:00
2008-09-04 00:08:17 +00:00
/* Get the locale for the dateformatter */
locale = (char *)udat_getLocaleByType(DATE_FORMAT_OBJECT(dfo), ULOC_ACTUAL_LOCALE, &INTL_DATA_ERROR_CODE(dfo));
2008-07-07 23:10:15 +00:00
/* Set the calendar if passed */
2008-09-04 00:08:17 +00:00
ucal_obj = ucal_open(timezone_utf16, timezone_utf16_len, locale, calendar, &INTL_DATA_ERROR_CODE(dfo) );
udat_setCalendar( DATE_FORMAT_OBJECT(dfo), ucal_obj );
INTL_METHOD_CHECK_STATUS(dfo, "Error setting the calendar.");
2008-07-07 23:10:15 +00:00
if( timezone_utf16){
efree(timezone_utf16);
}
2008-07-07 23:10:15 +00:00
}
/* {{{ proto unicode IntlDateFormatter::getDateType( )
* Get formatter datetype. }}} */
/* {{{ proto string datefmt_get_datetype( IntlDateFormatter $mf )
* Get formatter datetype.
*/
PHP_FUNCTION( datefmt_get_datetype )
{
DATE_FORMAT_METHOD_INIT_VARS;
/* Parse parameters. */
2008-07-07 23:10:15 +00:00
if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &object, IntlDateFormatter_ce_ptr ) == FAILURE )
{
2008-09-04 00:08:17 +00:00
intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
2008-07-07 23:10:15 +00:00
"datefmt_get_datetype: unable to parse input params", 0 TSRMLS_CC );
RETURN_FALSE;
}
/* Fetch the object. */
2008-07-07 23:10:15 +00:00
DATE_FORMAT_METHOD_FETCH_OBJECT;
2008-07-22 20:23:47 +00:00
INTL_METHOD_CHECK_STATUS(dfo, "Error getting formatter datetype." );
2008-07-07 23:10:15 +00:00
2008-07-22 20:23:47 +00:00
RETURN_LONG(dfo->date_type );
2008-07-07 23:10:15 +00:00
}
/* }}} */
/* {{{ proto unicode IntlDateFormatter::getTimeType( )
* Get formatter timetype. }}} */
/* {{{ proto string datefmt_get_timetype( IntlDateFormatter $mf )
* Get formatter timetype.
*/
PHP_FUNCTION( datefmt_get_timetype )
{
DATE_FORMAT_METHOD_INIT_VARS;
/* Parse parameters. */
2008-07-07 23:10:15 +00:00
if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &object, IntlDateFormatter_ce_ptr ) == FAILURE )
{
2008-09-04 00:08:17 +00:00
intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
2008-07-07 23:10:15 +00:00
"datefmt_get_timetype: unable to parse input params", 0 TSRMLS_CC );
RETURN_FALSE;
}
/* Fetch the object. */
2008-07-07 23:10:15 +00:00
DATE_FORMAT_METHOD_FETCH_OBJECT;
2008-07-22 20:23:47 +00:00
INTL_METHOD_CHECK_STATUS(dfo, "Error getting formatter timetype." );
2008-07-07 23:10:15 +00:00
2008-07-22 20:23:47 +00:00
RETURN_LONG(dfo->time_type );
2008-07-07 23:10:15 +00:00
}
/* }}} */
/* {{{ proto unicode IntlDateFormatter::getCalendar( )
* Get formatter calendar. }}} */
/* {{{ proto string datefmt_get_calendar( IntlDateFormatter $mf )
* Get formatter calendar.
*/
PHP_FUNCTION( datefmt_get_calendar )
{
DATE_FORMAT_METHOD_INIT_VARS;
/* Parse parameters. */
2008-07-07 23:10:15 +00:00
if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &object, IntlDateFormatter_ce_ptr ) == FAILURE )
{
2008-09-04 00:08:17 +00:00
intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
2008-07-07 23:10:15 +00:00
"datefmt_get_calendar: unable to parse input params", 0 TSRMLS_CC );
RETURN_FALSE;
}
/* Fetch the object. */
2008-07-07 23:10:15 +00:00
DATE_FORMAT_METHOD_FETCH_OBJECT;
2008-07-22 20:23:47 +00:00
INTL_METHOD_CHECK_STATUS(dfo, "Error getting formatter calendar." );
2008-07-07 23:10:15 +00:00
2008-09-04 00:08:17 +00:00
RETURN_LONG(dfo->calendar);
2008-07-07 23:10:15 +00:00
}
/* }}} */
/* {{{ proto unicode IntlDateFormatter::getTimeZoneId( )
* Get formatter timezone_id. }}} */
/* {{{ proto string datefmt_get_timezone_id( IntlDateFormatter $mf )
* Get formatter timezone_id.
*/
PHP_FUNCTION( datefmt_get_timezone_id )
{
DATE_FORMAT_METHOD_INIT_VARS;
/* Parse parameters. */
2008-07-07 23:10:15 +00:00
if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &object, IntlDateFormatter_ce_ptr ) == FAILURE )
{
2008-09-04 00:08:17 +00:00
intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
2008-07-07 23:10:15 +00:00
"datefmt_get_timezone_id: unable to parse input params", 0 TSRMLS_CC );
RETURN_FALSE;
}
/* Fetch the object. */
2008-07-07 23:10:15 +00:00
DATE_FORMAT_METHOD_FETCH_OBJECT;
2008-07-22 20:23:47 +00:00
INTL_METHOD_CHECK_STATUS(dfo, "Error getting formatter timezone_id." );
2008-07-07 23:10:15 +00:00
2008-07-22 20:23:47 +00:00
if( dfo->timezone_id ){
2008-09-04 00:08:17 +00:00
RETURN_STRING((char*)dfo->timezone_id, TRUE );
2008-07-07 23:10:15 +00:00
}else{
RETURN_NULL();
}
}
/* {{{ proto boolean IntlDateFormatter::setTimeZoneId( $timezone_id)
* Set formatter timezone_id. }}} */
2008-09-04 00:08:17 +00:00
/* {{{ proto boolean datefmt_set_timezone_id( IntlDateFormatter $mf,$timezone_id)
2008-07-07 23:10:15 +00:00
* Set formatter timezone_id.
*/
PHP_FUNCTION( datefmt_set_timezone_id )
{
char* timezone_id = NULL;
int timezone_id_len = 0;
DATE_FORMAT_METHOD_INIT_VARS;
2008-07-07 23:10:15 +00:00
/* Parse parameters. */
2008-09-04 00:08:17 +00:00
if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &object, IntlDateFormatter_ce_ptr,&timezone_id, &timezone_id_len) == FAILURE )
{
intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
"datefmt_set_timezone_id: unable to parse input params", 0 TSRMLS_CC );
RETURN_FALSE;
}
2008-07-07 23:10:15 +00:00
/* Fetch the object. */
DATE_FORMAT_METHOD_FETCH_OBJECT;
2008-07-07 23:10:15 +00:00
/* set the timezone for the calendar */
2008-09-04 00:08:17 +00:00
internal_set_calendar( dfo, timezone_id, timezone_id_len, dfo->calendar, return_value TSRMLS_CC );
2008-07-07 23:10:15 +00:00
/* Set the IntlDateFormatter variable */
2008-07-22 20:23:47 +00:00
if( dfo->timezone_id ){
efree(dfo->timezone_id);
2008-07-07 23:10:15 +00:00
}
2008-09-04 00:08:17 +00:00
dfo->timezone_id = estrndup(timezone_id, timezone_id_len);
2008-07-07 23:10:15 +00:00
RETURN_TRUE;
}
/* {{{ proto string IntlDateFormatter::getPattern( )
* Get formatter pattern. }}} */
/* {{{ proto string datefmt_get_pattern( IntlDateFormatter $mf )
* Get formatter pattern.
*/
PHP_FUNCTION( datefmt_get_pattern )
{
UChar value_buf[64];
int length = USIZE( value_buf );
UChar* value = value_buf;
zend_bool is_pattern_localized =FALSE;
DATE_FORMAT_METHOD_INIT_VARS;
/* Parse parameters. */
2008-07-07 23:10:15 +00:00
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_pattern: unable to parse input params", 0 TSRMLS_CC );
RETURN_FALSE;
}
/* Fetch the object. */
2008-07-07 23:10:15 +00:00
DATE_FORMAT_METHOD_FETCH_OBJECT;
2008-07-22 20:23:47 +00:00
length = udat_toPattern(DATE_FORMAT_OBJECT(dfo), is_pattern_localized, value, length, &INTL_DATA_ERROR_CODE(dfo));
if(INTL_DATA_ERROR_CODE(dfo) == U_BUFFER_OVERFLOW_ERROR && length >= USIZE( value_buf )) {
++length; /* to avoid U_STRING_NOT_TERMINATED_WARNING */
2008-07-22 20:23:47 +00:00
INTL_DATA_ERROR_CODE(dfo) = U_ZERO_ERROR;
2008-07-07 23:10:15 +00:00
value = eumalloc(length);
2008-09-04 00:08:17 +00:00
length = udat_toPattern(DATE_FORMAT_OBJECT(dfo), is_pattern_localized, value, length, &INTL_DATA_ERROR_CODE(dfo) );
2008-07-22 20:23:47 +00:00
if(U_FAILURE(INTL_DATA_ERROR_CODE(dfo))) {
2008-07-07 23:10:15 +00:00
efree(value);
value = value_buf;
}
}
2008-07-22 20:23:47 +00:00
INTL_METHOD_CHECK_STATUS(dfo, "Error getting formatter pattern" );
2008-07-07 23:10:15 +00:00
2008-07-22 20:23:47 +00:00
INTL_METHOD_RETVAL_UTF8( dfo, value, length, ( value != value_buf ) );
2008-07-07 23:10:15 +00:00
}
/* }}} */
/* {{{ proto bool IntlDateFormatter::setPattern( string $pattern )
* Set formatter pattern. }}} */
/* {{{ proto bool datefmt_set_pattern( IntlDateFormatter $mf, string $pattern )
* Set formatter pattern.
*/
PHP_FUNCTION( datefmt_set_pattern )
{
char* value = NULL;
int value_len = 0;
int slength = 0;
UChar* svalue = NULL;
zend_bool is_pattern_localized =FALSE;
DATE_FORMAT_METHOD_INIT_VARS;
/* Parse parameters. */
2008-07-07 23:10:15 +00:00
if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os",
&object, IntlDateFormatter_ce_ptr, &value, &value_len ) == FAILURE )
{
intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
"datefmt_set_pattern: unable to parse input params", 0 TSRMLS_CC);
RETURN_FALSE;
}
DATE_FORMAT_METHOD_FETCH_OBJECT;
/* Convert given pattern to UTF-16. */
2008-07-22 20:23:47 +00:00
intl_convert_utf8_to_utf16(&svalue, &slength, value, value_len, &INTL_DATA_ERROR_CODE(dfo));
INTL_METHOD_CHECK_STATUS(dfo, "Error converting pattern to UTF-16" );
2008-07-07 23:10:15 +00:00
2008-09-04 00:08:17 +00:00
udat_applyPattern(DATE_FORMAT_OBJECT(dfo), (UBool)is_pattern_localized, svalue, slength);
2008-07-07 23:10:15 +00:00
efree(svalue);
2008-07-22 20:23:47 +00:00
INTL_METHOD_CHECK_STATUS(dfo, "Error setting symbol value");
2008-07-07 23:10:15 +00:00
RETURN_TRUE;
}
/* }}} */
/* {{{ proto string IntlDateFormatter::getLocale()
* Get formatter locale. }}} */
/* {{{ proto string datefmt_get_locale(IntlDateFormatter $mf)
* Get formatter locale.
*/
PHP_FUNCTION( datefmt_get_locale )
{
char *loc;
long loc_type =ULOC_ACTUAL_LOCALE;
DATE_FORMAT_METHOD_INIT_VARS;
/* Parse parameters. */
2008-07-07 23:10:15 +00:00
if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O|l",
2008-09-04 00:08:17 +00:00
&object, IntlDateFormatter_ce_ptr,&loc_type) == FAILURE )
2008-07-07 23:10:15 +00:00
{
intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
"datefmt_get_locale: unable to parse input params", 0 TSRMLS_CC );
RETURN_FALSE;
}
/* Fetch the object. */
2008-07-07 23:10:15 +00:00
DATE_FORMAT_METHOD_FETCH_OBJECT;
2008-09-04 00:08:17 +00:00
loc = (char *)udat_getLocaleByType(DATE_FORMAT_OBJECT(dfo), loc_type,&INTL_DATA_ERROR_CODE(dfo));
INTL_METHOD_CHECK_STATUS(dfo, "Error getting locale");
2008-07-07 23:10:15 +00:00
RETURN_STRING(loc, 1);
}
/* }}} */
/* {{{ proto string IntlDateFormatter::isLenient()
* Get formatter isLenient. }}} */
/* {{{ proto string datefmt_isLenient(IntlDateFormatter $mf)
* Get formatter locale.
*/
PHP_FUNCTION( datefmt_is_lenient )
{
DATE_FORMAT_METHOD_INIT_VARS;
/* Parse parameters. */
2008-07-07 23:10:15 +00:00
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_is_lenient: unable to parse input params", 0 TSRMLS_CC );
RETURN_FALSE;
}
/* Fetch the object. */
2008-07-07 23:10:15 +00:00
DATE_FORMAT_METHOD_FETCH_OBJECT;
2008-07-22 20:23:47 +00:00
RETVAL_BOOL(udat_isLenient(DATE_FORMAT_OBJECT(dfo)));
2008-07-07 23:10:15 +00:00
}
/* }}} */
/* {{{ proto string IntlDateFormatter::setLenient()
* Set formatter lenient. }}} */
/* {{{ proto string datefmt_setLenient(IntlDateFormatter $mf)
* Set formatter lenient.
*/
PHP_FUNCTION( datefmt_set_lenient )
{
zend_bool isLenient = FALSE;
2008-07-07 23:10:15 +00:00
DATE_FORMAT_METHOD_INIT_VARS;
2008-07-07 23:10:15 +00:00
/* Parse parameters. */
if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ob",
2008-09-04 00:08:17 +00:00
&object, IntlDateFormatter_ce_ptr,&isLenient ) == FAILURE )
{
intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
"datefmt_set_lenient: unable to parse input params", 0 TSRMLS_CC );
RETURN_FALSE;
}
2008-07-07 23:10:15 +00:00
/* Fetch the object. */
DATE_FORMAT_METHOD_FETCH_OBJECT;
2008-07-07 23:10:15 +00:00
2008-09-04 00:08:17 +00:00
udat_setLenient(DATE_FORMAT_OBJECT(dfo), (UBool)isLenient );
2008-07-07 23:10:15 +00:00
}
/* }}} */
/* {{{ proto bool IntlDateFormatter::setPattern( int $calendar )
* Set formatter calendar. }}} */
/* {{{ proto bool datefmt_set_calendar( IntlDateFormatter $mf, int $calendar )
* Set formatter calendar.
*/
PHP_FUNCTION( datefmt_set_calendar )
{
long calendar = 0;
DATE_FORMAT_METHOD_INIT_VARS;
2008-07-07 23:10:15 +00:00
/* Parse parameters. */
if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol",
&object, IntlDateFormatter_ce_ptr, &calendar ) == FAILURE ) {
intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
"datefmt_set_calendar: unable to parse input params", 0 TSRMLS_CC);
RETURN_FALSE;
}
2008-07-07 23:10:15 +00:00
/* check for the validity of value of calendar passed */
2008-07-07 23:10:15 +00:00
intl_error_reset( NULL TSRMLS_CC );
if (calendar > 1) {
intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
"datefmt_set_calendar: calendar value specified is out of valid range", 0 TSRMLS_CC);
RETURN_FALSE;
2008-07-07 23:10:15 +00:00
}
DATE_FORMAT_METHOD_FETCH_OBJECT;
2008-07-07 23:10:15 +00:00
2008-09-04 00:08:17 +00:00
internal_set_calendar( dfo, dfo->timezone_id, strlen(dfo->timezone_id), calendar, return_value TSRMLS_CC );
2008-07-07 23:10:15 +00:00
/* Set the calendar value in the IntlDateFormatter object */
2008-09-04 00:08:17 +00:00
dfo->calendar = calendar;
2008-07-07 23:10:15 +00:00
RETURN_TRUE;
2008-07-07 23:10:15 +00:00
}
/* }}} */