timezone_class.cpp 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  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: Gustavo Lopes <cataphract@php.net> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #ifdef HAVE_CONFIG_H
  17. #include "config.h"
  18. #endif
  19. #include "../intl_cppshims.h"
  20. #include <unicode/timezone.h>
  21. #include <unicode/calendar.h>
  22. #include "../intl_convertcpp.h"
  23. #include "../common/common_date.h"
  24. extern "C" {
  25. #include "../intl_convert.h"
  26. #define USE_TIMEZONE_POINTER 1
  27. #include "timezone_class.h"
  28. #include "timezone_methods.h"
  29. #include <zend_exceptions.h>
  30. #include <zend_interfaces.h>
  31. #include <ext/date/php_date.h>
  32. }
  33. /* {{{ Global variables */
  34. U_CDECL_BEGIN
  35. zend_class_entry *TimeZone_ce_ptr = NULL;
  36. zend_object_handlers TimeZone_handlers;
  37. U_CDECL_END
  38. /* }}} */
  39. /* {{{ timezone_object_construct */
  40. U_CFUNC void timezone_object_construct(const TimeZone *zone, zval *object, int owned TSRMLS_DC)
  41. {
  42. TimeZone_object *to;
  43. object_init_ex(object, TimeZone_ce_ptr);
  44. TIMEZONE_METHOD_FETCH_OBJECT_NO_CHECK; /* fetch zend object from zval "object" into "to" */
  45. to->utimezone = zone;
  46. to->should_delete = owned;
  47. }
  48. /* }}} */
  49. /* {{{ timezone_convert_to_datetimezone
  50. * Convert from TimeZone to DateTimeZone object */
  51. U_CFUNC zval *timezone_convert_to_datetimezone(const TimeZone *timeZone,
  52. intl_error *outside_error,
  53. const char *func TSRMLS_DC)
  54. {
  55. zval *ret = NULL;
  56. UnicodeString id;
  57. char *message = NULL;
  58. php_timezone_obj *tzobj;
  59. zval arg = zval_used_for_init;
  60. timeZone->getID(id);
  61. if (id.isBogus()) {
  62. spprintf(&message, 0, "%s: could not obtain TimeZone id", func);
  63. intl_errors_set(outside_error, U_ILLEGAL_ARGUMENT_ERROR,
  64. message, 1 TSRMLS_CC);
  65. goto error;
  66. }
  67. MAKE_STD_ZVAL(ret);
  68. object_init_ex(ret, php_date_get_timezone_ce());
  69. tzobj = (php_timezone_obj *)zend_objects_get_address(ret TSRMLS_CC);
  70. if (id.compare(0, 3, UnicodeString("GMT", sizeof("GMT")-1, US_INV)) == 0) {
  71. /* The DateTimeZone constructor doesn't support offset time zones,
  72. * so we must mess with DateTimeZone structure ourselves */
  73. tzobj->initialized = 1;
  74. tzobj->type = TIMELIB_ZONETYPE_OFFSET;
  75. //convert offset from milliseconds to minutes
  76. tzobj->tzi.utc_offset = -1 * timeZone->getRawOffset() / (60 * 1000);
  77. } else {
  78. /* Call the constructor! */
  79. Z_TYPE(arg) = IS_STRING;
  80. if (intl_charFromString(id, &Z_STRVAL(arg), &Z_STRLEN(arg),
  81. &INTL_ERROR_CODE(*outside_error)) == FAILURE) {
  82. spprintf(&message, 0, "%s: could not convert id to UTF-8", func);
  83. intl_errors_set(outside_error, INTL_ERROR_CODE(*outside_error),
  84. message, 1 TSRMLS_CC);
  85. goto error;
  86. }
  87. zend_call_method_with_1_params(&ret, NULL, NULL, "__construct",
  88. NULL, &arg);
  89. if (EG(exception)) {
  90. spprintf(&message, 0,
  91. "%s: DateTimeZone constructor threw exception", func);
  92. intl_errors_set(outside_error, U_ILLEGAL_ARGUMENT_ERROR,
  93. message, 1 TSRMLS_CC);
  94. zend_object_store_ctor_failed(ret TSRMLS_CC);
  95. goto error;
  96. }
  97. }
  98. if (0) {
  99. error:
  100. if (ret) {
  101. zval_ptr_dtor(&ret);
  102. }
  103. ret = NULL;
  104. }
  105. if (message) {
  106. efree(message);
  107. }
  108. if (Z_TYPE(arg) == IS_STRING) {
  109. zval_dtor(&arg);
  110. }
  111. return ret;
  112. }
  113. /* }}} */
  114. /* {{{ timezone_process_timezone_argument
  115. * TimeZone argument processor. outside_error may be NULL (for static functions/constructors) */
  116. U_CFUNC TimeZone *timezone_process_timezone_argument(zval **zv_timezone,
  117. intl_error *outside_error,
  118. const char *func TSRMLS_DC)
  119. {
  120. zval local_zv_tz = zval_used_for_init,
  121. *local_zv_tz_p = &local_zv_tz;
  122. char *message = NULL;
  123. TimeZone *timeZone;
  124. if (zv_timezone == NULL || Z_TYPE_PP(zv_timezone) == IS_NULL) {
  125. timelib_tzinfo *tzinfo = get_timezone_info(TSRMLS_C);
  126. ZVAL_STRING(&local_zv_tz, tzinfo->name, 0);
  127. zv_timezone = &local_zv_tz_p;
  128. }
  129. if (Z_TYPE_PP(zv_timezone) == IS_OBJECT &&
  130. instanceof_function(Z_OBJCE_PP(zv_timezone), TimeZone_ce_ptr TSRMLS_CC)) {
  131. TimeZone_object *to = (TimeZone_object*)zend_objects_get_address(
  132. *zv_timezone TSRMLS_CC);
  133. if (to->utimezone == NULL) {
  134. spprintf(&message, 0, "%s: passed IntlTimeZone is not "
  135. "properly constructed", func);
  136. if (message) {
  137. intl_errors_set(outside_error, U_ILLEGAL_ARGUMENT_ERROR, message, 1 TSRMLS_CC);
  138. efree(message);
  139. }
  140. return NULL;
  141. }
  142. timeZone = to->utimezone->clone();
  143. if (timeZone == NULL) {
  144. spprintf(&message, 0, "%s: could not clone TimeZone", func);
  145. if (message) {
  146. intl_errors_set(outside_error, U_MEMORY_ALLOCATION_ERROR, message, 1 TSRMLS_CC);
  147. efree(message);
  148. }
  149. return NULL;
  150. }
  151. } else if (Z_TYPE_PP(zv_timezone) == IS_OBJECT &&
  152. instanceof_function(Z_OBJCE_PP(zv_timezone), php_date_get_timezone_ce() TSRMLS_CC)) {
  153. php_timezone_obj *tzobj = (php_timezone_obj *)zend_objects_get_address(
  154. *zv_timezone TSRMLS_CC);
  155. return timezone_convert_datetimezone(tzobj->type, tzobj, 0,
  156. outside_error, func TSRMLS_CC);
  157. } else {
  158. UnicodeString id,
  159. gottenId;
  160. UErrorCode status = U_ZERO_ERROR; /* outside_error may be NULL */
  161. convert_to_string_ex(zv_timezone);
  162. if (intl_stringFromChar(id, Z_STRVAL_PP(zv_timezone), Z_STRLEN_PP(zv_timezone),
  163. &status) == FAILURE) {
  164. spprintf(&message, 0, "%s: Time zone identifier given is not a "
  165. "valid UTF-8 string", func);
  166. if (message) {
  167. intl_errors_set(outside_error, status, message, 1 TSRMLS_CC);
  168. efree(message);
  169. }
  170. return NULL;
  171. }
  172. timeZone = TimeZone::createTimeZone(id);
  173. if (timeZone == NULL) {
  174. spprintf(&message, 0, "%s: could not create time zone", func);
  175. if (message) {
  176. intl_errors_set(outside_error, U_MEMORY_ALLOCATION_ERROR, message, 1 TSRMLS_CC);
  177. efree(message);
  178. }
  179. return NULL;
  180. }
  181. if (timeZone->getID(gottenId) != id) {
  182. spprintf(&message, 0, "%s: no such time zone: '%s'",
  183. func, Z_STRVAL_PP(zv_timezone));
  184. if (message) {
  185. intl_errors_set(outside_error, U_ILLEGAL_ARGUMENT_ERROR, message, 1 TSRMLS_CC);
  186. efree(message);
  187. }
  188. delete timeZone;
  189. return NULL;
  190. }
  191. }
  192. return timeZone;
  193. }
  194. /* }}} */
  195. /* {{{ clone handler for TimeZone */
  196. static zend_object_value TimeZone_clone_obj(zval *object TSRMLS_DC)
  197. {
  198. TimeZone_object *to_orig,
  199. *to_new;
  200. zend_object_value ret_val;
  201. intl_error_reset(NULL TSRMLS_CC);
  202. to_orig = (TimeZone_object*)zend_object_store_get_object(object TSRMLS_CC);
  203. intl_error_reset(TIMEZONE_ERROR_P(to_orig) TSRMLS_CC);
  204. ret_val = TimeZone_ce_ptr->create_object(Z_OBJCE_P(object) TSRMLS_CC);
  205. to_new = (TimeZone_object*)zend_object_store_get_object_by_handle(
  206. ret_val.handle TSRMLS_CC);
  207. zend_objects_clone_members(&to_new->zo, ret_val,
  208. &to_orig->zo, Z_OBJ_HANDLE_P(object) TSRMLS_CC);
  209. if (to_orig->utimezone != NULL) {
  210. TimeZone *newTimeZone;
  211. newTimeZone = to_orig->utimezone->clone();
  212. to_new->should_delete = 1;
  213. if (!newTimeZone) {
  214. char *err_msg;
  215. intl_errors_set_code(TIMEZONE_ERROR_P(to_orig),
  216. U_MEMORY_ALLOCATION_ERROR TSRMLS_CC);
  217. intl_errors_set_custom_msg(TIMEZONE_ERROR_P(to_orig),
  218. "Could not clone IntlTimeZone", 0 TSRMLS_CC);
  219. err_msg = intl_error_get_message(TIMEZONE_ERROR_P(to_orig) TSRMLS_CC);
  220. zend_throw_exception(NULL, err_msg, 0 TSRMLS_CC);
  221. efree(err_msg);
  222. } else {
  223. to_new->utimezone = newTimeZone;
  224. }
  225. } else {
  226. zend_throw_exception(NULL, "Cannot clone unconstructed IntlTimeZone", 0 TSRMLS_CC);
  227. }
  228. return ret_val;
  229. }
  230. /* }}} */
  231. /* {{{ compare_objects handler for TimeZone
  232. * Can't be used for >, >=, <, <= comparisons */
  233. static int TimeZone_compare_objects(zval *object1, zval *object2 TSRMLS_DC)
  234. {
  235. TimeZone_object *to1,
  236. *to2;
  237. to1 = (TimeZone_object*)zend_object_store_get_object(object1 TSRMLS_CC);
  238. to2 = (TimeZone_object*)zend_object_store_get_object(object2 TSRMLS_CC);
  239. if (to1->utimezone == NULL || to2->utimezone == NULL) {
  240. zend_throw_exception(NULL, "Comparison with at least one unconstructed "
  241. "IntlTimeZone operand", 0 TSRMLS_CC);
  242. /* intentionally not returning */
  243. } else {
  244. if (*to1->utimezone == *to2->utimezone) {
  245. return 0;
  246. }
  247. }
  248. return 1;
  249. }
  250. /* }}} */
  251. /* {{{ get_debug_info handler for TimeZone */
  252. static HashTable *TimeZone_get_debug_info(zval *object, int *is_temp TSRMLS_DC)
  253. {
  254. zval zv = zval_used_for_init;
  255. TimeZone_object *to;
  256. const TimeZone *tz;
  257. UnicodeString ustr;
  258. char *str;
  259. int str_len;
  260. UErrorCode uec = U_ZERO_ERROR;
  261. *is_temp = 1;
  262. array_init_size(&zv, 4);
  263. to = (TimeZone_object*)zend_object_store_get_object(object TSRMLS_CC);
  264. tz = to->utimezone;
  265. if (tz == NULL) {
  266. add_assoc_bool_ex(&zv, "valid", sizeof("valid"), 0);
  267. return Z_ARRVAL(zv);
  268. }
  269. add_assoc_bool_ex(&zv, "valid", sizeof("valid"), 1);
  270. tz->getID(ustr);
  271. intl_convert_utf16_to_utf8(&str, &str_len,
  272. ustr.getBuffer(), ustr.length(), &uec);
  273. if (U_FAILURE(uec)) {
  274. return Z_ARRVAL(zv);
  275. }
  276. add_assoc_stringl_ex(&zv, "id", sizeof("id"), str, str_len, 0);
  277. int32_t rawOffset, dstOffset;
  278. UDate now = Calendar::getNow();
  279. tz->getOffset(now, FALSE, rawOffset, dstOffset, uec);
  280. if (U_FAILURE(uec)) {
  281. return Z_ARRVAL(zv);
  282. }
  283. add_assoc_long_ex(&zv, "rawOffset", sizeof("rawOffset"), (long)rawOffset);
  284. add_assoc_long_ex(&zv, "currentOffset", sizeof("currentOffset"),
  285. (long)(rawOffset + dstOffset));
  286. return Z_ARRVAL(zv);
  287. }
  288. /* }}} */
  289. /* {{{ void TimeZone_object_init(TimeZone_object* to)
  290. * Initialize internals of TImeZone_object not specific to zend standard objects.
  291. */
  292. static void TimeZone_object_init(TimeZone_object *to TSRMLS_DC)
  293. {
  294. intl_error_init(TIMEZONE_ERROR_P(to) TSRMLS_CC);
  295. to->utimezone = NULL;
  296. to->should_delete = 0;
  297. }
  298. /* }}} */
  299. /* {{{ TimeZone_objects_dtor */
  300. static void TimeZone_objects_dtor(zend_object *object,
  301. zend_object_handle handle TSRMLS_DC)
  302. {
  303. zend_objects_destroy_object(object, handle TSRMLS_CC);
  304. }
  305. /* }}} */
  306. /* {{{ TimeZone_objects_free */
  307. static void TimeZone_objects_free(zend_object *object TSRMLS_DC)
  308. {
  309. TimeZone_object* to = (TimeZone_object*) object;
  310. if (to->utimezone && to->should_delete) {
  311. delete to->utimezone;
  312. to->utimezone = NULL;
  313. }
  314. intl_error_reset(TIMEZONE_ERROR_P(to) TSRMLS_CC);
  315. zend_object_std_dtor(&to->zo TSRMLS_CC);
  316. efree(to);
  317. }
  318. /* }}} */
  319. /* {{{ TimeZone_object_create */
  320. static zend_object_value TimeZone_object_create(zend_class_entry *ce TSRMLS_DC)
  321. {
  322. zend_object_value retval;
  323. TimeZone_object* intern;
  324. intern = (TimeZone_object*)ecalloc(1, sizeof(TimeZone_object));
  325. zend_object_std_init(&intern->zo, ce TSRMLS_CC);
  326. #if PHP_VERSION_ID < 50399
  327. zend_hash_copy(intern->zo.properties, &(ce->default_properties),
  328. (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval*));
  329. #else
  330. object_properties_init((zend_object*) intern, ce);
  331. #endif
  332. TimeZone_object_init(intern TSRMLS_CC);
  333. retval.handle = zend_objects_store_put(
  334. intern,
  335. (zend_objects_store_dtor_t) TimeZone_objects_dtor,
  336. (zend_objects_free_object_storage_t) TimeZone_objects_free,
  337. NULL TSRMLS_CC);
  338. retval.handlers = &TimeZone_handlers;
  339. return retval;
  340. }
  341. /* }}} */
  342. /* {{{ TimeZone methods arguments info */
  343. ZEND_BEGIN_ARG_INFO_EX(ainfo_tz_idarg, 0, 0, 1)
  344. ZEND_ARG_INFO(0, zoneId)
  345. ZEND_END_ARG_INFO()
  346. ZEND_BEGIN_ARG_INFO_EX(ainfo_tz_fromDateTimeZone, 0, 0, 1)
  347. ZEND_ARG_OBJ_INFO(0, otherTimeZone, IntlTimeZone, 0)
  348. ZEND_END_ARG_INFO()
  349. ZEND_BEGIN_ARG_INFO_EX(ainfo_tz_createEnumeration, 0, 0, 0)
  350. ZEND_ARG_INFO(0, countryOrRawOffset)
  351. ZEND_END_ARG_INFO()
  352. ZEND_BEGIN_ARG_INFO_EX(ainfo_tz_countEquivalentIDs, 0, 0, 1)
  353. ZEND_ARG_INFO(0, zoneId)
  354. ZEND_END_ARG_INFO()
  355. ZEND_BEGIN_ARG_INFO_EX(ainfo_tz_createTimeZoneIDEnumeration, 0, 0, 1)
  356. ZEND_ARG_INFO(0, zoneType)
  357. ZEND_ARG_INFO(0, region)
  358. ZEND_ARG_INFO(0, rawOffset)
  359. ZEND_END_ARG_INFO()
  360. ZEND_BEGIN_ARG_INFO_EX(ainfo_tz_getCanonicalID, 0, 0, 1)
  361. ZEND_ARG_INFO(0, zoneId)
  362. ZEND_ARG_INFO(1, isSystemID)
  363. ZEND_END_ARG_INFO()
  364. ZEND_BEGIN_ARG_INFO_EX(ainfo_tz_getEquivalentID, 0, 0, 2)
  365. ZEND_ARG_INFO(0, zoneId)
  366. ZEND_ARG_INFO(0, index)
  367. ZEND_END_ARG_INFO()
  368. ZEND_BEGIN_ARG_INFO_EX(ainfo_tz_getOffset, 0, 0, 4)
  369. ZEND_ARG_INFO(0, date)
  370. ZEND_ARG_INFO(0, local)
  371. ZEND_ARG_INFO(1, rawOffset)
  372. ZEND_ARG_INFO(1, dstOffset)
  373. ZEND_END_ARG_INFO()
  374. ZEND_BEGIN_ARG_INFO_EX(ainfo_tz_hasSameRules, 0, 0, 1)
  375. ZEND_ARG_OBJ_INFO(0, otherTimeZone, IntlTimeZone, 0)
  376. ZEND_END_ARG_INFO()
  377. ZEND_BEGIN_ARG_INFO_EX(ainfo_tz_getDisplayName, 0, 0, 0)
  378. ZEND_ARG_INFO(0, isDaylight)
  379. ZEND_ARG_INFO(0, style)
  380. ZEND_ARG_INFO(0, locale)
  381. ZEND_END_ARG_INFO()
  382. ZEND_BEGIN_ARG_INFO_EX(ainfo_tz_void, 0, 0, 0)
  383. ZEND_END_ARG_INFO()
  384. /* }}} */
  385. /* {{{ TimeZone_class_functions
  386. * Every 'IntlTimeZone' class method has an entry in this table
  387. */
  388. static zend_function_entry TimeZone_class_functions[] = {
  389. PHP_ME(IntlTimeZone, __construct, ainfo_tz_void, ZEND_ACC_PRIVATE)
  390. PHP_ME_MAPPING(createTimeZone, intltz_create_time_zone, ainfo_tz_idarg, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
  391. PHP_ME_MAPPING(fromDateTimeZone, intltz_from_date_time_zone, ainfo_tz_idarg, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
  392. PHP_ME_MAPPING(createDefault, intltz_create_default, ainfo_tz_void, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
  393. PHP_ME_MAPPING(getGMT, intltz_get_gmt, ainfo_tz_void, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
  394. #if U_ICU_VERSION_MAJOR_NUM >= 49
  395. PHP_ME_MAPPING(getUnknown, intltz_get_unknown, ainfo_tz_void, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
  396. #endif
  397. PHP_ME_MAPPING(createEnumeration, intltz_create_enumeration, ainfo_tz_createEnumeration, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
  398. PHP_ME_MAPPING(countEquivalentIDs, intltz_count_equivalent_ids, ainfo_tz_idarg, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
  399. #if U_ICU_VERSION_MAJOR_NUM * 10 + U_ICU_VERSION_MINOR_NUM >= 48
  400. PHP_ME_MAPPING(createTimeZoneIDEnumeration, intltz_create_time_zone_id_enumeration, ainfo_tz_createTimeZoneIDEnumeration, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
  401. #endif
  402. PHP_ME_MAPPING(getCanonicalID, intltz_get_canonical_id, ainfo_tz_getCanonicalID, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
  403. #if U_ICU_VERSION_MAJOR_NUM * 10 + U_ICU_VERSION_MINOR_NUM >= 48
  404. PHP_ME_MAPPING(getRegion, intltz_get_region, ainfo_tz_idarg, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
  405. #endif
  406. PHP_ME_MAPPING(getTZDataVersion, intltz_get_tz_data_version, ainfo_tz_void, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
  407. PHP_ME_MAPPING(getEquivalentID, intltz_get_equivalent_id, ainfo_tz_getEquivalentID, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
  408. PHP_ME_MAPPING(getID, intltz_get_id, ainfo_tz_void, ZEND_ACC_PUBLIC)
  409. PHP_ME_MAPPING(useDaylightTime, intltz_use_daylight_time, ainfo_tz_void, ZEND_ACC_PUBLIC)
  410. PHP_ME_MAPPING(getOffset, intltz_get_offset, ainfo_tz_getOffset, ZEND_ACC_PUBLIC)
  411. PHP_ME_MAPPING(getRawOffset, intltz_get_raw_offset, ainfo_tz_void, ZEND_ACC_PUBLIC)
  412. PHP_ME_MAPPING(hasSameRules, intltz_has_same_rules, ainfo_tz_hasSameRules, ZEND_ACC_PUBLIC)
  413. PHP_ME_MAPPING(getDisplayName, intltz_get_display_name, ainfo_tz_getDisplayName, ZEND_ACC_PUBLIC)
  414. PHP_ME_MAPPING(getDSTSavings, intltz_get_dst_savings, ainfo_tz_void, ZEND_ACC_PUBLIC)
  415. PHP_ME_MAPPING(toDateTimeZone, intltz_to_date_time_zone, ainfo_tz_void, ZEND_ACC_PUBLIC)
  416. PHP_ME_MAPPING(getErrorCode, intltz_get_error_code, ainfo_tz_void, ZEND_ACC_PUBLIC)
  417. PHP_ME_MAPPING(getErrorMessage, intltz_get_error_message, ainfo_tz_void, ZEND_ACC_PUBLIC)
  418. PHP_FE_END
  419. };
  420. /* }}} */
  421. /* {{{ timezone_register_IntlTimeZone_class
  422. * Initialize 'IntlTimeZone' class
  423. */
  424. U_CFUNC void timezone_register_IntlTimeZone_class(TSRMLS_D)
  425. {
  426. zend_class_entry ce;
  427. /* Create and register 'IntlTimeZone' class. */
  428. INIT_CLASS_ENTRY(ce, "IntlTimeZone", TimeZone_class_functions);
  429. ce.create_object = TimeZone_object_create;
  430. TimeZone_ce_ptr = zend_register_internal_class(&ce TSRMLS_CC);
  431. if (!TimeZone_ce_ptr) {
  432. //can't happen now without bigger problems before
  433. php_error_docref0(NULL TSRMLS_CC, E_ERROR,
  434. "IntlTimeZone: class registration has failed.");
  435. return;
  436. }
  437. memcpy(&TimeZone_handlers, zend_get_std_object_handlers(),
  438. sizeof TimeZone_handlers);
  439. TimeZone_handlers.clone_obj = TimeZone_clone_obj;
  440. TimeZone_handlers.compare_objects = TimeZone_compare_objects;
  441. TimeZone_handlers.get_debug_info = TimeZone_get_debug_info;
  442. /* Declare 'IntlTimeZone' class constants */
  443. #define TIMEZONE_DECL_LONG_CONST(name, val) \
  444. zend_declare_class_constant_long(TimeZone_ce_ptr, name, sizeof(name) - 1, \
  445. val TSRMLS_CC)
  446. TIMEZONE_DECL_LONG_CONST("DISPLAY_SHORT", TimeZone::SHORT);
  447. TIMEZONE_DECL_LONG_CONST("DISPLAY_LONG", TimeZone::LONG);
  448. #if U_ICU_VERSION_MAJOR_NUM * 10 + U_ICU_VERSION_MINOR_NUM >= 44
  449. TIMEZONE_DECL_LONG_CONST("DISPLAY_SHORT_GENERIC", TimeZone::SHORT_GENERIC);
  450. TIMEZONE_DECL_LONG_CONST("DISPLAY_LONG_GENERIC", TimeZone::LONG_GENERIC);
  451. TIMEZONE_DECL_LONG_CONST("DISPLAY_SHORT_GMT", TimeZone::SHORT_GMT);
  452. TIMEZONE_DECL_LONG_CONST("DISPLAY_LONG_GMT", TimeZone::LONG_GMT);
  453. TIMEZONE_DECL_LONG_CONST("DISPLAY_SHORT_COMMONLY_USED", TimeZone::SHORT_COMMONLY_USED);
  454. TIMEZONE_DECL_LONG_CONST("DISPLAY_GENERIC_LOCATION", TimeZone::GENERIC_LOCATION);
  455. #endif
  456. #if U_ICU_VERSION_MAJOR_NUM * 10 + U_ICU_VERSION_MINOR_NUM >= 48
  457. TIMEZONE_DECL_LONG_CONST("TYPE_ANY", UCAL_ZONE_TYPE_ANY);
  458. TIMEZONE_DECL_LONG_CONST("TYPE_CANONICAL", UCAL_ZONE_TYPE_CANONICAL);
  459. TIMEZONE_DECL_LONG_CONST("TYPE_CANONICAL_LOCATION", UCAL_ZONE_TYPE_CANONICAL_LOCATION);
  460. #endif
  461. /* Declare 'IntlTimeZone' class properties */
  462. }
  463. /* }}} */