Coverage Report

Created: 2025-06-13 06:34

/src/icu/icu4c/source/common/uchar.cpp
Line
Count
Source (jump to first uncovered line)
1
// © 2016 and later: Unicode, Inc. and others.
2
// License & terms of use: http://www.unicode.org/copyright.html
3
/*
4
********************************************************************************
5
*   Copyright (C) 1996-2016, International Business Machines
6
*   Corporation and others.  All Rights Reserved.
7
********************************************************************************
8
*
9
* File UCHAR.C
10
*
11
* Modification History:
12
*
13
*   Date        Name        Description
14
*   04/02/97    aliu        Creation.
15
*   4/15/99     Madhu       Updated all the function definitions for C Implementation
16
*   5/20/99     Madhu       Added the function u_getVersion()
17
*   8/19/1999   srl         Upgraded scripts to Unicode3.0 
18
*   11/11/1999  weiv        added u_isalnum(), cleaned comments
19
*   01/11/2000  helena      Renamed u_getVersion to u_getUnicodeVersion.
20
*   06/20/2000  helena      OS/400 port changes; mostly typecast.
21
******************************************************************************
22
*/
23
24
#include "unicode/utypes.h"
25
#include "unicode/uchar.h"
26
#include "unicode/ucptrie.h"
27
#include "unicode/uscript.h"
28
#include "unicode/udata.h"
29
#include "uassert.h"
30
#include "cmemory.h"
31
#include "ucln_cmn.h"
32
#include "utrie2.h"
33
#include "udataswp.h"
34
#include "uprops.h"
35
#include "ustr_imp.h"
36
37
/* uchar_props_data.h is machine-generated by genprops --csource */
38
#define INCLUDED_FROM_UCHAR_C
39
#include "uchar_props_data.h"
40
41
/* constants and macros for access to the data ------------------------------ */
42
43
/* getting a uint32_t properties word from the data */
44
0
#define GET_PROPS(c, result) ((result)=UTRIE2_GET16(&propsTrie, c))
45
46
/* API functions ------------------------------------------------------------ */
47
48
/* Gets the Unicode character's general category.*/
49
U_CAPI int8_t U_EXPORT2
50
0
u_charType(UChar32 c) {
51
0
    uint32_t props;
52
0
    GET_PROPS(c, props);
53
0
    return (int8_t)GET_CATEGORY(props);
54
0
}
55
56
/* Enumerate all code points with their general categories. */
57
struct _EnumTypeCallback {
58
    UCharEnumTypeRange *enumRange;
59
    const void *context;
60
};
61
62
static uint32_t U_CALLCONV
63
0
_enumTypeValue(const void *context, uint32_t value) {
64
0
    (void)context;
65
0
    return GET_CATEGORY(value);
66
0
}
67
68
static UBool U_CALLCONV
69
0
_enumTypeRange(const void *context, UChar32 start, UChar32 end, uint32_t value) {
70
    /* just cast the value to UCharCategory */
71
0
    return static_cast<const _EnumTypeCallback*>(context)->
72
0
        enumRange(static_cast<const _EnumTypeCallback*>(context)->context,
73
0
                  start, end + 1, static_cast<UCharCategory>(value));
74
0
}
75
76
U_CAPI void U_EXPORT2
77
0
u_enumCharTypes(UCharEnumTypeRange *enumRange, const void *context) {
78
0
    struct _EnumTypeCallback callback;
79
80
0
    if(enumRange==nullptr) {
81
0
        return;
82
0
    }
83
84
0
    callback.enumRange=enumRange;
85
0
    callback.context=context;
86
0
    utrie2_enum(&propsTrie, _enumTypeValue, _enumTypeRange, &callback);
87
0
}
88
89
/* Checks if ch is a lower case letter.*/
90
U_CAPI UBool U_EXPORT2
91
0
u_islower(UChar32 c) {
92
0
    uint32_t props;
93
0
    GET_PROPS(c, props);
94
0
    return GET_CATEGORY(props)==U_LOWERCASE_LETTER;
95
0
}
96
97
/* Checks if ch is an upper case letter.*/
98
U_CAPI UBool U_EXPORT2
99
0
u_isupper(UChar32 c) {
100
0
    uint32_t props;
101
0
    GET_PROPS(c, props);
102
0
    return GET_CATEGORY(props)==U_UPPERCASE_LETTER;
103
0
}
104
105
/* Checks if ch is a title case letter; usually upper case letters.*/
106
U_CAPI UBool U_EXPORT2
107
0
u_istitle(UChar32 c) {
108
0
    uint32_t props;
109
0
    GET_PROPS(c, props);
110
0
    return GET_CATEGORY(props)==U_TITLECASE_LETTER;
111
0
}
112
113
/* Checks if ch is a decimal digit. */
114
U_CAPI UBool U_EXPORT2
115
0
u_isdigit(UChar32 c) {
116
0
    uint32_t props;
117
0
    GET_PROPS(c, props);
118
0
    return GET_CATEGORY(props)==U_DECIMAL_DIGIT_NUMBER;
119
0
}
120
121
U_CAPI UBool U_EXPORT2
122
0
u_isxdigit(UChar32 c) {
123
0
    uint32_t props;
124
125
    /* check ASCII and Fullwidth ASCII a-fA-F */
126
0
    if(
127
0
        (c<=0x66 && c>=0x41 && (c<=0x46 || c>=0x61)) ||
128
0
        (c>=0xff21 && c<=0xff46 && (c<=0xff26 || c>=0xff41))
129
0
    ) {
130
0
        return true;
131
0
    }
132
133
0
    GET_PROPS(c, props);
134
0
    return GET_CATEGORY(props)==U_DECIMAL_DIGIT_NUMBER;
135
0
}
136
137
/* Checks if the Unicode character is a letter.*/
138
U_CAPI UBool U_EXPORT2
139
0
u_isalpha(UChar32 c) {
140
0
    uint32_t props;
141
0
    GET_PROPS(c, props);
142
0
    return (CAT_MASK(props)&U_GC_L_MASK)!=0;
143
0
}
144
145
U_CAPI UBool U_EXPORT2
146
0
u_isUAlphabetic(UChar32 c) {
147
0
    return (u_getUnicodeProperties(c, 1)&U_MASK(UPROPS_ALPHABETIC))!=0;
148
0
}
149
150
/* Checks if c is a letter or a decimal digit */
151
U_CAPI UBool U_EXPORT2
152
0
u_isalnum(UChar32 c) {
153
0
    uint32_t props;
154
0
    GET_PROPS(c, props);
155
0
    return (CAT_MASK(props)&(U_GC_L_MASK|U_GC_ND_MASK))!=0;
156
0
}
157
158
/**
159
 * Checks if c is alphabetic, or a decimal digit; implements UCHAR_POSIX_ALNUM.
160
 * @internal
161
 */
