/******************************************************************** * COPYRIGHT: * Copyright (c) 2007, International Business Machines Corporation and * others. All Rights Reserved. ********************************************************************/ #include "unicode/udbgutil.h" struct Field { int32_t prefix; /* how many characters to remove - i.e. UCHAR_ = 5 */ const char *str; int32_t num; }; #define DBG_ARRAY_COUNT(x) (sizeof(x)/sizeof(x[0])) // The fields #if !UCONFIG_NO_FORMATTING #include "unicode/ucal.h" // Calendar // 'UCAL_' = 5 #define FIELD_NAME_STR(y,x) { y, #x, x } #define LEN_UCAL 5 /* UCAL_ */ static const int32_t count_UCalendarDateFields = UCAL_FIELD_COUNT; static const Field names_UCalendarDateFields[] = { FIELD_NAME_STR( LEN_UCAL, UCAL_ERA ), FIELD_NAME_STR( LEN_UCAL, UCAL_YEAR ), FIELD_NAME_STR( LEN_UCAL, UCAL_MONTH ), FIELD_NAME_STR( LEN_UCAL, UCAL_WEEK_OF_YEAR ), FIELD_NAME_STR( LEN_UCAL, UCAL_WEEK_OF_MONTH ), FIELD_NAME_STR( LEN_UCAL, UCAL_DATE ), FIELD_NAME_STR( LEN_UCAL, UCAL_DAY_OF_YEAR ), FIELD_NAME_STR( LEN_UCAL, UCAL_DAY_OF_WEEK ), FIELD_NAME_STR( LEN_UCAL, UCAL_DAY_OF_WEEK_IN_MONTH ), FIELD_NAME_STR( LEN_UCAL, UCAL_AM_PM ), FIELD_NAME_STR( LEN_UCAL, UCAL_HOUR ), FIELD_NAME_STR( LEN_UCAL, UCAL_HOUR_OF_DAY ), FIELD_NAME_STR( LEN_UCAL, UCAL_MINUTE ), FIELD_NAME_STR( LEN_UCAL, UCAL_SECOND ), FIELD_NAME_STR( LEN_UCAL, UCAL_MILLISECOND ), FIELD_NAME_STR( LEN_UCAL, UCAL_ZONE_OFFSET ), FIELD_NAME_STR( LEN_UCAL, UCAL_DST_OFFSET ), FIELD_NAME_STR( LEN_UCAL, UCAL_YEAR_WOY ), FIELD_NAME_STR( LEN_UCAL, UCAL_DOW_LOCAL ), FIELD_NAME_STR( LEN_UCAL, UCAL_EXTENDED_YEAR ), FIELD_NAME_STR( LEN_UCAL, UCAL_JULIAN_DAY ), FIELD_NAME_STR( LEN_UCAL, UCAL_MILLISECONDS_IN_DAY ), }; static const int32_t count_UCalendarMonths = UCAL_UNDECIMBER+1; static const Field names_UCalendarMonths[] = { FIELD_NAME_STR( LEN_UCAL, UCAL_JANUARY ), FIELD_NAME_STR( LEN_UCAL, UCAL_FEBRUARY ), FIELD_NAME_STR( LEN_UCAL, UCAL_MARCH ), FIELD_NAME_STR( LEN_UCAL, UCAL_APRIL ), FIELD_NAME_STR( LEN_UCAL, UCAL_MAY ), FIELD_NAME_STR( LEN_UCAL, UCAL_JUNE ), FIELD_NAME_STR( LEN_UCAL, UCAL_JULY ), FIELD_NAME_STR( LEN_UCAL, UCAL_AUGUST ), FIELD_NAME_STR( LEN_UCAL, UCAL_SEPTEMBER ), FIELD_NAME_STR( LEN_UCAL, UCAL_OCTOBER ), FIELD_NAME_STR( LEN_UCAL, UCAL_NOVEMBER ), FIELD_NAME_STR( LEN_UCAL, UCAL_DECEMBER ), FIELD_NAME_STR( LEN_UCAL, UCAL_UNDECIMBER) }; #include "unicode/udat.h" #define LEN_UDAT 5 /* "UDAT_" */ static const int32_t count_UDateFormatStyle = UDAT_SHORT+1; static const Field names_UDateFormatStyle[] = { FIELD_NAME_STR( LEN_UDAT, UDAT_FULL ), FIELD_NAME_STR( LEN_UDAT, UDAT_LONG ), FIELD_NAME_STR( LEN_UDAT, UDAT_MEDIUM ), FIELD_NAME_STR( LEN_UDAT, UDAT_SHORT ), /* end regular */ /* * negative enums.. leave out for now. FIELD_NAME_STR( LEN_UDAT, UDAT_NONE ), FIELD_NAME_STR( LEN_UDAT, UDAT_IGNORE ), */ }; #define LEN_UDBG 5 /* "UDBG_" */ static const int32_t count_UDebugEnumType = UDBG_ENUM_COUNT; static const Field names_UDebugEnumType[] = { FIELD_NAME_STR( LEN_UDBG, UDBG_UDebugEnumType ), FIELD_NAME_STR( LEN_UDBG, UDBG_UCalendarDateFields ), FIELD_NAME_STR( LEN_UDBG, UDBG_UCalendarMonths ), FIELD_NAME_STR( LEN_UDBG, UDBG_UDateFormatStyle ), }; #define COUNT_CASE(x) case UDBG_##x: return (actual?count_##x:DBG_ARRAY_COUNT(names_##x)); #define COUNT_FAIL_CASE(x) case UDBG_##x: return -1; #define FIELD_CASE(x) case UDBG_##x: return names_##x; #define FIELD_FAIL_CASE(x) case UDBG_##x: return NULL; #else #define COUNT_CASE(x) #define COUNT_FAIL_CASE(x) #define FIELD_CASE(X) #define FIELD_FAIL_CASE(x) #endif // low level /** * @param type type of item * @param actual TRUE: for the actual enum's type (UCAL_FIELD_COUNT, etc), or FALSE for the string count */ static int32_t _udbg_enumCount(UDebugEnumType type, UBool actual) { switch(type) { COUNT_CASE(UDebugEnumType) COUNT_CASE(UCalendarDateFields) COUNT_CASE(UCalendarMonths) COUNT_CASE(UDateFormatStyle) // COUNT_FAIL_CASE(UNonExistentEnum) default: return -1; } } static const Field* _udbg_enumFields(UDebugEnumType type) { switch(type) { FIELD_CASE(UDebugEnumType) FIELD_CASE(UCalendarDateFields) FIELD_CASE(UCalendarMonths) FIELD_CASE(UDateFormatStyle) // FIELD_FAIL_CASE(UNonExistentEnum) default: return NULL; } } // implementation int32_t udbg_enumCount(UDebugEnumType type) { return _udbg_enumCount(type, FALSE); } int32_t udbg_enumExpectedCount(UDebugEnumType type) { return _udbg_enumCount(type, TRUE); } const char * udbg_enumName(UDebugEnumType type, int32_t field) { if(field<0 || field>=_udbg_enumCount(type,FALSE)) { // also will catch unsupported items return NULL; } else { const Field *fields = _udbg_enumFields(type); if(fields == NULL) { return NULL; } else { return fields[field].str + fields[field].prefix; } } } int32_t udbg_enumArrayValue(UDebugEnumType type, int32_t field) { if(field<0 || field>=_udbg_enumCount(type,FALSE)) { // also will catch unsupported items return -1; } else { const Field *fields = _udbg_enumFields(type); if(fields == NULL) { return -1; } else { return fields[field].num; } } }