michael@0: /* michael@0: ******************************************************************************* michael@0: * Copyright (C) 2004-2012, International Business Machines Corporation and michael@0: * others. All Rights Reserved. michael@0: ******************************************************************************* michael@0: */ michael@0: michael@0: #include "unicode/utypes.h" michael@0: michael@0: #if !UCONFIG_NO_FORMATTING michael@0: michael@0: #include "unicode/utmscale.h" michael@0: michael@0: #define ticks INT64_C(1) michael@0: #define microseconds (ticks * 10) michael@0: #define milliseconds (microseconds * 1000) michael@0: #define seconds (milliseconds * 1000) michael@0: #define minutes (seconds * 60) michael@0: #define hours (minutes * 60) michael@0: #define days (hours * 24) michael@0: michael@0: /* Constants generated by ICU4J com.ibm.icu.dev.tool.timescale.GenerateCTimeScaleData. */ michael@0: static const int64_t timeScaleTable[UDTS_MAX_SCALE][UTSV_MAX_SCALE_VALUE] = { michael@0: /* units epochOffset fromMin fromMax toMin toMax epochOffsetP1 epochOffsetM1 unitsRound minRound maxRound */ michael@0: {milliseconds, INT64_C(62135596800000), INT64_C(-984472800485477), INT64_C(860201606885477), INT64_C(-9223372036854774999), INT64_C(9223372036854774999), INT64_C(62135596800001), INT64_C(62135596799999), INT64_C(5000), INT64_C(-9223372036854770808), INT64_C(9223372036854770807)}, michael@0: {seconds, INT64_C(62135596800), INT64_C(-984472800485), INT64_C(860201606885), U_INT64_MIN, U_INT64_MAX, INT64_C(62135596801), INT64_C(62135596799), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)}, michael@0: {milliseconds, INT64_C(62135596800000), INT64_C(-984472800485477), INT64_C(860201606885477), INT64_C(-9223372036854774999), INT64_C(9223372036854774999), INT64_C(62135596800001), INT64_C(62135596799999), INT64_C(5000), INT64_C(-9223372036854770808), INT64_C(9223372036854770807)}, michael@0: {ticks, INT64_C(504911232000000000), U_INT64_MIN, INT64_C(8718460804854775807), INT64_C(-8718460804854775808), U_INT64_MAX, INT64_C(504911232000000000), INT64_C(504911232000000000), INT64_C(0), U_INT64_MIN, U_INT64_MAX}, michael@0: {ticks, INT64_C(0), U_INT64_MIN, U_INT64_MAX, U_INT64_MIN, U_INT64_MAX, INT64_C(0), INT64_C(0), INT64_C(0), U_INT64_MIN, U_INT64_MAX}, michael@0: {seconds, INT64_C(60052752000), INT64_C(-982389955685), INT64_C(862284451685), U_INT64_MIN, U_INT64_MAX, INT64_C(60052752001), INT64_C(60052751999), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)}, michael@0: {seconds, INT64_C(63113904000), INT64_C(-985451107685), INT64_C(859223299685), U_INT64_MIN, U_INT64_MAX, INT64_C(63113904001), INT64_C(63113903999), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)}, michael@0: {days, INT64_C(693594), INT64_C(-11368793), INT64_C(9981605), U_INT64_MIN, U_INT64_MAX, INT64_C(693595), INT64_C(693593), INT64_C(432000000000), INT64_C(-9223371604854775808), INT64_C(9223371604854775807)}, michael@0: {days, INT64_C(693594), INT64_C(-11368793), INT64_C(9981605), U_INT64_MIN, U_INT64_MAX, INT64_C(693595), INT64_C(693593), INT64_C(432000000000), INT64_C(-9223371604854775808), INT64_C(9223371604854775807)}, michael@0: {microseconds, INT64_C(62135596800000000), INT64_C(-984472800485477580), INT64_C(860201606885477580), INT64_C(-9223372036854775804), INT64_C(9223372036854775804), INT64_C(62135596800000001), INT64_C(62135596799999999), INT64_C(5), INT64_C(-9223372036854775803), INT64_C(9223372036854775802)}, michael@0: }; michael@0: michael@0: U_CAPI int64_t U_EXPORT2 michael@0: utmscale_getTimeScaleValue(UDateTimeScale timeScale, UTimeScaleValue value, UErrorCode *status) michael@0: { michael@0: if (status == NULL || U_FAILURE(*status)) { michael@0: return 0; michael@0: } michael@0: michael@0: if (timeScale < UDTS_JAVA_TIME || UDTS_MAX_SCALE <= timeScale michael@0: || value < UTSV_UNITS_VALUE || UTSV_MAX_SCALE_VALUE <= value) michael@0: { michael@0: *status = U_ILLEGAL_ARGUMENT_ERROR; michael@0: return 0; michael@0: } michael@0: michael@0: return timeScaleTable[timeScale][value]; michael@0: } michael@0: michael@0: U_CAPI int64_t U_EXPORT2 michael@0: utmscale_fromInt64(int64_t otherTime, UDateTimeScale timeScale, UErrorCode *status) michael@0: { michael@0: const int64_t *data; michael@0: michael@0: if (status == NULL || U_FAILURE(*status)) { michael@0: return 0; michael@0: } michael@0: michael@0: if ((int32_t)timeScale < 0 || timeScale >= UDTS_MAX_SCALE) { michael@0: *status = U_ILLEGAL_ARGUMENT_ERROR; michael@0: return 0; michael@0: } michael@0: michael@0: data = (const int64_t *)(&timeScaleTable[timeScale]); michael@0: michael@0: if (otherTime < data[UTSV_FROM_MIN_VALUE] || otherTime > data[UTSV_FROM_MAX_VALUE]) { michael@0: *status = U_ILLEGAL_ARGUMENT_ERROR; michael@0: return 0; michael@0: } michael@0: michael@0: return (otherTime + data[UTSV_EPOCH_OFFSET_VALUE]) * data[UTSV_UNITS_VALUE]; michael@0: } michael@0: michael@0: U_CAPI int64_t U_EXPORT2 michael@0: utmscale_toInt64(int64_t universalTime, UDateTimeScale timeScale, UErrorCode *status) michael@0: { michael@0: const int64_t *data; michael@0: michael@0: if (status == NULL || U_FAILURE(*status)) { michael@0: return 0; michael@0: } michael@0: michael@0: if ((int32_t)timeScale < 0 || timeScale >= UDTS_MAX_SCALE) { michael@0: *status = U_ILLEGAL_ARGUMENT_ERROR; michael@0: return 0; michael@0: } michael@0: michael@0: data = (const int64_t *)(&timeScaleTable[timeScale]); michael@0: michael@0: if (universalTime < data[UTSV_TO_MIN_VALUE] || universalTime > data[UTSV_TO_MAX_VALUE]) { michael@0: *status = U_ILLEGAL_ARGUMENT_ERROR; michael@0: return 0; michael@0: } michael@0: michael@0: if (universalTime < 0) { michael@0: if (universalTime < data[UTSV_MIN_ROUND_VALUE]) { michael@0: return (universalTime + data[UTSV_UNITS_ROUND_VALUE]) / data[UTSV_UNITS_VALUE] - data[UTSV_EPOCH_OFFSET_PLUS_1_VALUE]; michael@0: } michael@0: michael@0: return (universalTime - data[UTSV_UNITS_ROUND_VALUE]) / data[UTSV_UNITS_VALUE] - data[UTSV_EPOCH_OFFSET_VALUE]; michael@0: } michael@0: michael@0: if (universalTime > data[UTSV_MAX_ROUND_VALUE]) { michael@0: return (universalTime - data[UTSV_UNITS_ROUND_VALUE]) / data[UTSV_UNITS_VALUE] - data[UTSV_EPOCH_OFFSET_MINUS_1_VALUE]; michael@0: } michael@0: michael@0: return (universalTime + data[UTSV_UNITS_ROUND_VALUE]) / data[UTSV_UNITS_VALUE] - data[UTSV_EPOCH_OFFSET_VALUE]; michael@0: } michael@0: michael@0: #endif /* #if !UCONFIG_NO_FORMATTING */