1999-08-16 21:50:52 +00:00
|
|
|
/*
|
|
|
|
********************************************************************************
|
2006-02-07 22:15:47 +00:00
|
|
|
* Copyright (C) 1996-2006, International Business Machines
|
2000-01-11 23:20:26 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
1999-08-16 21:50:52 +00:00
|
|
|
********************************************************************************
|
|
|
|
*
|
2000-06-20 23:42:20 +00:00
|
|
|
* File UCHAR.C
|
1999-08-16 21:50:52 +00:00
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
*
|
|
|
|
* Date Name Description
|
|
|
|
* 04/02/97 aliu Creation.
|
2000-01-11 23:20:26 +00:00
|
|
|
* 4/15/99 Madhu Updated all the function definitions for C Implementation
|
2001-03-21 20:44:20 +00:00
|
|
|
* 5/20/99 Madhu Added the function u_getVersion()
|
2000-01-11 23:20:26 +00:00
|
|
|
* 8/19/1999 srl Upgraded scripts to Unicode3.0
|
1999-11-19 18:48:16 +00:00
|
|
|
* 11/11/1999 weiv added u_isalnum(), cleaned comments
|
2000-01-11 23:20:26 +00:00
|
|
|
* 01/11/2000 helena Renamed u_getVersion to u_getUnicodeVersion.
|
2000-06-20 23:42:20 +00:00
|
|
|
* 06/20/2000 helena OS/400 port changes; mostly typecast.
|
2001-03-21 20:44:20 +00:00
|
|
|
******************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*/
|
2001-01-31 18:20:26 +00:00
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#include "unicode/uchar.h"
|
2004-09-11 15:04:40 +00:00
|
|
|
#include "unicode/uscript.h"
|
2000-04-24 22:44:06 +00:00
|
|
|
#include "unicode/udata.h"
|
2001-01-31 18:20:26 +00:00
|
|
|
#include "umutex.h"
|
1999-10-12 00:07:24 +00:00
|
|
|
#include "cmemory.h"
|
2001-08-31 02:14:47 +00:00
|
|
|
#include "ucln_cmn.h"
|
2001-12-06 01:23:47 +00:00
|
|
|
#include "utrie.h"
|
2003-08-12 12:23:56 +00:00
|
|
|
#include "udataswp.h"
|
2004-09-11 15:04:40 +00:00
|
|
|
#include "unormimp.h" /* JAMO_L_BASE etc. */
|
2002-02-25 22:40:32 +00:00
|
|
|
#include "uprops.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2003-03-01 00:13:40 +00:00
|
|
|
#define LENGTHOF(array) (int32_t)(sizeof(array)/sizeof((array)[0]))
|
|
|
|
|
2000-04-24 22:44:06 +00:00
|
|
|
/* dynamically loaded Unicode character properties -------------------------- */
|
|
|
|
|
2005-04-30 03:06:58 +00:00
|
|
|
#define UCHAR_HARDCODE_DATA 1
|
|
|
|
|
|
|
|
#if UCHAR_HARDCODE_DATA
|
|
|
|
|
|
|
|
/* uchar_props_data.c is machine-generated by genprops --csource */
|
|
|
|
#include "uchar_props_data.c"
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2000-04-24 22:44:06 +00:00
|
|
|
/*
|
|
|
|
* loaded uprops.dat -
|
|
|
|
* for a description of the file format, see icu/source/tools/genprops/store.c
|
|
|
|
*/
|
2002-01-21 21:48:25 +00:00
|
|
|
static const char DATA_NAME[] = "uprops";
|
2002-07-17 21:02:09 +00:00
|
|
|
static const char DATA_TYPE[] = "icu";
|
2000-04-24 22:44:06 +00:00
|
|
|
|
|
|
|
static UDataMemory *propsData=NULL;
|
2002-11-08 02:22:15 +00:00
|
|
|
static UErrorCode dataErrorCode=U_ZERO_ERROR;
|
2000-04-24 22:44:06 +00:00
|
|
|
|
|
|
|
static uint8_t formatVersion[4]={ 0, 0, 0, 0 };
|
2003-05-28 00:33:04 +00:00
|
|
|
static UVersionInfo dataVersion={ 0, 0, 0, 0 };
|
2000-04-24 22:44:06 +00:00
|
|
|
|
2002-02-25 22:40:32 +00:00
|
|
|
static UTrie propsTrie={ 0 }, propsVectorsTrie={ 0 };
|
2005-01-02 00:22:48 +00:00
|
|
|
static const uint32_t *pData32=NULL, *propsVectors=NULL;
|
2002-02-25 22:40:32 +00:00
|
|
|
static int32_t countPropsVectors=0, propsVectorsColumns=0;
|
2001-02-14 00:47:36 +00:00
|
|
|
|
2003-08-22 23:26:53 +00:00
|
|
|
static int8_t havePropsData=0; /* == 0 -> Data has not been loaded.
|
|
|
|
* < 0 -> Error occured attempting to load data.
|
|
|
|
* > 0 -> Data has been successfully loaded.
|
|
|
|
*/
|
2000-04-24 22:44:06 +00:00
|
|
|
|
|
|
|
/* index values loaded from uprops.dat */
|
2002-02-25 22:40:32 +00:00
|
|
|
static int32_t indexes[UPROPS_INDEX_COUNT];
|
2000-04-24 22:44:06 +00:00
|
|
|
|
2002-07-23 23:01:08 +00:00
|
|
|
static UBool U_CALLCONV
|
2000-04-24 22:44:06 +00:00
|
|
|
isAcceptable(void *context,
|
|
|
|
const char *type, const char *name,
|
2000-05-03 23:15:02 +00:00
|
|
|
const UDataInfo *pInfo) {
|
2000-04-24 22:44:06 +00:00
|
|
|
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 &&
|
2005-01-02 00:22:48 +00:00
|
|
|
pInfo->formatVersion[0]==4 &&
|
2001-12-06 01:23:47 +00:00
|
|
|
pInfo->formatVersion[2]==UTRIE_SHIFT &&
|
|
|
|
pInfo->formatVersion[3]==UTRIE_INDEX_SHIFT
|
2000-04-24 22:44:06 +00:00
|
|
|
) {
|
|
|
|
uprv_memcpy(formatVersion, pInfo->formatVersion, 4);
|
|
|
|
uprv_memcpy(dataVersion, pInfo->dataVersion, 4);
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-06 23:10:53 +00:00
|
|
|
static UBool U_CALLCONV uchar_cleanup(void)
|
2001-08-31 02:14:47 +00:00
|
|
|
{
|
|
|
|
if (propsData) {
|
|
|
|
udata_close(propsData);
|
2001-12-06 01:23:47 +00:00
|
|
|
propsData=NULL;
|
2001-08-31 02:14:47 +00:00
|
|
|
}
|
2001-12-06 01:23:47 +00:00
|
|
|
pData32=NULL;
|
2002-02-25 22:40:32 +00:00
|
|
|
propsVectors=NULL;
|
|
|
|
countPropsVectors=0;
|
2005-04-30 03:06:58 +00:00
|
|
|
uprv_memset(dataVersion, 0, U_MAX_VERSION_LENGTH);
|
2002-11-08 02:22:15 +00:00
|
|
|
dataErrorCode=U_ZERO_ERROR;
|
2003-08-22 23:26:53 +00:00
|
|
|
havePropsData=0;
|
2003-02-15 00:22:31 +00:00
|
|
|
|
2001-08-31 02:14:47 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2004-09-06 15:57:11 +00:00
|
|
|
struct UCharProps {
|
|
|
|
UDataMemory *propsData;
|
|
|
|
UTrie propsTrie, propsVectorsTrie;
|
|
|
|
const uint32_t *pData32;
|
|
|
|
};
|
|
|
|
typedef struct UCharProps UCharProps;
|
|
|
|
|
|
|
|
/* open uprops.icu */
|
|
|
|
static void
|
|
|
|
_openProps(UCharProps *ucp, UErrorCode *pErrorCode) {
|
|
|
|
const uint32_t *p;
|
|
|
|
int32_t length;
|
|
|
|
|
|
|
|
ucp->propsData=udata_openChoice(NULL, DATA_TYPE, DATA_NAME, isAcceptable, NULL, pErrorCode);
|
|
|
|
if(U_FAILURE(*pErrorCode)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ucp->pData32=p=(const uint32_t *)udata_getMemory(ucp->propsData);
|
|
|
|
|
|
|
|
/* 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(&ucp->propsTrie, (const uint8_t *)(p+UPROPS_INDEX_COUNT), length-64, pErrorCode);
|
|
|
|
if(U_FAILURE(*pErrorCode)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-01-02 00:22:48 +00:00
|
|
|
/* unserialize the properties vectors trie */
|
|
|
|
length=(int32_t)(p[UPROPS_ADDITIONAL_VECTORS_INDEX]-p[UPROPS_ADDITIONAL_TRIE_INDEX])*4;
|
2005-01-04 00:36:56 +00:00
|
|
|
if(length>0) {
|
|
|
|
length=utrie_unserialize(&ucp->propsVectorsTrie, (const uint8_t *)(p+p[UPROPS_ADDITIONAL_TRIE_INDEX]), length, pErrorCode);
|
|
|
|
}
|
|
|
|
if(length<=0 || U_FAILURE(*pErrorCode)) {
|
|
|
|
/*
|
|
|
|
* length==0:
|
|
|
|
* Allow the properties vectors trie to be missing -
|
|
|
|
* also requires propsVectorsColumns=indexes[UPROPS_ADDITIONAL_VECTORS_COLUMNS_INDEX]
|
|
|
|
* to be zero so that this trie is never accessed.
|
|
|
|
*/
|
2005-01-02 00:22:48 +00:00
|
|
|
uprv_memset(&ucp->propsVectorsTrie, 0, sizeof(ucp->propsVectorsTrie));
|
2004-09-06 15:57:11 +00:00
|
|
|
}
|
|
|
|
}
|
2003-08-22 23:26:53 +00:00
|
|
|
|
2005-04-30 03:06:58 +00:00
|
|
|
#endif
|
|
|
|
|
2006-02-07 22:15:47 +00:00
|
|
|
#if !UCHAR_HARDCODE_DATA
|
|
|
|
static int8_t
|
2004-09-06 15:57:11 +00:00
|
|
|
uprv_loadPropsData(UErrorCode *pErrorCode) {
|
2000-04-24 22:44:06 +00:00
|
|
|
/* load Unicode character properties data from file if necessary */
|
2003-05-06 23:56:34 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This lazy intialization with double-checked locking (without mutex protection for
|
|
|
|
* haveNormData==0) is transiently unsafe under certain circumstances.
|
|
|
|
* Check the readme and use u_init() if necessary.
|
|
|
|
*/
|
2000-04-24 22:44:06 +00:00
|
|
|
if(havePropsData==0) {
|
2004-09-06 15:57:11 +00:00
|
|
|
UCharProps ucp={ NULL };
|
2000-04-24 22:44:06 +00:00
|
|
|
|
2004-09-06 15:57:11 +00:00
|
|
|
if(U_FAILURE(*pErrorCode)) {
|
|
|
|
return havePropsData;
|
2000-04-24 22:44:06 +00:00
|
|
|
}
|
|
|
|
|
2004-09-06 15:57:11 +00:00
|
|
|
/* open the data outside the mutex block */
|
|
|
|
_openProps(&ucp, pErrorCode);
|
|
|
|
|
|
|
|
if(U_SUCCESS(*pErrorCode)) {
|
|
|
|
/* in the mutex block, set the data for this process */
|
|
|
|
umtx_lock(NULL);
|
|
|
|
if(propsData==NULL) {
|
|
|
|
propsData=ucp.propsData;
|
|
|
|
ucp.propsData=NULL;
|
|
|
|
pData32=ucp.pData32;
|
|
|
|
ucp.pData32=NULL;
|
|
|
|
uprv_memcpy(&propsTrie, &ucp.propsTrie, sizeof(propsTrie));
|
|
|
|
uprv_memcpy(&propsVectorsTrie, &ucp.propsVectorsTrie, sizeof(propsVectorsTrie));
|
2002-02-25 22:40:32 +00:00
|
|
|
}
|
|
|
|
|
2004-09-06 15:57:11 +00:00
|
|
|
/* initialize some variables */
|
|
|
|
uprv_memcpy(indexes, pData32, sizeof(indexes));
|
|
|
|
|
|
|
|
/* additional properties */
|
|
|
|
if(indexes[UPROPS_ADDITIONAL_VECTORS_INDEX]!=0) {
|
|
|
|
propsVectors=pData32+indexes[UPROPS_ADDITIONAL_VECTORS_INDEX];
|
|
|
|
countPropsVectors=indexes[UPROPS_RESERVED_INDEX]-indexes[UPROPS_ADDITIONAL_VECTORS_INDEX];
|
|
|
|
propsVectorsColumns=indexes[UPROPS_ADDITIONAL_VECTORS_COLUMNS_INDEX];
|
|
|
|
}
|
2000-04-24 22:44:06 +00:00
|
|
|
|
2004-09-06 15:57:11 +00:00
|
|
|
havePropsData=1;
|
|
|
|
umtx_unlock(NULL);
|
|
|
|
} else {
|
|
|
|
dataErrorCode=*pErrorCode;
|
|
|
|
havePropsData=-1;
|
2002-02-25 22:40:32 +00:00
|
|
|
}
|
2004-10-15 06:05:51 +00:00
|
|
|
ucln_common_registerCleanup(UCLN_COMMON_UCHAR, uchar_cleanup);
|
2002-02-25 22:40:32 +00:00
|
|
|
|
2000-04-24 22:44:06 +00:00
|
|
|
/* if a different thread set it first, then close the extra data */
|
2004-09-06 15:57:11 +00:00
|
|
|
udata_close(ucp.propsData); /* NULL if it was set correctly */
|
2000-04-24 22:44:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return havePropsData;
|
|
|
|
}
|
|
|
|
|
2003-08-22 23:26:53 +00:00
|
|
|
static int8_t
|
|
|
|
loadPropsData(void) {
|
|
|
|
UErrorCode errorCode = U_ZERO_ERROR;
|
|
|
|
int8_t retVal = uprv_loadPropsData(&errorCode);
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
2005-05-05 17:47:39 +00:00
|
|
|
#endif
|
|
|
|
|
2003-08-12 12:23:56 +00:00
|
|
|
/* constants and macros for access to the data ------------------------------ */
|
2000-04-24 22:44:06 +00:00
|
|
|
|
|
|
|
/* getting a uint32_t properties word from the data */
|
2005-04-30 03:06:58 +00:00
|
|
|
#if UCHAR_HARDCODE_DATA
|
|
|
|
|
|
|
|
#define GET_PROPS(c, result) UTRIE_GET16(&propsTrie, c, result);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2003-08-22 23:26:53 +00:00
|
|
|
#define HAVE_DATA (havePropsData>0 || loadPropsData()>0)
|
2001-12-06 01:23:47 +00:00
|
|
|
#define GET_PROPS_UNSAFE(c, result) \
|
2005-01-02 00:22:48 +00:00
|
|
|
UTRIE_GET16(&propsTrie, c, result);
|
2001-12-06 01:23:47 +00:00
|
|
|
#define GET_PROPS(c, result) \
|
|
|
|
if(HAVE_DATA) { \
|
|
|
|
GET_PROPS_UNSAFE(c, result); \
|
|
|
|
} else { \
|
|
|
|
(result)=0; \
|
|
|
|
}
|
2000-04-24 22:44:06 +00:00
|
|
|
|
2005-04-30 03:06:58 +00:00
|
|
|
#endif
|
|
|
|
|
2001-02-14 00:47:36 +00:00
|
|
|
U_CFUNC UBool
|
2002-11-08 02:22:15 +00:00
|
|
|
uprv_haveProperties(UErrorCode *pErrorCode) {
|
2004-09-06 15:57:11 +00:00
|
|
|
if(U_FAILURE(*pErrorCode)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2005-04-30 03:06:58 +00:00
|
|
|
#if !UCHAR_HARDCODE_DATA
|
2004-09-06 15:57:11 +00:00
|
|
|
if(havePropsData==0) {
|
2003-08-22 23:26:53 +00:00
|
|
|
uprv_loadPropsData(pErrorCode);
|
2002-11-08 02:22:15 +00:00
|
|
|
}
|
2004-09-06 15:57:11 +00:00
|
|
|
if(havePropsData<0) {
|
|
|
|
*pErrorCode=dataErrorCode;
|
|
|
|
return FALSE;
|
|
|
|
}
|
2005-04-30 03:06:58 +00:00
|
|
|
#endif
|
2004-09-06 15:57:11 +00:00
|
|
|
return TRUE;
|
2001-02-14 00:47:36 +00:00
|
|
|
}
|
|
|
|
|
2000-05-18 17:47:11 +00:00
|
|
|
/* API functions ------------------------------------------------------------ */
|
|
|
|
|
|
|
|
/* Gets the Unicode character's general category.*/
|
|
|
|
U_CAPI int8_t U_EXPORT2
|
|
|
|
u_charType(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
return (int8_t)GET_CATEGORY(props);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
2002-01-12 00:11:09 +00:00
|
|
|
/* 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) {
|
2005-01-02 00:22:48 +00:00
|
|
|
return GET_CATEGORY(value);
|
2002-01-12 00:11:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2005-04-30 03:06:58 +00:00
|
|
|
if(enumRange==NULL
|
|
|
|
#if !UCHAR_HARDCODE_DATA
|
|
|
|
|| !HAVE_DATA
|
|
|
|
#endif
|
|
|
|
) {
|
2002-01-12 00:11:09 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
callback.enumRange=enumRange;
|
|
|
|
callback.context=context;
|
|
|
|
utrie_enum(&propsTrie, _enumTypeValue, _enumTypeRange, &callback);
|
|
|
|
}
|
|
|
|
|
2000-05-18 17:47:11 +00:00
|
|
|
/* Checks if ch is a lower case letter.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_islower(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Checks if ch is an upper case letter.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isupper(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Checks if ch is a title case letter; usually upper case letters.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_istitle(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
return (UBool)(GET_CATEGORY(props)==U_TITLECASE_LETTER);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Checks if ch is a decimal digit. */
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isdigit(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2003-02-09 21:02:26 +00:00
|
|
|
return (UBool)(GET_CATEGORY(props)==U_DECIMAL_DIGIT_NUMBER);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
2003-04-24 23:09:26 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
|
|
|
u_isxdigit(UChar32 c) {
|
|
|
|
uint32_t props;
|
|
|
|
|
|
|
|
/* check ASCII and Fullwidth ASCII a-fA-F */
|
|
|
|
if(
|
|
|
|
(c<=0x66 && c>=0x41 && (c<=0x46 || c>=0x61)) ||
|
|
|
|
(c>=0xff21 && c<=0xff46 && (c<=0xff26 || c>=0xff41))
|
|
|
|
) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
return (UBool)(GET_CATEGORY(props)==U_DECIMAL_DIGIT_NUMBER);
|
|
|
|
}
|
|
|
|
|
2000-05-18 17:47:11 +00:00
|
|
|
/* Checks if the Unicode character is a letter.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isalpha(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2003-02-11 23:30:09 +00:00
|
|
|
return (UBool)((CAT_MASK(props)&U_GC_L_MASK)!=0);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
2004-09-11 15:04:40 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
|
|
|
u_isUAlphabetic(UChar32 c) {
|
|
|
|
return (u_getUnicodeProperties(c, 1)&U_MASK(UPROPS_ALPHABETIC))!=0;
|
|
|
|
}
|
|
|
|
|
2005-05-28 22:54:36 +00:00
|
|
|
/* Checks if c is a letter or a decimal digit */
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isalnum(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2003-02-11 23:30:09 +00:00
|
|
|
return (UBool)((CAT_MASK(props)&(U_GC_L_MASK|U_GC_ND_MASK))!=0);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
2005-05-28 22:54:36 +00:00
|
|
|
/**
|
|
|
|
* Checks if c is alphabetic, or a decimal digit; implements UCHAR_POSIX_ALNUM.
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
U_CFUNC UBool
|
|
|
|
u_isalnumPOSIX(UChar32 c) {
|
|
|
|
return (UBool)(u_isUAlphabetic(c) || u_isdigit(c));
|
|
|
|
}
|
|
|
|
|
2000-05-18 17:47:11 +00:00
|
|
|
/* Checks if ch is a unicode character with assigned character type.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isdefined(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
return (UBool)(GET_CATEGORY(props)!=0);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Checks if the Unicode character is a base form character that can take a diacritic.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isbase(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2003-02-11 23:30:09 +00:00
|
|
|
return (UBool)((CAT_MASK(props)&(U_GC_L_MASK|U_GC_N_MASK|U_GC_MC_MASK|U_GC_ME_MASK))!=0);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Checks if the Unicode character is a control character.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_iscntrl(UChar32 c) {
|
2002-02-24 21:00:19 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2003-02-11 23:30:09 +00:00
|
|
|
return (UBool)((CAT_MASK(props)&(U_GC_CC_MASK|U_GC_CF_MASK|U_GC_ZL_MASK|U_GC_ZP_MASK))!=0);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
2003-02-09 21:02:26 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
|
|
|
u_isISOControl(UChar32 c) {
|
|
|
|
return (uint32_t)c<=0x9f && (c<=0x1f || c>=0x7f);
|
|
|
|
}
|
|
|
|
|
2002-02-24 21:00:19 +00:00
|
|
|
/* Some control characters that are used as space. */
|
|
|
|
#define IS_THAT_CONTROL_SPACE(c) \
|
2003-02-11 23:30:09 +00:00
|
|
|
(c<=0x9f && ((c>=TAB && c<=CR) || (c>=0x1c && c <=0x1f) || c==NL))
|
2002-02-24 21:00:19 +00:00
|
|
|
|
2000-05-18 17:47:11 +00:00
|
|
|
/* Checks if the Unicode character is a space character.*/
|
2001-11-21 01:02:11 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isspace(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2003-02-11 23:30:09 +00:00
|
|
|
return (UBool)((CAT_MASK(props)&U_GC_Z_MASK)!=0 || IS_THAT_CONTROL_SPACE(c));
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
2003-02-09 21:02:26 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
|
|
|
u_isJavaSpaceChar(UChar32 c) {
|
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2003-02-11 23:30:09 +00:00
|
|
|
return (UBool)((CAT_MASK(props)&U_GC_Z_MASK)!=0);
|
2003-02-09 21:02:26 +00:00
|
|
|
}
|
|
|
|
|
2000-05-18 17:47:11 +00:00
|
|
|
/* Checks if the Unicode character is a whitespace character.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isWhitespace(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2003-02-09 21:02:26 +00:00
|
|
|
return (UBool)(
|
2003-02-11 23:30:09 +00:00
|
|
|
((CAT_MASK(props)&U_GC_Z_MASK)!=0 &&
|
2003-02-09 21:02:26 +00:00
|
|
|
c!=NBSP && c!=FIGURESP && c!=NNBSP) || /* exclude no-break spaces */
|
|
|
|
IS_THAT_CONTROL_SPACE(c)
|
|
|
|
);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
2003-04-24 23:09:26 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
|
|
|
u_isblank(UChar32 c) {
|
|
|
|
if((uint32_t)c<=0x9f) {
|
|
|
|
return c==9 || c==0x20; /* TAB or SPACE */
|
|
|
|
} else {
|
2005-05-28 22:54:36 +00:00
|
|
|
/* Zs */
|
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
return (UBool)(GET_CATEGORY(props)==U_SPACE_SEPARATOR);
|
2003-04-24 23:09:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-11 15:04:40 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
|
|
|
u_isUWhiteSpace(UChar32 c) {
|
|
|
|
return (u_getUnicodeProperties(c, 1)&U_MASK(UPROPS_WHITE_SPACE))!=0;
|
|
|
|
}
|
|
|
|
|
2000-05-18 17:47:11 +00:00
|
|
|
/* Checks if the Unicode character is printable.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2001-03-15 02:01:25 +00:00
|
|
|
u_isprint(UChar32 c) {
|
2002-02-24 21:00:19 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2003-02-11 23:30:09 +00:00
|
|
|
/* comparing ==0 returns FALSE for the categories mentioned */
|
|
|
|
return (UBool)((CAT_MASK(props)&U_GC_C_MASK)==0);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
2005-05-28 22:54:36 +00:00
|
|
|
/**
|
|
|
|
* Checks if c is in \p{graph}\p{blank} - \p{cntrl}.
|
|
|
|
* Implements UCHAR_POSIX_PRINT.
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
U_CFUNC UBool
|
|
|
|
u_isprintPOSIX(UChar32 c) {
|
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
/*
|
|
|
|
* The only cntrl character in graph+blank is TAB (in blank).
|
|
|
|
* Here we implement (blank-TAB)=Zs instead of calling u_isblank().
|
|
|
|
*/
|
|
|
|
return (UBool)((GET_CATEGORY(props)==U_SPACE_SEPARATOR) || u_isgraphPOSIX(c));
|
|
|
|
}
|
|
|
|
|
2003-04-24 23:09:26 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
|
|
|
u_isgraph(UChar32 c) {
|
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
/* comparing ==0 returns FALSE for the categories mentioned */
|
|
|
|
return (UBool)((CAT_MASK(props)&
|
|
|
|
(U_GC_CC_MASK|U_GC_CF_MASK|U_GC_CS_MASK|U_GC_CN_MASK|U_GC_Z_MASK))
|
|
|
|
==0);
|
|
|
|
}
|
|
|
|
|
2005-05-28 22:54:36 +00:00
|
|
|
/**
|
|
|
|
* Checks if c is in
|
|
|
|
* [^\p{space}\p{gc=Control}\p{gc=Surrogate}\p{gc=Unassigned}]
|
|
|
|
* with space=\p{Whitespace} and Control=Cc.
|
|
|
|
* Implements UCHAR_POSIX_GRAPH.
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
U_CFUNC UBool
|
|
|
|
u_isgraphPOSIX(UChar32 c) {
|
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
/* \p{space}\p{gc=Control} == \p{gc=Z}\p{Control} */
|
|
|
|
/* comparing ==0 returns FALSE for the categories mentioned */
|
|
|
|
return (UBool)((CAT_MASK(props)&
|
|
|
|
(U_GC_CC_MASK|U_GC_CS_MASK|U_GC_CN_MASK|U_GC_Z_MASK))
|
|
|
|
==0);
|
|
|
|
}
|
|
|
|
|
2003-04-24 23:09:26 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
|
|
|
u_ispunct(UChar32 c) {
|
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
return (UBool)((CAT_MASK(props)&U_GC_P_MASK)!=0);
|
|
|
|
}
|
|
|
|
|
2000-05-18 17:47:11 +00:00
|
|
|
/* Checks if the Unicode character can start a Unicode identifier.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isIDStart(UChar32 c) {
|
|
|
|
/* same as u_isalpha() */
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2003-02-11 23:30:09 +00:00
|
|
|
return (UBool)((CAT_MASK(props)&(U_GC_L_MASK|U_GC_NL_MASK))!=0);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Checks if the Unicode character can be a Unicode identifier part other than starting the
|
|
|
|
identifier.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isIDPart(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2000-08-08 23:26:10 +00:00
|
|
|
return (UBool)(
|
2003-02-11 23:30:09 +00:00
|
|
|
(CAT_MASK(props)&
|
|
|
|
(U_GC_ND_MASK|U_GC_NL_MASK|
|
|
|
|
U_GC_L_MASK|
|
|
|
|
U_GC_PC_MASK|U_GC_MC_MASK|U_GC_MN_MASK)
|
2000-05-18 17:47:11 +00:00
|
|
|
)!=0 ||
|
2000-08-08 23:26:10 +00:00
|
|
|
u_isIDIgnorable(c));
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*Checks if the Unicode character can be ignorable in a Java or Unicode identifier.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isIDIgnorable(UChar32 c) {
|
2003-02-09 21:02:26 +00:00
|
|
|
if(c<=0x9f) {
|
|
|
|
return u_isISOControl(c) && !IS_THAT_CONTROL_SPACE(c);
|
|
|
|
} else {
|
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
return (UBool)(GET_CATEGORY(props)==U_FORMAT_CHAR);
|
|
|
|
}
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*Checks if the Unicode character can start a Java identifier.*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isJavaIDStart(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2003-02-11 23:30:09 +00:00
|
|
|
return (UBool)((CAT_MASK(props)&(U_GC_L_MASK|U_GC_SC_MASK|U_GC_PC_MASK))!=0);
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*Checks if the Unicode character can be a Java identifier part other than starting the
|
|
|
|
* identifier.
|
|
|
|
*/
|
2000-05-18 22:08:39 +00:00
|
|
|
U_CAPI UBool U_EXPORT2
|
2000-05-18 17:47:11 +00:00
|
|
|
u_isJavaIDPart(UChar32 c) {
|
2001-12-06 01:23:47 +00:00
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
2000-08-08 23:26:10 +00:00
|
|
|
return (UBool)(
|
2003-02-11 23:30:09 +00:00
|
|
|
(CAT_MASK(props)&
|
|
|
|
(U_GC_ND_MASK|U_GC_NL_MASK|
|
|
|
|
U_GC_L_MASK|
|
|
|
|
U_GC_SC_MASK|U_GC_PC_MASK|
|
|
|
|
U_GC_MC_MASK|U_GC_MN_MASK)
|
2000-05-18 17:47:11 +00:00
|
|
|
)!=0 ||
|
2000-08-08 23:26:10 +00:00
|
|
|
u_isIDIgnorable(c));
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
U_CAPI int32_t U_EXPORT2
|
|
|
|
u_charDigitValue(UChar32 c) {
|
2005-01-02 00:22:48 +00:00
|
|
|
uint32_t props;
|
2001-12-06 01:23:47 +00:00
|
|
|
GET_PROPS(c, props);
|
2002-03-04 01:25:51 +00:00
|
|
|
|
2005-01-02 00:22:48 +00:00
|
|
|
if(GET_NUMERIC_TYPE(props)==1) {
|
|
|
|
return GET_NUMERIC_VALUE(props);
|
|
|
|
} else {
|
|
|
|
return -1;
|
2000-05-18 17:47:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-04 00:17:12 +00:00
|
|
|
U_CAPI double U_EXPORT2
|
|
|
|
u_getNumericValue(UChar32 c) {
|
2005-01-02 00:22:48 +00:00
|
|
|
uint32_t props, numericType, numericValue;
|
2002-07-04 00:17:12 +00:00
|
|
|
GET_PROPS(c, props);
|
|
|
|
numericType=GET_NUMERIC_TYPE(props);
|
|
|
|
|
2005-01-02 00:22:48 +00:00
|
|
|
if(numericType==0 || numericType>=UPROPS_NT_COUNT) {
|
2002-07-04 00:17:12 +00:00
|
|
|
return U_NO_NUMERIC_VALUE;
|
2005-01-02 00:22:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
numericValue=GET_NUMERIC_VALUE(props);
|
|
|
|
|
|
|
|
if(numericType<U_NT_COUNT) {
|
|
|
|
/* normal type, the value is stored directly */
|
|
|
|
return numericValue;
|
|
|
|
} else if(numericType==UPROPS_NT_FRACTION) {
|
|
|
|
/* fraction value */
|
|
|
|
int32_t numerator;
|
|
|
|
uint32_t denominator;
|
|
|
|
|
|
|
|
numerator=(int32_t)numericValue>>UPROPS_FRACTION_NUM_SHIFT;
|
|
|
|
denominator=(numericValue&UPROPS_FRACTION_DEN_MASK)+UPROPS_FRACTION_DEN_OFFSET;
|
|
|
|
|
|
|
|
if(numerator==0) {
|
|
|
|
numerator=-1;
|
|
|
|
}
|
|
|
|
return (double)numerator/(double)denominator;
|
|
|
|
} else /* numericType==UPROPS_NT_LARGE */ {
|
|
|
|
/* large value with exponent */
|
|
|
|
double numValue;
|
|
|
|
int32_t mant, exp;
|
|
|
|
|
|
|
|
mant=(int32_t)numericValue>>UPROPS_LARGE_MANT_SHIFT;
|
|
|
|
exp=(int32_t)numericValue&UPROPS_LARGE_EXP_MASK;
|
|
|
|
if(mant==0) {
|
|
|
|
mant=1;
|
|
|
|
exp+=UPROPS_LARGE_EXP_OFFSET_EXTRA;
|
|
|
|
} else if(mant>9) {
|
|
|
|
return U_NO_NUMERIC_VALUE; /* reserved mantissa value */
|
2002-07-04 00:17:12 +00:00
|
|
|
} else {
|
2005-01-02 00:22:48 +00:00
|
|
|
exp+=UPROPS_LARGE_EXP_OFFSET;
|
|
|
|
}
|
2002-07-04 00:17:12 +00:00
|
|
|
|
2005-01-02 00:22:48 +00:00
|
|
|
numValue=mant;
|
|
|
|
|
|
|
|
/* multiply by 10^exp without math.h */
|
|
|
|
while(exp>=4) {
|
|
|
|
numValue*=10000.;
|
|
|
|
exp-=4;
|
|
|
|
}
|
|
|
|
switch(exp) {
|
|
|
|
case 3:
|
|
|
|
numValue*=1000.;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
numValue*=100.;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
numValue*=10.;
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
default:
|
|
|
|
break;
|
2002-07-04 00:17:12 +00:00
|
|
|
}
|
2005-01-02 00:22:48 +00:00
|
|
|
|
|
|
|
return numValue;
|
2002-07-04 00:17:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-31 13:36:49 +00:00
|
|
|
/* ICU 3.4: bidi/shaping properties moved to ubidi_props.c */
|
2000-04-24 22:44:06 +00:00
|
|
|
|
2002-03-04 01:25:51 +00:00
|
|
|
/* ICU 2.1: u_getCombiningClass() moved to unorm.cpp */
|
2001-01-23 23:45:21 +00:00
|
|
|
|
2001-11-12 23:01:17 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2
|
2001-09-21 00:27:17 +00:00
|
|
|
u_digit(UChar32 ch, int8_t radix) {
|
|
|
|
int8_t value;
|
|
|
|
if((uint8_t)(radix-2)<=(36-2)) {
|
|
|
|
value=(int8_t)u_charDigitValue(ch);
|
|
|
|
if(value<0) {
|
|
|
|
/* ch is not a decimal digit, try latin letters */
|
|
|
|
if(ch>=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 */
|
2003-04-24 23:09:26 +00:00
|
|
|
} else if(ch>=0xFF41 && ch<=0xFF5A) {
|
|
|
|
value=(int8_t)(ch-0xFF37); /* fullwidth ASCII a-z */
|
|
|
|
} else if(ch>=0xFF21 && ch<=0xFF3A) {
|
|
|
|
value=(int8_t)(ch-0xFF17); /* fullwidth ASCII A-Z */
|
2001-09-21 00:27:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
value=-1; /* invalid radix */
|
|
|
|
}
|
|
|
|
return (int8_t)((value<radix) ? value : -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
U_CAPI UChar32 U_EXPORT2
|
|
|
|
u_forDigit(int32_t digit, int8_t radix) {
|
|
|
|
if((uint8_t)(radix-2)>(36-2) || (uint32_t)digit>=(uint32_t)radix) {
|
|
|
|
return 0;
|
|
|
|
} else if(digit<10) {
|
|
|
|
return (UChar32)(0x30+digit);
|
|
|
|
} else {
|
|
|
|
return (UChar32)((0x61-10)+digit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-06 00:52:44 +00:00
|
|
|
/* miscellaneous, and support for uprops.c ---------------------------------- */
|
|
|
|
|
2001-11-21 01:02:11 +00:00
|
|
|
U_CAPI void U_EXPORT2
|
|
|
|
u_getUnicodeVersion(UVersionInfo versionArray) {
|
2000-04-24 22:44:06 +00:00
|
|
|
if(versionArray!=NULL) {
|
2005-04-30 03:06:58 +00:00
|
|
|
uprv_memcpy(versionArray, dataVersion, U_MAX_VERSION_LENGTH);
|
2000-04-24 22:44:06 +00:00
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
2000-11-16 21:43:12 +00:00
|
|
|
|
2002-02-25 22:40:32 +00:00
|
|
|
U_CFUNC uint32_t
|
|
|
|
u_getUnicodeProperties(UChar32 c, int32_t column) {
|
|
|
|
uint16_t vecIndex;
|
|
|
|
|
2002-07-04 00:17:12 +00:00
|
|
|
if(column==-1) {
|
|
|
|
uint32_t props;
|
|
|
|
GET_PROPS(c, props);
|
|
|
|
return props;
|
2005-04-30 03:06:58 +00:00
|
|
|
} else if(
|
|
|
|
#if !UCHAR_HARDCODE_DATA
|
|
|
|
!HAVE_DATA || countPropsVectors==0 ||
|
|
|
|
#endif
|
2002-07-04 00:17:12 +00:00
|
|
|
column<0 || column>=propsVectorsColumns
|
2002-02-25 22:40:32 +00:00
|
|
|
) {
|
|
|
|
return 0;
|
2002-07-04 00:17:12 +00:00
|
|
|
} else {
|
|
|
|
UTRIE_GET16(&propsVectorsTrie, c, vecIndex);
|
|
|
|
return propsVectors[vecIndex+column];
|
2002-02-25 22:40:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-04 16:41:49 +00:00
|
|
|
U_CFUNC int32_t
|
2003-03-07 21:49:09 +00:00
|
|
|
uprv_getMaxValues(int32_t column) {
|
2005-04-30 03:06:58 +00:00
|
|
|
#if !UCHAR_HARDCODE_DATA
|
2002-07-04 16:41:49 +00:00
|
|
|
if(HAVE_DATA) {
|
2005-04-30 03:06:58 +00:00
|
|
|
#endif
|
2003-03-07 21:49:09 +00:00
|
|
|
switch(column) {
|
|
|
|
case 0:
|
|
|
|
return indexes[UPROPS_MAX_VALUES_INDEX];
|
|
|
|
case 2:
|
|
|
|
return indexes[UPROPS_MAX_VALUES_2_INDEX];
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-30 03:06:58 +00:00
|
|
|
#if !UCHAR_HARDCODE_DATA
|
2002-07-04 16:41:49 +00:00
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-30 03:06:58 +00:00
|
|
|
#endif
|
2002-07-04 16:41:49 +00:00
|
|
|
}
|
|
|
|
|
2004-09-11 15:04:40 +00:00
|
|
|
/*
|
|
|
|
* get Hangul Syllable Type
|
2004-09-13 23:33:22 +00:00
|
|
|
* implemented here so that uchar.c (uhst_addPropertyStarts())
|
2004-09-11 15:04:40 +00:00
|
|
|
* does not depend on uprops.c (u_getIntPropertyValue(c, UCHAR_HANGUL_SYLLABLE_TYPE))
|
|
|
|
*/
|
|
|
|
U_CFUNC UHangulSyllableType
|
|
|
|
uchar_getHST(UChar32 c) {
|
|
|
|
/* purely algorithmic; hardcode known characters, check for assigned new ones */
|
|
|
|
if(c<JAMO_L_BASE) {
|
|
|
|
/* U_HST_NOT_APPLICABLE */
|
|
|
|
} else if(c<=0x11ff) {
|
|
|
|
/* Jamo range */
|
|
|
|
if(c<=0x115f) {
|
|
|
|
/* Jamo L range, HANGUL CHOSEONG ... */
|
|
|
|
if(c==0x115f || c<=0x1159 || u_charType(c)==U_OTHER_LETTER) {
|
|
|
|
return U_HST_LEADING_JAMO;
|
|
|
|
}
|
|
|
|
} else if(c<=0x11a7) {
|
|
|
|
/* Jamo V range, HANGUL JUNGSEONG ... */
|
|
|
|
if(c<=0x11a2 || u_charType(c)==U_OTHER_LETTER) {
|
|
|
|
return U_HST_VOWEL_JAMO;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Jamo T range */
|
|
|
|
if(c<=0x11f9 || u_charType(c)==U_OTHER_LETTER) {
|
|
|
|
return U_HST_TRAILING_JAMO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if((c-=HANGUL_BASE)<0) {
|
|
|
|
/* U_HST_NOT_APPLICABLE */
|
|
|
|
} else if(c<HANGUL_COUNT) {
|
|
|
|
/* Hangul syllable */
|
|
|
|
return c%JAMO_T_COUNT==0 ? U_HST_LV_SYLLABLE : U_HST_LVT_SYLLABLE;
|
|
|
|
}
|
|
|
|
return U_HST_NOT_APPLICABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
U_CAPI void U_EXPORT2
|
|
|
|
u_charAge(UChar32 c, UVersionInfo versionArray) {
|
|
|
|
if(versionArray!=NULL) {
|
|
|
|
uint32_t version=u_getUnicodeProperties(c, 0)>>UPROPS_AGE_SHIFT;
|
|
|
|
versionArray[0]=(uint8_t)(version>>4);
|
|
|
|
versionArray[1]=(uint8_t)(version&0xf);
|
|
|
|
versionArray[2]=versionArray[3]=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
U_CAPI UScriptCode U_EXPORT2
|
|
|
|
uscript_getScript(UChar32 c, UErrorCode *pErrorCode) {
|
|
|
|
if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) {
|
2005-09-15 00:01:03 +00:00
|
|
|
return USCRIPT_INVALID_CODE;
|
2004-09-11 15:04:40 +00:00
|
|
|
}
|
|
|
|
if((uint32_t)c>0x10ffff) {
|
|
|
|
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
|
2005-09-15 00:01:03 +00:00
|
|
|
return USCRIPT_INVALID_CODE;
|
2004-09-11 15:04:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (UScriptCode)(u_getUnicodeProperties(c, 0)&UPROPS_SCRIPT_MASK);
|
|
|
|
}
|
|
|
|
|
|
|
|
U_CAPI UBlockCode U_EXPORT2
|
|
|
|
ublock_getCode(UChar32 c) {
|
|
|
|
return (UBlockCode)((u_getUnicodeProperties(c, 0)&UPROPS_BLOCK_MASK)>>UPROPS_BLOCK_SHIFT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* property starts for UnicodeSet ------------------------------------------- */
|
|
|
|
|
2004-09-13 23:33:22 +00:00
|
|
|
/* for Hangul_Syllable_Type */
|
|
|
|
U_CAPI void U_EXPORT2
|
2004-12-02 04:18:35 +00:00
|
|
|
uhst_addPropertyStarts(const USetAdder *sa, UErrorCode *pErrorCode) {
|
2004-09-13 23:33:22 +00:00
|
|
|
UChar32 c;
|
|
|
|
int32_t value, value2;
|
|
|
|
|
|
|
|
if(U_FAILURE(*pErrorCode)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-04-30 03:06:58 +00:00
|
|
|
#if !UCHAR_HARDCODE_DATA
|
2004-09-13 23:33:22 +00:00
|
|
|
if(!HAVE_DATA) {
|
|
|
|
*pErrorCode=dataErrorCode;
|
|
|
|
return;
|
|
|
|
}
|
2005-04-30 03:06:58 +00:00
|
|
|
#endif
|
2004-09-13 23:33:22 +00:00
|
|
|
|
|
|
|
/* add code points with hardcoded properties, plus the ones following them */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add Jamo type boundaries for UCHAR_HANGUL_SYLLABLE_TYPE.
|
|
|
|
* First, we add fixed boundaries for the blocks of Jamos.
|
|
|
|
* Then we check in loops to see where the current Unicode version
|
|
|
|
* actually stops assigning such Jamos. We start each loop
|
|
|
|
* at the end of the per-Jamo-block assignments in Unicode 4 or earlier.
|
|
|
|
* (These have not changed since Unicode 2.)
|
|
|
|
*/
|
|
|
|
sa->add(sa->set, 0x1100);
|
|
|
|
value=U_HST_LEADING_JAMO;
|
|
|
|
for(c=0x115a; c<=0x115f; ++c) {
|
|
|
|
value2=uchar_getHST(c);
|
|
|
|
if(value!=value2) {
|
|
|
|
value=value2;
|
|
|
|
sa->add(sa->set, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sa->add(sa->set, 0x1160);
|
|
|
|
value=U_HST_VOWEL_JAMO;
|
|
|
|
for(c=0x11a3; c<=0x11a7; ++c) {
|
|
|
|
value2=uchar_getHST(c);
|
|
|
|
if(value!=value2) {
|
|
|
|
value=value2;
|
|
|
|
sa->add(sa->set, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sa->add(sa->set, 0x11a8);
|
|
|
|
value=U_HST_TRAILING_JAMO;
|
|
|
|
for(c=0x11fa; c<=0x11ff; ++c) {
|
|
|
|
value2=uchar_getHST(c);
|
|
|
|
if(value!=value2) {
|
|
|
|
value=value2;
|
|
|
|
sa->add(sa->set, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add Hangul type boundaries for UCHAR_HANGUL_SYLLABLE_TYPE. */
|
|
|
|
for(c=HANGUL_BASE; c<(HANGUL_BASE+HANGUL_COUNT); c+=JAMO_T_COUNT) {
|
|
|
|
sa->add(sa->set, c);
|
|
|
|
sa->add(sa->set, c+1);
|
|
|
|
}
|
|
|
|
sa->add(sa->set, c);
|
|
|
|
}
|
|
|
|
|
2002-11-06 00:52:44 +00:00
|
|
|
static UBool U_CALLCONV
|
|
|
|
_enumPropertyStartsRange(const void *context, UChar32 start, UChar32 limit, uint32_t value) {
|
|
|
|
/* add the start code point to the USet */
|
2004-12-02 04:18:35 +00:00
|
|
|
const USetAdder *sa=(const USetAdder *)context;
|
2004-09-07 17:59:53 +00:00
|
|
|
sa->add(sa->set, start);
|
2002-11-06 00:52:44 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2004-09-07 17:59:53 +00:00
|
|
|
#define USET_ADD_CP_AND_NEXT(sa, cp) sa->add(sa->set, cp); sa->add(sa->set, cp+1)
|
2002-11-06 00:52:44 +00:00
|
|
|
|
|
|
|
U_CAPI void U_EXPORT2
|
2004-12-02 04:18:35 +00:00
|
|
|
uchar_addPropertyStarts(const USetAdder *sa, UErrorCode *pErrorCode) {
|
2004-09-13 23:33:22 +00:00
|
|
|
if(U_FAILURE(*pErrorCode)) {
|
|
|
|
return;
|
|
|
|
}
|
2003-03-08 02:00:06 +00:00
|
|
|
|
2005-04-30 03:06:58 +00:00
|
|
|
#if !UCHAR_HARDCODE_DATA
|
2002-11-06 00:52:44 +00:00
|
|
|
if(!HAVE_DATA) {
|
2003-04-09 17:34:24 +00:00
|
|
|
*pErrorCode=dataErrorCode;
|
2002-11-06 00:52:44 +00:00
|
|
|
return;
|
|
|
|
}
|
2005-04-30 03:06:58 +00:00
|
|
|
#endif
|
2002-11-06 00:52:44 +00:00
|
|
|
|
2005-01-10 18:02:54 +00:00
|
|
|
/* add the start code point of each same-value range of the main trie */
|
2004-09-07 17:59:53 +00:00
|
|
|
utrie_enum(&propsTrie, NULL, _enumPropertyStartsRange, sa);
|
2002-11-06 00:52:44 +00:00
|
|
|
|
|
|
|
/* add code points with hardcoded properties, plus the ones following them */
|
|
|
|
|
2005-05-28 22:54:36 +00:00
|
|
|
/* add for u_isblank() */
|
|
|
|
USET_ADD_CP_AND_NEXT(sa, TAB);
|
|
|
|
|
2002-11-06 00:52:44 +00:00
|
|
|
/* add for IS_THAT_CONTROL_SPACE() */
|
2005-05-28 22:54:36 +00:00
|
|
|
sa->add(sa->set, CR+1); /* range TAB..CR */
|
2004-09-07 17:59:53 +00:00
|
|
|
sa->add(sa->set, 0x1c);
|
|
|
|
sa->add(sa->set, 0x1f+1);
|
|
|
|
USET_ADD_CP_AND_NEXT(sa, NL);
|
2002-11-06 00:52:44 +00:00
|
|
|
|
|
|
|
/* add for u_isIDIgnorable() what was not added above */
|
2004-09-07 17:59:53 +00:00
|
|
|
sa->add(sa->set, DEL); /* range DEL..NBSP-1, NBSP added below */
|
|
|
|
sa->add(sa->set, HAIRSP);
|
|
|
|
sa->add(sa->set, RLM+1);
|
|
|
|
sa->add(sa->set, INHSWAP);
|
|
|
|
sa->add(sa->set, NOMDIG+1);
|
|
|
|
USET_ADD_CP_AND_NEXT(sa, ZWNBSP);
|
2002-11-06 00:52:44 +00:00
|
|
|
|
|
|
|
/* add no-break spaces for u_isWhitespace() what was not added above */
|
2004-09-07 17:59:53 +00:00
|
|
|
USET_ADD_CP_AND_NEXT(sa, NBSP);
|
|
|
|
USET_ADD_CP_AND_NEXT(sa, FIGURESP);
|
|
|
|
USET_ADD_CP_AND_NEXT(sa, NNBSP);
|
2002-11-06 00:52:44 +00:00
|
|
|
|
|
|
|
/* add for u_digit() */
|
2004-09-07 17:59:53 +00:00
|
|
|
sa->add(sa->set, U_a);
|
|
|
|
sa->add(sa->set, U_z+1);
|
|
|
|
sa->add(sa->set, U_A);
|
|
|
|
sa->add(sa->set, U_Z+1);
|
2005-01-10 18:02:54 +00:00
|
|
|
sa->add(sa->set, U_FW_a);
|
|
|
|
sa->add(sa->set, U_FW_z+1);
|
|
|
|
sa->add(sa->set, U_FW_A);
|
|
|
|
sa->add(sa->set, U_FW_Z+1);
|
|
|
|
|
|
|
|
/* add for u_isxdigit() */
|
|
|
|
sa->add(sa->set, U_f+1);
|
|
|
|
sa->add(sa->set, U_F+1);
|
|
|
|
sa->add(sa->set, U_FW_f+1);
|
|
|
|
sa->add(sa->set, U_FW_F+1);
|
2002-11-06 00:52:44 +00:00
|
|
|
|
|
|
|
/* add for UCHAR_DEFAULT_IGNORABLE_CODE_POINT what was not added above */
|
2004-09-07 17:59:53 +00:00
|
|
|
sa->add(sa->set, WJ); /* range WJ..NOMDIG */
|
|
|
|
sa->add(sa->set, 0xfff0);
|
|
|
|
sa->add(sa->set, 0xfffb+1);
|
|
|
|
sa->add(sa->set, 0xe0000);
|
|
|
|
sa->add(sa->set, 0xe0fff+1);
|
2002-11-06 00:52:44 +00:00
|
|
|
|
|
|
|
/* add for UCHAR_GRAPHEME_BASE and others */
|
2004-09-07 17:59:53 +00:00
|
|
|
USET_ADD_CP_AND_NEXT(sa, CGJ);
|
2000-11-16 21:43:12 +00:00
|
|
|
}
|
2005-01-10 18:02:54 +00:00
|
|
|
|
|
|
|
U_CAPI void U_EXPORT2
|
|
|
|
upropsvec_addPropertyStarts(const USetAdder *sa, UErrorCode *pErrorCode) {
|
|
|
|
if(U_FAILURE(*pErrorCode)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-04-30 03:06:58 +00:00
|
|
|
#if !UCHAR_HARDCODE_DATA
|
2005-01-10 18:02:54 +00:00
|
|
|
if(!HAVE_DATA) {
|
|
|
|
*pErrorCode=dataErrorCode;
|
|
|
|
return;
|
|
|
|
}
|
2005-04-30 03:06:58 +00:00
|
|
|
#endif
|
2005-01-10 18:02:54 +00:00
|
|
|
|
|
|
|
/* add the start code point of each same-value range of the properties vectors trie */
|
|
|
|
if(propsVectorsColumns>0) {
|
|
|
|
/* if propsVectorsColumns==0 then the properties vectors trie may not be there at all */
|
|
|
|
utrie_enum(&propsVectorsTrie, NULL, _enumPropertyStartsRange, sa);
|
|
|
|
}
|
|
|
|
}
|