/* ******************************************************************************** * Copyright (C) 1996-2001, International Business Machines * Corporation and others. All Rights Reserved. ******************************************************************************** * * File UCHAR.C * * Modification History: * * Date Name Description * 04/02/97 aliu Creation. * 4/15/99 Madhu Updated all the function definitions for C Implementation * 5/20/99 Madhu Added the function u_getVersion() * 8/19/1999 srl Upgraded scripts to Unicode3.0 * 11/11/1999 weiv added u_isalnum(), cleaned comments * 01/11/2000 helena Renamed u_getVersion to u_getUnicodeVersion. * 06/20/2000 helena OS/400 port changes; mostly typecast. ****************************************************************************** */ #include "unicode/utypes.h" #include "unicode/uchar.h" #include "unicode/udata.h" #include "unicode/uloc.h" #include "unicode/uiter.h" #include "umutex.h" #include "cmemory.h" #include "ucln_cmn.h" #include "utrie.h" #include "ustr_imp.h" #include "uprops.h" /* dynamically loaded Unicode character properties -------------------------- */ /* * loaded uprops.dat - * for a description of the file format, see icu/source/tools/genprops/store.c */ static const char DATA_NAME[] = "uprops"; static const char DATA_TYPE[] = "dat"; static UDataMemory *propsData=NULL; static uint8_t formatVersion[4]={ 0, 0, 0, 0 }; static UVersionInfo dataVersion={ 3, 0, 0, 0 }; static UTrie propsTrie={ 0 }, propsVectorsTrie={ 0 }; static const uint32_t *pData32=NULL, *props32Table=NULL, *exceptionsTable=NULL, *propsVectors=NULL; static const UChar *ucharsTable=NULL; static int32_t countPropsVectors=0, propsVectorsColumns=0; static int8_t havePropsData=0; /* index values loaded from uprops.dat */ static int32_t indexes[UPROPS_INDEX_COUNT]; /* if bit 15 is set, then the folding offset is in bits 14..0 of the 16-bit trie result */ static int32_t U_CALLCONV getFoldingPropsOffset(uint32_t data) { if(data&0x8000) { return (int32_t)(data&0x7fff); } else { return 0; } } static UBool isAcceptable(void *context, const char *type, const char *name, const UDataInfo *pInfo) { if( pInfo->size>=20 && pInfo->isBigEndian==U_IS_BIG_ENDIAN && pInfo->charsetFamily==U_CHARSET_FAMILY && pInfo->dataFormat[0]==0x55 && /* dataFormat="UPro" */ pInfo->dataFormat[1]==0x50 && pInfo->dataFormat[2]==0x72 && pInfo->dataFormat[3]==0x6f && pInfo->formatVersion[0]==3 && pInfo->formatVersion[2]==UTRIE_SHIFT && pInfo->formatVersion[3]==UTRIE_INDEX_SHIFT ) { uprv_memcpy(formatVersion, pInfo->formatVersion, 4); uprv_memcpy(dataVersion, pInfo->dataVersion, 4); return TRUE; } else { return FALSE; } } UBool uchar_cleanup() { if (propsData) { udata_close(propsData); propsData=NULL; } pData32=NULL; props32Table=NULL; exceptionsTable=NULL; ucharsTable=NULL; propsVectors=NULL; countPropsVectors=0; havePropsData=FALSE; return TRUE; } static int8_t loadPropsData() { /* load Unicode character properties data from file if necessary */ if(havePropsData==0) { UTrie trie={ 0 }, trie2={ 0 }; UErrorCode errorCode=U_ZERO_ERROR; UDataMemory *data; const uint32_t *p=NULL; int32_t length; /* open the data outside the mutex block */ data=udata_openChoice(NULL, DATA_TYPE, DATA_NAME, isAcceptable, NULL, &errorCode); if(U_FAILURE(errorCode)) { return havePropsData=-1; } p=(const uint32_t *)udata_getMemory(data); /* unserialize the trie; it is directly after the int32_t indexes[UPROPS_INDEX_COUNT] */ length=(int32_t)p[UPROPS_PROPS32_INDEX]*4; length=utrie_unserialize(&trie, (const uint8_t *)(p+UPROPS_INDEX_COUNT), length-64, &errorCode); if(U_FAILURE(errorCode)) { udata_close(data); return havePropsData=-1; } trie.getFoldingOffset=getFoldingPropsOffset; /* unserialize the properties vectors trie, if any */ if( p[UPROPS_ADDITIONAL_TRIE_INDEX]!=0 && p[UPROPS_ADDITIONAL_VECTORS_INDEX]!=0 ) { length=(int32_t)(p[UPROPS_ADDITIONAL_VECTORS_INDEX]-p[UPROPS_ADDITIONAL_TRIE_INDEX])*4; length=utrie_unserialize(&trie2, (const uint8_t *)(p+p[UPROPS_ADDITIONAL_TRIE_INDEX]), length, &errorCode); if(U_FAILURE(errorCode)) { uprv_memset(&trie2, 0, sizeof(trie2)); } else { trie2.getFoldingOffset=getFoldingPropsOffset; } } /* in the mutex block, set the data for this process */ umtx_lock(NULL); if(propsData==NULL) { propsData=data; data=NULL; pData32=p; p=NULL; uprv_memcpy(&propsTrie, &trie, sizeof(trie)); uprv_memcpy(&propsVectorsTrie, &trie2, sizeof(trie2)); } umtx_unlock(NULL); /* initialize some variables */ uprv_memcpy(indexes, pData32, sizeof(indexes)); props32Table=pData32+indexes[UPROPS_PROPS32_INDEX]; exceptionsTable=pData32+indexes[UPROPS_EXCEPTIONS_INDEX]; ucharsTable=(const UChar *)(pData32+indexes[UPROPS_EXCEPTIONS_TOP_INDEX]); /* additional properties */ if(indexes[UPROPS_ADDITIONAL_VECTORS_INDEX]!=0) { propsVectors=pData32+indexes[UPROPS_ADDITIONAL_VECTORS_INDEX]; countPropsVectors=indexes[UPROPS_ADDITIONAL_VECTORS_COLUMNS_INDEX]-indexes[UPROPS_ADDITIONAL_VECTORS_INDEX]; propsVectorsColumns=indexes[UPROPS_ADDITIONAL_VECTORS_COLUMNS_INDEX]; } havePropsData=1; /* if a different thread set it first, then close the extra data */ if(data!=NULL) { udata_close(data); /* NULL if it was set correctly */ } } return havePropsData; } /* constants and macros for access to the data */ enum { EXC_UPPERCASE, EXC_LOWERCASE, EXC_TITLECASE, EXC_UNUSED, EXC_NUMERIC_VALUE, EXC_DENOMINATOR_VALUE, EXC_MIRROR_MAPPING, EXC_SPECIAL_CASING, EXC_CASE_FOLDING }; /* getting a uint32_t properties word from the data */ #define HAVE_DATA (havePropsData>0 || (havePropsData==0 && loadPropsData()>0)) #define VALIDATE(c) (((uint32_t)(c))<=0x10ffff && HAVE_DATA) #define GET_PROPS_UNSAFE(c, result) \ UTRIE_GET16(&propsTrie, c, result); \ (result)=props32Table[(result)] #define GET_PROPS(c, result) \ if(HAVE_DATA) { \ GET_PROPS_UNSAFE(c, result); \ } else { \ (result)=0; \ } #define PROPS_VALUE_IS_EXCEPTION(props) ((props)&UPROPS_EXCEPTION_BIT) #define GET_CATEGORY(props) ((props)&0x1f) #define GET_NUMERIC_TYPE(props) (((props)>>UPROPS_NUMERIC_TYPE_SHIFT)&7) /* ### TODO: 2 or 3 bits for numericType?! */ #define GET_UNSIGNED_VALUE(props) ((props)>>UPROPS_VALUE_SHIFT) #define GET_SIGNED_VALUE(props) ((int32_t)(props)>>UPROPS_VALUE_SHIFT) #define GET_EXCEPTIONS(props) (exceptionsTable+GET_UNSIGNED_VALUE(props)) /* finding an exception value */ #define HAVE_EXCEPTION_VALUE(flags, index) ((flags)&(1UL<<(index))) /* number of bits in an 8-bit integer value */ #define EXC_GROUP 8 static const uint8_t flagsOffset[256]={ 0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 4, 5, 5, 6, 5, 6, 6, 7, 5, 6, 6, 7, 6, 7, 7, 8 }; #define ADD_EXCEPTION_OFFSET(flags, index, offset) { \ if((index)>=EXC_GROUP) { \ (offset)+=flagsOffset[(flags)&((1<>=EXC_GROUP; \ (index)-=EXC_GROUP; \ } \ (offset)+=flagsOffset[(flags)&((1<<(index))-1)]; \ } U_CFUNC UBool uprv_haveProperties() { return (UBool)HAVE_DATA; } /* API functions ------------------------------------------------------------ */ /* Gets the Unicode character's general category.*/ U_CAPI int8_t U_EXPORT2 u_charType(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (int8_t)GET_CATEGORY(props); } /* Enumerate all code points with their general categories. */ struct _EnumTypeCallback { UCharEnumTypeRange *enumRange; const void *context; }; static uint32_t U_CALLCONV _enumTypeValue(const void *context, uint32_t value) { /* access the general category from the 32-bit properties, and those from the 16-bit trie value */ return GET_CATEGORY(props32Table[value]); } static UBool U_CALLCONV _enumTypeRange(const void *context, UChar32 start, UChar32 limit, uint32_t value) { /* just cast the value to UCharCategory */ return ((struct _EnumTypeCallback *)context)-> enumRange(((struct _EnumTypeCallback *)context)->context, start, limit, (UCharCategory)value); } U_CAPI void U_EXPORT2 u_enumCharTypes(UCharEnumTypeRange *enumRange, const void *context) { struct _EnumTypeCallback callback; if(enumRange==NULL || !HAVE_DATA) { return; } callback.enumRange=enumRange; callback.context=context; utrie_enum(&propsTrie, _enumTypeValue, _enumTypeRange, &callback); } /* Checks if ch is a lower case letter.*/ U_CAPI UBool U_EXPORT2 u_islower(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); } /* Checks if ch is an upper case letter.*/ U_CAPI UBool U_EXPORT2 u_isupper(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); } /* Checks if ch is a title case letter; usually upper case letters.*/ U_CAPI UBool U_EXPORT2 u_istitle(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)(GET_CATEGORY(props)==U_TITLECASE_LETTER); } /* Checks if ch is a decimal digit. */ U_CAPI UBool U_EXPORT2 u_isdigit(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)(((1UL<=0x09 && c <= 0x0d) || (c>=0x1c && c <=0x1f) || c==0x85) /* Checks if the Unicode character is a space character.*/ U_CAPI UBool U_EXPORT2 u_isspace(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)((((1UL<>UPROPS_BIDI_SHIFT)&0x1f); } else { return U_BOUNDARY_NEUTRAL; } } U_CAPI UBool U_EXPORT2 u_isMirrored(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)(props&(1UL<=0x61 && ch<=0x7A) { value=(int8_t)(ch-0x57); /* ch - 'a' + 10 */ } else if(ch>=0x41 && ch<=0x5A) { value=(int8_t)(ch-0x37); /* ch - 'A' + 10 */ } } } else { value=-1; /* invalid radix */ } return (int8_t)((value(36-2) || (uint32_t)digit>=(uint32_t)radix) { return 0; } else if(digit<10) { return (UChar32)(0x30+digit); } else { return (UChar32)((0x61-10)+digit); } } /* static data tables ------------------------------------------------------- */ static const UChar cellWidthRanges[] = { 0x0000, /* general scripts area*/ 0x1100, /* combining Hangul choseong*/ 0x1160, /* combining Hangul jungseong and jongseong*/ 0x1e00, /* Latin Extended Additional, Greek Extended*/ 0x2000, /* symbols and punctuation*/ 0x3000, /* CJK phonetics & symbols, CJK ideographs, Hangul syllables*/ 0xd800, /* surrogates, private use*/ 0xf900, /* CJK compatibility ideographs*/ 0xfb00, /* alphabetic presentation forms, Arabic presentations forms A, combining half marks*/ 0xfe30, /* CJK compatibility forms, small form variants*/ 0xfe70, /* Arabic presentation forms B*/ 0xff00, /* fullwidth ASCII*/ 0xff60, /* halfwidth, CJK punctuation, Katakana, Hangul Jamo*/ 0xffe0, /* fullwidth punctuation and currency signs*/ 0xffe8, /* halfwidth forms, arrows, and shapes*/ 0xfff0 /* specials*/ }; static const UChar cellWidthValues[] = { U_HALF_WIDTH, /* general scripts area*/ U_FULL_WIDTH, /* combining Hangul choseong*/ U_ZERO_WIDTH, /* combining Hangul jungseong and jongseong*/ U_HALF_WIDTH, /* Latin extended aAdditional, Greek extended*/ U_NEUTRAL_WIDTH, /* symbols and punctuation*/ U_FULL_WIDTH, /* CJK phonetics & symbols, CJK ideographs, Hangul syllables*/ U_NEUTRAL_WIDTH, /* surrogates, private use*/ U_FULL_WIDTH, /* CJK compatibility ideographs*/ U_HALF_WIDTH, /* alphabetic presentation forms, Arabic presentations forms A, combining half marks*/ U_FULL_WIDTH, /* CJK compatibility forms, small form variants*/ U_HALF_WIDTH, /* Arabic presentation forms B*/ U_FULL_WIDTH, /* fullwidth ASCII*/ U_HALF_WIDTH, /* halfwidth CJK punctuation, Katakana, Hangul Jamo*/ U_FULL_WIDTH, /* fullwidth punctuation and currency signs*/ U_HALF_WIDTH, /* halfwidth forms, arrows, and shapes*/ U_ZERO_WIDTH /* specials*/ }; #define NUM_CELL_WIDTH_VALUES (sizeof(cellWidthValues)/sizeof(cellWidthValues[0])) /* Gets table cell width of the Unicode character.*/ U_CAPI uint16_t U_EXPORT2 u_charCellWidth(UChar32 ch) { int16_t i; int32_t type = u_charType(ch); /* surrogate support is still incomplete */ if((uint32_t)ch>0xffff) { return U_ZERO_WIDTH; } /* these Unicode character types are scattered throughout the Unicode range, so special-case for them*/ switch (type) { case U_UNASSIGNED: case U_NON_SPACING_MARK: case U_ENCLOSING_MARK: case U_LINE_SEPARATOR: case U_PARAGRAPH_SEPARATOR: case U_CONTROL_CHAR: case U_FORMAT_CHAR: return U_ZERO_WIDTH; default: /* for all remaining characters, find out which Unicode range they belong to using the table above, and then look up the appropriate return value in that table*/ for (i = 0; i < (int16_t)NUM_CELL_WIDTH_VALUES; ++i) { if (ch < cellWidthRanges[i]) { break; } } --i; return cellWidthValues[i]; } } U_CAPI void U_EXPORT2 u_getUnicodeVersion(UVersionInfo versionArray) { if(versionArray!=NULL) { if(HAVE_DATA) { uprv_memcpy(versionArray, dataVersion, U_MAX_VERSION_LENGTH); } else { uprv_memset(versionArray, 0, U_MAX_VERSION_LENGTH); } } } U_CFUNC uint32_t u_getUnicodeProperties(UChar32 c, int32_t column) { uint16_t vecIndex; if( !HAVE_DATA || countPropsVectors==0 || (uint32_t)c>0x10ffff || column<0 || column>=propsVectorsColumns ) { return 0; } UTRIE_GET16(&propsVectorsTrie, c, vecIndex); return propsVectors[vecIndex+column]; } /* string casing ------------------------------------------------------------ */ /* * These internal string case mapping functions are here instead of ustring.c * because we need efficient access to the character properties. * * This section contains helper functions that check for conditions * in the input text surrounding the current code point * according to SpecialCasing.txt. * * Starting with ICU 2.1, the "surrounding text" is passed in as an instance of * UCharIterator to allow the core case mapping functions to be used * inside transliterators (using Replaceable instead of UnicodeString/UChar *) * etc. * * Each helper function gets the index * - after the current code point if it looks at following text * - before the current code point if it looks at preceding text */ enum { LOC_ROOT, LOC_TURKISH, LOC_LITHUANIAN }; static int32_t getCaseLocale(const char *locale) { char lang[32]; UErrorCode errorCode; int32_t length; errorCode=U_ZERO_ERROR; length=uloc_getLanguage(locale, lang, sizeof(lang), &errorCode); if(U_FAILURE(errorCode) || length!=2) { return LOC_ROOT; } if( (lang[0]=='t' && lang[1]=='r') || (lang[0]=='a' && lang[1]=='z') ) { return LOC_TURKISH; } else if(lang[0]=='l' && lang[1]=='t') { return LOC_LITHUANIAN; } else { return LOC_ROOT; } } /* Is case-ignorable? In Unicode 3.1.1, is {HYPHEN, SOFT HYPHEN, {Mn}} ? (Expected to change!) */ static U_INLINE UBool isCaseIgnorable(UChar32 c, uint32_t category) { return (UBool)(category==U_NON_SPACING_MARK || c==0x2010 || c==0xad); } /* Is followed by {case-ignorable}* {Ll, Lu, Lt} ? */ static UBool isFollowedByCasedLetter(UCharIterator *iter, int32_t index) { uint32_t props, category; int32_t c; if(iter==NULL) { return FALSE; } iter->move(iter, index, UITER_START); for(;;) { c=uiter_next32(iter); if(c<0) { break; } GET_PROPS_UNSAFE(c, props); category=GET_CATEGORY(props); if((1UL<move(iter, index, UITER_START); for(;;) { c=uiter_previous32(iter); if(c<0) { break; } GET_PROPS_UNSAFE(c, props); category=GET_CATEGORY(props); if((1UL<move(iter, index, UITER_START); for(;;) { c=uiter_previous32(iter); if(c<0) { break; } if(c==0x69 || c==0x6a || c==0x12f || c==0x1e2d || c==0x1ecb) { return TRUE; /* preceded by TYPE_i */ } cc=u_getCombiningClass(c); if(cc==0 || cc==230) { return FALSE; /* preceded by different base character (not TYPE_i), or intervening cc==230 */ } } return FALSE; /* not preceded by TYPE_i */ } /* Is preceded by base character 'I' with no intervening cc=230 ? */ static UBool isAfter_I(UCharIterator *iter, int32_t index) { int32_t c; uint8_t cc; if(iter==NULL) { return FALSE; } iter->move(iter, index, UITER_START); for(;;) { c=uiter_previous32(iter); if(c<0) { break; } if(c==0x49) { return TRUE; /* preceded by I */ } cc=u_getCombiningClass(c); if(cc==0 || cc==230) { return FALSE; /* preceded by different base character (not I), or intervening cc==230 */ } } return FALSE; /* not preceded by I */ } /* Is followed by one or more cc==230 ? */ static UBool isFollowedByMoreAbove(UCharIterator *iter, int32_t index) { int32_t c; uint8_t cc; if(iter==NULL) { return FALSE; } iter->move(iter, index, UITER_START); for(;;) { c=uiter_next32(iter); if(c<0) { break; } cc=u_getCombiningClass(c); if(cc==230) { return TRUE; /* at least one cc==230 following */ } if(cc==0) { return FALSE; /* next base character, no more cc==230 following */ } } return FALSE; /* no more cc==230 following */ } /* Is followed by a dot above (without cc==230 in between) ? */ static UBool isFollowedByDotAbove(UCharIterator *iter, int32_t index) { int32_t c; uint8_t cc; if(iter==NULL) { return FALSE; } iter->move(iter, index, UITER_START); for(;;) { c=uiter_next32(iter); if(c<0) { break; } if(c==0x307) { return TRUE; } cc=u_getCombiningClass(c); if(cc==0 || cc==230) { return FALSE; /* next base character or cc==230 in between */ } } return FALSE; /* no dot above following */ } /* lowercasing -------------------------------------------------------------- */ /* internal, see ustr_imp.h */ U_CAPI int32_t U_EXPORT2 u_internalToLower(UChar32 c, UCharIterator *iter, UChar *dest, int32_t destCapacity, const char *locale) { UChar buffer[8]; uint32_t props; UChar32 result; int32_t i, length; result=c; GET_PROPS(c, props); if(!PROPS_VALUE_IS_EXCEPTION(props)) { if((1UL<getIndex(iter, UITER_CURRENT) : 0; if( loc==LOC_LITHUANIAN && /* base characters, find accents above */ (((c==0x49 || c==0x4a || c==0x12e) && isFollowedByMoreAbove(iter, srcIndex)) || /* precomposed with accent above, no need to find one */ (c==0xcc || c==0xcd || c==0x128)) ) { /* lithuanian: add a dot above if there are more accents above (to always have the dot) */ u=buffer; buffer[1]=0x307; switch(c) { case 0x49: /* LATIN CAPITAL LETTER I */ buffer[0]=0x69; length=2; break; case 0x4a: /* LATIN CAPITAL LETTER J */ buffer[0]=0x6a; length=2; break; case 0x12e: /* LATIN CAPITAL LETTER I WITH OGONEK */ buffer[0]=0x12f; length=2; break; case 0xcc: /* LATIN CAPITAL LETTER I WITH GRAVE */ buffer[0]=0x69; buffer[2]=0x300; length=3; break; case 0xcd: /* LATIN CAPITAL LETTER I WITH ACUTE */ buffer[0]=0x69; buffer[2]=0x301; length=3; break; case 0x128: /* LATIN CAPITAL LETTER I WITH TILDE */ buffer[0]=0x69; buffer[2]=0x303; length=3; break; default: return 0; /* will not occur */ } /* * Note: This handling of I and of dot above differs from Unicode 3.1.1's SpecialCasing-5.txt * because the AFTER_i condition there does not work for decomposed I+dot above. * This fix is being proposed to the UTC. */ } else if(loc==LOC_TURKISH && c==0x49 && !isFollowedByDotAbove(iter, srcIndex)) { /* turkish: I maps to dotless i */ result=0x131; goto single; /* other languages (or turkish with decomposed I+dot above): I maps to i */ } else if(c==0x307 && isAfter_I(iter, srcIndex-1) && !isFollowedByMoreAbove(iter, srcIndex)) { /* decomposed I+dot above becomes i (see handling of U+0049 for turkish) and removes the dot above */ return 0; /* remove the dot (continue without output) */ } else if( c==0x3a3 && !isFollowedByCasedLetter(iter, srcIndex) && isPrecededByCasedLetter(iter, srcIndex-1) ) { /* greek capital sigma maps depending on surrounding cased letters (see SpecialCasing-5.txt) */ result=0x3c2; /* greek small final sigma */ goto single; } else { /* no known conditional special case mapping, use a normal mapping */ pe=GET_EXCEPTIONS(props); /* restore the initial exception pointer */ firstExceptionValue=*pe; goto notSpecial; } } else { /* get the special case mapping string from the data file */ u=ucharsTable+(specialCasing&0xffff); length=(int32_t)(*u++)&0x1f; } /* copy the result string */ i=0; while(idestCapacity) { *pErrorCode=U_BUFFER_OVERFLOW_ERROR; } return destIndex; } /* uppercasing -------------------------------------------------------------- */ /* internal */ static int32_t u_internalToUpperOrTitle(UChar32 c, UCharIterator *iter, UChar *dest, int32_t destCapacity, const char *locale, UBool upperNotTitle) { uint32_t props; UChar32 result; int32_t i, length; result=c; GET_PROPS(c, props); if(!PROPS_VALUE_IS_EXCEPTION(props)) { if(GET_CATEGORY(props)==U_LOWERCASE_LETTER) { result=c-GET_SIGNED_VALUE(props); } } else { const UChar *u; const uint32_t *pe=GET_EXCEPTIONS(props); uint32_t firstExceptionValue=*pe, specialCasing; if(HAVE_EXCEPTION_VALUE(firstExceptionValue, EXC_SPECIAL_CASING)) { i=EXC_SPECIAL_CASING; ++pe; ADD_EXCEPTION_OFFSET(firstExceptionValue, i, pe); specialCasing=*pe; /* fill u and length with the case mapping result string */ if(specialCasing&0x80000000) { /* use hardcoded conditions and mappings */ int32_t loc=getCaseLocale(locale), srcIndex= iter!=NULL ? iter->getIndex(iter, UITER_CURRENT) : 0; if(loc==LOC_TURKISH && c==0x69) { /* turkish: i maps to dotted I */ result=0x130; goto single; } else if(loc==LOC_LITHUANIAN && c==0x307 && isAfter_i(iter, srcIndex-1)) { /* lithuanian: remove DOT ABOVE after U+0069 "i" with upper or titlecase */ return 0; /* remove the dot (continue without output) */ } else { /* no known conditional special case mapping, use a normal mapping */ pe=GET_EXCEPTIONS(props); /* restore the initial exception pointer */ firstExceptionValue=*pe; goto notSpecial; } } else { /* get the special case mapping string from the data file */ u=ucharsTable+(specialCasing&0xffff); length=(int32_t)*u++; /* skip the lowercase result string */ u+=length&0x1f; if(upperNotTitle) { length=(length>>5)&0x1f; } else { /* skip the uppercase result strings too */ u+=(length>>5)&0x1f; length=(length>>10)&0x1f; } } /* copy the result string */ i=0; while(idestCapacity) { *pErrorCode=U_BUFFER_OVERFLOW_ERROR; } return destIndex; } /* titlecasing -------------------------------------------------------------- */ /* internal, see ustr_imp.h */ U_CAPI int32_t U_EXPORT2 u_internalToTitle(UChar32 c, UCharIterator *iter, UChar *dest, int32_t destCapacity, const char *locale) { return u_internalToUpperOrTitle(c, iter, dest, destCapacity, locale, FALSE); } /* case folding ------------------------------------------------------------- */ /* * Case folding is similar to lowercasing. * The result may be a simple mapping, i.e., a single code point, or * a full mapping, i.e., a string. * If the case folding for a code point is the same as its simple (1:1) lowercase mapping, * then only the lowercase mapping is stored. */ /* return the simple case folding mapping for c */ U_CAPI UChar32 U_EXPORT2 u_foldCase(UChar32 c, uint32_t options) { uint32_t props; GET_PROPS(c, props); if(!PROPS_VALUE_IS_EXCEPTION(props)) { if((1UL<>24; /* copy the result string */ i=0; while(idestCapacity) { *pErrorCode=U_BUFFER_OVERFLOW_ERROR; } return destIndex; }