162
U_CFUNC UBool
163
0
u_isalnumPOSIX(UChar32 c) {
164
0
    return u_isUAlphabetic(c) || u_isdigit(c);
165
0
}
166
167
/* Checks if ch is a unicode character with assigned character type.*/
168
U_CAPI UBool U_EXPORT2
169
0
u_isdefined(UChar32 c) {
170
0
    uint32_t props;
171
0
    GET_PROPS(c, props);
172
0
    return GET_CATEGORY(props)!=0;
173
0
}
174
175
/* Checks if the Unicode character is a base form character that can take a diacritic.*/
176
U_CAPI UBool U_EXPORT2
177
0
u_isbase(UChar32 c) {
178
0
    uint32_t props;
179
0
    GET_PROPS(c, props);
180
0
    return (CAT_MASK(props)&(U_GC_L_MASK|U_GC_N_MASK|U_GC_MC_MASK|U_GC_ME_MASK))!=0;
181
0
}
182
183
/* Checks if the Unicode character is a control character.*/
184
U_CAPI UBool U_EXPORT2
185
0
u_iscntrl(UChar32 c) {
186
0
    uint32_t props;
187
0
    GET_PROPS(c, props);
188
0
    return (CAT_MASK(props)&(U_GC_CC_MASK|U_GC_CF_MASK|U_GC_ZL_MASK|U_GC_ZP_MASK))!=0;
189
0
}
190
191
U_CAPI UBool U_EXPORT2
192
0
u_isISOControl(UChar32 c) {
193
0
    return (uint32_t)c<=0x9f && (c<=0x1f || c>=0x7f);
194
0
}
195
196
/* Some control characters that are used as space. */
197
#define IS_THAT_CONTROL_SPACE(c) \
198
0
    (c<=0x9f && ((c>=TAB && c<=CR) || (c>=0x1c && c <=0x1f) || c==0x85))
