]> git.saurik.com Git - apple/icu.git/blame - icuSources/common/caniter.cpp
ICU-57163.0.1.tar.gz
[apple/icu.git] / icuSources / common / caniter.cpp
CommitLineData
b75a7d8f
A
1/*
2 *****************************************************************************
2ca993e8 3 * Copyright (C) 1996-2015, International Business Machines Corporation and
b331163b 4 * others. All Rights Reserved.
b75a7d8f
A
5 *****************************************************************************
6 */
7
8#include "unicode/utypes.h"
9
10#if !UCONFIG_NO_NORMALIZATION
11
b75a7d8f 12#include "unicode/caniter.h"
729e4ab9 13#include "unicode/normalizer2.h"
b75a7d8f 14#include "unicode/uchar.h"
729e4ab9
A
15#include "unicode/uniset.h"
16#include "unicode/usetiter.h"
17#include "unicode/ustring.h"
4388f060 18#include "unicode/utf16.h"
b75a7d8f 19#include "cmemory.h"
729e4ab9
A
20#include "hash.h"
21#include "normalizer2impl.h"
b75a7d8f
A
22
23/**
24 * This class allows one to iterate through all the strings that are canonically equivalent to a given
25 * string. For example, here are some sample results:
26Results for: {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CEDILLA}
271: \u0041\u030A\u0064\u0307\u0327
28 = {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CEDILLA}
292: \u0041\u030A\u0064\u0327\u0307
30 = {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBINING DOT ABOVE}
313: \u0041\u030A\u1E0B\u0327
32 = {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CEDILLA}
334: \u0041\u030A\u1E11\u0307
34 = {LATIN CAPITAL LETTER A}{COMBINING RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT ABOVE}
355: \u00C5\u0064\u0307\u0327
36 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CEDILLA}
376: \u00C5\u0064\u0327\u0307
38 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBINING DOT ABOVE}
397: \u00C5\u1E0B\u0327
40 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CEDILLA}
418: \u00C5\u1E11\u0307
42 = {LATIN CAPITAL LETTER A WITH RING ABOVE}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT ABOVE}
439: \u212B\u0064\u0307\u0327
44 = {ANGSTROM SIGN}{LATIN SMALL LETTER D}{COMBINING DOT ABOVE}{COMBINING CEDILLA}
4510: \u212B\u0064\u0327\u0307
46 = {ANGSTROM SIGN}{LATIN SMALL LETTER D}{COMBINING CEDILLA}{COMBINING DOT ABOVE}
4711: \u212B\u1E0B\u0327
48 = {ANGSTROM SIGN}{LATIN SMALL LETTER D WITH DOT ABOVE}{COMBINING CEDILLA}
4912: \u212B\u1E11\u0307
50 = {ANGSTROM SIGN}{LATIN SMALL LETTER D WITH CEDILLA}{COMBINING DOT ABOVE}
51 *<br>Note: the code is intended for use with small strings, and is not suitable for larger ones,
52 * since it has not been optimized for that situation.
53 *@author M. Davis
54 *@draft
55 */
b75a7d8f 56
b75a7d8f
A
57// public
58
59U_NAMESPACE_BEGIN
60
61// TODO: add boilerplate methods.
62
374ca955 63UOBJECT_DEFINE_RTTI_IMPLEMENTATION(CanonicalIterator)
b75a7d8f
A
64
65/**
66 *@param source string to get results for
67 */
68CanonicalIterator::CanonicalIterator(const UnicodeString &sourceStr, UErrorCode &status) :
69 pieces(NULL),
70 pieces_length(0),
71 pieces_lengths(NULL),
72 current(NULL),
729e4ab9 73 current_length(0),
b331163b 74 nfd(*Normalizer2::getNFDInstance(status)),
729e4ab9 75 nfcImpl(*Normalizer2Factory::getNFCImpl(status))
b75a7d8f 76{
729e4ab9 77 if(U_SUCCESS(status) && nfcImpl.ensureCanonIterData(status)) {
b75a7d8f
A
78 setSource(sourceStr, status);
79 }
80}
81
82CanonicalIterator::~CanonicalIterator() {
83 cleanPieces();
84}
85
86void CanonicalIterator::cleanPieces() {
73c04bcf
A
87 int32_t i = 0;
88 if(pieces != NULL) {
89 for(i = 0; i < pieces_length; i++) {
90 if(pieces[i] != NULL) {
91 delete[] pieces[i];
92 }
93 }
94 uprv_free(pieces);
95 pieces = NULL;
96 pieces_length = 0;
97 }
b75a7d8f 98 if(pieces_lengths != NULL) {
73c04bcf
A
99 uprv_free(pieces_lengths);
100 pieces_lengths = NULL;
b75a7d8f 101 }
b75a7d8f 102 if(current != NULL) {
73c04bcf
A
103 uprv_free(current);
104 current = NULL;
105 current_length = 0;
b75a7d8f 106 }
b75a7d8f
A
107}
108
109/**
110 *@return gets the source: NOTE: it is the NFD form of source
111 */
112UnicodeString CanonicalIterator::getSource() {
113 return source;
114}
115
116/**
117 * Resets the iterator so that one can start again from the beginning.
118 */
119void CanonicalIterator::reset() {
120 done = FALSE;
121 for (int i = 0; i < current_length; ++i) {
122 current[i] = 0;
123 }
124}
125
126/**
127 *@return the next string that is canonically equivalent. The value null is returned when
128 * the iteration is done.
129 */
130UnicodeString CanonicalIterator::next() {
131 int32_t i = 0;
132
133 if (done) {
134 buffer.setToBogus();
135 return buffer;
136 }
137
138 // delete old contents
139 buffer.remove();
140
141 // construct return value
142
143 for (i = 0; i < pieces_length; ++i) {
144 buffer.append(pieces[i][current[i]]);
145 }
146 //String result = buffer.toString(); // not needed
147
148 // find next value for next time
149
150 for (i = current_length - 1; ; --i) {
151 if (i < 0) {
152 done = TRUE;
153 break;
154 }
155 current[i]++;
156 if (current[i] < pieces_lengths[i]) break; // got sequence
157 current[i] = 0;
158 }
159 return buffer;
160}
161
162/**
163 *@param set the source string to iterate against. This allows the same iterator to be used
164 * while changing the source string, saving object creation.
165 */
166void CanonicalIterator::setSource(const UnicodeString &newSource, UErrorCode &status) {
73c04bcf
A
167 int32_t list_length = 0;
168 UChar32 cp = 0;
169 int32_t start = 0;
170 int32_t i = 0;
171 UnicodeString *list = NULL;
172
729e4ab9 173 nfd.normalize(newSource, source, status);
b75a7d8f
A
174 if(U_FAILURE(status)) {
175 return;
176 }
177 done = FALSE;
178
179 cleanPieces();
180
181 // catch degenerate case
182 if (newSource.length() == 0) {
b75a7d8f 183 pieces = (UnicodeString **)uprv_malloc(sizeof(UnicodeString *));
73c04bcf
A
184 pieces_lengths = (int32_t*)uprv_malloc(1 * sizeof(int32_t));
185 pieces_length = 1;
b75a7d8f 186 current = (int32_t*)uprv_malloc(1 * sizeof(int32_t));
73c04bcf
A
187 current_length = 1;
188 if (pieces == NULL || pieces_lengths == NULL || current == NULL) {
b75a7d8f 189 status = U_MEMORY_ALLOCATION_ERROR;
73c04bcf 190 goto CleanPartialInitialization;
b75a7d8f
A
191 }
192 current[0] = 0;
193 pieces[0] = new UnicodeString[1];
73c04bcf 194 pieces_lengths[0] = 1;
b75a7d8f
A
195 if (pieces[0] == 0) {
196 status = U_MEMORY_ALLOCATION_ERROR;
73c04bcf 197 goto CleanPartialInitialization;
b75a7d8f 198 }
b75a7d8f
A
199 return;
200 }
201
202
73c04bcf 203 list = new UnicodeString[source.length()];
b75a7d8f
A
204 if (list == 0) {
205 status = U_MEMORY_ALLOCATION_ERROR;
73c04bcf 206 goto CleanPartialInitialization;
b75a7d8f
A
207 }
208
b75a7d8f
A
209 // i should initialy be the number of code units at the
210 // start of the string
4388f060 211 i = U16_LENGTH(source.char32At(0));
b75a7d8f
A
212 //int32_t i = 1;
213 // find the segments
214 // This code iterates through the source string and
215 // extracts segments that end up on a codepoint that
216 // doesn't start any decompositions. (Analysis is done
217 // on the NFD form - see above).
4388f060 218 for (; i < source.length(); i += U16_LENGTH(cp)) {
b75a7d8f 219 cp = source.char32At(i);
729e4ab9 220 if (nfcImpl.isCanonSegmentStarter(cp)) {
b75a7d8f
A
221 source.extract(start, i-start, list[list_length++]); // add up to i
222 start = i;
223 }
224 }
225 source.extract(start, i-start, list[list_length++]); // add last one
226
227
228 // allocate the arrays, and find the strings that are CE to each segment
229 pieces = (UnicodeString **)uprv_malloc(list_length * sizeof(UnicodeString *));
b75a7d8f
A
230 pieces_length = list_length;
231 pieces_lengths = (int32_t*)uprv_malloc(list_length * sizeof(int32_t));
b75a7d8f 232 current = (int32_t*)uprv_malloc(list_length * sizeof(int32_t));
73c04bcf
A
233 current_length = list_length;
234 if (pieces == NULL || pieces_lengths == NULL || current == NULL) {
b75a7d8f 235 status = U_MEMORY_ALLOCATION_ERROR;
73c04bcf 236 goto CleanPartialInitialization;
b75a7d8f 237 }
73c04bcf 238
b75a7d8f 239 for (i = 0; i < current_length; i++) {
73c04bcf 240 current[i] = 0;
b75a7d8f
A
241 }
242 // for each segment, get all the combinations that can produce
243 // it after NFD normalization
244 for (i = 0; i < pieces_length; ++i) {
245 //if (PROGRESS) printf("SEGMENT\n");
246 pieces[i] = getEquivalents(list[i], pieces_lengths[i], status);
247 }
248
249 delete[] list;
73c04bcf
A
250 return;
251// Common section to cleanup all local variables and reset object variables.
252CleanPartialInitialization:
253 if (list != NULL) {
254 delete[] list;
255 }
256 cleanPieces();
b75a7d8f
A
257}
258
259/**
260 * Dumb recursive implementation of permutation.
261 * TODO: optimize
262 * @param source the string to find permutations for
263 * @return the results in a set.
264 */
374ca955 265void U_EXPORT2 CanonicalIterator::permute(UnicodeString &source, UBool skipZeros, Hashtable *result, UErrorCode &status) {
b75a7d8f 266 if(U_FAILURE(status)) {
73c04bcf 267 return;
b75a7d8f
A
268 }
269 //if (PROGRESS) printf("Permute: %s\n", UToS(Tr(source)));
270 int32_t i = 0;
271
272 // optimization:
273 // if zero or one character, just return a set with it
274 // we check for length < 2 to keep from counting code points all the time
275 if (source.length() <= 2 && source.countChar32() <= 1) {
73c04bcf
A
276 UnicodeString *toPut = new UnicodeString(source);
277 /* test for NULL */
278 if (toPut == 0) {
279 status = U_MEMORY_ALLOCATION_ERROR;
280 return;
281 }
282 result->put(source, toPut, status);
283 return;
b75a7d8f
A
284 }
285
286 // otherwise iterate through the string, and recursively permute all the other characters
287 UChar32 cp;
73c04bcf
A
288 Hashtable subpermute(status);
289 if(U_FAILURE(status)) {
b75a7d8f
A
290 return;
291 }
4388f060 292 subpermute.setValueDeleter(uprv_deleteUObject);
b75a7d8f 293
4388f060 294 for (i = 0; i < source.length(); i += U16_LENGTH(cp)) {
b75a7d8f
A
295 cp = source.char32At(i);
296 const UHashElement *ne = NULL;
b331163b 297 int32_t el = UHASH_FIRST;
b75a7d8f
A
298 UnicodeString subPermuteString = source;
299
300 // optimization:
301 // if the character is canonical combining class zero,
302 // don't permute it
303 if (skipZeros && i != 0 && u_getCombiningClass(cp) == 0) {
304 //System.out.println("Skipping " + Utility.hex(UTF16.valueOf(source, i)));
305 continue;
306 }
307
73c04bcf 308 subpermute.removeAll();
b75a7d8f
A
309
310 // see what the permutations of the characters before and after this one are
311 //Hashtable *subpermute = permute(source.substring(0,i) + source.substring(i + UTF16.getCharCount(cp)));
4388f060 312 permute(subPermuteString.replace(i, U16_LENGTH(cp), NULL, 0), skipZeros, &subpermute, status);
b75a7d8f
A
313 /* Test for buffer overflows */
314 if(U_FAILURE(status)) {
b75a7d8f
A
315 return;
316 }
317 // The upper replace is destructive. The question is do we have to make a copy, or we don't care about the contents
318 // of source at this point.
319
320 // prefix this character to all of them
73c04bcf 321 ne = subpermute.nextElement(el);
b75a7d8f 322 while (ne != NULL) {
73c04bcf
A
323 UnicodeString *permRes = (UnicodeString *)(ne->value.pointer);
324 UnicodeString *chStr = new UnicodeString(cp);
325 //test for NULL
326 if (chStr == NULL) {
327 status = U_MEMORY_ALLOCATION_ERROR;
328 return;
329 }
b75a7d8f
A
330 chStr->append(*permRes); //*((UnicodeString *)(ne->value.pointer));
331 //if (PROGRESS) printf(" Piece: %s\n", UToS(*chStr));
332 result->put(*chStr, chStr, status);
73c04bcf 333 ne = subpermute.nextElement(el);
b75a7d8f
A
334 }
335 }
b75a7d8f
A
336 //return result;
337}
338
339// privates
340
341// we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
342UnicodeString* CanonicalIterator::getEquivalents(const UnicodeString &segment, int32_t &result_len, UErrorCode &status) {
73c04bcf
A
343 Hashtable result(status);
344 Hashtable permutations(status);
345 Hashtable basic(status);
346 if (U_FAILURE(status)) {
b75a7d8f
A
347 return 0;
348 }
4388f060
A
349 result.setValueDeleter(uprv_deleteUObject);
350 permutations.setValueDeleter(uprv_deleteUObject);
351 basic.setValueDeleter(uprv_deleteUObject);
73c04bcf 352
b75a7d8f
A
353 UChar USeg[256];
354 int32_t segLen = segment.extract(USeg, 256, status);
73c04bcf 355 getEquivalents2(&basic, USeg, segLen, status);
b75a7d8f
A
356
357 // now get all the permutations
358 // add only the ones that are canonically equivalent
359 // TODO: optimize by not permuting any class zero.
360
b75a7d8f 361 const UHashElement *ne = NULL;
b331163b 362 int32_t el = UHASH_FIRST;
b75a7d8f 363 //Iterator it = basic.iterator();
73c04bcf 364 ne = basic.nextElement(el);
b75a7d8f
A
365 //while (it.hasNext())
366 while (ne != NULL) {
367 //String item = (String) it.next();
368 UnicodeString item = *((UnicodeString *)(ne->value.pointer));
369
73c04bcf
A
370 permutations.removeAll();
371 permute(item, CANITER_SKIP_ZEROES, &permutations, status);
b75a7d8f 372 const UHashElement *ne2 = NULL;
b331163b 373 int32_t el2 = UHASH_FIRST;
b75a7d8f 374 //Iterator it2 = permutations.iterator();
73c04bcf 375 ne2 = permutations.nextElement(el2);
b75a7d8f
A
376 //while (it2.hasNext())
377 while (ne2 != NULL) {
378 //String possible = (String) it2.next();
379 //UnicodeString *possible = new UnicodeString(*((UnicodeString *)(ne2->value.pointer)));
380 UnicodeString possible(*((UnicodeString *)(ne2->value.pointer)));
381 UnicodeString attempt;
729e4ab9 382 nfd.normalize(possible, attempt, status);
b75a7d8f
A
383
384 // TODO: check if operator == is semanticaly the same as attempt.equals(segment)
385 if (attempt==segment) {
386 //if (PROGRESS) printf("Adding Permutation: %s\n", UToS(Tr(*possible)));
387 // TODO: use the hashtable just to catch duplicates - store strings directly (somehow).
73c04bcf 388 result.put(possible, new UnicodeString(possible), status); //add(possible);
b75a7d8f
A
389 } else {
390 //if (PROGRESS) printf("-Skipping Permutation: %s\n", UToS(Tr(*possible)));
391 }
392
73c04bcf 393 ne2 = permutations.nextElement(el2);
b75a7d8f 394 }
73c04bcf 395 ne = basic.nextElement(el);
b75a7d8f
A
396 }
397
398 /* Test for buffer overflows */
399 if(U_FAILURE(status)) {
b75a7d8f
A
400 return 0;
401 }
402 // convert into a String[] to clean up storage
403 //String[] finalResult = new String[result.size()];
404 UnicodeString *finalResult = NULL;
405 int32_t resultCount;
73c04bcf
A
406 if((resultCount = result.count())) {
407 finalResult = new UnicodeString[resultCount];
408 if (finalResult == 0) {
409 status = U_MEMORY_ALLOCATION_ERROR;
410 return NULL;
411 }
412 }
413 else {
414 status = U_ILLEGAL_ARGUMENT_ERROR;
415 return NULL;
b75a7d8f
A
416 }
417 //result.toArray(finalResult);
418 result_len = 0;
b331163b 419 el = UHASH_FIRST;
73c04bcf 420 ne = result.nextElement(el);
b75a7d8f 421 while(ne != NULL) {
73c04bcf
A
422 finalResult[result_len++] = *((UnicodeString *)(ne->value.pointer));
423 ne = result.nextElement(el);
b75a7d8f
A
424 }
425
426
b75a7d8f
A
427 return finalResult;
428}
429
73c04bcf 430Hashtable *CanonicalIterator::getEquivalents2(Hashtable *fillinResult, const UChar *segment, int32_t segLen, UErrorCode &status) {
b75a7d8f 431
73c04bcf
A
432 if (U_FAILURE(status)) {
433 return NULL;
b75a7d8f
A
434 }
435
436 //if (PROGRESS) printf("Adding: %s\n", UToS(Tr(segment)));
437
438 UnicodeString toPut(segment, segLen);
439
73c04bcf 440 fillinResult->put(toPut, new UnicodeString(toPut), status);
b75a7d8f 441
729e4ab9 442 UnicodeSet starts;
b75a7d8f
A
443
444 // cycle through all the characters
729e4ab9 445 UChar32 cp;
4388f060 446 for (int32_t i = 0; i < segLen; i += U16_LENGTH(cp)) {
b75a7d8f 447 // see if any character is at the start of some decomposition
4388f060 448 U16_GET(segment, 0, i, segLen, cp);
729e4ab9 449 if (!nfcImpl.getCanonStartSet(cp, starts)) {
73c04bcf 450 continue;
b75a7d8f 451 }
729e4ab9
A
452 // if so, see which decompositions match
453 UnicodeSetIterator iter(starts);
454 while (iter.next()) {
455 UChar32 cp2 = iter.getCodepoint();
73c04bcf 456 Hashtable remainder(status);
4388f060 457 remainder.setValueDeleter(uprv_deleteUObject);
729e4ab9 458 if (extract(&remainder, cp2, segment, segLen, i, status) == NULL) {
73c04bcf
A
459 continue;
460 }
b75a7d8f
A
461
462 // there were some matches, so add all the possibilities to the set.
463 UnicodeString prefix(segment, i);
729e4ab9 464 prefix += cp2;
b75a7d8f 465
b331163b 466 int32_t el = UHASH_FIRST;
73c04bcf 467 const UHashElement *ne = remainder.nextElement(el);
b75a7d8f
A
468 while (ne != NULL) {
469 UnicodeString item = *((UnicodeString *)(ne->value.pointer));
470 UnicodeString *toAdd = new UnicodeString(prefix);
471 /* test for NULL */
472 if (toAdd == 0) {
473 status = U_MEMORY_ALLOCATION_ERROR;
73c04bcf 474 return NULL;
b75a7d8f
A
475 }
476 *toAdd += item;
73c04bcf 477 fillinResult->put(*toAdd, toAdd, status);
b75a7d8f
A
478
479 //if (PROGRESS) printf("Adding: %s\n", UToS(Tr(*toAdd)));
480
73c04bcf 481 ne = remainder.nextElement(el);
b75a7d8f 482 }
b75a7d8f
A
483 }
484 }
485
486 /* Test for buffer overflows */
487 if(U_FAILURE(status)) {
73c04bcf 488 return NULL;
b75a7d8f 489 }
73c04bcf 490 return fillinResult;
b75a7d8f
A
491}
492
493/**
494 * See if the decomposition of cp2 is at segment starting at segmentPos
495 * (with canonical rearrangment!)
496 * If so, take the remainder, and return the equivalents
497 */
73c04bcf 498Hashtable *CanonicalIterator::extract(Hashtable *fillinResult, UChar32 comp, const UChar *segment, int32_t segLen, int32_t segmentPos, UErrorCode &status) {
b75a7d8f
A
499//Hashtable *CanonicalIterator::extract(UChar32 comp, const UnicodeString &segment, int32_t segLen, int32_t segmentPos, UErrorCode &status) {
500 //if (PROGRESS) printf(" extract: %s, ", UToS(Tr(UnicodeString(comp))));
501 //if (PROGRESS) printf("%s, %i\n", UToS(Tr(segment)), segmentPos);
502
73c04bcf
A
503 if (U_FAILURE(status)) {
504 return NULL;
505 }
506
729e4ab9
A
507 UnicodeString temp(comp);
508 int32_t inputLen=temp.length();
509 UnicodeString decompString;
510 nfd.normalize(temp, decompString, status);
2ca993e8
A
511 if (U_FAILURE(status)) {
512 return NULL;
513 }
514 if (decompString.isBogus()) {
515 status = U_MEMORY_ALLOCATION_ERROR;
516 return NULL;
517 }
729e4ab9
A
518 const UChar *decomp=decompString.getBuffer();
519 int32_t decompLen=decompString.length();
b75a7d8f
A
520
521 // See if it matches the start of segment (at segmentPos)
522 UBool ok = FALSE;
523 UChar32 cp;
524 int32_t decompPos = 0;
525 UChar32 decompCp;
729e4ab9 526 U16_NEXT(decomp, decompPos, decompLen, decompCp);
b75a7d8f 527
729e4ab9 528 int32_t i = segmentPos;
b75a7d8f 529 while(i < segLen) {
729e4ab9 530 U16_NEXT(segment, i, segLen, cp);
b75a7d8f
A
531
532 if (cp == decompCp) { // if equal, eat another cp from decomp
533
534 //if (PROGRESS) printf(" matches: %s\n", UToS(Tr(UnicodeString(cp))));
535
536 if (decompPos == decompLen) { // done, have all decomp characters!
729e4ab9 537 temp.append(segment+i, segLen-i);
b75a7d8f
A
538 ok = TRUE;
539 break;
540 }
729e4ab9 541 U16_NEXT(decomp, decompPos, decompLen, decompCp);
b75a7d8f
A
542 } else {
543 //if (PROGRESS) printf(" buffer: %s\n", UToS(Tr(UnicodeString(cp))));
544
545 // brute force approach
729e4ab9 546 temp.append(cp);
b75a7d8f
A
547
548 /* TODO: optimize
549 // since we know that the classes are monotonically increasing, after zero
550 // e.g. 0 5 7 9 0 3
551 // we can do an optimization
552 // there are only a few cases that work: zero, less, same, greater
553 // if both classes are the same, we fail
554 // if the decomp class < the segment class, we fail
555
556 segClass = getClass(cp);
557 if (decompClass <= segClass) return null;
558 */
559 }
560 }
73c04bcf
A
561 if (!ok)
562 return NULL; // we failed, characters left over
b75a7d8f
A
563
564 //if (PROGRESS) printf("Matches\n");
565
729e4ab9 566 if (inputLen == temp.length()) {
73c04bcf
A
567 fillinResult->put(UnicodeString(), new UnicodeString(), status);
568 return fillinResult; // succeed, but no remainder
b75a7d8f
A
569 }
570
571 // brute force approach
572 // check to make sure result is canonically equivalent
729e4ab9
A
573 UnicodeString trial;
574 nfd.normalize(temp, trial, status);
575 if(U_FAILURE(status) || trial.compare(segment+segmentPos, segLen - segmentPos) != 0) {
73c04bcf 576 return NULL;
b75a7d8f
A
577 }
578
729e4ab9 579 return getEquivalents2(fillinResult, temp.getBuffer()+inputLen, temp.length()-inputLen, status);
b75a7d8f
A
580}
581
582U_NAMESPACE_END
583
584#endif /* #if !UCONFIG_NO_NORMALIZATION */