66a285bef3
X-SVN-Rev: 10230
407 lines
9.4 KiB
C++
407 lines
9.4 KiB
C++
/*
|
|
*******************************************************************************
|
|
* Copyright (C) 1996-2001, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
*******************************************************************************
|
|
*/
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#if !UCONFIG_NO_FORMATTING
|
|
|
|
#include "unicode/ucal.h"
|
|
#include "unicode/uloc.h"
|
|
#include "unicode/calendar.h"
|
|
#include "unicode/timezone.h"
|
|
#include "unicode/ustring.h"
|
|
#include "unicode/strenum.h"
|
|
#include "cmemory.h"
|
|
#include "ustrenum.h"
|
|
|
|
U_NAMESPACE_USE
|
|
|
|
U_CAPI UEnumeration* U_EXPORT2
|
|
ucal_openTimeZoneEnumeration(int32_t rawOffset, UErrorCode* ec) {
|
|
return uenum_openStringEnumeration(TimeZone::createEnumeration(rawOffset), ec);
|
|
}
|
|
|
|
U_CAPI const UChar* U_EXPORT2
|
|
ucal_getAvailableTZIDs( int32_t rawOffset,
|
|
int32_t index,
|
|
UErrorCode* status)
|
|
{
|
|
|
|
if(U_FAILURE(*status)) return 0;
|
|
|
|
const UChar *retVal = 0;
|
|
|
|
StringEnumeration* tzs = TimeZone::createEnumeration(rawOffset);
|
|
if(tzs == 0) {
|
|
*status = U_MEMORY_ALLOCATION_ERROR;
|
|
return 0;
|
|
}
|
|
|
|
UErrorCode ec = U_ZERO_ERROR;
|
|
if (index >= 0 && index < tzs->count(ec)) {
|
|
for (;;) {
|
|
retVal = tzs->unext(ec);
|
|
if (U_FAILURE(ec) || retVal==NULL) {
|
|
break;
|
|
}
|
|
if (index-- == 0) break;
|
|
}
|
|
} else {
|
|
*status = U_INDEX_OUTOFBOUNDS_ERROR;
|
|
}
|
|
uprv_free(tzs);
|
|
return retVal;
|
|
}
|
|
|
|
U_CAPI int32_t U_EXPORT2
|
|
ucal_countAvailableTZIDs(int32_t rawOffset)
|
|
{
|
|
const StringEnumeration* tzs = TimeZone::createEnumeration(rawOffset);
|
|
if(tzs == 0) {
|
|
// TBD: U_MEMORY_ALLOCATION_ERROR
|
|
return 0;
|
|
}
|
|
UErrorCode ec = U_ZERO_ERROR;
|
|
int32_t count = tzs->count(ec);
|
|
delete tzs;
|
|
return count;
|
|
}
|
|
|
|
U_CAPI UDate U_EXPORT2
|
|
ucal_getNow()
|
|
{
|
|
|
|
return Calendar::getNow();
|
|
}
|
|
|
|
// ignore type until we add more subclasses
|
|
U_CAPI UCalendar* U_EXPORT2
|
|
ucal_open( const UChar* zoneID,
|
|
int32_t len,
|
|
const char* locale,
|
|
UCalendarType /*type*/,
|
|
UErrorCode* status)
|
|
{
|
|
|
|
if(U_FAILURE(*status)) return 0;
|
|
|
|
TimeZone *zone = 0;
|
|
if(zoneID == 0) {
|
|
zone = TimeZone::createDefault();
|
|
}
|
|
else {
|
|
int32_t length = (len == -1 ? u_strlen(zoneID) : len);
|
|
|
|
zone = TimeZone::createTimeZone(UnicodeString(zoneID, length));
|
|
}
|
|
if(zone == 0) {
|
|
*status = U_MEMORY_ALLOCATION_ERROR;
|
|
return 0;
|
|
}
|
|
|
|
return (UCalendar*)Calendar::createInstance(zone, Locale(locale), *status);
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucal_close(UCalendar *cal)
|
|
{
|
|
|
|
delete (Calendar*) cal;
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucal_setTimeZone( UCalendar* cal,
|
|
const UChar* zoneID,
|
|
int32_t len,
|
|
UErrorCode *status)
|
|
{
|
|
|
|
if(U_FAILURE(*status))
|
|
return;
|
|
|
|
TimeZone *zone;
|
|
if(zoneID == NULL) {
|
|
zone = TimeZone::createDefault();
|
|
}
|
|
else {
|
|
int32_t length = (len == -1 ? u_strlen(zoneID) : len);
|
|
zone = TimeZone::createTimeZone(UnicodeString((UChar*)zoneID,
|
|
length, length));
|
|
}
|
|
if(zone == 0) {
|
|
*status = U_MEMORY_ALLOCATION_ERROR;
|
|
return;
|
|
}
|
|
|
|
((Calendar*)cal)->adoptTimeZone(zone);
|
|
}
|
|
|
|
U_CAPI int32_t U_EXPORT2
|
|
ucal_getTimeZoneDisplayName(const UCalendar* cal,
|
|
UCalendarDisplayNameType type,
|
|
const char *locale,
|
|
UChar* result,
|
|
int32_t resultLength,
|
|
UErrorCode* status)
|
|
{
|
|
|
|
if(U_FAILURE(*status)) return -1;
|
|
|
|
const TimeZone& tz = ((Calendar*)cal)->getTimeZone();
|
|
UnicodeString id(result, 0, resultLength);
|
|
|
|
switch(type) {
|
|
case UCAL_STANDARD:
|
|
tz.getDisplayName(FALSE, TimeZone::LONG, Locale(locale), id);
|
|
break;
|
|
|
|
case UCAL_SHORT_STANDARD:
|
|
tz.getDisplayName(FALSE, TimeZone::SHORT, Locale(locale), id);
|
|
break;
|
|
|
|
case UCAL_DST:
|
|
tz.getDisplayName(TRUE, TimeZone::LONG, Locale(locale), id);
|
|
break;
|
|
|
|
case UCAL_SHORT_DST:
|
|
tz.getDisplayName(TRUE, TimeZone::SHORT, Locale(locale), id);
|
|
break;
|
|
}
|
|
|
|
return id.extract(result, resultLength, *status);
|
|
}
|
|
|
|
U_CAPI UBool U_EXPORT2
|
|
ucal_inDaylightTime( const UCalendar* cal,
|
|
UErrorCode* status )
|
|
{
|
|
|
|
if(U_FAILURE(*status)) return (UBool) -1;
|
|
return ((Calendar*)cal)->inDaylightTime(*status);
|
|
}
|
|
|
|
U_CAPI int32_t U_EXPORT2
|
|
ucal_getAttribute( const UCalendar* cal,
|
|
UCalendarAttribute attr)
|
|
{
|
|
|
|
switch(attr) {
|
|
case UCAL_LENIENT:
|
|
return ((Calendar*)cal)->isLenient();
|
|
|
|
case UCAL_FIRST_DAY_OF_WEEK:
|
|
return ((Calendar*)cal)->getFirstDayOfWeek();
|
|
|
|
case UCAL_MINIMAL_DAYS_IN_FIRST_WEEK:
|
|
return ((Calendar*)cal)->getMinimalDaysInFirstWeek();
|
|
|
|
default:
|
|
break;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucal_setAttribute( UCalendar* cal,
|
|
UCalendarAttribute attr,
|
|
int32_t newValue)
|
|
{
|
|
|
|
switch(attr) {
|
|
case UCAL_LENIENT:
|
|
((Calendar*)cal)->setLenient((UBool)newValue);
|
|
break;
|
|
|
|
case UCAL_FIRST_DAY_OF_WEEK:
|
|
((Calendar*)cal)->setFirstDayOfWeek((Calendar::EDaysOfWeek)newValue);
|
|
break;
|
|
|
|
case UCAL_MINIMAL_DAYS_IN_FIRST_WEEK:
|
|
((Calendar*)cal)->setMinimalDaysInFirstWeek((uint8_t)newValue);
|
|
break;
|
|
}
|
|
}
|
|
|
|
U_CAPI const char* U_EXPORT2
|
|
ucal_getAvailable(int32_t index)
|
|
{
|
|
|
|
return uloc_getAvailable(index);
|
|
}
|
|
|
|
U_CAPI int32_t U_EXPORT2
|
|
ucal_countAvailable()
|
|
{
|
|
|
|
return uloc_countAvailable();
|
|
}
|
|
|
|
U_CAPI UDate U_EXPORT2
|
|
ucal_getMillis( const UCalendar* cal,
|
|
UErrorCode* status)
|
|
{
|
|
|
|
if(U_FAILURE(*status)) return (UDate) 0;
|
|
|
|
return ((Calendar*)cal)->getTime(*status);
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucal_setMillis( UCalendar* cal,
|
|
UDate dateTime,
|
|
UErrorCode* status )
|
|
{
|
|
if(U_FAILURE(*status)) return;
|
|
|
|
((Calendar*)cal)->setTime(dateTime, *status);
|
|
}
|
|
|
|
// TBD: why does this take an UErrorCode?
|
|
U_CAPI void U_EXPORT2
|
|
ucal_setDate( UCalendar* cal,
|
|
int32_t year,
|
|
int32_t month,
|
|
int32_t date,
|
|
UErrorCode *status)
|
|
{
|
|
|
|
if(U_FAILURE(*status)) return;
|
|
|
|
((Calendar*)cal)->set(year, month, date);
|
|
}
|
|
|
|
// TBD: why does this take an UErrorCode?
|
|
U_CAPI void U_EXPORT2
|
|
ucal_setDateTime( UCalendar* cal,
|
|
int32_t year,
|
|
int32_t month,
|
|
int32_t date,
|
|
int32_t hour,
|
|
int32_t minute,
|
|
int32_t second,
|
|
UErrorCode *status)
|
|
{
|
|
if(U_FAILURE(*status)) return;
|
|
|
|
((Calendar*)cal)->set(year, month, date, hour, minute, second);
|
|
}
|
|
|
|
U_CAPI UBool U_EXPORT2
|
|
ucal_equivalentTo( const UCalendar* cal1,
|
|
const UCalendar* cal2)
|
|
{
|
|
|
|
return ((Calendar*)cal1)->isEquivalentTo(*((Calendar*)cal2));
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucal_add( UCalendar* cal,
|
|
UCalendarDateFields field,
|
|
int32_t amount,
|
|
UErrorCode* status)
|
|
{
|
|
|
|
if(U_FAILURE(*status)) return;
|
|
|
|
((Calendar*)cal)->add((Calendar::EDateFields)field, amount, *status);
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucal_roll( UCalendar* cal,
|
|
UCalendarDateFields field,
|
|
int32_t amount,
|
|
UErrorCode* status)
|
|
{
|
|
|
|
if(U_FAILURE(*status)) return;
|
|
|
|
((Calendar*)cal)->roll((Calendar::EDateFields)field, amount, *status);
|
|
}
|
|
|
|
U_CAPI int32_t U_EXPORT2
|
|
ucal_get( const UCalendar* cal,
|
|
UCalendarDateFields field,
|
|
UErrorCode* status )
|
|
{
|
|
|
|
if(U_FAILURE(*status)) return -1;
|
|
|
|
return ((Calendar*)cal)->get((Calendar::EDateFields)field, *status);
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucal_set( UCalendar* cal,
|
|
UCalendarDateFields field,
|
|
int32_t value)
|
|
{
|
|
|
|
((Calendar*)cal)->set((Calendar::EDateFields)field, value);
|
|
}
|
|
|
|
U_CAPI UBool U_EXPORT2
|
|
ucal_isSet( const UCalendar* cal,
|
|
UCalendarDateFields field)
|
|
{
|
|
|
|
return ((Calendar*)cal)->isSet((Calendar::EDateFields)field);
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucal_clearField( UCalendar* cal,
|
|
UCalendarDateFields field)
|
|
{
|
|
|
|
((Calendar*)cal)->clear((Calendar::EDateFields)field);
|
|
}
|
|
|
|
U_CAPI void U_EXPORT2
|
|
ucal_clear(UCalendar* calendar)
|
|
{
|
|
|
|
((Calendar*)calendar)->clear();
|
|
}
|
|
|
|
U_CAPI int32_t U_EXPORT2
|
|
ucal_getLimit( const UCalendar* cal,
|
|
UCalendarDateFields field,
|
|
UCalendarLimitType type,
|
|
UErrorCode *status)
|
|
{
|
|
|
|
if(status==0 || U_FAILURE(*status)) {
|
|
return -1;
|
|
}
|
|
|
|
switch(type) {
|
|
case UCAL_MINIMUM:
|
|
return ((Calendar*)cal)->getMinimum((Calendar::EDateFields)field);
|
|
|
|
case UCAL_MAXIMUM:
|
|
return ((Calendar*)cal)->getMaximum((Calendar::EDateFields)field);
|
|
|
|
case UCAL_GREATEST_MINIMUM:
|
|
return ((Calendar*)cal)->getGreatestMinimum((Calendar::EDateFields)field);
|
|
|
|
case UCAL_LEAST_MAXIMUM:
|
|
return ((Calendar*)cal)->getLeastMaximum((Calendar::EDateFields)field);
|
|
|
|
case UCAL_ACTUAL_MINIMUM:
|
|
return ((Calendar*)cal)->getActualMinimum((Calendar::EDateFields)field,
|
|
*status);
|
|
|
|
case UCAL_ACTUAL_MAXIMUM:
|
|
return ((Calendar*)cal)->getActualMaximum((Calendar::EDateFields)field,
|
|
*status);
|
|
|
|
default:
|
|
break;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
#endif /* #if !UCONFIG_NO_FORMATTING */
|