199
200
/* Java has decided that U+0085 New Line is not whitespace any more. */
201
#define IS_THAT_ASCII_CONTROL_SPACE(c) \
202
0
    (c<=0x1f && c>=TAB && (c<=CR || c>=0x1c))
203
204
/* Checks if the Unicode character is a space character.*/
205
U_CAPI UBool U_EXPORT2
206
0
u_isspace(UChar32 c) {
207
0
    uint32_t props;
208
0
    GET_PROPS(c, props);
209
0
    return (CAT_MASK(props)&U_GC_Z_MASK)!=0 || IS_THAT_CONTROL_SPACE(c);
210
0
}
211
212
U_CAPI UBool U_EXPORT2
213
0
u_isJavaSpaceChar(UChar32 c) {
214
0
    uint32_t props;
215
0
    GET_PROPS(c, props);
216
0
    return (CAT_MASK(props)&U_GC_Z_MASK)!=0;
217
0
}
218
219
/* Checks if the Unicode character is a whitespace character.*/
220
U_CAPI UBool U_EXPORT2
221
0
u_isWhitespace(UChar32 c) {
222
0
    uint32_t props;
223
0
    GET_PROPS(c, props);
224
0
    return ((CAT_MASK(props)&U_GC_Z_MASK)!=0 &&
225
0
               c!=NBSP && c!=FIGURESP && c!=NNBSP) || /* exclude no-break spaces */
226
0
           IS_THAT_ASCII_CONTROL_SPACE(c);
227
0
}
228
229
U_CAPI UBool U_EXPORT2
230
0
u_isblank(UChar32 c) {
231
0
    if((uint32_t)c<=0x9f) {
232
0
        return c==9 || c==0x20; /* TAB or SPACE */
233
0
    } else {
234
        /* Zs */
235
0
        uint32_t props;
236
0
        GET_PROPS(c, props);
237
0
        return GET_CATEGORY(props)==U_SPACE_SEPARATOR;
238
0
    }
239
0
}
240
241
U_CAPI UBool U_EXPORT2
242
0
u_isUWhiteSpace(UChar32 c) {
243
0
    return (u_getUnicodeProperties(c, 1)&U_MASK(UPROPS_WHITE_SPACE))!=0;
244
0
}
245
246
/* Checks if the Unicode character is printable.*/
247
U_CAPI UBool U_EXPORT2
248
0
u_isprint(UChar32 c) {
249
0
    uint32_t props;
250
0
    GET_PROPS(c, props);
251
    /* comparing ==0 returns false for the categories mentioned */
252
0
    return (CAT_MASK(props)&U_GC_C_MASK)==0;
253
0
}
254
255
/**
256
 * Checks if c is in \p{graph}\p{blank} - \p{cntrl}.
257
 * Implements UCHAR_POSIX_PRINT.
258
 * @internal
259
 */
260
U_CFUNC UBool
261
0
u_isprintPOSIX(UChar32 c) {
262
0
    uint32_t props;
263
0
    GET_PROPS(c, props);
264
    /*
265
     * The only cntrl character in graph+blank is TAB (in blank).
266
     * Here we implement (blank-TAB)=Zs instead of calling u_isblank().
267
     */
268
0
    return (GET_CATEGORY(props)==U_SPACE_SEPARATOR) || u_isgraphPOSIX(c);
269
0
}
270
271
U_CAPI UBool U_EXPORT2
272
0
u_isgraph(UChar32 c) {
273
0
    uint32_t props;
274
0
    GET_PROPS(c, props);
275
    /* comparing ==0 returns false for the categories mentioned */
276
0
    return (CAT_MASK(props)&
277
0
            (U_GC_CC_MASK|U_GC_CF_MASK|U_GC_CS_MASK|U_GC_CN_MASK|U_GC_Z_MASK))
278
0
           ==0;
279
0
}
280
281
/**
282
 * Checks if c is in
283
 * [^\p{space}\p{gc=Control}\p{gc=Surrogate}\p{gc=Unassigned}]
284
 * with space=\p{Whitespace} and Control=Cc.
285
 * Implements UCHAR_POSIX_GRAPH.
286
 * @internal
287
 */
