123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659 |
- /*
- +----------------------------------------------------------------------+
- | 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> |
- +----------------------------------------------------------------------+
- */
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include "../intl_cppshims.h"
- #include <unicode/locid.h>
- #include <unicode/timezone.h>
- #include <unicode/ustring.h>
- #include "intl_convertcpp.h"
- #include "../common/common_date.h"
- extern "C" {
- #include "../php_intl.h"
- #define USE_TIMEZONE_POINTER 1
- #include "timezone_class.h"
- #include "intl_convert.h"
- #include <zend_exceptions.h>
- #include <ext/date/php_date.h>
- }
- #include "common/common_enum.h"
- U_CFUNC PHP_METHOD(IntlTimeZone, __construct)
- {
- zend_throw_exception( NULL,
- "An object of this type cannot be created with the new operator",
- 0 TSRMLS_CC );
- }
- U_CFUNC PHP_FUNCTION(intltz_create_time_zone)
- {
- char *str_id;
- int str_id_len;
- intl_error_reset(NULL TSRMLS_CC);
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s",
- &str_id, &str_id_len) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_create_time_zone: bad arguments", 0 TSRMLS_CC);
- RETURN_NULL();
- }
- UErrorCode status = UErrorCode();
- UnicodeString id = UnicodeString();
- if (intl_stringFromChar(id, str_id, str_id_len, &status) == FAILURE) {
- intl_error_set(NULL, status,
- "intltz_create_time_zone: could not convert time zone id to UTF-16", 0 TSRMLS_CC);
- RETURN_NULL();
- }
- //guaranteed non-null; GMT if timezone cannot be understood
- TimeZone *tz = TimeZone::createTimeZone(id);
- timezone_object_construct(tz, return_value, 1 TSRMLS_CC);
- }
- U_CFUNC PHP_FUNCTION(intltz_from_date_time_zone)
- {
- zval *zv_timezone;
- TimeZone *tz;
- php_timezone_obj *tzobj;
- intl_error_reset(NULL TSRMLS_CC);
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O",
- &zv_timezone, php_date_get_timezone_ce()) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_from_date_time_zone: bad arguments", 0 TSRMLS_CC);
- RETURN_NULL();
- }
- tzobj = (php_timezone_obj *)zend_objects_get_address(zv_timezone TSRMLS_CC);
- if (!tzobj->initialized) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_from_date_time_zone: DateTimeZone object is unconstructed",
- 0 TSRMLS_CC);
- RETURN_NULL();
- }
- tz = timezone_convert_datetimezone(tzobj->type, tzobj, FALSE, NULL,
- "intltz_from_date_time_zone" TSRMLS_CC);
- if (tz == NULL) {
- RETURN_NULL();
- }
- timezone_object_construct(tz, return_value, 1 TSRMLS_CC);
- }
- U_CFUNC PHP_FUNCTION(intltz_create_default)
- {
- intl_error_reset(NULL TSRMLS_CC);
- if (zend_parse_parameters_none() == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_create_default: bad arguments", 0 TSRMLS_CC);
- RETURN_NULL();
- }
- TimeZone *tz = TimeZone::createDefault();
- timezone_object_construct(tz, return_value, 1 TSRMLS_CC);
- }
- U_CFUNC PHP_FUNCTION(intltz_get_gmt)
- {
- intl_error_reset(NULL TSRMLS_CC);
- if (zend_parse_parameters_none() == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_gmt: bad arguments", 0 TSRMLS_CC);
- RETURN_NULL();
- }
- timezone_object_construct(TimeZone::getGMT(), return_value, 0 TSRMLS_CC);
- }
- #if U_ICU_VERSION_MAJOR_NUM >= 49
- U_CFUNC PHP_FUNCTION(intltz_get_unknown)
- {
- intl_error_reset(NULL TSRMLS_CC);
- if (zend_parse_parameters_none() == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_unknown: bad arguments", 0 TSRMLS_CC);
- RETURN_NULL();
- }
- timezone_object_construct(&TimeZone::getUnknown(), return_value, 0 TSRMLS_CC);
- }
- #endif
- U_CFUNC PHP_FUNCTION(intltz_create_enumeration)
- {
- zval **arg = NULL;
- StringEnumeration *se = NULL;
- intl_error_reset(NULL TSRMLS_CC);
- /* double indirection to have the zend engine destroy the new zval that
- * results from separation */
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|Z", &arg) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_create_enumeration: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- if (arg == NULL || Z_TYPE_PP(arg) == IS_NULL) {
- se = TimeZone::createEnumeration();
- } else if (Z_TYPE_PP(arg) == IS_LONG) {
- int_offset:
- if (Z_LVAL_PP(arg) < (long)INT32_MIN ||
- Z_LVAL_PP(arg) > (long)INT32_MAX) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_create_enumeration: value is out of range", 0 TSRMLS_CC);
- RETURN_FALSE;
- } else {
- se = TimeZone::createEnumeration((int32_t) Z_LVAL_PP(arg));
- }
- } else if (Z_TYPE_PP(arg) == IS_DOUBLE) {
- double_offset:
- convert_to_long_ex(arg);
- goto int_offset;
- } else if (Z_TYPE_PP(arg) == IS_OBJECT || Z_TYPE_PP(arg) == IS_STRING) {
- long lval;
- double dval;
- convert_to_string_ex(arg);
- switch (is_numeric_string(Z_STRVAL_PP(arg), Z_STRLEN_PP(arg), &lval, &dval, 0)) {
- case IS_DOUBLE:
- SEPARATE_ZVAL(arg);
- zval_dtor(*arg);
- Z_TYPE_PP(arg) = IS_DOUBLE;
- Z_DVAL_PP(arg) = dval;
- goto double_offset;
- case IS_LONG:
- SEPARATE_ZVAL(arg);
- zval_dtor(*arg);
- Z_TYPE_PP(arg) = IS_LONG;
- Z_LVAL_PP(arg) = lval;
- goto int_offset;
- }
- /* else call string version */
- se = TimeZone::createEnumeration(Z_STRVAL_PP(arg));
- } else {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_create_enumeration: invalid argument type", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- if (se) {
- IntlIterator_from_StringEnumeration(se, return_value TSRMLS_CC);
- } else {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_create_enumeration: error obtaining enumeration", 0 TSRMLS_CC);
- RETVAL_FALSE;
- }
- }
- U_CFUNC PHP_FUNCTION(intltz_count_equivalent_ids)
- {
- char *str_id;
- int str_id_len;
- intl_error_reset(NULL TSRMLS_CC);
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s",
- &str_id, &str_id_len) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_count_equivalent_ids: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- UErrorCode status = UErrorCode();
- UnicodeString id = UnicodeString();
- if (intl_stringFromChar(id, str_id, str_id_len, &status) == FAILURE) {
- intl_error_set(NULL, status,
- "intltz_count_equivalent_ids: could not convert time zone id to UTF-16", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- int32_t result = TimeZone::countEquivalentIDs(id);
- RETURN_LONG((long)result);
- }
- #if U_ICU_VERSION_MAJOR_NUM * 10 + U_ICU_VERSION_MINOR_NUM >= 48
- U_CFUNC PHP_FUNCTION(intltz_create_time_zone_id_enumeration)
- {
- long zoneType,
- offset_arg;
- char *region = NULL;
- int region_len = 0;
- int32_t offset,
- *offsetp = NULL;
- int arg3isnull = 0;
- intl_error_reset(NULL TSRMLS_CC);
- /* must come before zpp because zpp would convert the arg in the stack to 0 */
- if (ZEND_NUM_ARGS() == 3) {
- zval **dummy, **zvoffset;
- arg3isnull = zend_get_parameters_ex(3, &dummy, &dummy, &zvoffset)
- != FAILURE && Z_TYPE_PP(zvoffset) == IS_NULL;
- }
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|s!l",
- &zoneType, ®ion, ®ion_len, &offset_arg) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_create_time_zone_id_enumeration: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- if (zoneType != UCAL_ZONE_TYPE_ANY && zoneType != UCAL_ZONE_TYPE_CANONICAL
- && zoneType != UCAL_ZONE_TYPE_CANONICAL_LOCATION) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_create_time_zone_id_enumeration: bad zone type", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- if (ZEND_NUM_ARGS() == 3) {
- if (offset_arg < (long)INT32_MIN || offset_arg > (long)INT32_MAX) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_create_time_zone_id_enumeration: offset out of bounds", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
-
- if (!arg3isnull) {
- offset = (int32_t)offset_arg;
- offsetp = &offset;
- } //else leave offsetp NULL
- }
- StringEnumeration *se;
- UErrorCode uec = UErrorCode();
- se = TimeZone::createTimeZoneIDEnumeration((USystemTimeZoneType)zoneType,
- region, offsetp, uec);
- INTL_CHECK_STATUS(uec, "intltz_create_time_zone_id_enumeration: "
- "Error obtaining time zone id enumeration")
- IntlIterator_from_StringEnumeration(se, return_value TSRMLS_CC);
- }
- #endif
- U_CFUNC PHP_FUNCTION(intltz_get_canonical_id)
- {
- char *str_id;
- int str_id_len;
- zval *is_systemid = NULL;
- intl_error_reset(NULL TSRMLS_CC);
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|z",
- &str_id, &str_id_len, &is_systemid) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_canonical_id: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- UErrorCode status = UErrorCode();
- UnicodeString id;
- if (intl_stringFromChar(id, str_id, str_id_len, &status) == FAILURE) {
- intl_error_set(NULL, status,
- "intltz_get_canonical_id: could not convert time zone id to UTF-16", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- UnicodeString result;
- UBool isSystemID;
- TimeZone::getCanonicalID(id, result, isSystemID, status);
- INTL_CHECK_STATUS(status, "intltz_get_canonical_id: error obtaining canonical ID");
-
- intl_convert_utf16_to_utf8(&Z_STRVAL_P(return_value), &Z_STRLEN_P(return_value),
- result.getBuffer(), result.length(), &status);
- INTL_CHECK_STATUS(status,
- "intltz_get_canonical_id: could not convert time zone id to UTF-16");
- Z_TYPE_P(return_value) = IS_STRING;
-
- if (is_systemid) { /* by-ref argument passed */
- zval_dtor(is_systemid);
- ZVAL_BOOL(is_systemid, isSystemID);
- }
- }
- #if U_ICU_VERSION_MAJOR_NUM * 10 + U_ICU_VERSION_MINOR_NUM >= 48
- U_CFUNC PHP_FUNCTION(intltz_get_region)
- {
- char *str_id;
- int str_id_len;
- char outbuf[3];
- intl_error_reset(NULL TSRMLS_CC);
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s",
- &str_id, &str_id_len) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_region: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- UErrorCode status = UErrorCode();
- UnicodeString id;
- if (intl_stringFromChar(id, str_id, str_id_len, &status) == FAILURE) {
- intl_error_set(NULL, status,
- "intltz_get_region: could not convert time zone id to UTF-16", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- int32_t region_len = TimeZone::getRegion(id, outbuf, sizeof(outbuf), status);
- INTL_CHECK_STATUS(status, "intltz_get_region: Error obtaining region");
- RETURN_STRINGL(outbuf, region_len, 1);
- }
- #endif
- U_CFUNC PHP_FUNCTION(intltz_get_tz_data_version)
- {
- intl_error_reset(NULL TSRMLS_CC);
- if (zend_parse_parameters_none() == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_tz_data_version: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- UErrorCode status = UErrorCode();
- const char *res = TimeZone::getTZDataVersion(status);
- INTL_CHECK_STATUS(status, "intltz_get_tz_data_version: "
- "Error obtaining time zone data version");
- RETURN_STRING(res, 1);
- }
- U_CFUNC PHP_FUNCTION(intltz_get_equivalent_id)
- {
- char *str_id;
- int str_id_len;
- long index;
- intl_error_reset(NULL TSRMLS_CC);
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl",
- &str_id, &str_id_len, &index) == FAILURE ||
- index < (long)INT32_MIN || index > (long)INT32_MAX) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_equivalent_id: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- UErrorCode status = UErrorCode();
- UnicodeString id;
- if (intl_stringFromChar(id, str_id, str_id_len, &status) == FAILURE) {
- intl_error_set(NULL, status,
- "intltz_get_equivalent_id: could not convert time zone id to UTF-16", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- const UnicodeString result = TimeZone::getEquivalentID(id, (int32_t)index);
- intl_convert_utf16_to_utf8(&Z_STRVAL_P(return_value), &Z_STRLEN_P(return_value),
- result.getBuffer(), result.length(), &status);
- INTL_CHECK_STATUS(status, "intltz_get_equivalent_id: "
- "could not convert resulting time zone id to UTF-16");
- Z_TYPE_P(return_value) = IS_STRING;
- }
- U_CFUNC PHP_FUNCTION(intltz_get_id)
- {
- TIMEZONE_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O",
- &object, TimeZone_ce_ptr) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_id: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- TIMEZONE_METHOD_FETCH_OBJECT;
- UnicodeString id_us;
- to->utimezone->getID(id_us);
- char *id = NULL;
- int id_len = 0;
- intl_convert_utf16_to_utf8(&id, &id_len,
- id_us.getBuffer(), id_us.length(), TIMEZONE_ERROR_CODE_P(to));
- INTL_METHOD_CHECK_STATUS(to, "intltz_get_id: Could not convert id to UTF-8");
- RETURN_STRINGL(id, id_len, 0);
- }
- U_CFUNC PHP_FUNCTION(intltz_use_daylight_time)
- {
- TIMEZONE_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O",
- &object, TimeZone_ce_ptr) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_use_daylight_time: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- TIMEZONE_METHOD_FETCH_OBJECT;
- RETURN_BOOL(to->utimezone->useDaylightTime());
- }
- U_CFUNC PHP_FUNCTION(intltz_get_offset)
- {
- UDate date;
- zend_bool local;
- zval *rawOffsetArg,
- *dstOffsetArg;
- int32_t rawOffset,
- dstOffset;
- TIMEZONE_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(),
- "Odbzz", &object, TimeZone_ce_ptr, &date, &local, &rawOffsetArg,
- &dstOffsetArg) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_offset: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- TIMEZONE_METHOD_FETCH_OBJECT;
- to->utimezone->getOffset(date, (UBool) local, rawOffset, dstOffset,
- TIMEZONE_ERROR_CODE(to));
- INTL_METHOD_CHECK_STATUS(to, "intltz_get_offset: error obtaining offset");
- zval_dtor(rawOffsetArg);
- ZVAL_LONG(rawOffsetArg, rawOffset);
- zval_dtor(dstOffsetArg);
- ZVAL_LONG(dstOffsetArg, dstOffset);
- RETURN_TRUE;
- }
- U_CFUNC PHP_FUNCTION(intltz_get_raw_offset)
- {
- TIMEZONE_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(),
- "O", &object, TimeZone_ce_ptr) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_raw_offset: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- TIMEZONE_METHOD_FETCH_OBJECT;
- RETURN_LONG(to->utimezone->getRawOffset());
- }
- U_CFUNC PHP_FUNCTION(intltz_has_same_rules)
- {
- zval *other_object;
- TimeZone_object *other_to;
- TIMEZONE_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(),
- "OO", &object, TimeZone_ce_ptr, &other_object, TimeZone_ce_ptr)
- == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_has_same_rules: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- TIMEZONE_METHOD_FETCH_OBJECT;
- other_to = (TimeZone_object *) zend_object_store_get_object(other_object TSRMLS_CC);
- if (other_to->utimezone == NULL) {
- intl_errors_set(&to->err, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_has_same_rules: The second IntlTimeZone is unconstructed", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- RETURN_BOOL(to->utimezone->hasSameRules(*other_to->utimezone));
- }
- static const TimeZone::EDisplayType display_types[] = {
- TimeZone::SHORT, TimeZone::LONG,
- #if U_ICU_VERSION_MAJOR_NUM * 10 + U_ICU_VERSION_MINOR_NUM >= 44
- TimeZone::SHORT_GENERIC, TimeZone::LONG_GENERIC,
- TimeZone::SHORT_GMT, TimeZone::LONG_GMT,
- TimeZone::SHORT_COMMONLY_USED, TimeZone::GENERIC_LOCATION
- #endif
- };
- U_CFUNC PHP_FUNCTION(intltz_get_display_name)
- {
- zend_bool daylight = 0;
- long display_type = TimeZone::LONG;
- const char *locale_str = NULL;
- int dummy = 0;
- TIMEZONE_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(),
- "O|bls!", &object, TimeZone_ce_ptr, &daylight, &display_type,
- &locale_str, &dummy) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_display_name: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- bool found = false;
- for (int i = 0; !found && i < sizeof(display_types)/sizeof(*display_types); i++) {
- if (display_types[i] == display_type)
- found = true;
- }
- if (!found) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_display_name: wrong display type", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- if (!locale_str) {
- locale_str = intl_locale_get_default(TSRMLS_C);
- }
- TIMEZONE_METHOD_FETCH_OBJECT;
- UnicodeString result;
- to->utimezone->getDisplayName((UBool)daylight, (TimeZone::EDisplayType)display_type,
- Locale::createFromName(locale_str), result);
- intl_convert_utf16_to_utf8(&Z_STRVAL_P(return_value), &Z_STRLEN_P(return_value),
- result.getBuffer(), result.length(), TIMEZONE_ERROR_CODE_P(to));
- INTL_METHOD_CHECK_STATUS(to, "intltz_get_display_name: "
- "could not convert resulting time zone id to UTF-16");
- Z_TYPE_P(return_value) = IS_STRING;
- }
- U_CFUNC PHP_FUNCTION(intltz_get_dst_savings)
- {
- TIMEZONE_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(),
- "O", &object, TimeZone_ce_ptr) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_dst_savings: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- TIMEZONE_METHOD_FETCH_OBJECT;
- RETURN_LONG((long)to->utimezone->getDSTSavings());
- }
- U_CFUNC PHP_FUNCTION(intltz_to_date_time_zone)
- {
- TIMEZONE_METHOD_INIT_VARS;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(),
- "O", &object, TimeZone_ce_ptr) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_to_date_time_zone: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- TIMEZONE_METHOD_FETCH_OBJECT;
- zval *ret = timezone_convert_to_datetimezone(to->utimezone,
- &TIMEZONE_ERROR(to), "intltz_to_date_time_zone" TSRMLS_CC);
- if (ret) {
- RETURN_ZVAL(ret, 1, 1);
- } else {
- RETURN_FALSE;
- }
- }
- U_CFUNC PHP_FUNCTION(intltz_get_error_code)
- {
- TIMEZONE_METHOD_INIT_VARS
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O",
- &object, TimeZone_ce_ptr) == FAILURE) {
- intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_error_code: bad arguments", 0 TSRMLS_CC);
- RETURN_FALSE;
- }
- /* Fetch the object (without resetting its last error code ). */
- to = (TimeZone_object*)zend_object_store_get_object(object TSRMLS_CC);
- if (to == NULL)
- RETURN_FALSE;
- RETURN_LONG((long)TIMEZONE_ERROR_CODE(to));
- }
- U_CFUNC PHP_FUNCTION(intltz_get_error_message)
- {
- const char* message = NULL;
- TIMEZONE_METHOD_INIT_VARS
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O",
- &object, TimeZone_ce_ptr) == FAILURE) {
- intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
- "intltz_get_error_message: bad arguments", 0 TSRMLS_CC );
- RETURN_FALSE;
- }
- /* Fetch the object (without resetting its last error code ). */
- to = (TimeZone_object*)zend_object_store_get_object(object TSRMLS_CC);
- if (to == NULL)
- RETURN_FALSE;
- /* Return last error message. */
- message = intl_error_get_message(TIMEZONE_ERROR_P(to) TSRMLS_CC);
- RETURN_STRING(message, 0);
- }
|