]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
51004dcb A |
3 | /* |
4 | ******************************************************************************* | |
5 | * | |
2ca993e8 | 6 | * Copyright (C) 2013-2016, International Business Machines |
51004dcb A |
7 | * Corporation and others. All Rights Reserved. |
8 | * | |
9 | ******************************************************************************* | |
10 | * file name: listformatter.cpp | |
f3c0d7a5 | 11 | * encoding: UTF-8 |
51004dcb A |
12 | * tab size: 8 (not used) |
13 | * indentation:4 | |
14 | * | |
15 | * created on: 2012aug27 | |
16 | * created by: Umesh P. Nair | |
17 | */ | |
18 | ||
3d1f044b A |
19 | #include "cmemory.h" |
20 | #include "unicode/fpositer.h" // FieldPositionIterator | |
51004dcb | 21 | #include "unicode/listformatter.h" |
2ca993e8 | 22 | #include "unicode/simpleformatter.h" |
3d1f044b A |
23 | #include "unicode/ulistformatter.h" |
24 | #include "fphdlimp.h" | |
51004dcb A |
25 | #include "mutex.h" |
26 | #include "hash.h" | |
27 | #include "cstring.h" | |
3d1f044b | 28 | #include "uarrsort.h" |
51004dcb A |
29 | #include "ulocimp.h" |
30 | #include "charstr.h" | |
3d1f044b | 31 | #include "ucln_in.h" |
51004dcb | 32 | #include "uresimp.h" |
f3c0d7a5 | 33 | #include "resource.h" |
3d1f044b | 34 | #include "formattedval_impl.h" |
51004dcb A |
35 | |
36 | U_NAMESPACE_BEGIN | |
37 | ||
57a6839d | 38 | struct ListFormatInternal : public UMemory { |
2ca993e8 A |
39 | SimpleFormatter twoPattern; |
40 | SimpleFormatter startPattern; | |
41 | SimpleFormatter middlePattern; | |
42 | SimpleFormatter endPattern; | |
57a6839d A |
43 | |
44 | ListFormatInternal( | |
45 | const UnicodeString& two, | |
46 | const UnicodeString& start, | |
47 | const UnicodeString& middle, | |
2ca993e8 A |
48 | const UnicodeString& end, |
49 | UErrorCode &errorCode) : | |
50 | twoPattern(two, 2, 2, errorCode), | |
51 | startPattern(start, 2, 2, errorCode), | |
52 | middlePattern(middle, 2, 2, errorCode), | |
53 | endPattern(end, 2, 2, errorCode) {} | |
54 | ||
55 | ListFormatInternal(const ListFormatData &data, UErrorCode &errorCode) : | |
56 | twoPattern(data.twoPattern, errorCode), | |
57 | startPattern(data.startPattern, errorCode), | |
58 | middlePattern(data.middlePattern, errorCode), | |
59 | endPattern(data.endPattern, errorCode) { } | |
57a6839d A |
60 | |
61 | ListFormatInternal(const ListFormatInternal &other) : | |
62 | twoPattern(other.twoPattern), | |
63 | startPattern(other.startPattern), | |
64 | middlePattern(other.middlePattern), | |
65 | endPattern(other.endPattern) { } | |
66 | }; | |
67 | ||
68 | ||
3d1f044b A |
69 | #if !UCONFIG_NO_FORMATTING |
70 | class FormattedListData : public FormattedValueFieldPositionIteratorImpl { | |
71 | public: | |
72 | FormattedListData(UErrorCode& status) : FormattedValueFieldPositionIteratorImpl(5, status) {} | |
73 | virtual ~FormattedListData(); | |
74 | }; | |
75 | ||
76 | FormattedListData::~FormattedListData() = default; | |
77 | ||
78 | UPRV_FORMATTED_VALUE_SUBCLASS_AUTO_IMPL(FormattedList) | |
79 | #endif | |
80 | ||
57a6839d | 81 | |
3d1f044b | 82 | static Hashtable* listPatternHash = nullptr; |
0f5d89e8 | 83 | static const char STANDARD_STYLE[] = "standard"; |
51004dcb A |
84 | |
85 | U_CDECL_BEGIN | |
86 | static UBool U_CALLCONV uprv_listformatter_cleanup() { | |
87 | delete listPatternHash; | |
3d1f044b | 88 | listPatternHash = nullptr; |
51004dcb A |
89 | return TRUE; |
90 | } | |
91 | ||
92 | static void U_CALLCONV | |
57a6839d A |
93 | uprv_deleteListFormatInternal(void *obj) { |
94 | delete static_cast<ListFormatInternal *>(obj); | |
51004dcb A |
95 | } |
96 | ||
97 | U_CDECL_END | |
98 | ||
57a6839d A |
99 | ListFormatter::ListFormatter(const ListFormatter& other) : |
100 | owned(other.owned), data(other.data) { | |
3d1f044b | 101 | if (other.owned != nullptr) { |
57a6839d A |
102 | owned = new ListFormatInternal(*other.owned); |
103 | data = owned; | |
104 | } | |
105 | } | |
106 | ||
107 | ListFormatter& ListFormatter::operator=(const ListFormatter& other) { | |
108 | if (this == &other) { | |
109 | return *this; | |
110 | } | |
111 | delete owned; | |
112 | if (other.owned) { | |
113 | owned = new ListFormatInternal(*other.owned); | |
114 | data = owned; | |
115 | } else { | |
3d1f044b | 116 | owned = nullptr; |
57a6839d A |
117 | data = other.data; |
118 | } | |
119 | return *this; | |
120 | } | |
51004dcb A |
121 | |
122 | void ListFormatter::initializeHash(UErrorCode& errorCode) { | |
123 | if (U_FAILURE(errorCode)) { | |
124 | return; | |
125 | } | |
126 | ||
127 | listPatternHash = new Hashtable(); | |
3d1f044b | 128 | if (listPatternHash == nullptr) { |
51004dcb A |
129 | errorCode = U_MEMORY_ALLOCATION_ERROR; |
130 | return; | |
131 | } | |
132 | ||
57a6839d | 133 | listPatternHash->setValueDeleter(uprv_deleteListFormatInternal); |
3d1f044b | 134 | ucln_i18n_registerCleanup(UCLN_I18N_LIST_FORMATTER, uprv_listformatter_cleanup); |
51004dcb A |
135 | |
136 | } | |
137 | ||
57a6839d A |
138 | const ListFormatInternal* ListFormatter::getListFormatInternal( |
139 | const Locale& locale, const char *style, UErrorCode& errorCode) { | |
51004dcb | 140 | if (U_FAILURE(errorCode)) { |
3d1f044b | 141 | return nullptr; |
51004dcb | 142 | } |
57a6839d A |
143 | CharString keyBuffer(locale.getName(), errorCode); |
144 | keyBuffer.append(':', errorCode).append(style, errorCode); | |
145 | UnicodeString key(keyBuffer.data(), -1, US_INV); | |
3d1f044b A |
146 | ListFormatInternal* result = nullptr; |
147 | static UMutex *listFormatterMutex = STATIC_NEW(UMutex); | |
51004dcb | 148 | { |
3d1f044b A |
149 | Mutex m(listFormatterMutex); |
150 | if (listPatternHash == nullptr) { | |
51004dcb A |
151 | initializeHash(errorCode); |
152 | if (U_FAILURE(errorCode)) { | |
3d1f044b | 153 | return nullptr; |
51004dcb A |
154 | } |
155 | } | |
57a6839d | 156 | result = static_cast<ListFormatInternal*>(listPatternHash->get(key)); |
51004dcb | 157 | } |
3d1f044b | 158 | if (result != nullptr) { |
51004dcb A |
159 | return result; |
160 | } | |
57a6839d | 161 | result = loadListFormatInternal(locale, style, errorCode); |
51004dcb | 162 | if (U_FAILURE(errorCode)) { |
3d1f044b | 163 | return nullptr; |
51004dcb A |
164 | } |
165 | ||
166 | { | |
3d1f044b | 167 | Mutex m(listFormatterMutex); |
57a6839d | 168 | ListFormatInternal* temp = static_cast<ListFormatInternal*>(listPatternHash->get(key)); |
3d1f044b | 169 | if (temp != nullptr) { |
51004dcb A |
170 | delete result; |
171 | result = temp; | |
172 | } else { | |
173 | listPatternHash->put(key, result, errorCode); | |
174 | if (U_FAILURE(errorCode)) { | |
3d1f044b | 175 | return nullptr; |
51004dcb A |
176 | } |
177 | } | |
178 | } | |
179 | return result; | |
180 | } | |
181 | ||
f3c0d7a5 A |
182 | static const UChar solidus = 0x2F; |
183 | static const UChar aliasPrefix[] = { 0x6C,0x69,0x73,0x74,0x50,0x61,0x74,0x74,0x65,0x72,0x6E,0x2F }; // "listPattern/" | |
184 | enum { | |
185 | kAliasPrefixLen = UPRV_LENGTHOF(aliasPrefix), | |
186 | kStyleLenMax = 24 // longest currently is 14 | |
187 | }; | |
188 | ||
189 | struct ListFormatter::ListPatternsSink : public ResourceSink { | |
190 | UnicodeString two, start, middle, end; | |
191 | #if ((U_PLATFORM == U_PF_AIX) || (U_PLATFORM == U_PF_OS390)) && (U_CPLUSPLUS_VERSION < 11) | |
192 | char aliasedStyle[kStyleLenMax+1]; | |
193 | ListPatternsSink() { | |
194 | uprv_memset(aliasedStyle, 0, kStyleLenMax+1); | |
195 | } | |
196 | #else | |
197 | char aliasedStyle[kStyleLenMax+1] = {0}; | |
198 | ||
199 | ListPatternsSink() {} | |
200 | #endif | |
201 | virtual ~ListPatternsSink(); | |
202 | ||
203 | void setAliasedStyle(UnicodeString alias) { | |
204 | int32_t startIndex = alias.indexOf(aliasPrefix, kAliasPrefixLen, 0); | |
205 | if (startIndex < 0) { | |
206 | return; | |
207 | } | |
208 | startIndex += kAliasPrefixLen; | |
209 | int32_t endIndex = alias.indexOf(solidus, startIndex); | |
210 | if (endIndex < 0) { | |
211 | endIndex = alias.length(); | |
212 | } | |
213 | alias.extract(startIndex, endIndex-startIndex, aliasedStyle, kStyleLenMax+1, US_INV); | |
214 | aliasedStyle[kStyleLenMax] = 0; | |
215 | } | |
216 | ||
217 | void handleValueForPattern(ResourceValue &value, UnicodeString &pattern, UErrorCode &errorCode) { | |
218 | if (pattern.isEmpty()) { | |
219 | if (value.getType() == URES_ALIAS) { | |
220 | if (aliasedStyle[0] == 0) { | |
221 | setAliasedStyle(value.getAliasUnicodeString(errorCode)); | |
222 | } | |
223 | } else { | |
224 | pattern = value.getUnicodeString(errorCode); | |
225 | } | |
226 | } | |
227 | } | |
228 | ||
229 | virtual void put(const char *key, ResourceValue &value, UBool /*noFallback*/, | |
230 | UErrorCode &errorCode) { | |
231 | aliasedStyle[0] = 0; | |
232 | if (value.getType() == URES_ALIAS) { | |
233 | setAliasedStyle(value.getAliasUnicodeString(errorCode)); | |
234 | return; | |
235 | } | |
236 | ResourceTable listPatterns = value.getTable(errorCode); | |
237 | for (int i = 0; U_SUCCESS(errorCode) && listPatterns.getKeyAndValue(i, key, value); ++i) { | |
238 | if (uprv_strcmp(key, "2") == 0) { | |
239 | handleValueForPattern(value, two, errorCode); | |
240 | } else if (uprv_strcmp(key, "end") == 0) { | |
241 | handleValueForPattern(value, end, errorCode); | |
242 | } else if (uprv_strcmp(key, "middle") == 0) { | |
243 | handleValueForPattern(value, middle, errorCode); | |
244 | } else if (uprv_strcmp(key, "start") == 0) { | |
245 | handleValueForPattern(value, start, errorCode); | |
246 | } | |
247 | } | |
248 | } | |
249 | }; | |
250 | ||
251 | // Virtual destructors must be defined out of line. | |
252 | ListFormatter::ListPatternsSink::~ListPatternsSink() {} | |
253 | ||
254 | ListFormatInternal* ListFormatter::loadListFormatInternal( | |
57a6839d | 255 | const Locale& locale, const char * style, UErrorCode& errorCode) { |
3d1f044b | 256 | UResourceBundle* rb = ures_open(nullptr, locale.getName(), &errorCode); |
f3c0d7a5 | 257 | rb = ures_getByKeyWithFallback(rb, "listPattern", rb, &errorCode); |
51004dcb A |
258 | if (U_FAILURE(errorCode)) { |
259 | ures_close(rb); | |
3d1f044b | 260 | return nullptr; |
51004dcb | 261 | } |
f3c0d7a5 A |
262 | ListFormatter::ListPatternsSink sink; |
263 | char currentStyle[kStyleLenMax+1]; | |
264 | uprv_strncpy(currentStyle, style, kStyleLenMax); | |
265 | currentStyle[kStyleLenMax] = 0; | |
57a6839d | 266 | |
f3c0d7a5 A |
267 | for (;;) { |
268 | ures_getAllItemsWithFallback(rb, currentStyle, sink, errorCode); | |
269 | if (U_FAILURE(errorCode) || sink.aliasedStyle[0] == 0 || uprv_strcmp(currentStyle, sink.aliasedStyle) == 0) { | |
270 | break; | |
271 | } | |
272 | uprv_strcpy(currentStyle, sink.aliasedStyle); | |
51004dcb | 273 | } |
51004dcb A |
274 | ures_close(rb); |
275 | if (U_FAILURE(errorCode)) { | |
3d1f044b | 276 | return nullptr; |
51004dcb | 277 | } |
f3c0d7a5 A |
278 | if (sink.two.isEmpty() || sink.start.isEmpty() || sink.middle.isEmpty() || sink.end.isEmpty()) { |
279 | errorCode = U_MISSING_RESOURCE_ERROR; | |
3d1f044b | 280 | return nullptr; |
f3c0d7a5 A |
281 | } |
282 | ListFormatInternal* result = new ListFormatInternal(sink.two, sink.start, sink.middle, sink.end, errorCode); | |
3d1f044b | 283 | if (result == nullptr) { |
51004dcb | 284 | errorCode = U_MEMORY_ALLOCATION_ERROR; |
3d1f044b | 285 | return nullptr; |
51004dcb | 286 | } |
2ca993e8 A |
287 | if (U_FAILURE(errorCode)) { |
288 | delete result; | |
3d1f044b | 289 | return nullptr; |
2ca993e8 | 290 | } |
51004dcb A |
291 | return result; |
292 | } | |
293 | ||
51004dcb A |
294 | ListFormatter* ListFormatter::createInstance(UErrorCode& errorCode) { |
295 | Locale locale; // The default locale. | |
296 | return createInstance(locale, errorCode); | |
297 | } | |
298 | ||
299 | ListFormatter* ListFormatter::createInstance(const Locale& locale, UErrorCode& errorCode) { | |
57a6839d A |
300 | return createInstance(locale, STANDARD_STYLE, errorCode); |
301 | } | |
302 | ||
303 | ListFormatter* ListFormatter::createInstance(const Locale& locale, const char *style, UErrorCode& errorCode) { | |
3d1f044b | 304 | const ListFormatInternal* listFormatInternal = getListFormatInternal(locale, style, errorCode); |
51004dcb | 305 | if (U_FAILURE(errorCode)) { |
3d1f044b | 306 | return nullptr; |
51004dcb | 307 | } |
57a6839d | 308 | ListFormatter* p = new ListFormatter(listFormatInternal); |
3d1f044b | 309 | if (p == nullptr) { |
51004dcb | 310 | errorCode = U_MEMORY_ALLOCATION_ERROR; |
3d1f044b | 311 | return nullptr; |
51004dcb A |
312 | } |
313 | return p; | |
314 | } | |
315 | ||
2ca993e8 A |
316 | ListFormatter::ListFormatter(const ListFormatData& listFormatData, UErrorCode &errorCode) { |
317 | owned = new ListFormatInternal(listFormatData, errorCode); | |
57a6839d | 318 | data = owned; |
51004dcb A |
319 | } |
320 | ||
3d1f044b | 321 | ListFormatter::ListFormatter(const ListFormatInternal* listFormatterInternal) : owned(nullptr), data(listFormatterInternal) { |
57a6839d | 322 | } |
51004dcb | 323 | |
57a6839d A |
324 | ListFormatter::~ListFormatter() { |
325 | delete owned; | |
51004dcb A |
326 | } |
327 | ||
328 | /** | |
57a6839d A |
329 | * Joins first and second using the pattern pat. |
330 | * On entry offset is an offset into first or -1 if offset unspecified. | |
331 | * On exit offset is offset of second in result if recordOffset was set | |
332 | * Otherwise if it was >=0 it is set to point into result where it used | |
b331163b A |
333 | * to point into first. On exit, result is the join of first and second |
334 | * according to pat. Any previous value of result gets replaced. | |
51004dcb | 335 | */ |
b331163b | 336 | static void joinStringsAndReplace( |
2ca993e8 | 337 | const SimpleFormatter& pat, |
57a6839d A |
338 | const UnicodeString& first, |
339 | const UnicodeString& second, | |
340 | UnicodeString &result, | |
341 | UBool recordOffset, | |
342 | int32_t &offset, | |
3d1f044b A |
343 | int32_t *offsetFirst, |
344 | int32_t *offsetSecond, | |
57a6839d | 345 | UErrorCode& errorCode) { |
51004dcb A |
346 | if (U_FAILURE(errorCode)) { |
347 | return; | |
348 | } | |
57a6839d A |
349 | const UnicodeString *params[2] = {&first, &second}; |
350 | int32_t offsets[2]; | |
b331163b | 351 | pat.formatAndReplace( |
57a6839d | 352 | params, |
b331163b | 353 | UPRV_LENGTHOF(params), |
57a6839d A |
354 | result, |
355 | offsets, | |
b331163b | 356 | UPRV_LENGTHOF(offsets), |
57a6839d A |
357 | errorCode); |
358 | if (U_FAILURE(errorCode)) { | |
51004dcb A |
359 | return; |
360 | } | |
57a6839d A |
361 | if (offsets[0] == -1 || offsets[1] == -1) { |
362 | errorCode = U_INVALID_FORMAT_ERROR; | |
51004dcb A |
363 | return; |
364 | } | |
57a6839d A |
365 | if (recordOffset) { |
366 | offset = offsets[1]; | |
367 | } else if (offset >= 0) { | |
368 | offset += offsets[0]; | |
369 | } | |
3d1f044b A |
370 | if (offsetFirst != nullptr) *offsetFirst = offsets[0]; |
371 | if (offsetSecond != nullptr) *offsetSecond = offsets[1]; | |
57a6839d | 372 | } |
51004dcb | 373 | |
57a6839d A |
374 | UnicodeString& ListFormatter::format( |
375 | const UnicodeString items[], | |
376 | int32_t nItems, | |
377 | UnicodeString& appendTo, | |
378 | UErrorCode& errorCode) const { | |
379 | int32_t offset; | |
380 | return format(items, nItems, appendTo, -1, offset, errorCode); | |
381 | } | |
51004dcb | 382 | |
3d1f044b A |
383 | #if !UCONFIG_NO_FORMATTING |
384 | UnicodeString& ListFormatter::format( | |
385 | const UnicodeString items[], | |
386 | int32_t nItems, | |
387 | UnicodeString & appendTo, | |
388 | FieldPositionIterator* posIter, | |
389 | UErrorCode& errorCode) const { | |
390 | int32_t offset; | |
391 | FieldPositionIteratorHandler handler(posIter, errorCode); | |
392 | return format_(items, nItems, appendTo, -1, offset, &handler, errorCode); | |
393 | } | |
394 | #endif | |
395 | ||
57a6839d A |
396 | UnicodeString& ListFormatter::format( |
397 | const UnicodeString items[], | |
398 | int32_t nItems, | |
399 | UnicodeString& appendTo, | |
400 | int32_t index, | |
401 | int32_t &offset, | |
402 | UErrorCode& errorCode) const { | |
3d1f044b A |
403 | return format_(items, nItems, appendTo, index, offset, nullptr, errorCode); |
404 | } | |
405 | ||
406 | #if !UCONFIG_NO_FORMATTING | |
407 | FormattedList ListFormatter::formatStringsToValue( | |
408 | const UnicodeString items[], | |
409 | int32_t nItems, | |
410 | UErrorCode& errorCode) const { | |
411 | LocalPointer<FormattedListData> result(new FormattedListData(errorCode), errorCode); | |
412 | if (U_FAILURE(errorCode)) { | |
413 | return FormattedList(errorCode); | |
414 | } | |
415 | UnicodeString string; | |
416 | int32_t offset; | |
417 | auto handler = result->getHandler(errorCode); | |
418 | handler.setCategory(UFIELD_CATEGORY_LIST); | |
419 | format_(items, nItems, string, -1, offset, &handler, errorCode); | |
420 | handler.getError(errorCode); | |
421 | result->appendString(string, errorCode); | |
422 | if (U_FAILURE(errorCode)) { | |
423 | return FormattedList(errorCode); | |
424 | } | |
425 | ||
426 | // Add span fields and sort | |
427 | ConstrainedFieldPosition cfpos; | |
428 | cfpos.constrainField(UFIELD_CATEGORY_LIST, ULISTFMT_ELEMENT_FIELD); | |
429 | int32_t i = 0; | |
430 | handler.setCategory(UFIELD_CATEGORY_LIST_SPAN); | |
431 | while (result->nextPosition(cfpos, errorCode)) { | |
432 | handler.addAttribute(i++, cfpos.getStart(), cfpos.getLimit()); | |
433 | } | |
434 | handler.getError(errorCode); | |
435 | if (U_FAILURE(errorCode)) { | |
436 | return FormattedList(errorCode); | |
437 | } | |
438 | result->sort(); | |
439 | ||
440 | return FormattedList(result.orphan()); | |
441 | } | |
442 | #endif | |
443 | ||
444 | UnicodeString& ListFormatter::format_( | |
445 | const UnicodeString items[], | |
446 | int32_t nItems, | |
447 | UnicodeString& appendTo, | |
448 | int32_t index, | |
449 | int32_t &offset, | |
450 | FieldPositionHandler* handler, | |
451 | UErrorCode& errorCode) const { | |
452 | #if !UCONFIG_NO_FORMATTING | |
57a6839d A |
453 | offset = -1; |
454 | if (U_FAILURE(errorCode)) { | |
455 | return appendTo; | |
456 | } | |
3d1f044b | 457 | if (data == nullptr) { |
57a6839d A |
458 | errorCode = U_INVALID_STATE_ERROR; |
459 | return appendTo; | |
51004dcb A |
460 | } |
461 | ||
57a6839d A |
462 | if (nItems <= 0) { |
463 | return appendTo; | |
464 | } | |
465 | if (nItems == 1) { | |
466 | if (index == 0) { | |
467 | offset = appendTo.length(); | |
468 | } | |
3d1f044b A |
469 | if (handler != nullptr) { |
470 | handler->addAttribute(ULISTFMT_ELEMENT_FIELD, | |
471 | appendTo.length(), | |
472 | appendTo.length() + items[0].length()); | |
473 | } | |
57a6839d A |
474 | appendTo.append(items[0]); |
475 | return appendTo; | |
476 | } | |
b331163b | 477 | UnicodeString result(items[0]); |
57a6839d A |
478 | if (index == 0) { |
479 | offset = 0; | |
480 | } | |
3d1f044b A |
481 | int32_t offsetFirst; |
482 | int32_t offsetSecond; | |
483 | int32_t prefixLength = 0; | |
484 | // for n items, there are 2 * (n + 1) boundary including 0 and the upper | |
485 | // edge. | |
486 | MaybeStackArray<int32_t, 10> offsets((handler != nullptr) ? 2 * (nItems + 1): 0); | |
b331163b A |
487 | joinStringsAndReplace( |
488 | nItems == 2 ? data->twoPattern : data->startPattern, | |
489 | result, | |
57a6839d | 490 | items[1], |
b331163b | 491 | result, |
57a6839d A |
492 | index == 1, |
493 | offset, | |
3d1f044b A |
494 | &offsetFirst, |
495 | &offsetSecond, | |
57a6839d | 496 | errorCode); |
3d1f044b A |
497 | if (handler != nullptr) { |
498 | offsets[0] = 0; | |
499 | prefixLength += offsetFirst; | |
500 | offsets[1] = offsetSecond - prefixLength; | |
501 | } | |
b331163b A |
502 | if (nItems > 2) { |
503 | for (int32_t i = 2; i < nItems - 1; ++i) { | |
504 | joinStringsAndReplace( | |
505 | data->middlePattern, | |
506 | result, | |
507 | items[i], | |
508 | result, | |
509 | index == i, | |
510 | offset, | |
3d1f044b A |
511 | &offsetFirst, |
512 | &offsetSecond, | |
b331163b | 513 | errorCode); |
3d1f044b A |
514 | if (handler != nullptr) { |
515 | prefixLength += offsetFirst; | |
516 | offsets[i] = offsetSecond - prefixLength; | |
517 | } | |
b331163b A |
518 | } |
519 | joinStringsAndReplace( | |
520 | data->endPattern, | |
521 | result, | |
522 | items[nItems - 1], | |
523 | result, | |
524 | index == nItems - 1, | |
525 | offset, | |
3d1f044b A |
526 | &offsetFirst, |
527 | &offsetSecond, | |
b331163b | 528 | errorCode); |
3d1f044b A |
529 | if (handler != nullptr) { |
530 | prefixLength += offsetFirst; | |
531 | offsets[nItems - 1] = offsetSecond - prefixLength; | |
532 | } | |
533 | } | |
534 | if (handler != nullptr) { | |
535 | // If there are already some data in appendTo, we need to adjust the index | |
536 | // by shifting that lenght while insert into handler. | |
537 | int32_t shift = appendTo.length() + prefixLength; | |
538 | // Output the ULISTFMT_ELEMENT_FIELD in the order of the input elements | |
539 | for (int32_t i = 0; i < nItems; ++i) { | |
540 | offsets[i + nItems] = offsets[i] + items[i].length() + shift; | |
541 | offsets[i] += shift; | |
542 | handler->addAttribute( | |
543 | ULISTFMT_ELEMENT_FIELD, // id | |
544 | offsets[i], // index | |
545 | offsets[i + nItems]); // limit | |
546 | } | |
547 | // The locale pattern may reorder the items (such as in ur-IN locale), | |
548 | // so we cannot assume the array is in accendning order. | |
549 | // To handle the edging case, just insert the two ends into the array | |
550 | // and sort. Then we output ULISTFMT_LITERAL_FIELD if the indecies | |
551 | // between the even and odd position are not the same in the sorted array. | |
552 | offsets[2 * nItems] = shift - prefixLength; | |
553 | offsets[2 * nItems + 1] = result.length() + shift - prefixLength; | |
554 | uprv_sortArray(offsets.getAlias(), 2 * (nItems + 1), sizeof(int32_t), | |
555 | uprv_int32Comparator, nullptr, | |
556 | false, &errorCode); | |
557 | for (int32_t i = 0; i <= nItems; ++i) { | |
558 | if (offsets[i * 2] != offsets[i * 2 + 1]) { | |
559 | handler->addAttribute( | |
560 | ULISTFMT_LITERAL_FIELD, // id | |
561 | offsets[i * 2], // index | |
562 | offsets[i * 2 + 1]); // limit | |
563 | } | |
564 | } | |
57a6839d | 565 | } |
57a6839d A |
566 | if (U_SUCCESS(errorCode)) { |
567 | if (offset >= 0) { | |
568 | offset += appendTo.length(); | |
569 | } | |
b331163b | 570 | appendTo += result; |
57a6839d | 571 | } |
3d1f044b | 572 | #endif |
57a6839d | 573 | return appendTo; |
51004dcb A |
574 | } |
575 | ||
576 | U_NAMESPACE_END |