288
U_CFUNC UBool
289
0
u_isgraphPOSIX(UChar32 c) {
290
0
    uint32_t props;
291
0
    GET_PROPS(c, props);
292
    /* \p{space}\p{gc=Control} == \p{gc=Z}\p{Control} */
293
    /* comparing ==0 returns false for the categories mentioned */
294
0
    return (CAT_MASK(props)&
295
0
            (U_GC_CC_MASK|U_GC_CS_MASK|U_GC_CN_MASK|U_GC_Z_MASK))
296
0
           ==0;
297
0
}
298
299
U_CAPI UBool U_EXPORT2
300
0
u_ispunct(UChar32 c) {
301
0
    uint32_t props;
302
0
    GET_PROPS(c, props);
303
0
    return (CAT_MASK(props)&U_GC_P_MASK)!=0;
304
0
}
305
306
/*Checks if the Unicode character can be ignorable in a Java or Unicode identifier.*/
307
U_CAPI UBool U_EXPORT2
308
0
u_isIDIgnorable(UChar32 c) {
309
0
    if(c<=0x9f) {
310
0
        return u_isISOControl(c) && !IS_THAT_ASCII_CONTROL_SPACE(c);
311
0
    } else {
312
0
        uint32_t props;
313
0
        GET_PROPS(c, props);
314
0
        return GET_CATEGORY(props)==U_FORMAT_CHAR;
315
0
    }
316
0
}
317
318
/*Checks if the Unicode character can start a Java identifier.*/
319
U_CAPI UBool U_EXPORT2
320
0
u_isJavaIDStart(UChar32 c) {
321
0
    uint32_t props;
322
0
    GET_PROPS(c, props);
323
0
    return (CAT_MASK(props)&(U_GC_L_MASK|U_GC_SC_MASK|U_GC_PC_MASK))!=0;
324
0
}
325
326
/*Checks if the Unicode character can be a Java identifier part other than starting the
327
 * identifier.
328
 */
