]> git.saurik.com Git - apple/icu.git/blob - icuSources/common/uniset_props.cpp
ICU-6.2.22.tar.gz
[apple/icu.git] / icuSources / common / uniset_props.cpp
1 /*
2 *******************************************************************************
3 *
4 * Copyright (C) 1999-2004, International Business Machines
5 * Corporation and others. All Rights Reserved.
6 *
7 *******************************************************************************
8 * file name: uniset_props.cpp
9 * encoding: US-ASCII
10 * tab size: 8 (not used)
11 * indentation:4
12 *
13 * created on: 2004aug25
14 * created by: Markus W. Scherer
15 *
16 * Character property dependent functions moved here from uniset.cpp
17 */
18
19 #include "unicode/utypes.h"
20 #include "unicode/uniset.h"
21 #include "unicode/parsepos.h"
22 #include "unicode/uchar.h"
23 #include "unicode/uscript.h"
24 #include "unicode/symtable.h"
25 #include "unicode/uset.h"
26 #include "unicode/locid.h"
27 #include "unicode/brkiter.h"
28 #include "uset_imp.h"
29 #include "ruleiter.h"
30 #include "cmemory.h"
31 #include "uhash.h"
32 #include "ucln_cmn.h"
33 #include "util.h"
34 #include "uvector.h"
35 #include "uprops.h"
36 #include "propname.h"
37 #include "unormimp.h"
38 #include "ucase.h"
39 #include "uinvchar.h"
40 #include "charstr.h"
41 #include "cstring.h"
42 #include "mutex.h"
43 #include "uassert.h"
44 #include "hash.h"
45 #include "ucmp8.h"
46
47 // initial storage. Must be >= 0
48 // *** same as in uniset.cpp ! ***
49 #define START_EXTRA 16
50
51 // Define UChar constants using hex for EBCDIC compatibility
52 // Used #define to reduce private static exports and memory access time.
53 #define SET_OPEN ((UChar)0x005B) /*[*/
54 #define SET_CLOSE ((UChar)0x005D) /*]*/
55 #define HYPHEN ((UChar)0x002D) /*-*/
56 #define COMPLEMENT ((UChar)0x005E) /*^*/
57 #define COLON ((UChar)0x003A) /*:*/
58 #define BACKSLASH ((UChar)0x005C) /*\*/
59 #define INTERSECTION ((UChar)0x0026) /*&*/
60 #define UPPER_U ((UChar)0x0055) /*U*/
61 #define LOWER_U ((UChar)0x0075) /*u*/
62 #define OPEN_BRACE ((UChar)123) /*{*/
63 #define CLOSE_BRACE ((UChar)125) /*}*/
64 #define UPPER_P ((UChar)0x0050) /*P*/
65 #define LOWER_P ((UChar)0x0070) /*p*/
66 #define UPPER_N ((UChar)78) /*N*/
67 #define EQUALS ((UChar)0x003D) /*=*/
68
69 static const UChar POSIX_OPEN[] = { SET_OPEN,COLON,0 }; // "[:"
70 static const UChar POSIX_CLOSE[] = { COLON,SET_CLOSE,0 }; // ":]"
71 static const UChar PERL_OPEN[] = { BACKSLASH,LOWER_P,0 }; // "\\p"
72 static const UChar PERL_CLOSE[] = { CLOSE_BRACE,0 }; // "}"
73 static const UChar NAME_OPEN[] = { BACKSLASH,UPPER_N,0 }; // "\\N"
74 static const UChar HYPHEN_RIGHT_BRACE[] = {HYPHEN,SET_CLOSE,0}; /*-]*/
75
76 // Special property set IDs
77 static const char ANY[] = "ANY"; // [\u0000-\U0010FFFF]
78 static const char ASCII[] = "ASCII"; // [\u0000-\u007F]
79
80 // Unicode name property alias
81 #define NAME_PROP "na"
82 #define NAME_PROP_LENGTH 2
83
84 // TODO: Remove the following special-case code when
85 // these four C99-compatibility properties are implemented
86 // as enums/names.
87 U_CDECL_BEGIN
88 typedef UBool (U_CALLCONV *C99_Property_Function)(UChar32);
89 U_CDECL_END
90 static const struct C99_Map {
91 const char* name;
92 C99_Property_Function func;
93 } C99_DISPATCH[] = {
94 // These three entries omitted; they clash with PropertyAliases
95 // names for Unicode properties, so UnicodeSet already maps them
96 // to those properties.
97 //{ "alpha", u_isalpha },
98 //{ "lower", u_islower },
99 //{ "upper", u_isupper },
100
101 // MUST be in SORTED order
102 { "blank", u_isblank },
103 { "cntrl", u_iscntrl },
104 { "digit", u_isdigit },
105 { "graph", u_isgraph },
106 { "print", u_isprint },
107 { "punct", u_ispunct },
108 { "space", u_isspace },
109 { "title", u_istitle },
110 { "xdigit", u_isxdigit }
111 };
112 #define C99_COUNT (9)
113
114 // TEMPORARY: Remove when deprecated category code constructor is removed.
115 static const UChar CATEGORY_NAMES[] = {
116 // Must be kept in sync with uchar.h/UCharCategory
117 0x43, 0x6E, /* "Cn" */
118 0x4C, 0x75, /* "Lu" */
119 0x4C, 0x6C, /* "Ll" */
120 0x4C, 0x74, /* "Lt" */
121 0x4C, 0x6D, /* "Lm" */
122 0x4C, 0x6F, /* "Lo" */
123 0x4D, 0x6E, /* "Mn" */
124 0x4D, 0x65, /* "Me" */
125 0x4D, 0x63, /* "Mc" */
126 0x4E, 0x64, /* "Nd" */
127 0x4E, 0x6C, /* "Nl" */
128 0x4E, 0x6F, /* "No" */
129 0x5A, 0x73, /* "Zs" */
130 0x5A, 0x6C, /* "Zl" */
131 0x5A, 0x70, /* "Zp" */
132 0x43, 0x63, /* "Cc" */
133 0x43, 0x66, /* "Cf" */
134 0x43, 0x6F, /* "Co" */
135 0x43, 0x73, /* "Cs" */
136 0x50, 0x64, /* "Pd" */
137 0x50, 0x73, /* "Ps" */
138 0x50, 0x65, /* "Pe" */
139 0x50, 0x63, /* "Pc" */
140 0x50, 0x6F, /* "Po" */
141 0x53, 0x6D, /* "Sm" */
142 0x53, 0x63, /* "Sc" */
143 0x53, 0x6B, /* "Sk" */
144 0x53, 0x6F, /* "So" */
145 0x50, 0x69, /* "Pi" */
146 0x50, 0x66, /* "Pf" */
147 0x00
148 };
149
150 /**
151 * Delimiter string used in patterns to close a category reference:
152 * ":]". Example: "[:Lu:]".
153 */
154 static const UChar CATEGORY_CLOSE[] = {COLON, SET_CLOSE, 0x0000}; /* ":]" */
155
156 U_NAMESPACE_BEGIN
157
158 static UnicodeSet *INCLUSIONS[UPROPS_SRC_COUNT] = { NULL }; // cached getInclusions()
159
160 static Hashtable* CASE_EQUIV_HASH = NULL; // for closeOver(USET_CASE)
161
162 static CompactByteArray* CASE_EQUIV_CBA = NULL; // for closeOver(USET_CASE)
163
164 // helper functions for matching of pattern syntax pieces ------------------ ***
165 // these functions are parallel to the PERL_OPEN etc. strings above
166
167 // using these functions is not only faster than UnicodeString::compare() and
168 // caseCompare(), but they also make UnicodeSet work for simple patterns when
169 // no Unicode properties data is available - when caseCompare() fails
170
171 static inline UBool
172 isPerlOpen(const UnicodeString &pattern, int32_t pos) {
173 UChar c;
174 return pattern.charAt(pos)==BACKSLASH && ((c=pattern.charAt(pos+1))==LOWER_P || c==UPPER_P);
175 }
176
177 static inline UBool
178 isPerlClose(const UnicodeString &pattern, int32_t pos) {
179 return pattern.charAt(pos)==CLOSE_BRACE;
180 }
181
182 static inline UBool
183 isNameOpen(const UnicodeString &pattern, int32_t pos) {
184 return pattern.charAt(pos)==BACKSLASH && pattern.charAt(pos+1)==UPPER_N;
185 }
186
187 static inline UBool
188 isPOSIXOpen(const UnicodeString &pattern, int32_t pos) {
189 return pattern.charAt(pos)==SET_OPEN && pattern.charAt(pos+1)==COLON;
190 }
191
192 static inline UBool
193 isPOSIXClose(const UnicodeString &pattern, int32_t pos) {
194 return pattern.charAt(pos)==COLON && pattern.charAt(pos+1)==SET_CLOSE;
195 }
196
197 // TODO memory debugging provided inside uniset.cpp
198 // could be made available here but probably obsolete with use of modern
199 // memory leak checker tools
200 #define _dbgct(me)
201
202 //----------------------------------------------------------------
203 // Constructors &c
204 //----------------------------------------------------------------
205
206 /**
207 * Constructs a set from the given pattern, optionally ignoring
208 * white space. See the class description for the syntax of the
209 * pattern language.
210 * @param pattern a string specifying what characters are in the set
211 */
212 UnicodeSet::UnicodeSet(const UnicodeString& pattern,
213 UErrorCode& status) :
214 len(0), capacity(START_EXTRA), bufferCapacity(0),
215 list(0), buffer(0), strings(0)
216 {
217 if(U_SUCCESS(status)){
218 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity);
219 /* test for NULL */
220 if(list == NULL) {
221 status = U_MEMORY_ALLOCATION_ERROR;
222 }else{
223 allocateStrings();
224 applyPattern(pattern, USET_IGNORE_SPACE, NULL, status);
225 }
226 }
227 _dbgct(this);
228 }
229
230 /**
231 * Constructs a set from the given pattern, optionally ignoring
232 * white space. See the class description for the syntax of the
233 * pattern language.
234 * @param pattern a string specifying what characters are in the set
235 * @param options bitmask for options to apply to the pattern.
236 * Valid options are USET_IGNORE_SPACE and USET_CASE_INSENSITIVE.
237 */
238 UnicodeSet::UnicodeSet(const UnicodeString& pattern,
239 uint32_t options,
240 const SymbolTable* symbols,
241 UErrorCode& status) :
242 len(0), capacity(START_EXTRA), bufferCapacity(0),
243 list(0), buffer(0), strings(0)
244 {
245 if(U_SUCCESS(status)){
246 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity);
247 /* test for NULL */
248 if(list == NULL) {
249 status = U_MEMORY_ALLOCATION_ERROR;
250 }else{
251 allocateStrings();
252 applyPattern(pattern, options, symbols, status);
253 }
254 }
255 _dbgct(this);
256 }
257
258 UnicodeSet::UnicodeSet(const UnicodeString& pattern, ParsePosition& pos,
259 uint32_t options,
260 const SymbolTable* symbols,
261 UErrorCode& status) :
262 len(0), capacity(START_EXTRA), bufferCapacity(0),
263 list(0), buffer(0), strings(0)
264 {
265 if(U_SUCCESS(status)){
266 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity);
267 /* test for NULL */
268 if(list == NULL) {
269 status = U_MEMORY_ALLOCATION_ERROR;
270 }else{
271 allocateStrings();
272 applyPattern(pattern, pos, options, symbols, status);
273 }
274 }
275 _dbgct(this);
276 }
277
278 #ifdef U_USE_UNICODESET_DEPRECATES
279 /**
280 * DEPRECATED Constructs a set from the given Unicode character category.
281 * @param category an integer indicating the character category as
282 * defined in uchar.h.
283 * @deprecated To be removed after 2002-DEC-31
284 */
285 UnicodeSet::UnicodeSet(int8_t category, UErrorCode& status) :
286 len(0), capacity(START_EXTRA), bufferCapacity(0),
287 list(0), buffer(0), strings(0)
288 {
289 static const UChar OPEN[] = { 91, 58, 0 }; // "[:"
290 static const UChar CLOSE[]= { 58, 93, 0 }; // ":]"
291 if (U_SUCCESS(status)) {
292 if (category < 0 || category >= U_CHAR_CATEGORY_COUNT) {
293 status = U_ILLEGAL_ARGUMENT_ERROR;
294 } else {
295 UnicodeString pattern(FALSE, CATEGORY_NAMES + category*2, 2);
296 pattern.insert(0, OPEN);
297 pattern.append(CLOSE);
298 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity);
299 /* test for NULL */
300 if(list == NULL) {
301 status = U_MEMORY_ALLOCATION_ERROR;
302 }else{
303 allocateStrings();
304 applyPattern(pattern, status);
305 }
306 }
307 }
308 _dbgct(this);
309 }
310 #endif
311
312 //----------------------------------------------------------------
313 // Public API
314 //----------------------------------------------------------------
315
316 /**
317 * Modifies this set to represent the set specified by the given
318 * pattern, optionally ignoring white space. See the class
319 * description for the syntax of the pattern language.
320 * @param pattern a string specifying what characters are in the set
321 * @param ignoreSpaces if <code>true</code>, all spaces in the
322 * pattern are ignored. Spaces are those characters for which
323 * <code>uprv_isRuleWhiteSpace()</code> is <code>true</code>.
324 * Characters preceded by '\\' are escaped, losing any special
325 * meaning they otherwise have. Spaces may be included by
326 * escaping them.
327 * @exception <code>IllegalArgumentException</code> if the pattern
328 * contains a syntax error.
329 */
330 UnicodeSet& UnicodeSet::applyPattern(const UnicodeString& pattern,
331 UErrorCode& status) {
332 return applyPattern(pattern, USET_IGNORE_SPACE, NULL, status);
333 }
334
335
336 /**
337 * Modifies this set to represent the set specified by the given
338 * pattern, optionally ignoring white space. See the class
339 * description for the syntax of the pattern language.
340 * @param pattern a string specifying what characters are in the set
341 * @param options bitmask for options to apply to the pattern.
342 * Valid options are USET_IGNORE_SPACE and USET_CASE_INSENSITIVE.
343 */
344 UnicodeSet& UnicodeSet::applyPattern(const UnicodeString& pattern,
345 uint32_t options,
346 const SymbolTable* symbols,
347 UErrorCode& status) {
348 if (U_FAILURE(status)) {
349 return *this;
350 }
351
352 ParsePosition pos(0);
353 applyPattern(pattern, pos, options, symbols, status);
354 if (U_FAILURE(status)) return *this;
355
356 int32_t i = pos.getIndex();
357
358 if (options & USET_IGNORE_SPACE) {
359 // Skip over trailing whitespace
360 ICU_Utility::skipWhitespace(pattern, i, TRUE);
361 }
362
363 if (i != pattern.length()) {
364 status = U_ILLEGAL_ARGUMENT_ERROR;
365 }
366 return *this;
367 }
368
369 UnicodeSet& UnicodeSet::applyPattern(const UnicodeString& pattern,
370 ParsePosition& pos,
371 uint32_t options,
372 const SymbolTable* symbols,
373 UErrorCode& status) {
374 if (U_FAILURE(status)) {
375 return *this;
376 }
377 // Need to build the pattern in a temporary string because
378 // _applyPattern calls add() etc., which set pat to empty.
379 UnicodeString rebuiltPat;
380 RuleCharacterIterator chars(pattern, symbols, pos);
381 applyPattern(chars, symbols, rebuiltPat, options, status);
382 if (U_FAILURE(status)) return *this;
383 if (chars.inVariable()) {
384 // syntaxError(chars, "Extra chars in variable value");
385 status = U_MALFORMED_SET;
386 return *this;
387 }
388 pat = rebuiltPat;
389 return *this;
390 }
391
392 /**
393 * Return true if the given position, in the given pattern, appears
394 * to be the start of a UnicodeSet pattern.
395 */
396 UBool UnicodeSet::resemblesPattern(const UnicodeString& pattern, int32_t pos) {
397 return ((pos+1) < pattern.length() &&
398 pattern.charAt(pos) == (UChar)91/*[*/) ||
399 resemblesPropertyPattern(pattern, pos);
400 }
401
402 //----------------------------------------------------------------
403 // Implementation: Pattern parsing
404 //----------------------------------------------------------------
405
406 /**
407 * A small all-inline class to manage a UnicodeSet pointer. Add
408 * operator->() etc. as needed.
409 */
410 class UnicodeSetPointer {
411 UnicodeSet* p;
412 public:
413 inline UnicodeSetPointer() : p(0) {}
414 inline ~UnicodeSetPointer() { delete p; }
415 inline UnicodeSet* pointer() { return p; }
416 inline UBool allocate() {
417 if (p == 0) {
418 p = new UnicodeSet();
419 }
420 return p != 0;
421 }
422 };
423
424 /**
425 * Parse the pattern from the given RuleCharacterIterator. The
426 * iterator is advanced over the parsed pattern.
427 * @param chars iterator over the pattern characters. Upon return
428 * it will be advanced to the first character after the parsed
429 * pattern, or the end of the iteration if all characters are
430 * parsed.
431 * @param symbols symbol table to use to parse and dereference
432 * variables, or null if none.
433 * @param rebuiltPat the pattern that was parsed, rebuilt or
434 * copied from the input pattern, as appropriate.
435 * @param options a bit mask of zero or more of the following:
436 * IGNORE_SPACE, CASE.
437 */
438 void UnicodeSet::applyPattern(RuleCharacterIterator& chars,
439 const SymbolTable* symbols,
440 UnicodeString& rebuiltPat,
441 uint32_t options,
442 UErrorCode& ec) {
443 if (U_FAILURE(ec)) return;
444
445 // Syntax characters: [ ] ^ - & { }
446
447 // Recognized special forms for chars, sets: c-c s-s s&s
448
449 int32_t opts = RuleCharacterIterator::PARSE_VARIABLES |
450 RuleCharacterIterator::PARSE_ESCAPES;
451 if ((options & USET_IGNORE_SPACE) != 0) {
452 opts |= RuleCharacterIterator::SKIP_WHITESPACE;
453 }
454
455 UnicodeString patLocal, buf;
456 UBool usePat = FALSE;
457 UnicodeSetPointer scratch;
458 RuleCharacterIterator::Pos backup;
459
460 // mode: 0=before [, 1=between [...], 2=after ]
461 // lastItem: 0=none, 1=char, 2=set
462 int8_t lastItem = 0, mode = 0;
463 UChar32 lastChar = 0;
464 UChar op = 0;
465
466 UBool invert = FALSE;
467
468 clear();
469
470 while (mode != 2 && !chars.atEnd()) {
471 U_ASSERT((lastItem == 0 && op == 0) ||
472 (lastItem == 1 && (op == 0 || op == HYPHEN /*'-'*/)) ||
473 (lastItem == 2 && (op == 0 || op == HYPHEN /*'-'*/ ||
474 op == INTERSECTION /*'&'*/)));
475
476 UChar32 c = 0;
477 UBool literal = FALSE;
478 UnicodeSet* nested = 0; // alias - do not delete
479
480 // -------- Check for property pattern
481
482 // setMode: 0=none, 1=unicodeset, 2=propertypat, 3=preparsed
483 int8_t setMode = 0;
484 if (resemblesPropertyPattern(chars, opts)) {
485 setMode = 2;
486 }
487
488 // -------- Parse '[' of opening delimiter OR nested set.
489 // If there is a nested set, use `setMode' to define how
490 // the set should be parsed. If the '[' is part of the
491 // opening delimiter for this pattern, parse special
492 // strings "[", "[^", "[-", and "[^-". Check for stand-in
493 // characters representing a nested set in the symbol
494 // table.
495
496 else {
497 // Prepare to backup if necessary
498 chars.getPos(backup);
499 c = chars.next(opts, literal, ec);
500 if (U_FAILURE(ec)) return;
501
502 if (c == 0x5B /*'['*/ && !literal) {
503 if (mode == 1) {
504 chars.setPos(backup); // backup
505 setMode = 1;
506 } else {
507 // Handle opening '[' delimiter
508 mode = 1;
509 patLocal.append((UChar) 0x5B /*'['*/);
510 chars.getPos(backup); // prepare to backup
511 c = chars.next(opts, literal, ec);
512 if (U_FAILURE(ec)) return;
513 if (c == 0x5E /*'^'*/ && !literal) {
514 invert = TRUE;
515 patLocal.append((UChar) 0x5E /*'^'*/);
516 chars.getPos(backup); // prepare to backup
517 c = chars.next(opts, literal, ec);
518 if (U_FAILURE(ec)) return;
519 }
520 // Fall through to handle special leading '-';
521 // otherwise restart loop for nested [], \p{}, etc.
522 if (c == HYPHEN /*'-'*/) {
523 literal = TRUE;
524 // Fall through to handle literal '-' below
525 } else {
526 chars.setPos(backup); // backup
527 continue;
528 }
529 }
530 } else if (symbols != 0) {
531 const UnicodeFunctor *m = symbols->lookupMatcher(c);
532 if (m != 0) {
533 if (m->getDynamicClassID() != UnicodeSet::getStaticClassID()) {
534 ec = U_MALFORMED_SET;
535 return;
536 }
537 // casting away const, but `nested' won't be modified
538 // (important not to modify stored set)
539 nested = (UnicodeSet*) m;
540 setMode = 3;
541 }
542 }
543 }
544
545 // -------- Handle a nested set. This either is inline in
546 // the pattern or represented by a stand-in that has
547 // previously been parsed and was looked up in the symbol
548 // table.
549
550 if (setMode != 0) {
551 if (lastItem == 1) {
552 if (op != 0) {
553 // syntaxError(chars, "Char expected after operator");
554 ec = U_MALFORMED_SET;
555 return;
556 }
557 add(lastChar, lastChar);
558 _appendToPat(patLocal, lastChar, FALSE);
559 lastItem = 0;
560 op = 0;
561 }
562
563 if (op == HYPHEN /*'-'*/ || op == INTERSECTION /*'&'*/) {
564 patLocal.append(op);
565 }
566
567 if (nested == 0) {
568 // lazy allocation
569 if (!scratch.allocate()) {
570 ec = U_MEMORY_ALLOCATION_ERROR;
571 return;
572 }
573 nested = scratch.pointer();
574 }
575 switch (setMode) {
576 case 1:
577 nested->applyPattern(chars, symbols, patLocal, options, ec);
578 break;
579 case 2:
580 chars.skipIgnored(opts);
581 nested->applyPropertyPattern(chars, patLocal, ec);
582 if (U_FAILURE(ec)) return;
583 break;
584 case 3: // `nested' already parsed
585 nested->_toPattern(patLocal, FALSE);
586 break;
587 }
588
589 usePat = TRUE;
590
591 if (mode == 0) {
592 // Entire pattern is a category; leave parse loop
593 *this = *nested;
594 mode = 2;
595 break;
596 }
597
598 switch (op) {
599 case HYPHEN: /*'-'*/
600 removeAll(*nested);
601 break;
602 case INTERSECTION: /*'&'*/
603 retainAll(*nested);
604 break;
605 case 0:
606 addAll(*nested);
607 break;
608 }
609
610 op = 0;
611 lastItem = 2;
612
613 continue;
614 }
615
616 if (mode == 0) {
617 // syntaxError(chars, "Missing '['");
618 ec = U_MALFORMED_SET;
619 return;
620 }
621
622 // -------- Parse special (syntax) characters. If the
623 // current character is not special, or if it is escaped,
624 // then fall through and handle it below.
625
626 if (!literal) {
627 switch (c) {
628 case 0x5D /*']'*/:
629 if (lastItem == 1) {
630 add(lastChar, lastChar);
631 _appendToPat(patLocal, lastChar, FALSE);
632 }
633 // Treat final trailing '-' as a literal
634 if (op == HYPHEN /*'-'*/) {
635 add(op, op);
636 patLocal.append(op);
637 } else if (op == INTERSECTION /*'&'*/) {
638 // syntaxError(chars, "Trailing '&'");
639 ec = U_MALFORMED_SET;
640 return;
641 }
642 patLocal.append((UChar) 0x5D /*']'*/);
643 mode = 2;
644 continue;
645 case HYPHEN /*'-'*/:
646 if (op == 0) {
647 if (lastItem != 0) {
648 op = (UChar) c;
649 continue;
650 } else {
651 // Treat final trailing '-' as a literal
652 add(c, c);
653 c = chars.next(opts, literal, ec);
654 if (U_FAILURE(ec)) return;
655 if (c == 0x5D /*']'*/ && !literal) {
656 patLocal.append(HYPHEN_RIGHT_BRACE);
657 mode = 2;
658 continue;
659 }
660 }
661 }
662 // syntaxError(chars, "'-' not after char or set");
663 ec = U_MALFORMED_SET;
664 return;
665 case INTERSECTION /*'&'*/:
666 if (lastItem == 2 && op == 0) {
667 op = (UChar) c;
668 continue;
669 }
670 // syntaxError(chars, "'&' not after set");
671 ec = U_MALFORMED_SET;
672 return;
673 case 0x5E /*'^'*/:
674 // syntaxError(chars, "'^' not after '['");
675 ec = U_MALFORMED_SET;
676 return;
677 case 0x7B /*'{'*/:
678 if (op != 0) {
679 // syntaxError(chars, "Missing operand after operator");
680 ec = U_MALFORMED_SET;
681 return;
682 }
683 if (lastItem == 1) {
684 add(lastChar, lastChar);
685 _appendToPat(patLocal, lastChar, FALSE);
686 }
687 lastItem = 0;
688 buf.truncate(0);
689 {
690 UBool ok = FALSE;
691 while (!chars.atEnd()) {
692 c = chars.next(opts, literal, ec);
693 if (U_FAILURE(ec)) return;
694 if (c == 0x7D /*'}'*/ && !literal) {
695 ok = TRUE;
696 break;
697 }
698 buf.append(c);
699 }
700 if (buf.length() < 1 || !ok) {
701 // syntaxError(chars, "Invalid multicharacter string");
702 ec = U_MALFORMED_SET;
703 return;
704 }
705 }
706 // We have new string. Add it to set and continue;
707 // we don't need to drop through to the further
708 // processing
709 add(buf);
710 patLocal.append((UChar) 0x7B /*'{'*/);
711 _appendToPat(patLocal, buf, FALSE);
712 patLocal.append((UChar) 0x7D /*'}'*/);
713 continue;
714 case SymbolTable::SYMBOL_REF:
715 // symbols nosymbols
716 // [a-$] error error (ambiguous)
717 // [a$] anchor anchor
718 // [a-$x] var "x"* literal '$'
719 // [a-$.] error literal '$'
720 // *We won't get here in the case of var "x"
721 {
722 chars.getPos(backup);
723 c = chars.next(opts, literal, ec);
724 if (U_FAILURE(ec)) return;
725 UBool anchor = (c == 0x5D /*']'*/ && !literal);
726 if (symbols == 0 && !anchor) {
727 c = SymbolTable::SYMBOL_REF;
728 chars.setPos(backup);
729 break; // literal '$'
730 }
731 if (anchor && op == 0) {
732 if (lastItem == 1) {
733 add(lastChar, lastChar);
734 _appendToPat(patLocal, lastChar, FALSE);
735 }
736 add(U_ETHER);
737 usePat = TRUE;
738 patLocal.append((UChar) SymbolTable::SYMBOL_REF);
739 patLocal.append((UChar) 0x5D /*']'*/);
740 mode = 2;
741 continue;
742 }
743 // syntaxError(chars, "Unquoted '$'");
744 ec = U_MALFORMED_SET;
745 return;
746 }
747 default:
748 break;
749 }
750 }
751
752 // -------- Parse literal characters. This includes both
753 // escaped chars ("\u4E01") and non-syntax characters
754 // ("a").
755
756 switch (lastItem) {
757 case 0:
758 lastItem = 1;
759 lastChar = c;
760 break;
761 case 1:
762 if (op == HYPHEN /*'-'*/) {
763 if (lastChar >= c) {
764 // Don't allow redundant (a-a) or empty (b-a) ranges;
765 // these are most likely typos.
766 // syntaxError(chars, "Invalid range");
767 ec = U_MALFORMED_SET;
768 return;
769 }
770 add(lastChar, c);
771 _appendToPat(patLocal, lastChar, FALSE);
772 patLocal.append(op);
773 _appendToPat(patLocal, c, FALSE);
774 lastItem = 0;
775 op = 0;
776 } else {
777 add(lastChar, lastChar);
778 _appendToPat(patLocal, lastChar, FALSE);
779 lastChar = c;
780 }
781 break;
782 case 2:
783 if (op != 0) {
784 // syntaxError(chars, "Set expected after operator");
785 ec = U_MALFORMED_SET;
786 return;
787 }
788 lastChar = c;
789 lastItem = 1;
790 break;
791 }
792 }
793
794 if (mode != 2) {
795 // syntaxError(chars, "Missing ']'");
796 ec = U_MALFORMED_SET;
797 return;
798 }
799
800 chars.skipIgnored(opts);
801
802 /**
803 * Handle global flags (invert, case insensitivity). If this
804 * pattern should be compiled case-insensitive, then we need
805 * to close over case BEFORE COMPLEMENTING. This makes
806 * patterns like /[^abc]/i work.
807 */
808 if ((options & USET_CASE_INSENSITIVE) != 0) {
809 closeOver(USET_CASE);
810 }
811 else if ((options & USET_ADD_CASE_MAPPINGS) != 0) {
812 closeOver(USET_ADD_CASE_MAPPINGS);
813 }
814 if (invert) {
815 complement();
816 }
817
818 // Use the rebuilt pattern (patLocal) only if necessary. Prefer the
819 // generated pattern.
820 if (usePat) {
821 rebuiltPat.append(patLocal);
822 } else {
823 _generatePattern(rebuiltPat, FALSE);
824 }
825 }
826
827 //----------------------------------------------------------------
828 // Property set implementation
829 //----------------------------------------------------------------
830
831 static UBool numericValueFilter(UChar32 ch, void* context) {
832 return u_getNumericValue(ch) == *(double*)context;
833 }
834
835 static UBool generalCategoryMaskFilter(UChar32 ch, void* context) {
836 int32_t value = *(int32_t*)context;
837 return (U_GET_GC_MASK((UChar32) ch) & value) != 0;
838 }
839
840 static UBool versionFilter(UChar32 ch, void* context) {
841 UVersionInfo v, none = { 0, 0, 0, 0};
842 UVersionInfo* version = (UVersionInfo*)context;
843 u_charAge(ch, v);
844 return uprv_memcmp(&v, &none, sizeof(v)) > 0 && uprv_memcmp(&v, version, sizeof(v)) <= 0;
845 }
846
847 typedef struct {
848 UProperty prop;
849 int32_t value;
850 } IntPropertyContext;
851
852 static UBool intPropertyFilter(UChar32 ch, void* context) {
853 IntPropertyContext* c = (IntPropertyContext*)context;
854 return u_getIntPropertyValue((UChar32) ch, c->prop) == c->value;
855 }
856
857
858 /**
859 * Generic filter-based scanning code for UCD property UnicodeSets.
860 */
861 void UnicodeSet::applyFilter(UnicodeSet::Filter filter,
862 void* context,
863 int32_t src,
864 UErrorCode &status) {
865 // Walk through all Unicode characters, noting the start
866 // and end of each range for which filter.contain(c) is
867 // true. Add each range to a set.
868 //
869 // To improve performance, use the INCLUSIONS set, which
870 // encodes information about character ranges that are known
871 // to have identical properties. INCLUSIONS contains
872 // only the first characters of such ranges.
873 //
874 // TODO Where possible, instead of scanning over code points,
875 // use internal property data to initialize UnicodeSets for
876 // those properties. Scanning code points is slow.
877 if (U_FAILURE(status)) return;
878
879 const UnicodeSet* inclusions = getInclusions(src, status);
880 if (U_FAILURE(status)) {
881 return;
882 }
883
884 clear();
885
886 UChar32 startHasProperty = -1;
887 int limitRange = inclusions->getRangeCount();
888
889 for (int j=0; j<limitRange; ++j) {
890 // get current range
891 UChar32 start = inclusions->getRangeStart(j);
892 UChar32 end = inclusions->getRangeEnd(j);
893
894 // for all the code points in the range, process
895 for (UChar32 ch = start; ch <= end; ++ch) {
896 // only add to this UnicodeSet on inflection points --
897 // where the hasProperty value changes to false
898 if ((*filter)(ch, context)) {
899 if (startHasProperty < 0) {
900 startHasProperty = ch;
901 }
902 } else if (startHasProperty >= 0) {
903 add(startHasProperty, ch-1);
904 startHasProperty = -1;
905 }
906 }
907 }
908 if (startHasProperty >= 0) {
909 add((UChar32)startHasProperty, (UChar32)0x10FFFF);
910 }
911 }
912
913 static UBool mungeCharName(char* dst, const char* src, int32_t dstCapacity) {
914 /* Note: we use ' ' in compiler code page */
915 int32_t j = 0;
916 char ch;
917 --dstCapacity; /* make room for term. zero */
918 while ((ch = *src++) != 0) {
919 if (ch == ' ' && (j==0 || (j>0 && dst[j-1]==' '))) {
920 continue;
921 }
922 if (j >= dstCapacity) return FALSE;
923 dst[j++] = ch;
924 }
925 if (j > 0 && dst[j-1] == ' ') --j;
926 dst[j] = 0;
927 return TRUE;
928 }
929
930 //----------------------------------------------------------------
931 // Property set API
932 //----------------------------------------------------------------
933
934 #define FAIL(ec) {ec=U_ILLEGAL_ARGUMENT_ERROR; return *this;}
935
936 // TODO: Remove the following special-case code when
937 // these four C99-compatibility properties are implemented
938 // as enums/names.
939 static UBool c99Filter(UChar32 ch, void* context) {
940 struct C99_Map* m = (struct C99_Map*) context;
941 return m->func(ch);
942 }
943
944 UnicodeSet&
945 UnicodeSet::applyIntPropertyValue(UProperty prop, int32_t value, UErrorCode& ec) {
946 if (U_FAILURE(ec)) return *this;
947
948 if (prop == UCHAR_GENERAL_CATEGORY_MASK) {
949 applyFilter(generalCategoryMaskFilter, &value, UPROPS_SRC_CHAR, ec);
950 } else {
951 IntPropertyContext c = {prop, value};
952 applyFilter(intPropertyFilter, &c, uprops_getSource(prop), ec);
953 }
954 return *this;
955 }
956
957 UnicodeSet&
958 UnicodeSet::applyPropertyAlias(const UnicodeString& prop,
959 const UnicodeString& value,
960 UErrorCode& ec) {
961 if (U_FAILURE(ec)) return *this;
962
963 // prop and value used to be converted to char * using the default
964 // converter instead of the invariant conversion.
965 // This should not be necessary because all Unicode property and value
966 // names use only invariant characters.
967 // If there are any variant characters, then we won't find them anyway.
968 // Checking first avoids assertion failures in the conversion.
969 if( !uprv_isInvariantUString(prop.getBuffer(), prop.length()) ||
970 !uprv_isInvariantUString(value.getBuffer(), value.length())
971 ) {
972 FAIL(ec);
973 }
974 CharString pname(prop);
975 CharString vname(value);
976
977 UProperty p;
978 int32_t v;
979 UBool mustNotBeEmpty = FALSE;
980
981 if (value.length() > 0) {
982 p = u_getPropertyEnum(pname);
983 if (p == UCHAR_INVALID_CODE) FAIL(ec);
984
985 // Treat gc as gcm
986 if (p == UCHAR_GENERAL_CATEGORY) {
987 p = UCHAR_GENERAL_CATEGORY_MASK;
988 }
989
990 if ((p >= UCHAR_BINARY_START && p < UCHAR_BINARY_LIMIT) ||
991 (p >= UCHAR_INT_START && p < UCHAR_INT_LIMIT) ||
992 (p >= UCHAR_MASK_START && p < UCHAR_MASK_LIMIT)) {
993 v = u_getPropertyValueEnum(p, vname);
994 if (v == UCHAR_INVALID_CODE) {
995 // Handle numeric CCC
996 if (p == UCHAR_CANONICAL_COMBINING_CLASS ||
997 p == UCHAR_TRAIL_CANONICAL_COMBINING_CLASS ||
998 p == UCHAR_LEAD_CANONICAL_COMBINING_CLASS) {
999 char* end;
1000 double value = uprv_strtod(vname, &end);
1001 v = (int32_t) value;
1002 if (v != value || v < 0 || *end != 0) {
1003 // non-integral or negative value, or trailing junk
1004 FAIL(ec);
1005 }
1006 // If the resultant set is empty then the numeric value
1007 // was invalid.
1008 mustNotBeEmpty = TRUE;
1009 } else {
1010 FAIL(ec);
1011 }
1012 }
1013 }
1014
1015 else {
1016
1017 switch (p) {
1018 case UCHAR_NUMERIC_VALUE:
1019 {
1020 char* end;
1021 double value = uprv_strtod(vname, &end);
1022 if (*end != 0) {
1023 FAIL(ec);
1024 }
1025 applyFilter(numericValueFilter, &value, UPROPS_SRC_CHAR, ec);
1026 return *this;
1027 }
1028 break;
1029 case UCHAR_NAME:
1030 case UCHAR_UNICODE_1_NAME:
1031 {
1032 // Must munge name, since u_charFromName() does not do
1033 // 'loose' matching.
1034 char buf[128]; // it suffices that this be > uprv_getMaxCharNameLength
1035 if (!mungeCharName(buf, vname, sizeof(buf))) FAIL(ec);
1036 UCharNameChoice choice = (p == UCHAR_NAME) ?
1037 U_EXTENDED_CHAR_NAME : U_UNICODE_10_CHAR_NAME;
1038 UChar32 ch = u_charFromName(choice, buf, &ec);
1039 if (U_SUCCESS(ec)) {
1040 clear();
1041 add(ch);
1042 return *this;
1043 } else {
1044 FAIL(ec);
1045 }
1046 }
1047 break;
1048 case UCHAR_AGE:
1049 {
1050 // Must munge name, since u_versionFromString() does not do
1051 // 'loose' matching.
1052 char buf[128];
1053 if (!mungeCharName(buf, vname, sizeof(buf))) FAIL(ec);
1054 UVersionInfo version;
1055 u_versionFromString(version, buf);
1056 applyFilter(versionFilter, &version, UPROPS_SRC_CHAR, ec);
1057 return *this;
1058 }
1059 break;
1060 default:
1061 // p is a non-binary, non-enumerated property that we
1062 // don't support (yet).
1063 FAIL(ec);
1064 }
1065 }
1066 }
1067
1068 else {
1069 // value is empty. Interpret as General Category, Script, or
1070 // Binary property.
1071 p = UCHAR_GENERAL_CATEGORY_MASK;
1072 v = u_getPropertyValueEnum(p, pname);
1073 if (v == UCHAR_INVALID_CODE) {
1074 p = UCHAR_SCRIPT;
1075 v = u_getPropertyValueEnum(p, pname);
1076 if (v == UCHAR_INVALID_CODE) {
1077 p = u_getPropertyEnum(pname);
1078 if (p >= UCHAR_BINARY_START && p < UCHAR_BINARY_LIMIT) {
1079 v = 1;
1080 } else if (0 == uprv_comparePropertyNames(ANY, pname)) {
1081 set(MIN_VALUE, MAX_VALUE);
1082 return *this;
1083 } else if (0 == uprv_comparePropertyNames(ASCII, pname)) {
1084 set(0, 0x7F);
1085 return *this;
1086 } else {
1087
1088 // TODO: Remove the following special-case code when
1089 // these four C99-compatibility properties are implemented
1090 // as enums/names.
1091 for (int32_t i=0; i<C99_COUNT; ++i) {
1092 int32_t c = uprv_comparePropertyNames(pname, C99_DISPATCH[i].name);
1093 if (c == 0) {
1094 applyFilter(c99Filter, (void*) &C99_DISPATCH[i], UPROPS_SRC_CHAR, ec);
1095 return *this;
1096 } else if (c < 0) {
1097 // Further entries will not match; bail out
1098 break;
1099 }
1100 }
1101
1102 FAIL(ec);
1103 }
1104 }
1105 }
1106 }
1107
1108 applyIntPropertyValue(p, v, ec);
1109
1110 if (U_SUCCESS(ec) && (mustNotBeEmpty && isEmpty())) {
1111 // mustNotBeEmpty is set to true if an empty set indicates
1112 // invalid input.
1113 ec = U_ILLEGAL_ARGUMENT_ERROR;
1114 }
1115
1116 return *this;
1117 }
1118
1119 //----------------------------------------------------------------
1120 // Property set patterns
1121 //----------------------------------------------------------------
1122
1123 /**
1124 * Return true if the given position, in the given pattern, appears
1125 * to be the start of a property set pattern.
1126 */
1127 UBool UnicodeSet::resemblesPropertyPattern(const UnicodeString& pattern,
1128 int32_t pos) {
1129 // Patterns are at least 5 characters long
1130 if ((pos+5) > pattern.length()) {
1131 return FALSE;
1132 }
1133
1134 // Look for an opening [:, [:^, \p, or \P
1135 return isPOSIXOpen(pattern, pos) || isPerlOpen(pattern, pos) || isNameOpen(pattern, pos);
1136 }
1137
1138 /**
1139 * Return true if the given iterator appears to point at a
1140 * property pattern. Regardless of the result, return with the
1141 * iterator unchanged.
1142 * @param chars iterator over the pattern characters. Upon return
1143 * it will be unchanged.
1144 * @param iterOpts RuleCharacterIterator options
1145 */
1146 UBool UnicodeSet::resemblesPropertyPattern(RuleCharacterIterator& chars,
1147 int32_t iterOpts) {
1148 // NOTE: literal will always be FALSE, because we don't parse escapes.
1149 UBool result = FALSE, literal;
1150 UErrorCode ec = U_ZERO_ERROR;
1151 iterOpts &= ~RuleCharacterIterator::PARSE_ESCAPES;
1152 RuleCharacterIterator::Pos pos;
1153 chars.getPos(pos);
1154 UChar32 c = chars.next(iterOpts, literal, ec);
1155 if (c == 0x5B /*'['*/ || c == 0x5C /*'\\'*/) {
1156 UChar32 d = chars.next(iterOpts & ~RuleCharacterIterator::SKIP_WHITESPACE,
1157 literal, ec);
1158 result = (c == 0x5B /*'['*/) ? (d == 0x3A /*':'*/) :
1159 (d == 0x4E /*'N'*/ || d == 0x70 /*'p'*/ || d == 0x50 /*'P'*/);
1160 }
1161 chars.setPos(pos);
1162 return result && U_SUCCESS(ec);
1163 }
1164
1165 /**
1166 * Parse the given property pattern at the given parse position.
1167 */
1168 UnicodeSet& UnicodeSet::applyPropertyPattern(const UnicodeString& pattern,
1169 ParsePosition& ppos,
1170 UErrorCode &ec) {
1171 int32_t pos = ppos.getIndex();
1172
1173 UBool posix = FALSE; // true for [:pat:], false for \p{pat} \P{pat} \N{pat}
1174 UBool isName = FALSE; // true for \N{pat}, o/w false
1175 UBool invert = FALSE;
1176
1177 if (U_FAILURE(ec)) return *this;
1178
1179 // Minimum length is 5 characters, e.g. \p{L}
1180 if ((pos+5) > pattern.length()) {
1181 FAIL(ec);
1182 }
1183
1184 // On entry, ppos should point to one of the following locations:
1185 // Look for an opening [:, [:^, \p, or \P
1186 if (isPOSIXOpen(pattern, pos)) {
1187 posix = TRUE;
1188 pos += 2;
1189 pos = ICU_Utility::skipWhitespace(pattern, pos);
1190 if (pos < pattern.length() && pattern.charAt(pos) == COMPLEMENT) {
1191 ++pos;
1192 invert = TRUE;
1193 }
1194 } else if (isPerlOpen(pattern, pos) || isNameOpen(pattern, pos)) {
1195 UChar c = pattern.charAt(pos+1);
1196 invert = (c == UPPER_P);
1197 isName = (c == UPPER_N);
1198 pos += 2;
1199 pos = ICU_Utility::skipWhitespace(pattern, pos);
1200 if (pos == pattern.length() || pattern.charAt(pos++) != OPEN_BRACE) {
1201 // Syntax error; "\p" or "\P" not followed by "{"
1202 FAIL(ec);
1203 }
1204 } else {
1205 // Open delimiter not seen
1206 FAIL(ec);
1207 }
1208
1209 // Look for the matching close delimiter, either :] or }
1210 int32_t close = pattern.indexOf(posix ? POSIX_CLOSE : PERL_CLOSE, pos);
1211 if (close < 0) {
1212 // Syntax error; close delimiter missing
1213 FAIL(ec);
1214 }
1215
1216 // Look for an '=' sign. If this is present, we will parse a
1217 // medium \p{gc=Cf} or long \p{GeneralCategory=Format}
1218 // pattern.
1219 int32_t equals = pattern.indexOf(EQUALS, pos);
1220 UnicodeString propName, valueName;
1221 if (equals >= 0 && equals < close && !isName) {
1222 // Equals seen; parse medium/long pattern
1223 pattern.extractBetween(pos, equals, propName);
1224 pattern.extractBetween(equals+1, close, valueName);
1225 }
1226
1227 else {
1228 // Handle case where no '=' is seen, and \N{}
1229 pattern.extractBetween(pos, close, propName);
1230
1231 // Handle \N{name}
1232 if (isName) {
1233 // This is a little inefficient since it means we have to
1234 // parse NAME_PROP back to UCHAR_NAME even though we already
1235 // know it's UCHAR_NAME. If we refactor the API to
1236 // support args of (UProperty, char*) then we can remove
1237 // NAME_PROP and make this a little more efficient.
1238 valueName = propName;
1239 propName = UnicodeString(NAME_PROP, NAME_PROP_LENGTH, US_INV);
1240 }
1241 }
1242
1243 applyPropertyAlias(propName, valueName, ec);
1244
1245 if (U_SUCCESS(ec)) {
1246 if (invert) {
1247 complement();
1248 }
1249
1250 // Move to the limit position after the close delimiter if the
1251 // parse succeeded.
1252 ppos.setIndex(close + (posix ? 2 : 1));
1253 }
1254
1255 return *this;
1256 }
1257
1258 /**
1259 * Parse a property pattern.
1260 * @param chars iterator over the pattern characters. Upon return
1261 * it will be advanced to the first character after the parsed
1262 * pattern, or the end of the iteration if all characters are
1263 * parsed.
1264 * @param rebuiltPat the pattern that was parsed, rebuilt or
1265 * copied from the input pattern, as appropriate.
1266 */
1267 void UnicodeSet::applyPropertyPattern(RuleCharacterIterator& chars,
1268 UnicodeString& rebuiltPat,
1269 UErrorCode& ec) {
1270 if (U_FAILURE(ec)) return;
1271 UnicodeString pattern;
1272 chars.lookahead(pattern);
1273 ParsePosition pos(0);
1274 applyPropertyPattern(pattern, pos, ec);
1275 if (U_FAILURE(ec)) return;
1276 if (pos.getIndex() == 0) {
1277 // syntaxError(chars, "Invalid property pattern");
1278 ec = U_MALFORMED_SET;
1279 return;
1280 }
1281 chars.jumpahead(pos.getIndex());
1282 rebuiltPat.append(pattern, 0, pos.getIndex());
1283 }
1284
1285 //----------------------------------------------------------------
1286 // Inclusions list
1287 //----------------------------------------------------------------
1288
1289 U_CDECL_BEGIN
1290
1291 // USetAdder implementation
1292 // Does not use uset.h to reduce code dependencies
1293 static void U_CALLCONV
1294 _set_add(USet *set, UChar32 c) {
1295 ((UnicodeSet *)set)->add(c);
1296 }
1297
1298 static void U_CALLCONV
1299 _set_addRange(USet *set, UChar32 start, UChar32 end) {
1300 ((UnicodeSet *)set)->add(start, end);
1301 }
1302
1303 static void U_CALLCONV
1304 _set_addString(USet *set, const UChar *str, int32_t length) {
1305 ((UnicodeSet *)set)->add(UnicodeString((UBool)(length<0), str, length));
1306 }
1307
1308 /**
1309 * Cleanup function for UnicodeSet
1310 */
1311 static UBool U_CALLCONV uset_cleanup(void) {
1312 int32_t i;
1313
1314 for(i = UPROPS_SRC_NONE; i < UPROPS_SRC_COUNT; ++i) {
1315 if (INCLUSIONS[i] != NULL) {
1316 delete INCLUSIONS[i];
1317 INCLUSIONS[i] = NULL;
1318 }
1319 }
1320
1321 if (CASE_EQUIV_HASH != NULL) {
1322 delete CASE_EQUIV_HASH;
1323 CASE_EQUIV_HASH = NULL;
1324 }
1325
1326 if (CASE_EQUIV_CBA != NULL) {
1327 ucmp8_close(CASE_EQUIV_CBA);
1328 CASE_EQUIV_CBA = NULL;
1329 }
1330
1331 return TRUE;
1332 }
1333
1334 U_CDECL_END
1335
1336 const UnicodeSet* UnicodeSet::getInclusions(int32_t src, UErrorCode &status) {
1337 umtx_lock(NULL);
1338 UBool f = (INCLUSIONS[src] == NULL);
1339 umtx_unlock(NULL);
1340 if (f) {
1341 UnicodeSet* incl = new UnicodeSet();
1342 USetAdder sa = {
1343 (USet *)incl,
1344 _set_add,
1345 _set_addRange,
1346 _set_addString
1347 };
1348
1349 if (incl != NULL) {
1350 switch(src) {
1351 case UPROPS_SRC_CHAR:
1352 uchar_addPropertyStarts(&sa, &status);
1353 break;
1354 case UPROPS_SRC_HST:
1355 uhst_addPropertyStarts(&sa, &status);
1356 break;
1357 #if !UCONFIG_NO_NORMALIZATION
1358 case UPROPS_SRC_NORM:
1359 unorm_addPropertyStarts(&sa, &status);
1360 break;
1361 #endif
1362 case UPROPS_SRC_CASE:
1363 ucase_addPropertyStarts(ucase_getSingleton(&status), &sa, &status);
1364 break;
1365 default:
1366 status = U_INTERNAL_PROGRAM_ERROR;
1367 break;
1368 }
1369 if (U_SUCCESS(status)) {
1370 umtx_lock(NULL);
1371 if (INCLUSIONS[src] == NULL) {
1372 INCLUSIONS[src] = incl;
1373 incl = NULL;
1374 ucln_common_registerCleanup(UCLN_COMMON_USET, uset_cleanup);
1375 }
1376 umtx_unlock(NULL);
1377 }
1378 delete incl;
1379 } else {
1380 status = U_MEMORY_ALLOCATION_ERROR;
1381 }
1382 }
1383 return INCLUSIONS[src];
1384 }
1385
1386 //----------------------------------------------------------------
1387 // Case folding API
1388 //----------------------------------------------------------------
1389
1390 // add the result of a full case mapping to the set
1391 // use str as a temporary string to avoid constructing one
1392 static inline void
1393 addCaseMapping(UnicodeSet &set, int32_t result, const UChar *full, UnicodeString &str) {
1394 if(result >= 0) {
1395 if(result > UCASE_MAX_STRING_LENGTH) {
1396 // add a single-code point case mapping
1397 set.add(result);
1398 } else {
1399 // add a string case mapping from full with length result
1400 str.setTo((UBool)FALSE, full, result);
1401 set.add(str);
1402 }
1403 }
1404 // result < 0: the code point mapped to itself, no need to add it
1405 // see ucase.h
1406 }
1407
1408 UnicodeSet& UnicodeSet::closeOver(int32_t attribute) {
1409 if ((attribute & USET_CASE) != 0) {
1410 UnicodeSet foldSet;
1411 UnicodeString str;
1412 int32_t n = getRangeCount();
1413 for (int32_t i=0; i<n; ++i) {
1414 UChar32 start = getRangeStart(i);
1415 UChar32 end = getRangeEnd(i);
1416 for (UChar32 cp=start; cp<=end; ++cp) {
1417 str.truncate(0);
1418 str.append(u_foldCase(cp, U_FOLD_CASE_DEFAULT));
1419 foldSet.caseCloseOne(str);
1420 }
1421 }
1422 if (strings != NULL && strings->size() > 0) {
1423 for (int32_t j=0; j<strings->size(); ++j) {
1424 str = * (const UnicodeString*) strings->elementAt(j);
1425 foldSet.caseCloseOne(str.foldCase());
1426 }
1427 }
1428 *this = foldSet;
1429 }
1430 else if ((attribute & USET_ADD_CASE_MAPPINGS)) {
1431 UnicodeSet foldSet(*this);
1432 UnicodeString str;
1433 UErrorCode status = U_ZERO_ERROR;
1434 UCaseProps *csp = ucase_getSingleton(&status);
1435 if (U_SUCCESS(status)) {
1436 int32_t n = getRangeCount();
1437 UChar32 result;
1438 const UChar *full;
1439 int32_t locCache = 0;
1440
1441 for (int32_t i=0; i<n; ++i) {
1442 UChar32 start = getRangeStart(i);
1443 UChar32 end = getRangeEnd(i);
1444
1445 for (UChar32 cp=start; cp<=end; ++cp) {
1446 result = ucase_toFullLower(csp, cp, NULL, NULL, &full, "", &locCache);
1447 addCaseMapping(foldSet, result, full, str);
1448
1449 result = ucase_toFullTitle(csp, cp, NULL, NULL, &full, "", &locCache);
1450 addCaseMapping(foldSet, result, full, str);
1451
1452 result = ucase_toFullUpper(csp, cp, NULL, NULL, &full, "", &locCache);
1453 addCaseMapping(foldSet, result, full, str);
1454
1455 result = ucase_toFullFolding(csp, cp, &full, 0);
1456 addCaseMapping(foldSet, result, full, str);
1457 }
1458 }
1459 if (strings != NULL && strings->size() > 0) {
1460 Locale root("");
1461 #if !UCONFIG_NO_BREAK_ITERATION
1462 BreakIterator *bi = BreakIterator::createWordInstance(root, status);
1463 #endif
1464 if (U_SUCCESS(status)) {
1465 const UnicodeString *pStr;
1466
1467 for (int32_t j=0; j<strings->size(); ++j) {
1468 pStr = (const UnicodeString *) strings->elementAt(j);
1469 (str = *pStr).toLower(root);
1470 foldSet.add(str);
1471 #if !UCONFIG_NO_BREAK_ITERATION
1472 (str = *pStr).toTitle(bi, root);
1473 foldSet.add(str);
1474 #endif
1475 (str = *pStr).toUpper(root);
1476 foldSet.add(str);
1477 (str = *pStr).foldCase();
1478 foldSet.add(str);
1479 }
1480 }
1481 #if !UCONFIG_NO_BREAK_ITERATION
1482 delete bi;
1483 #endif
1484 }
1485 *this = foldSet;
1486 }
1487 }
1488 return *this;
1489 }
1490
1491 //----------------------------------------------------------------
1492 // Case folding implementation
1493 //----------------------------------------------------------------
1494
1495 /**
1496 * Data structure representing a case-fold equivalency class. It is a
1497 * SET containing 0 or more code units, and 0 or more strings of
1498 * length 2 code units or longer.
1499 *
1500 * This class is implemented as a 8-UChar buffer with a few
1501 * convenience methods on it. The format of the buffer:
1502 * - All single code units in this set, followed by a terminating
1503 * zero. If none, then just a terminating zero.
1504 * - Zero or more 0-terminated strings, each of length >= 2
1505 * code units.
1506 * - A single terminating (UChar)0.
1507 *
1508 * Usage:
1509 *
1510 * const CaseEquivClass& c = ...;
1511 * const UChar* p;
1512 * for (c.getStrings(p); *p; c.nextString(p)) {
1513 * foo(p);
1514 * }
1515 */
1516 class CaseEquivClass {
1517 public:
1518 UChar data[8];
1519
1520 /**
1521 * Return the string of single code units. May be "". Will never
1522 * be NULL.
1523 */
1524 const UChar* getSingles() const {
1525 return data;
1526 }
1527
1528 /**
1529 * Return the first multi-code-unit string. May be "" if there
1530 * are none. Will never be NULL.
1531 * @param p pointer to be set to point to the first string.
1532 */
1533 void getStrings(const UChar*& p) const {
1534 p = data;
1535 nextString(p);
1536 }
1537
1538 /**
1539 * Advance a pointer from one multi-code-unit string to the next.
1540 * May advance 'p' to point to "" if there are no more.
1541 * Do NOT call if *p == 0.
1542 * @param p pointer to be advanced to point to the next string.
1543 */
1544 static void nextString(const UChar*& p) {
1545 while (*p++) {}
1546 }
1547 };
1548
1549 /**
1550 * IMPORTANT: The following two static data arrays represent the
1551 * information used to do case closure. The first array is an array
1552 * of pairs. That is, for each even index e, entries [e] and [e+1]
1553 * form a pair of case equivalent code units. The entry at [e] is the
1554 * folded one, that is, the one for which u_foldCase(x)==x.
1555 *
1556 * The second static array is an array of CaseEquivClass objects.
1557 * Since these objects are just adorned UChar[] arrays, they can be
1558 * initialized in place in the array, and all of them can live in a
1559 * single piece of static memory, with no heap allocation.
1560 */
1561
1562 // MACHINE-GENERATED: Do not edit (see com.ibm.icu.dev.tools.translit.UnicodeSetCloseOver)
1563 static const UChar CASE_PAIRS[] = {
1564 0x0061,0x0041,0x0062,0x0042,0x0063,0x0043,0x0064,0x0044,0x0065,0x0045,
1565 0x0066,0x0046,0x0067,0x0047,0x0068,0x0048,0x0069,0x0049,0x006A,0x004A,
1566 0x006C,0x004C,0x006D,0x004D,0x006E,0x004E,0x006F,0x004F,0x0070,0x0050,
1567 0x0071,0x0051,0x0072,0x0052,0x0074,0x0054,0x0075,0x0055,0x0076,0x0056,
1568 0x0077,0x0057,0x0078,0x0058,0x0079,0x0059,0x007A,0x005A,0x00E0,0x00C0,
1569 0x00E1,0x00C1,0x00E2,0x00C2,0x00E3,0x00C3,0x00E4,0x00C4,0x00E6,0x00C6,
1570 0x00E7,0x00C7,0x00E8,0x00C8,0x00E9,0x00C9,0x00EA,0x00CA,0x00EB,0x00CB,
1571 0x00EC,0x00CC,0x00ED,0x00CD,0x00EE,0x00CE,0x00EF,0x00CF,0x00F0,0x00D0,
1572 0x00F1,0x00D1,0x00F2,0x00D2,0x00F3,0x00D3,0x00F4,0x00D4,0x00F5,0x00D5,
1573 0x00F6,0x00D6,0x00F8,0x00D8,0x00F9,0x00D9,0x00FA,0x00DA,0x00FB,0x00DB,
1574 0x00FC,0x00DC,0x00FD,0x00DD,0x00FE,0x00DE,0x00FF,0x0178,0x0101,0x0100,
1575 0x0103,0x0102,0x0105,0x0104,0x0107,0x0106,0x0109,0x0108,0x010B,0x010A,
1576 0x010D,0x010C,0x010F,0x010E,0x0111,0x0110,0x0113,0x0112,0x0115,0x0114,
1577 0x0117,0x0116,0x0119,0x0118,0x011B,0x011A,0x011D,0x011C,0x011F,0x011E,
1578 0x0121,0x0120,0x0123,0x0122,0x0125,0x0124,0x0127,0x0126,0x0129,0x0128,
1579 0x012B,0x012A,0x012D,0x012C,0x012F,0x012E,0x0133,0x0132,0x0135,0x0134,
1580 0x0137,0x0136,0x013A,0x0139,0x013C,0x013B,0x013E,0x013D,0x0140,0x013F,
1581 0x0142,0x0141,0x0144,0x0143,0x0146,0x0145,0x0148,0x0147,0x014B,0x014A,
1582 0x014D,0x014C,0x014F,0x014E,0x0151,0x0150,0x0153,0x0152,0x0155,0x0154,
1583 0x0157,0x0156,0x0159,0x0158,0x015B,0x015A,0x015D,0x015C,0x015F,0x015E,
1584 0x0161,0x0160,0x0163,0x0162,0x0165,0x0164,0x0167,0x0166,0x0169,0x0168,
1585 0x016B,0x016A,0x016D,0x016C,0x016F,0x016E,0x0171,0x0170,0x0173,0x0172,
1586 0x0175,0x0174,0x0177,0x0176,0x017A,0x0179,0x017C,0x017B,0x017E,0x017D,
1587 0x0183,0x0182,0x0185,0x0184,0x0188,0x0187,0x018C,0x018B,0x0192,0x0191,
1588 0x0195,0x01F6,0x0199,0x0198,0x019E,0x0220,0x01A1,0x01A0,0x01A3,0x01A2,
1589 0x01A5,0x01A4,0x01A8,0x01A7,0x01AD,0x01AC,0x01B0,0x01AF,0x01B4,0x01B3,
1590 0x01B6,0x01B5,0x01B9,0x01B8,0x01BD,0x01BC,0x01BF,0x01F7,0x01CE,0x01CD,
1591 0x01D0,0x01CF,0x01D2,0x01D1,0x01D4,0x01D3,0x01D6,0x01D5,0x01D8,0x01D7,
1592 0x01DA,0x01D9,0x01DC,0x01DB,0x01DD,0x018E,0x01DF,0x01DE,0x01E1,0x01E0,
1593 0x01E3,0x01E2,0x01E5,0x01E4,0x01E7,0x01E6,0x01E9,0x01E8,0x01EB,0x01EA,
1594 0x01ED,0x01EC,0x01EF,0x01EE,0x01F5,0x01F4,0x01F9,0x01F8,0x01FB,0x01FA,
1595 0x01FD,0x01FC,0x01FF,0x01FE,0x0201,0x0200,0x0203,0x0202,0x0205,0x0204,
1596 0x0207,0x0206,0x0209,0x0208,0x020B,0x020A,0x020D,0x020C,0x020F,0x020E,
1597 0x0211,0x0210,0x0213,0x0212,0x0215,0x0214,0x0217,0x0216,0x0219,0x0218,
1598 0x021B,0x021A,0x021D,0x021C,0x021F,0x021E,0x0223,0x0222,0x0225,0x0224,
1599 0x0227,0x0226,0x0229,0x0228,0x022B,0x022A,0x022D,0x022C,0x022F,0x022E,
1600 0x0231,0x0230,0x0233,0x0232,0x0253,0x0181,0x0254,0x0186,0x0256,0x0189,
1601 0x0257,0x018A,0x0259,0x018F,0x025B,0x0190,0x0260,0x0193,0x0263,0x0194,
1602 0x0268,0x0197,0x0269,0x0196,0x026F,0x019C,0x0272,0x019D,0x0275,0x019F,
1603 0x0280,0x01A6,0x0283,0x01A9,0x0288,0x01AE,0x028A,0x01B1,0x028B,0x01B2,
1604 0x0292,0x01B7,0x03AC,0x0386,0x03AD,0x0388,0x03AE,0x0389,0x03AF,0x038A,
1605 0x03B1,0x0391,0x03B3,0x0393,0x03B4,0x0394,0x03B6,0x0396,0x03B7,0x0397,
1606 0x03BB,0x039B,0x03BD,0x039D,0x03BE,0x039E,0x03BF,0x039F,0x03C4,0x03A4,
1607 0x03C5,0x03A5,0x03C7,0x03A7,0x03C8,0x03A8,0x03CA,0x03AA,0x03CB,0x03AB,
1608 0x03CC,0x038C,0x03CD,0x038E,0x03CE,0x038F,0x03D9,0x03D8,0x03DB,0x03DA,
1609 0x03DD,0x03DC,0x03DF,0x03DE,0x03E1,0x03E0,0x03E3,0x03E2,0x03E5,0x03E4,
1610 0x03E7,0x03E6,0x03E9,0x03E8,0x03EB,0x03EA,0x03ED,0x03EC,0x03EF,0x03EE,
1611 0x0430,0x0410,0x0431,0x0411,0x0432,0x0412,0x0433,0x0413,0x0434,0x0414,
1612 0x0435,0x0415,0x0436,0x0416,0x0437,0x0417,0x0438,0x0418,0x0439,0x0419,
1613 0x043A,0x041A,0x043B,0x041B,0x043C,0x041C,0x043D,0x041D,0x043E,0x041E,
1614 0x043F,0x041F,0x0440,0x0420,0x0441,0x0421,0x0442,0x0422,0x0443,0x0423,
1615 0x0444,0x0424,0x0445,0x0425,0x0446,0x0426,0x0447,0x0427,0x0448,0x0428,
1616 0x0449,0x0429,0x044A,0x042A,0x044B,0x042B,0x044C,0x042C,0x044D,0x042D,
1617 0x044E,0x042E,0x044F,0x042F,0x0450,0x0400,0x0451,0x0401,0x0452,0x0402,
1618 0x0453,0x0403,0x0454,0x0404,0x0455,0x0405,0x0456,0x0406,0x0457,0x0407,
1619 0x0458,0x0408,0x0459,0x0409,0x045A,0x040A,0x045B,0x040B,0x045C,0x040C,
1620 0x045D,0x040D,0x045E,0x040E,0x045F,0x040F,0x0461,0x0460,0x0463,0x0462,
1621 0x0465,0x0464,0x0467,0x0466,0x0469,0x0468,0x046B,0x046A,0x046D,0x046C,
1622 0x046F,0x046E,0x0471,0x0470,0x0473,0x0472,0x0475,0x0474,0x0477,0x0476,
1623 0x0479,0x0478,0x047B,0x047A,0x047D,0x047C,0x047F,0x047E,0x0481,0x0480,
1624 0x048B,0x048A,0x048D,0x048C,0x048F,0x048E,0x0491,0x0490,0x0493,0x0492,
1625 0x0495,0x0494,0x0497,0x0496,0x0499,0x0498,0x049B,0x049A,0x049D,0x049C,
1626 0x049F,0x049E,0x04A1,0x04A0,0x04A3,0x04A2,0x04A5,0x04A4,0x04A7,0x04A6,
1627 0x04A9,0x04A8,0x04AB,0x04AA,0x04AD,0x04AC,0x04AF,0x04AE,0x04B1,0x04B0,
1628 0x04B3,0x04B2,0x04B5,0x04B4,0x04B7,0x04B6,0x04B9,0x04B8,0x04BB,0x04BA,
1629 0x04BD,0x04BC,0x04BF,0x04BE,0x04C2,0x04C1,0x04C4,0x04C3,0x04C6,0x04C5,
1630 0x04C8,0x04C7,0x04CA,0x04C9,0x04CC,0x04CB,0x04CE,0x04CD,0x04D1,0x04D0,
1631 0x04D3,0x04D2,0x04D5,0x04D4,0x04D7,0x04D6,0x04D9,0x04D8,0x04DB,0x04DA,
1632 0x04DD,0x04DC,0x04DF,0x04DE,0x04E1,0x04E0,0x04E3,0x04E2,0x04E5,0x04E4,
1633 0x04E7,0x04E6,0x04E9,0x04E8,0x04EB,0x04EA,0x04ED,0x04EC,0x04EF,0x04EE,
1634 0x04F1,0x04F0,0x04F3,0x04F2,0x04F5,0x04F4,0x04F9,0x04F8,0x0501,0x0500,
1635 0x0503,0x0502,0x0505,0x0504,0x0507,0x0506,0x0509,0x0508,0x050B,0x050A,
1636 0x050D,0x050C,0x050F,0x050E,0x0561,0x0531,0x0562,0x0532,0x0563,0x0533,
1637 0x0564,0x0534,0x0565,0x0535,0x0566,0x0536,0x0567,0x0537,0x0568,0x0538,
1638 0x0569,0x0539,0x056A,0x053A,0x056B,0x053B,0x056C,0x053C,0x056D,0x053D,
1639 0x056E,0x053E,0x056F,0x053F,0x0570,0x0540,0x0571,0x0541,0x0572,0x0542,
1640 0x0573,0x0543,0x0574,0x0544,0x0575,0x0545,0x0576,0x0546,0x0577,0x0547,
1641 0x0578,0x0548,0x0579,0x0549,0x057A,0x054A,0x057B,0x054B,0x057C,0x054C,
1642 0x057D,0x054D,0x057E,0x054E,0x057F,0x054F,0x0580,0x0550,0x0581,0x0551,
1643 0x0582,0x0552,0x0583,0x0553,0x0584,0x0554,0x0585,0x0555,0x0586,0x0556,
1644 0x1E01,0x1E00,0x1E03,0x1E02,0x1E05,0x1E04,0x1E07,0x1E06,0x1E09,0x1E08,
1645 0x1E0B,0x1E0A,0x1E0D,0x1E0C,0x1E0F,0x1E0E,0x1E11,0x1E10,0x1E13,0x1E12,
1646 0x1E15,0x1E14,0x1E17,0x1E16,0x1E19,0x1E18,0x1E1B,0x1E1A,0x1E1D,0x1E1C,
1647 0x1E1F,0x1E1E,0x1E21,0x1E20,0x1E23,0x1E22,0x1E25,0x1E24,0x1E27,0x1E26,
1648 0x1E29,0x1E28,0x1E2B,0x1E2A,0x1E2D,0x1E2C,0x1E2F,0x1E2E,0x1E31,0x1E30,
1649 0x1E33,0x1E32,0x1E35,0x1E34,0x1E37,0x1E36,0x1E39,0x1E38,0x1E3B,0x1E3A,
1650 0x1E3D,0x1E3C,0x1E3F,0x1E3E,0x1E41,0x1E40,0x1E43,0x1E42,0x1E45,0x1E44,
1651 0x1E47,0x1E46,0x1E49,0x1E48,0x1E4B,0x1E4A,0x1E4D,0x1E4C,0x1E4F,0x1E4E,
1652 0x1E51,0x1E50,0x1E53,0x1E52,0x1E55,0x1E54,0x1E57,0x1E56,0x1E59,0x1E58,
1653 0x1E5B,0x1E5A,0x1E5D,0x1E5C,0x1E5F,0x1E5E,0x1E63,0x1E62,0x1E65,0x1E64,
1654 0x1E67,0x1E66,0x1E69,0x1E68,0x1E6B,0x1E6A,0x1E6D,0x1E6C,0x1E6F,0x1E6E,
1655 0x1E71,0x1E70,0x1E73,0x1E72,0x1E75,0x1E74,0x1E77,0x1E76,0x1E79,0x1E78,
1656 0x1E7B,0x1E7A,0x1E7D,0x1E7C,0x1E7F,0x1E7E,0x1E81,0x1E80,0x1E83,0x1E82,
1657 0x1E85,0x1E84,0x1E87,0x1E86,0x1E89,0x1E88,0x1E8B,0x1E8A,0x1E8D,0x1E8C,
1658 0x1E8F,0x1E8E,0x1E91,0x1E90,0x1E93,0x1E92,0x1E95,0x1E94,0x1EA1,0x1EA0,
1659 0x1EA3,0x1EA2,0x1EA5,0x1EA4,0x1EA7,0x1EA6,0x1EA9,0x1EA8,0x1EAB,0x1EAA,
1660 0x1EAD,0x1EAC,0x1EAF,0x1EAE,0x1EB1,0x1EB0,0x1EB3,0x1EB2,0x1EB5,0x1EB4,
1661 0x1EB7,0x1EB6,0x1EB9,0x1EB8,0x1EBB,0x1EBA,0x1EBD,0x1EBC,0x1EBF,0x1EBE,
1662 0x1EC1,0x1EC0,0x1EC3,0x1EC2,0x1EC5,0x1EC4,0x1EC7,0x1EC6,0x1EC9,0x1EC8,
1663 0x1ECB,0x1ECA,0x1ECD,0x1ECC,0x1ECF,0x1ECE,0x1ED1,0x1ED0,0x1ED3,0x1ED2,
1664 0x1ED5,0x1ED4,0x1ED7,0x1ED6,0x1ED9,0x1ED8,0x1EDB,0x1EDA,0x1EDD,0x1EDC,
1665 0x1EDF,0x1EDE,0x1EE1,0x1EE0,0x1EE3,0x1EE2,0x1EE5,0x1EE4,0x1EE7,0x1EE6,
1666 0x1EE9,0x1EE8,0x1EEB,0x1EEA,0x1EED,0x1EEC,0x1EEF,0x1EEE,0x1EF1,0x1EF0,
1667 0x1EF3,0x1EF2,0x1EF5,0x1EF4,0x1EF7,0x1EF6,0x1EF9,0x1EF8,0x1F00,0x1F08,
1668 0x1F01,0x1F09,0x1F02,0x1F0A,0x1F03,0x1F0B,0x1F04,0x1F0C,0x1F05,0x1F0D,
1669 0x1F06,0x1F0E,0x1F07,0x1F0F,0x1F10,0x1F18,0x1F11,0x1F19,0x1F12,0x1F1A,
1670 0x1F13,0x1F1B,0x1F14,0x1F1C,0x1F15,0x1F1D,0x1F20,0x1F28,0x1F21,0x1F29,
1671 0x1F22,0x1F2A,0x1F23,0x1F2B,0x1F24,0x1F2C,0x1F25,0x1F2D,0x1F26,0x1F2E,
1672 0x1F27,0x1F2F,0x1F30,0x1F38,0x1F31,0x1F39,0x1F32,0x1F3A,0x1F33,0x1F3B,
1673 0x1F34,0x1F3C,0x1F35,0x1F3D,0x1F36,0x1F3E,0x1F37,0x1F3F,0x1F40,0x1F48,
1674 0x1F41,0x1F49,0x1F42,0x1F4A,0x1F43,0x1F4B,0x1F44,0x1F4C,0x1F45,0x1F4D,
1675 0x1F51,0x1F59,0x1F53,0x1F5B,0x1F55,0x1F5D,0x1F57,0x1F5F,0x1F60,0x1F68,
1676 0x1F61,0x1F69,0x1F62,0x1F6A,0x1F63,0x1F6B,0x1F64,0x1F6C,0x1F65,0x1F6D,
1677 0x1F66,0x1F6E,0x1F67,0x1F6F,0x1F70,0x1FBA,0x1F71,0x1FBB,0x1F72,0x1FC8,
1678 0x1F73,0x1FC9,0x1F74,0x1FCA,0x1F75,0x1FCB,0x1F76,0x1FDA,0x1F77,0x1FDB,
1679 0x1F78,0x1FF8,0x1F79,0x1FF9,0x1F7A,0x1FEA,0x1F7B,0x1FEB,0x1F7C,0x1FFA,
1680 0x1F7D,0x1FFB,0x1FB0,0x1FB8,0x1FB1,0x1FB9,0x1FD0,0x1FD8,0x1FD1,0x1FD9,
1681 0x1FE0,0x1FE8,0x1FE1,0x1FE9,0x1FE5,0x1FEC,0x2170,0x2160,0x2171,0x2161,
1682 0x2172,0x2162,0x2173,0x2163,0x2174,0x2164,0x2175,0x2165,0x2176,0x2166,
1683 0x2177,0x2167,0x2178,0x2168,0x2179,0x2169,0x217A,0x216A,0x217B,0x216B,
1684 0x217C,0x216C,0x217D,0x216D,0x217E,0x216E,0x217F,0x216F,0x24D0,0x24B6,
1685 0x24D1,0x24B7,0x24D2,0x24B8,0x24D3,0x24B9,0x24D4,0x24BA,0x24D5,0x24BB,
1686 0x24D6,0x24BC,0x24D7,0x24BD,0x24D8,0x24BE,0x24D9,0x24BF,0x24DA,0x24C0,
1687 0x24DB,0x24C1,0x24DC,0x24C2,0x24DD,0x24C3,0x24DE,0x24C4,0x24DF,0x24C5,
1688 0x24E0,0x24C6,0x24E1,0x24C7,0x24E2,0x24C8,0x24E3,0x24C9,0x24E4,0x24CA,
1689 0x24E5,0x24CB,0x24E6,0x24CC,0x24E7,0x24CD,0x24E8,0x24CE,0x24E9,0x24CF,
1690 0xFF41,0xFF21,0xFF42,0xFF22,0xFF43,0xFF23,0xFF44,0xFF24,0xFF45,0xFF25,
1691 0xFF46,0xFF26,0xFF47,0xFF27,0xFF48,0xFF28,0xFF49,0xFF29,0xFF4A,0xFF2A,
1692 0xFF4B,0xFF2B,0xFF4C,0xFF2C,0xFF4D,0xFF2D,0xFF4E,0xFF2E,0xFF4F,0xFF2F,
1693 0xFF50,0xFF30,0xFF51,0xFF31,0xFF52,0xFF32,0xFF53,0xFF33,0xFF54,0xFF34,
1694 0xFF55,0xFF35,0xFF56,0xFF36,0xFF57,0xFF37,0xFF58,0xFF38,0xFF59,0xFF39,
1695 0xFF5A,0xFF3A,
1696 };
1697
1698 // MACHINE-GENERATED: Do not edit (see com.ibm.icu.dev.tools.translit.UnicodeSetCloseOver)
1699 static const CaseEquivClass CASE_NONPAIRS[] = {
1700 {{0x1E9A,0, 0x0061,0x02BE,0, 0}},
1701 {{0xFB00,0, 0x0066,0x0066,0, 0}},
1702 {{0xFB03,0, 0x0066,0x0066,0x0069,0, 0}},
1703 {{0xFB04,0, 0x0066,0x0066,0x006C,0, 0}},
1704 {{0xFB01,0, 0x0066,0x0069,0, 0}},
1705 {{0xFB02,0, 0x0066,0x006C,0, 0}},
1706 {{0x1E96,0, 0x0068,0x0331,0, 0}},
1707 {{0x0130,0, 0x0069,0x0307,0, 0}},
1708 {{0x01F0,0, 0x006A,0x030C,0, 0}},
1709 {{0x004B,0x006B,0x212A,0, 0}},
1710 {{0x0053,0x0073,0x017F,0, 0}},
1711 {{0x00DF,0, 0x0073,0x0073,0, 0}},
1712 {{0xFB05,0xFB06,0, 0x0073,0x0074,0, 0}},
1713 {{0x1E97,0, 0x0074,0x0308,0, 0}},
1714 {{0x1E98,0, 0x0077,0x030A,0, 0}},
1715 {{0x1E99,0, 0x0079,0x030A,0, 0}},
1716 {{0x00C5,0x00E5,0x212B,0, 0}},
1717 {{0x01C4,0x01C5,0x01C6,0, 0}},
1718 {{0x01C7,0x01C8,0x01C9,0, 0}},
1719 {{0x01CA,0x01CB,0x01CC,0, 0}},
1720 {{0x01F1,0x01F2,0x01F3,0, 0}},
1721 {{0x0149,0, 0x02BC,0x006E,0, 0}},
1722 {{0x1FB4,0, 0x03AC,0x03B9,0, 0}},
1723 {{0x1FC4,0, 0x03AE,0x03B9,0, 0}},
1724 {{0x1FB6,0, 0x03B1,0x0342,0, 0}},
1725 {{0x1FB7,0, 0x03B1,0x0342,0x03B9,0, 0}},
1726 {{0x1FB3,0x1FBC,0, 0x03B1,0x03B9,0, 0}},
1727 {{0x0392,0x03B2,0x03D0,0, 0}},
1728 {{0x0395,0x03B5,0x03F5,0, 0}},
1729 {{0x1FC6,0, 0x03B7,0x0342,0, 0}},
1730 {{0x1FC7,0, 0x03B7,0x0342,0x03B9,0, 0}},
1731 {{0x1FC3,0x1FCC,0, 0x03B7,0x03B9,0, 0}},
1732 {{0x0398,0x03B8,0x03D1,0x03F4,0, 0}},
1733 {{0x0345,0x0399,0x03B9,0x1FBE,0, 0}},
1734 {{0x1FD2,0, 0x03B9,0x0308,0x0300,0, 0}},
1735 {{0x0390,0x1FD3,0, 0x03B9,0x0308,0x0301,0, 0}},
1736 {{0x1FD7,0, 0x03B9,0x0308,0x0342,0, 0}},
1737 {{0x1FD6,0, 0x03B9,0x0342,0, 0}},
1738 {{0x039A,0x03BA,0x03F0,0, 0}},
1739 {{0x00B5,0x039C,0x03BC,0, 0}},
1740 {{0x03A0,0x03C0,0x03D6,0, 0}},
1741 {{0x03A1,0x03C1,0x03F1,0, 0}},
1742 {{0x1FE4,0, 0x03C1,0x0313,0, 0}},
1743 {{0x03A3,0x03C2,0x03C3,0x03F2,0, 0}},
1744 {{0x1FE2,0, 0x03C5,0x0308,0x0300,0, 0}},
1745 {{0x03B0,0x1FE3,0, 0x03C5,0x0308,0x0301,0, 0}},
1746 {{0x1FE7,0, 0x03C5,0x0308,0x0342,0, 0}},
1747 {{0x1F50,0, 0x03C5,0x0313,0, 0}},
1748 {{0x1F52,0, 0x03C5,0x0313,0x0300,0, 0}},
1749 {{0x1F54,0, 0x03C5,0x0313,0x0301,0, 0}},
1750 {{0x1F56,0, 0x03C5,0x0313,0x0342,0, 0}},
1751 {{0x1FE6,0, 0x03C5,0x0342,0, 0}},
1752 {{0x03A6,0x03C6,0x03D5,0, 0}},
1753 {{0x03A9,0x03C9,0x2126,0, 0}},
1754 {{0x1FF6,0, 0x03C9,0x0342,0, 0}},
1755 {{0x1FF7,0, 0x03C9,0x0342,0x03B9,0, 0}},
1756 {{0x1FF3,0x1FFC,0, 0x03C9,0x03B9,0, 0}},
1757 {{0x1FF4,0, 0x03CE,0x03B9,0, 0}},
1758 {{0x0587,0, 0x0565,0x0582,0, 0}},
1759 {{0xFB14,0, 0x0574,0x0565,0, 0}},
1760 {{0xFB15,0, 0x0574,0x056B,0, 0}},
1761 {{0xFB17,0, 0x0574,0x056D,0, 0}},
1762 {{0xFB13,0, 0x0574,0x0576,0, 0}},
1763 {{0xFB16,0, 0x057E,0x0576,0, 0}},
1764 {{0x1E60,0x1E61,0x1E9B,0, 0}},
1765 {{0x1F80,0x1F88,0, 0x1F00,0x03B9,0, 0}},
1766 {{0x1F81,0x1F89,0, 0x1F01,0x03B9,0, 0}},
1767 {{0x1F82,0x1F8A,0, 0x1F02,0x03B9,0, 0}},
1768 {{0x1F83,0x1F8B,0, 0x1F03,0x03B9,0, 0}},
1769 {{0x1F84,0x1F8C,0, 0x1F04,0x03B9,0, 0}},
1770 {{0x1F85,0x1F8D,0, 0x1F05,0x03B9,0, 0}},
1771 {{0x1F86,0x1F8E,0, 0x1F06,0x03B9,0, 0}},
1772 {{0x1F87,0x1F8F,0, 0x1F07,0x03B9,0, 0}},
1773 {{0x1F90,0x1F98,0, 0x1F20,0x03B9,0, 0}},
1774 {{0x1F91,0x1F99,0, 0x1F21,0x03B9,0, 0}},
1775 {{0x1F92,0x1F9A,0, 0x1F22,0x03B9,0, 0}},
1776 {{0x1F93,0x1F9B,0, 0x1F23,0x03B9,0, 0}},
1777 {{0x1F94,0x1F9C,0, 0x1F24,0x03B9,0, 0}},
1778 {{0x1F95,0x1F9D,0, 0x1F25,0x03B9,0, 0}},
1779 {{0x1F96,0x1F9E,0, 0x1F26,0x03B9,0, 0}},
1780 {{0x1F97,0x1F9F,0, 0x1F27,0x03B9,0, 0}},
1781 {{0x1FA0,0x1FA8,0, 0x1F60,0x03B9,0, 0}},
1782 {{0x1FA1,0x1FA9,0, 0x1F61,0x03B9,0, 0}},
1783 {{0x1FA2,0x1FAA,0, 0x1F62,0x03B9,0, 0}},
1784 {{0x1FA3,0x1FAB,0, 0x1F63,0x03B9,0, 0}},
1785 {{0x1FA4,0x1FAC,0, 0x1F64,0x03B9,0, 0}},
1786 {{0x1FA5,0x1FAD,0, 0x1F65,0x03B9,0, 0}},
1787 {{0x1FA6,0x1FAE,0, 0x1F66,0x03B9,0, 0}},
1788 {{0x1FA7,0x1FAF,0, 0x1F67,0x03B9,0, 0}},
1789 {{0x1FB2,0, 0x1F70,0x03B9,0, 0}},
1790 {{0x1FC2,0, 0x1F74,0x03B9,0, 0}},
1791 {{0x1FF2,0, 0x1F7C,0x03B9,0, 0}},
1792 {{0, 0xD801,0xDC00,0, 0xD801,0xDC28,0, 0}},
1793 {{0, 0xD801,0xDC01,0, 0xD801,0xDC29,0, 0}},
1794 {{0, 0xD801,0xDC02,0, 0xD801,0xDC2A,0, 0}},
1795 {{0, 0xD801,0xDC03,0, 0xD801,0xDC2B,0, 0}},
1796 {{0, 0xD801,0xDC04,0, 0xD801,0xDC2C,0, 0}},
1797 {{0, 0xD801,0xDC05,0, 0xD801,0xDC2D,0, 0}},
1798 {{0, 0xD801,0xDC06,0, 0xD801,0xDC2E,0, 0}},
1799 {{0, 0xD801,0xDC07,0, 0xD801,0xDC2F,0, 0}},
1800 {{0, 0xD801,0xDC08,0, 0xD801,0xDC30,0, 0}},
1801 {{0, 0xD801,0xDC09,0, 0xD801,0xDC31,0, 0}},
1802 {{0, 0xD801,0xDC0A,0, 0xD801,0xDC32,0, 0}},
1803 {{0, 0xD801,0xDC0B,0, 0xD801,0xDC33,0, 0}},
1804 {{0, 0xD801,0xDC0C,0, 0xD801,0xDC34,0, 0}},
1805 {{0, 0xD801,0xDC0D,0, 0xD801,0xDC35,0, 0}},
1806 {{0, 0xD801,0xDC0E,0, 0xD801,0xDC36,0, 0}},
1807 {{0, 0xD801,0xDC0F,0, 0xD801,0xDC37,0, 0}},
1808 {{0, 0xD801,0xDC10,0, 0xD801,0xDC38,0, 0}},
1809 {{0, 0xD801,0xDC11,0, 0xD801,0xDC39,0, 0}},
1810 {{0, 0xD801,0xDC12,0, 0xD801,0xDC3A,0, 0}},
1811 {{0, 0xD801,0xDC13,0, 0xD801,0xDC3B,0, 0}},
1812 {{0, 0xD801,0xDC14,0, 0xD801,0xDC3C,0, 0}},
1813 {{0, 0xD801,0xDC15,0, 0xD801,0xDC3D,0, 0}},
1814 {{0, 0xD801,0xDC16,0, 0xD801,0xDC3E,0, 0}},
1815 {{0, 0xD801,0xDC17,0, 0xD801,0xDC3F,0, 0}},
1816 {{0, 0xD801,0xDC18,0, 0xD801,0xDC40,0, 0}},
1817 {{0, 0xD801,0xDC19,0, 0xD801,0xDC41,0, 0}},
1818 {{0, 0xD801,0xDC1A,0, 0xD801,0xDC42,0, 0}},
1819 {{0, 0xD801,0xDC1B,0, 0xD801,0xDC43,0, 0}},
1820 {{0, 0xD801,0xDC1C,0, 0xD801,0xDC44,0, 0}},
1821 {{0, 0xD801,0xDC1D,0, 0xD801,0xDC45,0, 0}},
1822 {{0, 0xD801,0xDC1E,0, 0xD801,0xDC46,0, 0}},
1823 {{0, 0xD801,0xDC1F,0, 0xD801,0xDC47,0, 0}},
1824 {{0, 0xD801,0xDC20,0, 0xD801,0xDC48,0, 0}},
1825 {{0, 0xD801,0xDC21,0, 0xD801,0xDC49,0, 0}},
1826 {{0, 0xD801,0xDC22,0, 0xD801,0xDC4A,0, 0}},
1827 {{0, 0xD801,0xDC23,0, 0xD801,0xDC4B,0, 0}},
1828 {{0, 0xD801,0xDC24,0, 0xD801,0xDC4C,0, 0}},
1829 {{0, 0xD801,0xDC25,0, 0xD801,0xDC4D,0, 0}}
1830 };
1831
1832 #define CASE_PAIRS_LENGTH (sizeof(CASE_PAIRS)/sizeof(CASE_PAIRS[0]))
1833 #define CASE_NONPAIRS_LENGTH (sizeof(CASE_NONPAIRS)/sizeof(CASE_NONPAIRS[0]))
1834
1835 /**
1836 * Add to this set all members of the case fold equivalency class
1837 * that contains 'folded'.
1838 * @param folded a string within a case fold equivalency class.
1839 * It must have the property that UCharacter.foldCase(folded,
1840 * DEFAULT_CASE_MAP).equals(folded).
1841 */
1842 void UnicodeSet::caseCloseOne(const UnicodeString& folded) {
1843 if (folded.length() == 1) {
1844 caseCloseOne(folded.charAt(0));
1845 return;
1846 }
1847
1848 const CaseEquivClass* c = getCaseMapOf(folded);
1849 if (c != NULL) {
1850 caseCloseOne(*c);
1851 return;
1852 }
1853
1854 // Add 'folded' itself; it belongs to no equivalency class.
1855 add(folded);
1856 }
1857
1858 /**
1859 * Add to this set all members of the case fold equivalency class
1860 * that contains 'folded'.
1861 * @param folded a code UNIT within a case fold equivalency class.
1862 * It must have the property that uchar_foldCase(folded,
1863 * DEFAULT_CASE_MAP) == folded.
1864 */
1865 void UnicodeSet::caseCloseOne(UChar folded) {
1866 // We must do a DOUBLE LOOKUP, first in the CompactByteArray that
1867 // indexes into CASE_NONPAIRS[] and then into the CASE_PAIRS[]
1868 // sorted array. A character will occur in one or the other, or
1869 // neither, but not both.
1870
1871 // Look in the CompactByteArray.
1872 const CaseEquivClass* c = getCaseMapOf(folded);
1873 if (c != NULL) {
1874 caseCloseOne(*c);
1875 return;
1876 }
1877
1878 // Binary search in pairs array, looking at only even entries.
1879 // The indices low, high, and x will be halved with respect to
1880 // CASE_PAIRS[]; that is, they must be doubled before indexing.
1881
1882 // CASE_PAIRS has 1312 elements, of 656 pairs, so the search
1883 // takes no more than 10 passes.
1884 int32_t low = 0;
1885 int32_t high = (CASE_PAIRS_LENGTH >> 1) - 1;
1886 int32_t x;
1887 do {
1888 x = (low + high) >> 1;
1889 UChar ch = CASE_PAIRS[(uint32_t)(x << 1)];
1890 if (folded < ch) {
1891 high = x - 1;
1892 } else if (folded > ch) {
1893 low = x + 1;
1894 } else {
1895 break;
1896 }
1897 } while (low < high);
1898
1899 x = (low + high) & ~1; // ((low + high) >> 1) << 1
1900 if (folded == CASE_PAIRS[x]) {
1901 add(CASE_PAIRS[x]);
1902 add(CASE_PAIRS[x+1]);
1903 } else {
1904 // If the search fails, then add folded itself; it is a
1905 // case-unique code unit.
1906 add(folded);
1907 }
1908 }
1909
1910 /**
1911 * Add to this set all members of the given CaseEquivClass object.
1912 */
1913 void UnicodeSet::caseCloseOne(const CaseEquivClass& c) {
1914 const UChar* p = c.getSingles();
1915 while (*p) {
1916 add(*p++); // add all single code units
1917 }
1918 for (c.getStrings(p); *p; c.nextString(p)) {
1919 add(p); // add all strings
1920 }
1921 }
1922
1923 /**
1924 * Given a folded string of length >= 2 code units, return the
1925 * CaseEquivClass containing this string, or NULL if none.
1926 */
1927 const CaseEquivClass* UnicodeSet::getCaseMapOf(const UnicodeString& folded) {
1928 umtx_lock(NULL);
1929 UBool f = (CASE_EQUIV_HASH == NULL);
1930 umtx_unlock(NULL);
1931
1932 if (f) {
1933 // Create the Hashtable, which maps UnicodeStrings to index
1934 // values into CASE_NONPAIRS.
1935 UErrorCode ec = U_ZERO_ERROR;
1936 Hashtable* hash = new Hashtable();
1937 if (hash != NULL) {
1938 int32_t i;
1939 for (i=0; i<(int32_t)CASE_NONPAIRS_LENGTH; ++i) {
1940 const CaseEquivClass* c = &CASE_NONPAIRS[i];
1941 const UChar* p;
1942 for (c->getStrings(p); *p; c->nextString(p)) {
1943 hash->put(UnicodeString(p), (void*) c, ec);
1944 }
1945 }
1946 if (U_SUCCESS(ec)) {
1947 umtx_lock(NULL);
1948 if (CASE_EQUIV_HASH == NULL) {
1949 CASE_EQUIV_HASH = hash;
1950 hash = NULL;
1951 ucln_common_registerCleanup(UCLN_COMMON_USET, uset_cleanup);
1952 }
1953 umtx_unlock(NULL);
1954 }
1955 delete hash;
1956 }
1957 }
1958
1959 return (CASE_EQUIV_HASH != NULL) ?
1960 (const CaseEquivClass*) CASE_EQUIV_HASH->get(folded) : NULL;
1961 }
1962
1963 /**
1964 * Given a folded code unit, return the CaseEquivClass containing it,
1965 * or NULL if none.
1966 */
1967 const CaseEquivClass* UnicodeSet::getCaseMapOf(UChar folded) {
1968 umtx_lock(NULL);
1969 UBool f = (CASE_EQUIV_CBA == NULL);
1970 umtx_unlock(NULL);
1971
1972 if (f) {
1973 // Create the CompactByteArray, which maps single code units
1974 // to index values into CASE_NONPAIRS.
1975 CompactByteArray* cba = ucmp8_open(-1);
1976 if (ucmp8_isBogus(cba)) {
1977 ucmp8_close(cba);
1978 cba = NULL;
1979 } else {
1980 int32_t i;
1981 for (i=0; i<(int32_t)CASE_NONPAIRS_LENGTH; ++i) {
1982 const UChar* p = CASE_NONPAIRS[i].getSingles();
1983 UChar ch;
1984 while ((ch = *p++) != 0) {
1985 ucmp8_set(cba, ch, (int8_t) i);
1986 }
1987 }
1988 ucmp8_compact(cba, 256);
1989 }
1990
1991 umtx_lock(NULL);
1992 if (CASE_EQUIV_CBA == NULL) {
1993 CASE_EQUIV_CBA = cba;
1994 cba = NULL;
1995 ucln_common_registerCleanup(UCLN_COMMON_USET, uset_cleanup);
1996 }
1997 umtx_unlock(NULL);
1998 if (cba != NULL) {
1999 ucmp8_close(cba);
2000 }
2001 }
2002
2003 if (CASE_EQUIV_CBA != NULL) {
2004 int32_t index = ucmp8_getu(CASE_EQUIV_CBA, folded);
2005 if (index != 255) {
2006 return &CASE_NONPAIRS[index];
2007 }
2008 }
2009 return NULL;
2010 }
2011
2012 U_NAMESPACE_END