329
U_CAPI UBool U_EXPORT2
330
0
u_isJavaIDPart(UChar32 c) {
331
0
    uint32_t props;
332
0
    GET_PROPS(c, props);
333
0
    return (CAT_MASK(props)&
334
0
            (U_GC_ND_MASK|U_GC_NL_MASK|
335
0
             U_GC_L_MASK|
336
0
             U_GC_SC_MASK|U_GC_PC_MASK|
337
0
             U_GC_MC_MASK|U_GC_MN_MASK)
338
0
           )!=0 ||
339
0
           u_isIDIgnorable(c);
340
0
}
341
342
U_CAPI int32_t U_EXPORT2
343
0
u_charDigitValue(UChar32 c) {
344
0
    uint32_t props;
345
0
    int32_t value;
346
0
    GET_PROPS(c, props);
347
0
    value=(int32_t)GET_NUMERIC_TYPE_VALUE(props)-UPROPS_NTV_DECIMAL_START;
348
0
    if(value<=9) {
349
0
        return value;
350
0
    } else {
351
0
        return -1;
352
0
    }
353
0
}
354
355
U_CAPI double U_EXPORT2
356
0
u_getNumericValue(UChar32 c) {
357
0
    uint32_t props;
358
0
    int32_t ntv;
359
0
    GET_PROPS(c, props);
360
0
    ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(props);
361
362
0
    if(ntv==UPROPS_NTV_NONE) {
363
0
        return U_NO_NUMERIC_VALUE;
364
0
    } else if(ntv<UPROPS_NTV_DIGIT_START) {
365
        /* decimal digit */
366
0
        return ntv-UPROPS_NTV_DECIMAL_START;
367
0
    } else if(ntv<UPROPS_NTV_NUMERIC_START) {
368
        /* other digit */
369
0
        return ntv-UPROPS_NTV_DIGIT_START;
370
0
    } else if(ntv<UPROPS_NTV_FRACTION_START) {
371
        /* small integer */
372
0
        return ntv-UPROPS_NTV_NUMERIC_START;
373
0
    } else if(ntv<UPROPS_NTV_LARGE_START) {
374
        /* fraction */
375
0
        int32_t numerator=(ntv>>4)-12;
376
0
        int32_t denominator=(ntv&0xf)+1;
377
0
        return (double)numerator/denominator;
378
0
    } else if(ntv<UPROPS_NTV_BASE60_START) {
379
        /* large, single-significant-digit integer */
380
0
        double numValue;
381
0
        int32_t mant=(ntv>>5)-14;
382
0
        int32_t exp=(ntv&0x1f)+2;
383
0
        numValue=mant;
384
385
        /* multiply by 10^exp without math.h */
386
0
        while(exp>=4) {
387
0
            numValue*=10000.;
388
0
            exp-=4;
389
0
        }
390
0
        switch(exp) {
391
0
        case 3:
392
0
            numValue*=1000.;
393
0
            break;
394
0
        case 2:
395
0
            numValue*=100.;
396
0
            break;
397
0
        case 1:
398
0
            numValue*=10.;
399
0
            break;
400
0
        case 0:
401
0
        default:
402
0
            break;
403
0
        }
404
405
0
        return numValue;
406
0
    } else if(ntv<UPROPS_NTV_FRACTION20_START) {
407
        /* sexagesimal (base 60) integer */
408
0
        int32_t numValue=(ntv>>2)-0xbf;
409
0
        int32_t exp=(ntv&3)+1;
410
411
0
        switch(exp) {
412
0
        case 4:
413
0
            numValue*=60*60*60*60;
414
0
            break;
415
0
        case 3:
416
0
            numValue*=60*60*60;
417
0
            break;
418
0
        case 2:
419
0
            numValue*=60*60;
420
0
            break;
421
0
        case 1:
422
0
            numValue*=60;
423
0
            break;
424
0
        case 0:
425
0
        default:
426
0
            break;
427
0
        }
428
429
0
        return numValue;
430
0
    } else if(ntv<UPROPS_NTV_FRACTION32_START) {
431
        // fraction-20 e.g. 3/80
432
0
        int32_t frac20=ntv-UPROPS_NTV_FRACTION20_START;  // 0..0x17
433
0
        int32_t numerator=2*(frac20&3)+1;
434
0
        int32_t denominator=20<<(frac20>>2);
435
0
        return (double)numerator/denominator;
436
0
    } else if(ntv<UPROPS_NTV_RESERVED_START) {
437
        // fraction-32 e.g. 3/64
438
0
        int32_t frac32=ntv-UPROPS_NTV_FRACTION32_START;  // 0..15
439
0
        int32_t numerator=2*(frac32&3)+1;
440
0
        int32_t denominator=32<<(frac32>>2);
441
0
        return (double)numerator/denominator;
442
0
    } else {
443
        /* reserved */
444
0
        return U_NO_NUMERIC_VALUE;
445
0
    }
446
0
}
447
448
U_CAPI int32_t U_EXPORT2
449
0
u_digit(UChar32 ch, int8_t radix) {
450
0
    int8_t value;
451
0
    if((uint8_t)(radix-2)<=(36-2)) {
452
0
        value=(int8_t)u_charDigitValue(ch);
453
0
        if(value<0) {
454
            /* ch is not a decimal digit, try latin letters */
455
0
            if(ch>=0x61 && ch<=0x7A) {
456
0
                value=(int8_t)(ch-0x57);  /* ch - 'a' + 10 */
457
0
            } else if(ch>=0x41 && ch<=0x5A) {
458
0
                value=(int8_t)(ch-0x37);  /* ch - 'A' + 10 */
459
0
            } else if(ch>=0xFF41 && ch<=0xFF5A) {
460
0
                value=(int8_t)(ch-0xFF37);  /* fullwidth ASCII a-z */
461
0
            } else if(ch>=0xFF21 && ch<=0xFF3A) {
462
0
                value=(int8_t)(ch-0xFF17);  /* fullwidth ASCII A-Z */
463
0
            }
464
0
        }
465
0
    } else {
466
0
        value=-1;   /* invalid radix */
467
0
    }
468
0
    return (int8_t)((value<radix) ? value : -1);
469
0
}
470
471
U_CAPI UChar32 U_EXPORT2
472
0
u_forDigit(int32_t digit, int8_t radix) {
473
0
    if((uint8_t)(radix-2)>(36-2) || (uint32_t)digit>=(uint32_t)radix) {
474
0
        return 0;
475
0
    } else if(digit<10) {
476
0
        return (UChar32)(0x30+digit);
477
0
    } else {
478
0
        return (UChar32)((0x61-10)+digit);
479
0
    }
480
0
}
481
482
/* miscellaneous, and support for uprops.cpp -------------------------------- */
483
484
U_CAPI void U_EXPORT2
485
0
u_getUnicodeVersion(UVersionInfo versionArray) {
486
0
    if(versionArray!=nullptr) {
487
0
        uprv_memcpy(versionArray, dataVersion, U_MAX_VERSION_LENGTH);
488
0
    }
489
0
}
490
491
U_CFUNC uint32_t
492
0
u_getMainProperties(UChar32 c) {
493
0
    uint32_t props;
494
0
    GET_PROPS(c, props);
495
0
    return props;
496
0
}
497
498
U_CFUNC uint32_t
499
0
u_getUnicodeProperties(UChar32 c, int32_t column) {
500
0
    U_ASSERT(column>=0);
501
0
    if(column>=propsVectorsColumns) {
502
0
        return 0;
503
0
    } else {
504
0
        uint16_t vecIndex=UTRIE2_GET16(&propsVectorsTrie, c);
505
0
        return propsVectors[vecIndex+column];
506
0
    }
507
0
}
508
509
U_CFUNC int32_t
510
0
uprv_getMaxValues(int32_t column) {
511
0
    switch(column) {
512
0
    case 0:
513
0
        return indexes[UPROPS_MAX_VALUES_INDEX];
514
0
    case 2:
515
0
        return indexes[UPROPS_MAX_VALUES_2_INDEX];
516
0
    case UPROPS_MAX_VALUES_OTHER_INDEX:
517
0
        return indexes[column];
518
0
    default:
519
0
        return 0;
520
0
    }
521
0
}
522
523
U_CAPI void U_EXPORT2
524
0
u_charAge(UChar32 c, UVersionInfo versionArray) {
525
0
    if(versionArray!=nullptr) {
526
0
        uint32_t version=u_getUnicodeProperties(c, 0)>>UPROPS_AGE_SHIFT;
527
0
        versionArray[0]=(uint8_t)(version>>2);
528
0
        versionArray[1]=(uint8_t)(version&3);
529
0
        versionArray[2]=versionArray[3]=0;
530
0
    }
531
0
}
532
533
U_CAPI UScriptCode U_EXPORT2
534
0
uscript_getScript(UChar32 c, UErrorCode *pErrorCode) {
535
0
    if(pErrorCode==nullptr || U_FAILURE(*pErrorCode)) {
536
0
        return USCRIPT_INVALID_CODE;
537
0
    }
538
0
    if((uint32_t)c>0x10ffff) {
539
0
        *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
540
0
        return USCRIPT_INVALID_CODE;
541
0
    }
542
0
    uint32_t scriptX=u_getUnicodeProperties(c, 0)&UPROPS_SCRIPT_X_MASK;
543
0
    uint32_t codeOrIndex=scriptX&UPROPS_MAX_SCRIPT;
544
0
    if(scriptX<UPROPS_SCRIPT_X_WITH_COMMON) {
545
0
        return (UScriptCode)codeOrIndex;
546
0
    } else if(scriptX<UPROPS_SCRIPT_X_WITH_INHERITED) {
547
0
        return USCRIPT_COMMON;
548
0
    } else if(scriptX<UPROPS_SCRIPT_X_WITH_OTHER) {
549
0
        return USCRIPT_INHERITED;
550
0
    } else {
551
0
        return (UScriptCode)scriptExtensions[codeOrIndex];
552
0
    }
553
0
}
554
555
U_CAPI UBool U_EXPORT2
556
0
uscript_hasScript(UChar32 c, UScriptCode sc) UPRV_NO_SANITIZE_UNDEFINED {
557
0
    uint32_t scriptX=u_getUnicodeProperties(c, 0)&UPROPS_SCRIPT_X_MASK;
558
0
    uint32_t codeOrIndex=scriptX&UPROPS_MAX_SCRIPT;
559
0
    if(scriptX<UPROPS_SCRIPT_X_WITH_COMMON) {
560
0
        return sc==(UScriptCode)codeOrIndex;
561
0
    }
562
563
0
    const uint16_t *scx=scriptExtensions+codeOrIndex;
564
0
    if(scriptX>=UPROPS_SCRIPT_X_WITH_OTHER) {
565
0
        scx=scriptExtensions+scx[1];
566
0
    }
567
0
    uint32_t sc32=sc;
568
0
    if(sc32>0x7fff) {
569
        /* Guard against bogus input that would make us go past the Script_Extensions terminator. */
570
0
        return false;
571
0
    }
572
0
    while(sc32>*scx) {
573
0
        ++scx;
574
0
    }
575
0
    return sc32==(*scx&0x7fff);
576
0
}
577
578
U_CAPI int32_t U_EXPORT2
579
uscript_getScriptExtensions(UChar32 c,
580
                            UScriptCode *scripts, int32_t capacity,
581
0
                            UErrorCode *pErrorCode) {
582
0
    if(pErrorCode==nullptr || U_FAILURE(*pErrorCode)) {
583
0
        return 0;
584
0
    }
585
0
    if(capacity<0 || (capacity>0 && scripts==nullptr)) {
586
0
        *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
587
0
        return 0;
588
0
    }
589
0
    uint32_t scriptX=u_getUnicodeProperties(c, 0)&UPROPS_SCRIPT_X_MASK;
590
0
    uint32_t codeOrIndex=scriptX&UPROPS_MAX_SCRIPT;
591
0
    if(scriptX<UPROPS_SCRIPT_X_WITH_COMMON) {
592
0
        if(capacity==0) {
593
0
            *pErrorCode=U_BUFFER_OVERFLOW_ERROR;
594
0
        } else {
595
0
            scripts[0]=(UScriptCode)codeOrIndex;
596
0
        }
597
0
        return 1;
598
0
    }
599
600
0
    const uint16_t *scx=scriptExtensions+codeOrIndex;
601
0
    if(scriptX>=UPROPS_SCRIPT_X_WITH_OTHER) {
602
0
        scx=scriptExtensions+scx[1];
603
0
    }
604
0
    int32_t length=0;
605
0
    uint16_t sx;
606
0
    do {
607
0
        sx=*scx++;
608
0
        if(length<capacity) {
609
0
            scripts[length]=(UScriptCode)(sx&0x7fff);
610
0
        }
611
0
        ++length;
612
0
    } while(sx<0x8000);
613
0
    if(length>capacity) {
614
0
        *pErrorCode=U_BUFFER_OVERFLOW_ERROR;
615
0
    }
616
0
    return length;
617
0
}
618
619
U_CAPI UBlockCode U_EXPORT2
620
0
ublock_getCode(UChar32 c) {
621
    // We store Block values indexed by the code point shifted right 4 bits
622
    // and use a "small" UCPTrie=CodePointTrie for minimal data size.
623
    // This works because blocks have xxx0..xxxF ranges.
624
0
    uint32_t c4 = c;  // unsigned so that shifting right does not worry the compiler
625
    // Shift unless out of range, in which case we fetch the trie's error value.
626
0
    if (c4 <= 0x10ffff) {
627
0
        c4 >>= 4;
628
0
    }
629
0
    return (UBlockCode)ucptrie_get(&block_trie, c4);
630
0
}
631
632
/* property starts for UnicodeSet ------------------------------------------- */
633
634
static UBool U_CALLCONV
635
0
_enumPropertyStartsRange(const void *context, UChar32 start, UChar32 end, uint32_t value) {
636
    /* add the start code point to the USet */
637
0
    const USetAdder* sa = static_cast<const USetAdder*>(context);
638
0
    sa->add(sa->set, start);
639
0
    (void)end;
640
0
    (void)value;
641
0
    return true;
642
0
}
643
644
0
#define USET_ADD_CP_AND_NEXT(sa, cp) sa->add(sa->set, cp); sa->add(sa->set, cp+1)
645
646
U_CFUNC void U_EXPORT2
647
0
uchar_addPropertyStarts(const USetAdder *sa, UErrorCode *pErrorCode) {
648
0
    if(U_FAILURE(*pErrorCode)) {
649
0
        return;
650
0
    }
651
652
    /* add the start code point of each same-value range of the main trie */
653
0
    utrie2_enum(&propsTrie, nullptr, _enumPropertyStartsRange, sa);
654
655
    /* add code points with hardcoded properties, plus the ones following them */
656
657
    /* add for u_isblank() */
658
0
    USET_ADD_CP_AND_NEXT(sa, TAB);
659
660
    /* add for IS_THAT_CONTROL_SPACE() */
661
0
    sa->add(sa->set, CR+1); /* range TAB..CR */
662
0
    sa->add(sa->set, 0x1c);
663
0
    sa->add(sa->set, 0x1f+1);
664
0
    USET_ADD_CP_AND_NEXT(sa, 0x85);  // NEXT LINE (NEL)
665
666
    /* add for u_isIDIgnorable() what was not added above */
667
0
    sa->add(sa->set, 0x7f); /* range DEL..NBSP-1, NBSP added below */
668
0
    sa->add(sa->set, HAIRSP);
669
0
    sa->add(sa->set, RLM+1);
670
0
    sa->add(sa->set, 0x206a);  // INHIBIT SYMMETRIC SWAPPING
671
0
    sa->add(sa->set, 0x206f+1);  // NOMINAL DIGIT SHAPES
672
0
    USET_ADD_CP_AND_NEXT(sa, ZWNBSP);
673
674
    /* add no-break spaces for u_isWhitespace() what was not added above */
675
0
    USET_ADD_CP_AND_NEXT(sa, NBSP);
676
0
    USET_ADD_CP_AND_NEXT(sa, FIGURESP);
677
0
    USET_ADD_CP_AND_NEXT(sa, NNBSP);
678
679
    /* add for u_digit() */
680
0
    sa->add(sa->set, u'a');
681
0
    sa->add(sa->set, u'z'+1);
682
0
    sa->add(sa->set, u'A');
683
0
    sa->add(sa->set, u'Z'+1);
684
    // fullwidth
685
0
    sa->add(sa->set, u'a');
686
0
    sa->add(sa->set, u'z'+1);
687
0
    sa->add(sa->set, u'A');
688
0
    sa->add(sa->set, u'Z'+1);
689
690
    /* add for u_isxdigit() */
691
0
    sa->add(sa->set, u'f'+1);
692
0
    sa->add(sa->set, u'F'+1);
693
    // fullwidth
694
0
    sa->add(sa->set, u'f'+1);
695
0
    sa->add(sa->set, u'F'+1);
696
697
    /* add for UCHAR_DEFAULT_IGNORABLE_CODE_POINT what was not added above */
698
0
    sa->add(sa->set, 0x2060); /* range 2060..206f */
699
0
    sa->add(sa->set, 0xfff0);
700
0
    sa->add(sa->set, 0xfffb+1);
701
0
    sa->add(sa->set, 0xe0000);
702
0
    sa->add(sa->set, 0xe0fff+1);
703
704
    /* add for UCHAR_GRAPHEME_BASE and others */
705
0
    USET_ADD_CP_AND_NEXT(sa, CGJ);
706
0
}
707
708
U_CFUNC void U_EXPORT2
709
0
upropsvec_addPropertyStarts(const USetAdder *sa, UErrorCode *pErrorCode) {
710
0
    if(U_FAILURE(*pErrorCode)) {
711
0
        return;
712
0
    }
713
714
    /* add the start code point of each same-value range of the properties vectors trie */
715
0
    utrie2_enum(&propsVectorsTrie, nullptr, _enumPropertyStartsRange, sa);
716
0
}
717
718
U_CFUNC void U_EXPORT2
719
0
ublock_addPropertyStarts(const USetAdder *sa, UErrorCode & /*errorCode*/) {
720
    // Add the start code point of each same-value range of the trie.
721
    // We store Block values indexed by the code point shifted right 4 bits;
722
    // see ublock_getCode().
723
0
    UChar32 start = 0, end;
724
0
    uint32_t value;
725
0
    while (start < 0x11000 &&  // limit: (max code point + 1) >> 4
726
0
            (end = ucptrie_getRange(&block_trie, start, UCPMAP_RANGE_NORMAL, 0,
727
0
                                    nullptr, nullptr, &value)) >= 0) {
728
0
        sa->add(sa->set, start << 4);
729
0
        start = end + 1;
730
0
    }
731
0
}