/src/mozilla-central/intl/icu/source/common/utext.cpp
Line | Count | Source (jump to first uncovered line) |
1 | | // © 2016 and later: Unicode, Inc. and others. |
2 | | // License & terms of use: http://www.unicode.org/copyright.html |
3 | | /* |
4 | | ******************************************************************************* |
5 | | * |
6 | | * Copyright (C) 2005-2016, International Business Machines |
7 | | * Corporation and others. All Rights Reserved. |
8 | | * |
9 | | ******************************************************************************* |
10 | | * file name: utext.cpp |
11 | | * encoding: UTF-8 |
12 | | * tab size: 8 (not used) |
13 | | * indentation:4 |
14 | | * |
15 | | * created on: 2005apr12 |
16 | | * created by: Markus W. Scherer |
17 | | */ |
18 | | |
19 | | #include "unicode/utypes.h" |
20 | | #include "unicode/ustring.h" |
21 | | #include "unicode/unistr.h" |
22 | | #include "unicode/chariter.h" |
23 | | #include "unicode/utext.h" |
24 | | #include "unicode/utf.h" |
25 | | #include "unicode/utf8.h" |
26 | | #include "unicode/utf16.h" |
27 | | #include "ustr_imp.h" |
28 | | #include "cmemory.h" |
29 | | #include "cstring.h" |
30 | | #include "uassert.h" |
31 | | #include "putilimp.h" |
32 | | |
33 | | U_NAMESPACE_USE |
34 | | |
35 | 0 | #define I32_FLAG(bitIndex) ((int32_t)1<<(bitIndex)) |
36 | | |
37 | | |
38 | | static UBool |
39 | 0 | utext_access(UText *ut, int64_t index, UBool forward) { |
40 | 0 | return ut->pFuncs->access(ut, index, forward); |
41 | 0 | } |
42 | | |
43 | | |
44 | | |
45 | | U_CAPI UBool U_EXPORT2 |
46 | 0 | utext_moveIndex32(UText *ut, int32_t delta) { |
47 | 0 | UChar32 c; |
48 | 0 | if (delta > 0) { |
49 | 0 | do { |
50 | 0 | if(ut->chunkOffset>=ut->chunkLength && !utext_access(ut, ut->chunkNativeLimit, TRUE)) { |
51 | 0 | return FALSE; |
52 | 0 | } |
53 | 0 | c = ut->chunkContents[ut->chunkOffset]; |
54 | 0 | if (U16_IS_SURROGATE(c)) { |
55 | 0 | c = utext_next32(ut); |
56 | 0 | if (c == U_SENTINEL) { |
57 | 0 | return FALSE; |
58 | 0 | } |
59 | 0 | } else { |
60 | 0 | ut->chunkOffset++; |
61 | 0 | } |
62 | 0 | } while(--delta>0); |
63 | 0 |
|
64 | 0 | } else if (delta<0) { |
65 | 0 | do { |
66 | 0 | if(ut->chunkOffset<=0 && !utext_access(ut, ut->chunkNativeStart, FALSE)) { |
67 | 0 | return FALSE; |
68 | 0 | } |
69 | 0 | c = ut->chunkContents[ut->chunkOffset-1]; |
70 | 0 | if (U16_IS_SURROGATE(c)) { |
71 | 0 | c = utext_previous32(ut); |
72 | 0 | if (c == U_SENTINEL) { |
73 | 0 | return FALSE; |
74 | 0 | } |
75 | 0 | } else { |
76 | 0 | ut->chunkOffset--; |
77 | 0 | } |
78 | 0 | } while(++delta<0); |
79 | 0 | } |
80 | 0 |
|
81 | 0 | return TRUE; |
82 | 0 | } |
83 | | |
84 | | |
85 | | U_CAPI int64_t U_EXPORT2 |
86 | 0 | utext_nativeLength(UText *ut) { |
87 | 0 | return ut->pFuncs->nativeLength(ut); |
88 | 0 | } |
89 | | |
90 | | |
91 | | U_CAPI UBool U_EXPORT2 |
92 | 0 | utext_isLengthExpensive(const UText *ut) { |
93 | 0 | UBool r = (ut->providerProperties & I32_FLAG(UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE)) != 0; |
94 | 0 | return r; |
95 | 0 | } |
96 | | |
97 | | |
98 | | U_CAPI int64_t U_EXPORT2 |
99 | 0 | utext_getNativeIndex(const UText *ut) { |
100 | 0 | if(ut->chunkOffset <= ut->nativeIndexingLimit) { |
101 | 0 | return ut->chunkNativeStart+ut->chunkOffset; |
102 | 0 | } else { |
103 | 0 | return ut->pFuncs->mapOffsetToNative(ut); |
104 | 0 | } |
105 | 0 | } |
106 | | |
107 | | |
108 | | U_CAPI void U_EXPORT2 |
109 | 0 | utext_setNativeIndex(UText *ut, int64_t index) { |
110 | 0 | if(index<ut->chunkNativeStart || index>=ut->chunkNativeLimit) { |
111 | 0 | // The desired position is outside of the current chunk. |
112 | 0 | // Access the new position. Assume a forward iteration from here, |
113 | 0 | // which will also be optimimum for a single random access. |
114 | 0 | // Reverse iterations may suffer slightly. |
115 | 0 | ut->pFuncs->access(ut, index, TRUE); |
116 | 0 | } else if((int32_t)(index - ut->chunkNativeStart) <= ut->nativeIndexingLimit) { |
117 | 0 | // utf-16 indexing. |
118 | 0 | ut->chunkOffset=(int32_t)(index-ut->chunkNativeStart); |
119 | 0 | } else { |
120 | 0 | ut->chunkOffset=ut->pFuncs->mapNativeIndexToUTF16(ut, index); |
121 | 0 | } |
122 | 0 | // The convention is that the index must always be on a code point boundary. |
123 | 0 | // Adjust the index position if it is in the middle of a surrogate pair. |
124 | 0 | if (ut->chunkOffset<ut->chunkLength) { |
125 | 0 | UChar c= ut->chunkContents[ut->chunkOffset]; |
126 | 0 | if (U16_IS_TRAIL(c)) { |
127 | 0 | if (ut->chunkOffset==0) { |
128 | 0 | ut->pFuncs->access(ut, ut->chunkNativeStart, FALSE); |
129 | 0 | } |
130 | 0 | if (ut->chunkOffset>0) { |
131 | 0 | UChar lead = ut->chunkContents[ut->chunkOffset-1]; |
132 | 0 | if (U16_IS_LEAD(lead)) { |
133 | 0 | ut->chunkOffset--; |
134 | 0 | } |
135 | 0 | } |
136 | 0 | } |
137 | 0 | } |
138 | 0 | } |
139 | | |
140 | | |
141 | | |
142 | | U_CAPI int64_t U_EXPORT2 |
143 | 0 | utext_getPreviousNativeIndex(UText *ut) { |
144 | 0 | // |
145 | 0 | // Fast-path the common case. |
146 | 0 | // Common means current position is not at the beginning of a chunk |
147 | 0 | // and the preceding character is not supplementary. |
148 | 0 | // |
149 | 0 | int32_t i = ut->chunkOffset - 1; |
150 | 0 | int64_t result; |
151 | 0 | if (i >= 0) { |
152 | 0 | UChar c = ut->chunkContents[i]; |
153 | 0 | if (U16_IS_TRAIL(c) == FALSE) { |
154 | 0 | if (i <= ut->nativeIndexingLimit) { |
155 | 0 | result = ut->chunkNativeStart + i; |
156 | 0 | } else { |
157 | 0 | ut->chunkOffset = i; |
158 | 0 | result = ut->pFuncs->mapOffsetToNative(ut); |
159 | 0 | ut->chunkOffset++; |
160 | 0 | } |
161 | 0 | return result; |
162 | 0 | } |
163 | 0 | } |
164 | 0 |
|
165 | 0 | // If at the start of text, simply return 0. |
166 | 0 | if (ut->chunkOffset==0 && ut->chunkNativeStart==0) { |
167 | 0 | return 0; |
168 | 0 | } |
169 | 0 | |
170 | 0 | // Harder, less common cases. We are at a chunk boundary, or on a surrogate. |
171 | 0 | // Keep it simple, use other functions to handle the edges. |
172 | 0 | // |
173 | 0 | utext_previous32(ut); |
174 | 0 | result = UTEXT_GETNATIVEINDEX(ut); |
175 | 0 | utext_next32(ut); |
176 | 0 | return result; |
177 | 0 | } |
178 | | |
179 | | |
180 | | // |
181 | | // utext_current32. Get the UChar32 at the current position. |
182 | | // UText iteration position is always on a code point boundary, |
183 | | // never on the trail half of a surrogate pair. |
184 | | // |
185 | | U_CAPI UChar32 U_EXPORT2 |
186 | 0 | utext_current32(UText *ut) { |
187 | 0 | UChar32 c; |
188 | 0 | if (ut->chunkOffset==ut->chunkLength) { |
189 | 0 | // Current position is just off the end of the chunk. |
190 | 0 | if (ut->pFuncs->access(ut, ut->chunkNativeLimit, TRUE) == FALSE) { |
191 | 0 | // Off the end of the text. |
192 | 0 | return U_SENTINEL; |
193 | 0 | } |
194 | 0 | } |
195 | 0 |
|
196 | 0 | c = ut->chunkContents[ut->chunkOffset]; |
197 | 0 | if (U16_IS_LEAD(c) == FALSE) { |
198 | 0 | // Normal, non-supplementary case. |
199 | 0 | return c; |
200 | 0 | } |
201 | 0 | |
202 | 0 | // |
203 | 0 | // Possible supplementary char. |
204 | 0 | // |
205 | 0 | UChar32 trail = 0; |
206 | 0 | UChar32 supplementaryC = c; |
207 | 0 | if ((ut->chunkOffset+1) < ut->chunkLength) { |
208 | 0 | // The trail surrogate is in the same chunk. |
209 | 0 | trail = ut->chunkContents[ut->chunkOffset+1]; |
210 | 0 | } else { |
211 | 0 | // The trail surrogate is in a different chunk. |
212 | 0 | // Because we must maintain the iteration position, we need to switch forward |
213 | 0 | // into the new chunk, get the trail surrogate, then revert the chunk back to the |
214 | 0 | // original one. |
215 | 0 | // An edge case to be careful of: the entire text may end with an unpaired |
216 | 0 | // leading surrogate. The attempt to access the trail will fail, but |
217 | 0 | // the original position before the unpaired lead still needs to be restored. |
218 | 0 | int64_t nativePosition = ut->chunkNativeLimit; |
219 | 0 | int32_t originalOffset = ut->chunkOffset; |
220 | 0 | if (ut->pFuncs->access(ut, nativePosition, TRUE)) { |
221 | 0 | trail = ut->chunkContents[ut->chunkOffset]; |
222 | 0 | } |
223 | 0 | UBool r = ut->pFuncs->access(ut, nativePosition, FALSE); // reverse iteration flag loads preceding chunk |
224 | 0 | U_ASSERT(r==TRUE); |
225 | 0 | ut->chunkOffset = originalOffset; |
226 | 0 | if(!r) { |
227 | 0 | return U_SENTINEL; |
228 | 0 | } |
229 | 0 | } |
230 | 0 |
|
231 | 0 | if (U16_IS_TRAIL(trail)) { |
232 | 0 | supplementaryC = U16_GET_SUPPLEMENTARY(c, trail); |
233 | 0 | } |
234 | 0 | return supplementaryC; |
235 | 0 |
|
236 | 0 | } |
237 | | |
238 | | |
239 | | U_CAPI UChar32 U_EXPORT2 |
240 | 0 | utext_char32At(UText *ut, int64_t nativeIndex) { |
241 | 0 | UChar32 c = U_SENTINEL; |
242 | 0 |
|
243 | 0 | // Fast path the common case. |
244 | 0 | if (nativeIndex>=ut->chunkNativeStart && nativeIndex < ut->chunkNativeStart + ut->nativeIndexingLimit) { |
245 | 0 | ut->chunkOffset = (int32_t)(nativeIndex - ut->chunkNativeStart); |
246 | 0 | c = ut->chunkContents[ut->chunkOffset]; |
247 | 0 | if (U16_IS_SURROGATE(c) == FALSE) { |
248 | 0 | return c; |
249 | 0 | } |
250 | 0 | } |
251 | 0 | |
252 | 0 | |
253 | 0 | utext_setNativeIndex(ut, nativeIndex); |
254 | 0 | if (nativeIndex>=ut->chunkNativeStart && ut->chunkOffset<ut->chunkLength) { |
255 | 0 | c = ut->chunkContents[ut->chunkOffset]; |
256 | 0 | if (U16_IS_SURROGATE(c)) { |
257 | 0 | // For surrogates, let current32() deal with the complications |
258 | 0 | // of supplementaries that may span chunk boundaries. |
259 | 0 | c = utext_current32(ut); |
260 | 0 | } |
261 | 0 | } |
262 | 0 | return c; |
263 | 0 | } |
264 | | |
265 | | |
266 | | U_CAPI UChar32 U_EXPORT2 |
267 | 0 | utext_next32(UText *ut) { |
268 | 0 | UChar32 c; |
269 | 0 |
|
270 | 0 | if (ut->chunkOffset >= ut->chunkLength) { |
271 | 0 | if (ut->pFuncs->access(ut, ut->chunkNativeLimit, TRUE) == FALSE) { |
272 | 0 | return U_SENTINEL; |
273 | 0 | } |
274 | 0 | } |
275 | 0 |
|
276 | 0 | c = ut->chunkContents[ut->chunkOffset++]; |
277 | 0 | if (U16_IS_LEAD(c) == FALSE) { |
278 | 0 | // Normal case, not supplementary. |
279 | 0 | // (A trail surrogate seen here is just returned as is, as a surrogate value. |
280 | 0 | // It cannot be part of a pair.) |
281 | 0 | return c; |
282 | 0 | } |
283 | 0 | |
284 | 0 | if (ut->chunkOffset >= ut->chunkLength) { |
285 | 0 | if (ut->pFuncs->access(ut, ut->chunkNativeLimit, TRUE) == FALSE) { |
286 | 0 | // c is an unpaired lead surrogate at the end of the text. |
287 | 0 | // return it as it is. |
288 | 0 | return c; |
289 | 0 | } |
290 | 0 | } |
291 | 0 | UChar32 trail = ut->chunkContents[ut->chunkOffset]; |
292 | 0 | if (U16_IS_TRAIL(trail) == FALSE) { |
293 | 0 | // c was an unpaired lead surrogate, not at the end of the text. |
294 | 0 | // return it as it is (unpaired). Iteration position is on the |
295 | 0 | // following character, possibly in the next chunk, where the |
296 | 0 | // trail surrogate would have been if it had existed. |
297 | 0 | return c; |
298 | 0 | } |
299 | 0 | |
300 | 0 | UChar32 supplementary = U16_GET_SUPPLEMENTARY(c, trail); |
301 | 0 | ut->chunkOffset++; // move iteration position over the trail surrogate. |
302 | 0 | return supplementary; |
303 | 0 | } |
304 | | |
305 | | |
306 | | U_CAPI UChar32 U_EXPORT2 |
307 | 0 | utext_previous32(UText *ut) { |
308 | 0 | UChar32 c; |
309 | 0 |
|
310 | 0 | if (ut->chunkOffset <= 0) { |
311 | 0 | if (ut->pFuncs->access(ut, ut->chunkNativeStart, FALSE) == FALSE) { |
312 | 0 | return U_SENTINEL; |
313 | 0 | } |
314 | 0 | } |
315 | 0 | ut->chunkOffset--; |
316 | 0 | c = ut->chunkContents[ut->chunkOffset]; |
317 | 0 | if (U16_IS_TRAIL(c) == FALSE) { |
318 | 0 | // Normal case, not supplementary. |
319 | 0 | // (A lead surrogate seen here is just returned as is, as a surrogate value. |
320 | 0 | // It cannot be part of a pair.) |
321 | 0 | return c; |
322 | 0 | } |
323 | 0 | |
324 | 0 | if (ut->chunkOffset <= 0) { |
325 | 0 | if (ut->pFuncs->access(ut, ut->chunkNativeStart, FALSE) == FALSE) { |
326 | 0 | // c is an unpaired trail surrogate at the start of the text. |
327 | 0 | // return it as it is. |
328 | 0 | return c; |
329 | 0 | } |
330 | 0 | } |
331 | 0 | |
332 | 0 | UChar32 lead = ut->chunkContents[ut->chunkOffset-1]; |
333 | 0 | if (U16_IS_LEAD(lead) == FALSE) { |
334 | 0 | // c was an unpaired trail surrogate, not at the end of the text. |
335 | 0 | // return it as it is (unpaired). Iteration position is at c |
336 | 0 | return c; |
337 | 0 | } |
338 | 0 | |
339 | 0 | UChar32 supplementary = U16_GET_SUPPLEMENTARY(lead, c); |
340 | 0 | ut->chunkOffset--; // move iteration position over the lead surrogate. |
341 | 0 | return supplementary; |
342 | 0 | } |
343 | | |
344 | | |
345 | | |
346 | | U_CAPI UChar32 U_EXPORT2 |
347 | 0 | utext_next32From(UText *ut, int64_t index) { |
348 | 0 | UChar32 c = U_SENTINEL; |
349 | 0 |
|
350 | 0 | if(index<ut->chunkNativeStart || index>=ut->chunkNativeLimit) { |
351 | 0 | // Desired position is outside of the current chunk. |
352 | 0 | if(!ut->pFuncs->access(ut, index, TRUE)) { |
353 | 0 | // no chunk available here |
354 | 0 | return U_SENTINEL; |
355 | 0 | } |
356 | 0 | } else if (index - ut->chunkNativeStart <= (int64_t)ut->nativeIndexingLimit) { |
357 | 0 | // Desired position is in chunk, with direct 1:1 native to UTF16 indexing |
358 | 0 | ut->chunkOffset = (int32_t)(index - ut->chunkNativeStart); |
359 | 0 | } else { |
360 | 0 | // Desired position is in chunk, with non-UTF16 indexing. |
361 | 0 | ut->chunkOffset = ut->pFuncs->mapNativeIndexToUTF16(ut, index); |
362 | 0 | } |
363 | 0 |
|
364 | 0 | c = ut->chunkContents[ut->chunkOffset++]; |
365 | 0 | if (U16_IS_SURROGATE(c)) { |
366 | 0 | // Surrogates. Many edge cases. Use other functions that already |
367 | 0 | // deal with the problems. |
368 | 0 | utext_setNativeIndex(ut, index); |
369 | 0 | c = utext_next32(ut); |
370 | 0 | } |
371 | 0 | return c; |
372 | 0 | } |
373 | | |
374 | | |
375 | | U_CAPI UChar32 U_EXPORT2 |
376 | 0 | utext_previous32From(UText *ut, int64_t index) { |
377 | 0 | // |
378 | 0 | // Return the character preceding the specified index. |
379 | 0 | // Leave the iteration position at the start of the character that was returned. |
380 | 0 | // |
381 | 0 | UChar32 cPrev; // The character preceding cCurr, which is what we will return. |
382 | 0 |
|
383 | 0 | // Address the chunk containg the position preceding the incoming index |
384 | 0 | // A tricky edge case: |
385 | 0 | // We try to test the requested native index against the chunkNativeStart to determine |
386 | 0 | // whether the character preceding the one at the index is in the current chunk. |
387 | 0 | // BUT, this test can fail with UTF-8 (or any other multibyte encoding), when the |
388 | 0 | // requested index is on something other than the first position of the first char. |
389 | 0 | // |
390 | 0 | if(index<=ut->chunkNativeStart || index>ut->chunkNativeLimit) { |
391 | 0 | // Requested native index is outside of the current chunk. |
392 | 0 | if(!ut->pFuncs->access(ut, index, FALSE)) { |
393 | 0 | // no chunk available here |
394 | 0 | return U_SENTINEL; |
395 | 0 | } |
396 | 0 | } else if(index - ut->chunkNativeStart <= (int64_t)ut->nativeIndexingLimit) { |
397 | 0 | // Direct UTF-16 indexing. |
398 | 0 | ut->chunkOffset = (int32_t)(index - ut->chunkNativeStart); |
399 | 0 | } else { |
400 | 0 | ut->chunkOffset=ut->pFuncs->mapNativeIndexToUTF16(ut, index); |
401 | 0 | if (ut->chunkOffset==0 && !ut->pFuncs->access(ut, index, FALSE)) { |
402 | 0 | // no chunk available here |
403 | 0 | return U_SENTINEL; |
404 | 0 | } |
405 | 0 | } |
406 | 0 |
|
407 | 0 | // |
408 | 0 | // Simple case with no surrogates. |
409 | 0 | // |
410 | 0 | ut->chunkOffset--; |
411 | 0 | cPrev = ut->chunkContents[ut->chunkOffset]; |
412 | 0 |
|
413 | 0 | if (U16_IS_SURROGATE(cPrev)) { |
414 | 0 | // Possible supplementary. Many edge cases. |
415 | 0 | // Let other functions do the heavy lifting. |
416 | 0 | utext_setNativeIndex(ut, index); |
417 | 0 | cPrev = utext_previous32(ut); |
418 | 0 | } |
419 | 0 | return cPrev; |
420 | 0 | } |
421 | | |
422 | | |
423 | | U_CAPI int32_t U_EXPORT2 |
424 | | utext_extract(UText *ut, |
425 | | int64_t start, int64_t limit, |
426 | | UChar *dest, int32_t destCapacity, |
427 | 0 | UErrorCode *status) { |
428 | 0 | return ut->pFuncs->extract(ut, start, limit, dest, destCapacity, status); |
429 | 0 | } |
430 | | |
431 | | |
432 | | |
433 | | U_CAPI UBool U_EXPORT2 |
434 | 0 | utext_equals(const UText *a, const UText *b) { |
435 | 0 | if (a==NULL || b==NULL || |
436 | 0 | a->magic != UTEXT_MAGIC || |
437 | 0 | b->magic != UTEXT_MAGIC) { |
438 | 0 | // Null or invalid arguments don't compare equal to anything. |
439 | 0 | return FALSE; |
440 | 0 | } |
441 | 0 |
|
442 | 0 | if (a->pFuncs != b->pFuncs) { |
443 | 0 | // Different types of text providers. |
444 | 0 | return FALSE; |
445 | 0 | } |
446 | 0 |
|
447 | 0 | if (a->context != b->context) { |
448 | 0 | // Different sources (different strings) |
449 | 0 | return FALSE; |
450 | 0 | } |
451 | 0 | if (utext_getNativeIndex(a) != utext_getNativeIndex(b)) { |
452 | 0 | // Different current position in the string. |
453 | 0 | return FALSE; |
454 | 0 | } |
455 | 0 |
|
456 | 0 | return TRUE; |
457 | 0 | } |
458 | | |
459 | | U_CAPI UBool U_EXPORT2 |
460 | | utext_isWritable(const UText *ut) |
461 | 0 | { |
462 | 0 | UBool b = (ut->providerProperties & I32_FLAG(UTEXT_PROVIDER_WRITABLE)) != 0; |
463 | 0 | return b; |
464 | 0 | } |
465 | | |
466 | | |
467 | | U_CAPI void U_EXPORT2 |
468 | 0 | utext_freeze(UText *ut) { |
469 | 0 | // Zero out the WRITABLE flag. |
470 | 0 | ut->providerProperties &= ~(I32_FLAG(UTEXT_PROVIDER_WRITABLE)); |
471 | 0 | } |
472 | | |
473 | | |
474 | | U_CAPI UBool U_EXPORT2 |
475 | | utext_hasMetaData(const UText *ut) |
476 | 0 | { |
477 | 0 | UBool b = (ut->providerProperties & I32_FLAG(UTEXT_PROVIDER_HAS_META_DATA)) != 0; |
478 | 0 | return b; |
479 | 0 | } |
480 | | |
481 | | |
482 | | |
483 | | U_CAPI int32_t U_EXPORT2 |
484 | | utext_replace(UText *ut, |
485 | | int64_t nativeStart, int64_t nativeLimit, |
486 | | const UChar *replacementText, int32_t replacementLength, |
487 | | UErrorCode *status) |
488 | 0 | { |
489 | 0 | if (U_FAILURE(*status)) { |
490 | 0 | return 0; |
491 | 0 | } |
492 | 0 | if ((ut->providerProperties & I32_FLAG(UTEXT_PROVIDER_WRITABLE)) == 0) { |
493 | 0 | *status = U_NO_WRITE_PERMISSION; |
494 | 0 | return 0; |
495 | 0 | } |
496 | 0 | int32_t i = ut->pFuncs->replace(ut, nativeStart, nativeLimit, replacementText, replacementLength, status); |
497 | 0 | return i; |
498 | 0 | } |
499 | | |
500 | | U_CAPI void U_EXPORT2 |
501 | | utext_copy(UText *ut, |
502 | | int64_t nativeStart, int64_t nativeLimit, |
503 | | int64_t destIndex, |
504 | | UBool move, |
505 | | UErrorCode *status) |
506 | 0 | { |
507 | 0 | if (U_FAILURE(*status)) { |
508 | 0 | return; |
509 | 0 | } |
510 | 0 | if ((ut->providerProperties & I32_FLAG(UTEXT_PROVIDER_WRITABLE)) == 0) { |
511 | 0 | *status = U_NO_WRITE_PERMISSION; |
512 | 0 | return; |
513 | 0 | } |
514 | 0 | ut->pFuncs->copy(ut, nativeStart, nativeLimit, destIndex, move, status); |
515 | 0 | } |
516 | | |
517 | | |
518 | | |
519 | | U_CAPI UText * U_EXPORT2 |
520 | 0 | utext_clone(UText *dest, const UText *src, UBool deep, UBool readOnly, UErrorCode *status) { |
521 | 0 | if (U_FAILURE(*status)) { |
522 | 0 | return dest; |
523 | 0 | } |
524 | 0 | UText *result = src->pFuncs->clone(dest, src, deep, status); |
525 | 0 | if (U_FAILURE(*status)) { |
526 | 0 | return result; |
527 | 0 | } |
528 | 0 | if (result == NULL) { |
529 | 0 | *status = U_MEMORY_ALLOCATION_ERROR; |
530 | 0 | return result; |
531 | 0 | } |
532 | 0 | if (readOnly) { |
533 | 0 | utext_freeze(result); |
534 | 0 | } |
535 | 0 | return result; |
536 | 0 | } |
537 | | |
538 | | |
539 | | |
540 | | //------------------------------------------------------------------------------ |
541 | | // |
542 | | // UText common functions implementation |
543 | | // |
544 | | //------------------------------------------------------------------------------ |
545 | | |
546 | | // |
547 | | // UText.flags bit definitions |
548 | | // |
549 | | enum { |
550 | | UTEXT_HEAP_ALLOCATED = 1, // 1 if ICU has allocated this UText struct on the heap. |
551 | | // 0 if caller provided storage for the UText. |
552 | | |
553 | | UTEXT_EXTRA_HEAP_ALLOCATED = 2, // 1 if ICU has allocated extra storage as a separate |
554 | | // heap block. |
555 | | // 0 if there is no separate allocation. Either no extra |
556 | | // storage was requested, or it is appended to the end |
557 | | // of the main UText storage. |
558 | | |
559 | | UTEXT_OPEN = 4 // 1 if this UText is currently open |
560 | | // 0 if this UText is not open. |
561 | | }; |
562 | | |
563 | | |
564 | | // |
565 | | // Extended form of a UText. The purpose is to aid in computing the total size required |
566 | | // when a provider asks for a UText to be allocated with extra storage. |
567 | | |
568 | | struct ExtendedUText { |
569 | | UText ut; |
570 | | UAlignedMemory extension; |
571 | | }; |
572 | | |
573 | | static const UText emptyText = UTEXT_INITIALIZER; |
574 | | |
575 | | U_CAPI UText * U_EXPORT2 |
576 | 0 | utext_setup(UText *ut, int32_t extraSpace, UErrorCode *status) { |
577 | 0 | if (U_FAILURE(*status)) { |
578 | 0 | return ut; |
579 | 0 | } |
580 | 0 | |
581 | 0 | if (ut == NULL) { |
582 | 0 | // We need to heap-allocate storage for the new UText |
583 | 0 | int32_t spaceRequired = sizeof(UText); |
584 | 0 | if (extraSpace > 0) { |
585 | 0 | spaceRequired = sizeof(ExtendedUText) + extraSpace - sizeof(UAlignedMemory); |
586 | 0 | } |
587 | 0 | ut = (UText *)uprv_malloc(spaceRequired); |
588 | 0 | if (ut == NULL) { |
589 | 0 | *status = U_MEMORY_ALLOCATION_ERROR; |
590 | 0 | return NULL; |
591 | 0 | } else { |
592 | 0 | *ut = emptyText; |
593 | 0 | ut->flags |= UTEXT_HEAP_ALLOCATED; |
594 | 0 | if (spaceRequired>0) { |
595 | 0 | ut->extraSize = extraSpace; |
596 | 0 | ut->pExtra = &((ExtendedUText *)ut)->extension; |
597 | 0 | } |
598 | 0 | } |
599 | 0 | } else { |
600 | 0 | // We have been supplied with an already existing UText. |
601 | 0 | // Verify that it really appears to be a UText. |
602 | 0 | if (ut->magic != UTEXT_MAGIC) { |
603 | 0 | *status = U_ILLEGAL_ARGUMENT_ERROR; |
604 | 0 | return ut; |
605 | 0 | } |
606 | 0 | // If the ut is already open and there's a provider supplied close |
607 | 0 | // function, call it. |
608 | 0 | if ((ut->flags & UTEXT_OPEN) && ut->pFuncs->close != NULL) { |
609 | 0 | ut->pFuncs->close(ut); |
610 | 0 | } |
611 | 0 | ut->flags &= ~UTEXT_OPEN; |
612 | 0 |
|
613 | 0 | // If extra space was requested by our caller, check whether |
614 | 0 | // sufficient already exists, and allocate new if needed. |
615 | 0 | if (extraSpace > ut->extraSize) { |
616 | 0 | // Need more space. If there is existing separately allocated space, |
617 | 0 | // delete it first, then allocate new space. |
618 | 0 | if (ut->flags & UTEXT_EXTRA_HEAP_ALLOCATED) { |
619 | 0 | uprv_free(ut->pExtra); |
620 | 0 | ut->extraSize = 0; |
621 | 0 | } |
622 | 0 | ut->pExtra = uprv_malloc(extraSpace); |
623 | 0 | if (ut->pExtra == NULL) { |
624 | 0 | *status = U_MEMORY_ALLOCATION_ERROR; |
625 | 0 | } else { |
626 | 0 | ut->extraSize = extraSpace; |
627 | 0 | ut->flags |= UTEXT_EXTRA_HEAP_ALLOCATED; |
628 | 0 | } |
629 | 0 | } |
630 | 0 | } |
631 | 0 | if (U_SUCCESS(*status)) { |
632 | 0 | ut->flags |= UTEXT_OPEN; |
633 | 0 |
|
634 | 0 | // Initialize all remaining fields of the UText. |
635 | 0 | // |
636 | 0 | ut->context = NULL; |
637 | 0 | ut->chunkContents = NULL; |
638 | 0 | ut->p = NULL; |
639 | 0 | ut->q = NULL; |
640 | 0 | ut->r = NULL; |
641 | 0 | ut->a = 0; |
642 | 0 | ut->b = 0; |
643 | 0 | ut->c = 0; |
644 | 0 | ut->chunkOffset = 0; |
645 | 0 | ut->chunkLength = 0; |
646 | 0 | ut->chunkNativeStart = 0; |
647 | 0 | ut->chunkNativeLimit = 0; |
648 | 0 | ut->nativeIndexingLimit = 0; |
649 | 0 | ut->providerProperties = 0; |
650 | 0 | ut->privA = 0; |
651 | 0 | ut->privB = 0; |
652 | 0 | ut->privC = 0; |
653 | 0 | ut->privP = NULL; |
654 | 0 | if (ut->pExtra!=NULL && ut->extraSize>0) |
655 | 0 | uprv_memset(ut->pExtra, 0, ut->extraSize); |
656 | 0 |
|
657 | 0 | } |
658 | 0 | return ut; |
659 | 0 | } |
660 | | |
661 | | |
662 | | U_CAPI UText * U_EXPORT2 |
663 | 0 | utext_close(UText *ut) { |
664 | 0 | if (ut==NULL || |
665 | 0 | ut->magic != UTEXT_MAGIC || |
666 | 0 | (ut->flags & UTEXT_OPEN) == 0) |
667 | 0 | { |
668 | 0 | // The supplied ut is not an open UText. |
669 | 0 | // Do nothing. |
670 | 0 | return ut; |
671 | 0 | } |
672 | 0 | |
673 | 0 | // If the provider gave us a close function, call it now. |
674 | 0 | // This will clean up anything allocated specifically by the provider. |
675 | 0 | if (ut->pFuncs->close != NULL) { |
676 | 0 | ut->pFuncs->close(ut); |
677 | 0 | } |
678 | 0 | ut->flags &= ~UTEXT_OPEN; |
679 | 0 |
|
680 | 0 | // If we (the framework) allocated the UText or subsidiary storage, |
681 | 0 | // delete it. |
682 | 0 | if (ut->flags & UTEXT_EXTRA_HEAP_ALLOCATED) { |
683 | 0 | uprv_free(ut->pExtra); |
684 | 0 | ut->pExtra = NULL; |
685 | 0 | ut->flags &= ~UTEXT_EXTRA_HEAP_ALLOCATED; |
686 | 0 | ut->extraSize = 0; |
687 | 0 | } |
688 | 0 |
|
689 | 0 | // Zero out function table of the closed UText. This is a defensive move, |
690 | 0 | // inteded to cause applications that inadvertantly use a closed |
691 | 0 | // utext to crash with null pointer errors. |
692 | 0 | ut->pFuncs = NULL; |
693 | 0 |
|
694 | 0 | if (ut->flags & UTEXT_HEAP_ALLOCATED) { |
695 | 0 | // This UText was allocated by UText setup. We need to free it. |
696 | 0 | // Clear magic, so we can detect if the user messes up and immediately |
697 | 0 | // tries to reopen another UText using the deleted storage. |
698 | 0 | ut->magic = 0; |
699 | 0 | uprv_free(ut); |
700 | 0 | ut = NULL; |
701 | 0 | } |
702 | 0 | return ut; |
703 | 0 | } |
704 | | |
705 | | |
706 | | |
707 | | |
708 | | // |
709 | | // invalidateChunk Reset a chunk to have no contents, so that the next call |
710 | | // to access will cause new data to load. |
711 | | // This is needed when copy/move/replace operate directly on the |
712 | | // backing text, potentially putting it out of sync with the |
713 | | // contents in the chunk. |
714 | | // |
715 | | static void |
716 | 0 | invalidateChunk(UText *ut) { |
717 | 0 | ut->chunkLength = 0; |
718 | 0 | ut->chunkNativeLimit = 0; |
719 | 0 | ut->chunkNativeStart = 0; |
720 | 0 | ut->chunkOffset = 0; |
721 | 0 | ut->nativeIndexingLimit = 0; |
722 | 0 | } |
723 | | |
724 | | // |
725 | | // pinIndex Do range pinning on a native index parameter. |
726 | | // 64 bit pinning is done in place. |
727 | | // 32 bit truncated result is returned as a convenience for |
728 | | // use in providers that don't need 64 bits. |
729 | | static int32_t |
730 | 0 | pinIndex(int64_t &index, int64_t limit) { |
731 | 0 | if (index<0) { |
732 | 0 | index = 0; |
733 | 0 | } else if (index > limit) { |
734 | 0 | index = limit; |
735 | 0 | } |
736 | 0 | return (int32_t)index; |
737 | 0 | } |
738 | | |
739 | | |
740 | | U_CDECL_BEGIN |
741 | | |
742 | | // |
743 | | // Pointer relocation function, |
744 | | // a utility used by shallow clone. |
745 | | // Adjust a pointer that refers to something within one UText (the source) |
746 | | // to refer to the same relative offset within a another UText (the target) |
747 | | // |
748 | 0 | static void adjustPointer(UText *dest, const void **destPtr, const UText *src) { |
749 | 0 | // convert all pointers to (char *) so that byte address arithmetic will work. |
750 | 0 | char *dptr = (char *)*destPtr; |
751 | 0 | char *dUText = (char *)dest; |
752 | 0 | char *sUText = (char *)src; |
753 | 0 |
|
754 | 0 | if (dptr >= (char *)src->pExtra && dptr < ((char*)src->pExtra)+src->extraSize) { |
755 | 0 | // target ptr was to something within the src UText's pExtra storage. |
756 | 0 | // relocate it into the target UText's pExtra region. |
757 | 0 | *destPtr = ((char *)dest->pExtra) + (dptr - (char *)src->pExtra); |
758 | 0 | } else if (dptr>=sUText && dptr < sUText+src->sizeOfStruct) { |
759 | 0 | // target ptr was pointing to somewhere within the source UText itself. |
760 | 0 | // Move it to the same offset within the target UText. |
761 | 0 | *destPtr = dUText + (dptr-sUText); |
762 | 0 | } |
763 | 0 | } |
764 | | |
765 | | |
766 | | // |
767 | | // Clone. This is a generic copy-the-utext-by-value clone function that can be |
768 | | // used as-is with some utext types, and as a helper by other clones. |
769 | | // |
770 | | static UText * U_CALLCONV |
771 | 0 | shallowTextClone(UText * dest, const UText * src, UErrorCode * status) { |
772 | 0 | if (U_FAILURE(*status)) { |
773 | 0 | return NULL; |
774 | 0 | } |
775 | 0 | int32_t srcExtraSize = src->extraSize; |
776 | 0 |
|
777 | 0 | // |
778 | 0 | // Use the generic text_setup to allocate storage if required. |
779 | 0 | // |
780 | 0 | dest = utext_setup(dest, srcExtraSize, status); |
781 | 0 | if (U_FAILURE(*status)) { |
782 | 0 | return dest; |
783 | 0 | } |
784 | 0 | |
785 | 0 | // |
786 | 0 | // flags (how the UText was allocated) and the pointer to the |
787 | 0 | // extra storage must retain the values in the cloned utext that |
788 | 0 | // were set up by utext_setup. Save them separately before |
789 | 0 | // copying the whole struct. |
790 | 0 | // |
791 | 0 | void *destExtra = dest->pExtra; |
792 | 0 | int32_t flags = dest->flags; |
793 | 0 |
|
794 | 0 |
|
795 | 0 | // |
796 | 0 | // Copy the whole UText struct by value. |
797 | 0 | // Any "Extra" storage is copied also. |
798 | 0 | // |
799 | 0 | int sizeToCopy = src->sizeOfStruct; |
800 | 0 | if (sizeToCopy > dest->sizeOfStruct) { |
801 | 0 | sizeToCopy = dest->sizeOfStruct; |
802 | 0 | } |
803 | 0 | uprv_memcpy(dest, src, sizeToCopy); |
804 | 0 | dest->pExtra = destExtra; |
805 | 0 | dest->flags = flags; |
806 | 0 | if (srcExtraSize > 0) { |
807 | 0 | uprv_memcpy(dest->pExtra, src->pExtra, srcExtraSize); |
808 | 0 | } |
809 | 0 |
|
810 | 0 | // |
811 | 0 | // Relocate any pointers in the target that refer to the UText itself |
812 | 0 | // to point to the cloned copy rather than the original source. |
813 | 0 | // |
814 | 0 | adjustPointer(dest, &dest->context, src); |
815 | 0 | adjustPointer(dest, &dest->p, src); |
816 | 0 | adjustPointer(dest, &dest->q, src); |
817 | 0 | adjustPointer(dest, &dest->r, src); |
818 | 0 | adjustPointer(dest, (const void **)&dest->chunkContents, src); |
819 | 0 |
|
820 | 0 | // The newly shallow-cloned UText does _not_ own the underlying storage for the text. |
821 | 0 | // (The source for the clone may or may not have owned the text.) |
822 | 0 |
|
823 | 0 | dest->providerProperties &= ~I32_FLAG(UTEXT_PROVIDER_OWNS_TEXT); |
824 | 0 |
|
825 | 0 | return dest; |
826 | 0 | } |
827 | | |
828 | | |
829 | | U_CDECL_END |
830 | | |
831 | | |
832 | | |
833 | | //------------------------------------------------------------------------------ |
834 | | // |
835 | | // UText implementation for UTF-8 char * strings (read-only) |
836 | | // Limitation: string length must be <= 0x7fffffff in length. |
837 | | // (length must for in an int32_t variable) |
838 | | // |
839 | | // Use of UText data members: |
840 | | // context pointer to UTF-8 string |
841 | | // utext.b is the input string length (bytes). |
842 | | // utext.c Length scanned so far in string |
843 | | // (for optimizing finding length of zero terminated strings.) |
844 | | // utext.p pointer to the current buffer |
845 | | // utext.q pointer to the other buffer. |
846 | | // |
847 | | //------------------------------------------------------------------------------ |
848 | | |
849 | | // Chunk size. |
850 | | // Must be less than 85 (256/3), because of byte mapping from UChar indexes to native indexes. |
851 | | // Worst case is three native bytes to one UChar. (Supplemenaries are 4 native bytes |
852 | | // to two UChars.) |
853 | | // The longest illegal byte sequence treated as a single error (and converted to U+FFFD) |
854 | | // is a three-byte sequence (truncated four-byte sequence). |
855 | | // |
856 | | enum { UTF8_TEXT_CHUNK_SIZE=32 }; |
857 | | |
858 | | // |
859 | | // UTF8Buf Two of these structs will be set up in the UText's extra allocated space. |
860 | | // Each contains the UChar chunk buffer, the to and from native maps, and |
861 | | // header info. |
862 | | // |
863 | | // because backwards iteration fills the buffers starting at the end and |
864 | | // working towards the front, the filled part of the buffers may not begin |
865 | | // at the start of the available storage for the buffers. |
866 | | // |
867 | | // Buffer size is one bigger than the specified UTF8_TEXT_CHUNK_SIZE to allow for |
868 | | // the last character added being a supplementary, and thus requiring a surrogate |
869 | | // pair. Doing this is simpler than checking for the edge case. |
870 | | // |
871 | | |
872 | | struct UTF8Buf { |
873 | | int32_t bufNativeStart; // Native index of first char in UChar buf |
874 | | int32_t bufNativeLimit; // Native index following last char in buf. |
875 | | int32_t bufStartIdx; // First filled position in buf. |
876 | | int32_t bufLimitIdx; // Limit of filled range in buf. |
877 | | int32_t bufNILimit; // Limit of native indexing part of buf |
878 | | int32_t toUCharsMapStart; // Native index corresponding to |
879 | | // mapToUChars[0]. |
880 | | // Set to bufNativeStart when filling forwards. |
881 | | // Set to computed value when filling backwards. |
882 | | |
883 | | UChar buf[UTF8_TEXT_CHUNK_SIZE+4]; // The UChar buffer. Requires one extra position beyond the |
884 | | // the chunk size, to allow for surrogate at the end. |
885 | | // Length must be identical to mapToNative array, below, |
886 | | // because of the way indexing works when the array is |
887 | | // filled backwards during a reverse iteration. Thus, |
888 | | // the additional extra size. |
889 | | uint8_t mapToNative[UTF8_TEXT_CHUNK_SIZE+4]; // map UChar index in buf to |
890 | | // native offset from bufNativeStart. |
891 | | // Requires two extra slots, |
892 | | // one for a supplementary starting in the last normal position, |
893 | | // and one for an entry for the buffer limit position. |
894 | | uint8_t mapToUChars[UTF8_TEXT_CHUNK_SIZE*3+6]; // Map native offset from bufNativeStart to |
895 | | // correspoding offset in filled part of buf. |
896 | | int32_t align; |
897 | | }; |
898 | | |
899 | | U_CDECL_BEGIN |
900 | | |
901 | | // |
902 | | // utf8TextLength |
903 | | // |
904 | | // Get the length of the string. If we don't already know it, |
905 | | // we'll need to scan for the trailing nul. |
906 | | // |
907 | | static int64_t U_CALLCONV |
908 | 0 | utf8TextLength(UText *ut) { |
909 | 0 | if (ut->b < 0) { |
910 | 0 | // Zero terminated string, and we haven't scanned to the end yet. |
911 | 0 | // Scan it now. |
912 | 0 | const char *r = (const char *)ut->context + ut->c; |
913 | 0 | while (*r != 0) { |
914 | 0 | r++; |
915 | 0 | } |
916 | 0 | if ((r - (const char *)ut->context) < 0x7fffffff) { |
917 | 0 | ut->b = (int32_t)(r - (const char *)ut->context); |
918 | 0 | } else { |
919 | 0 | // Actual string was bigger (more than 2 gig) than we |
920 | 0 | // can handle. Clip it to 2 GB. |
921 | 0 | ut->b = 0x7fffffff; |
922 | 0 | } |
923 | 0 | ut->providerProperties &= ~I32_FLAG(UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE); |
924 | 0 | } |
925 | 0 | return ut->b; |
926 | 0 | } |
927 | | |
928 | | |
929 | | |
930 | | |
931 | | |
932 | | |
933 | | static UBool U_CALLCONV |
934 | 0 | utf8TextAccess(UText *ut, int64_t index, UBool forward) { |
935 | 0 | // |
936 | 0 | // Apologies to those who are allergic to goto statements. |
937 | 0 | // Consider each goto to a labelled block to be the equivalent of |
938 | 0 | // call the named block as if it were a function(); |
939 | 0 | // return; |
940 | 0 | // |
941 | 0 | const uint8_t *s8=(const uint8_t *)ut->context; |
942 | 0 | UTF8Buf *u8b = NULL; |
943 | 0 | int32_t length = ut->b; // Length of original utf-8 |
944 | 0 | int32_t ix= (int32_t)index; // Requested index, trimmed to 32 bits. |
945 | 0 | int32_t mapIndex = 0; |
946 | 0 | if (index<0) { |
947 | 0 | ix=0; |
948 | 0 | } else if (index > 0x7fffffff) { |
949 | 0 | // Strings with 64 bit lengths not supported by this UTF-8 provider. |
950 | 0 | ix = 0x7fffffff; |
951 | 0 | } |
952 | 0 |
|
953 | 0 | // Pin requested index to the string length. |
954 | 0 | if (ix>length) { |
955 | 0 | if (length>=0) { |
956 | 0 | ix=length; |
957 | 0 | } else if (ix>=ut->c) { |
958 | 0 | // Zero terminated string, and requested index is beyond |
959 | 0 | // the region that has already been scanned. |
960 | 0 | // Scan up to either the end of the string or to the |
961 | 0 | // requested position, whichever comes first. |
962 | 0 | while (ut->c<ix && s8[ut->c]!=0) { |
963 | 0 | ut->c++; |
964 | 0 | } |
965 | 0 | // TODO: support for null terminated string length > 32 bits. |
966 | 0 | if (s8[ut->c] == 0) { |
967 | 0 | // We just found the actual length of the string. |
968 | 0 | // Trim the requested index back to that. |
969 | 0 | ix = ut->c; |
970 | 0 | ut->b = ut->c; |
971 | 0 | length = ut->c; |
972 | 0 | ut->providerProperties &= ~I32_FLAG(UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE); |
973 | 0 | } |
974 | 0 | } |
975 | 0 | } |
976 | 0 |
|
977 | 0 | // |
978 | 0 | // Dispatch to the appropriate action for a forward iteration request. |
979 | 0 | // |
980 | 0 | if (forward) { |
981 | 0 | if (ix==ut->chunkNativeLimit) { |
982 | 0 | // Check for normal sequential iteration cases first. |
983 | 0 | if (ix==length) { |
984 | 0 | // Just reached end of string |
985 | 0 | // Don't swap buffers, but do set the |
986 | 0 | // current buffer position. |
987 | 0 | ut->chunkOffset = ut->chunkLength; |
988 | 0 | return FALSE; |
989 | 0 | } else { |
990 | 0 | // End of current buffer. |
991 | 0 | // check whether other buffer already has what we need. |
992 | 0 | UTF8Buf *altB = (UTF8Buf *)ut->q; |
993 | 0 | if (ix>=altB->bufNativeStart && ix<altB->bufNativeLimit) { |
994 | 0 | goto swapBuffers; |
995 | 0 | } |
996 | 0 | } |
997 | 0 | } |
998 | 0 | |
999 | 0 | // A random access. Desired index could be in either or niether buf. |
1000 | 0 | // For optimizing the order of testing, first check for the index |
1001 | 0 | // being in the other buffer. This will be the case for uses that |
1002 | 0 | // move back and forth over a fairly limited range |
1003 | 0 | { |
1004 | 0 | u8b = (UTF8Buf *)ut->q; // the alternate buffer |
1005 | 0 | if (ix>=u8b->bufNativeStart && ix<u8b->bufNativeLimit) { |
1006 | 0 | // Requested index is in the other buffer. |
1007 | 0 | goto swapBuffers; |
1008 | 0 | } |
1009 | 0 | if (ix == length) { |
1010 | 0 | // Requested index is end-of-string. |
1011 | 0 | // (this is the case of randomly seeking to the end. |
1012 | 0 | // The case of iterating off the end is handled earlier.) |
1013 | 0 | if (ix == ut->chunkNativeLimit) { |
1014 | 0 | // Current buffer extends up to the end of the string. |
1015 | 0 | // Leave it as the current buffer. |
1016 | 0 | ut->chunkOffset = ut->chunkLength; |
1017 | 0 | return FALSE; |
1018 | 0 | } |
1019 | 0 | if (ix == u8b->bufNativeLimit) { |
1020 | 0 | // Alternate buffer extends to the end of string. |
1021 | 0 | // Swap it in as the current buffer. |
1022 | 0 | goto swapBuffersAndFail; |
1023 | 0 | } |
1024 | 0 | |
1025 | 0 | // Neither existing buffer extends to the end of the string. |
1026 | 0 | goto makeStubBuffer; |
1027 | 0 | } |
1028 | 0 | |
1029 | 0 | if (ix<ut->chunkNativeStart || ix>=ut->chunkNativeLimit) { |
1030 | 0 | // Requested index is in neither buffer. |
1031 | 0 | goto fillForward; |
1032 | 0 | } |
1033 | 0 | |
1034 | 0 | // Requested index is in this buffer. |
1035 | 0 | u8b = (UTF8Buf *)ut->p; // the current buffer |
1036 | 0 | mapIndex = ix - u8b->toUCharsMapStart; |
1037 | 0 | U_ASSERT(mapIndex < (int32_t)sizeof(UTF8Buf::mapToUChars)); |
1038 | 0 | ut->chunkOffset = u8b->mapToUChars[mapIndex] - u8b->bufStartIdx; |
1039 | 0 | return TRUE; |
1040 | 0 |
|
1041 | 0 | } |
1042 | 0 | } |
1043 | 0 |
|
1044 | 0 |
|
1045 | 0 | // |
1046 | 0 | // Dispatch to the appropriate action for a |
1047 | 0 | // Backwards Diretion iteration request. |
1048 | 0 | // |
1049 | 0 | if (ix==ut->chunkNativeStart) { |
1050 | 0 | // Check for normal sequential iteration cases first. |
1051 | 0 | if (ix==0) { |
1052 | 0 | // Just reached the start of string |
1053 | 0 | // Don't swap buffers, but do set the |
1054 | 0 | // current buffer position. |
1055 | 0 | ut->chunkOffset = 0; |
1056 | 0 | return FALSE; |
1057 | 0 | } else { |
1058 | 0 | // Start of current buffer. |
1059 | 0 | // check whether other buffer already has what we need. |
1060 | 0 | UTF8Buf *altB = (UTF8Buf *)ut->q; |
1061 | 0 | if (ix>altB->bufNativeStart && ix<=altB->bufNativeLimit) { |
1062 | 0 | goto swapBuffers; |
1063 | 0 | } |
1064 | 0 | } |
1065 | 0 | } |
1066 | 0 | |
1067 | 0 | // A random access. Desired index could be in either or niether buf. |
1068 | 0 | // For optimizing the order of testing, |
1069 | 0 | // Most likely case: in the other buffer. |
1070 | 0 | // Second most likely: in neither buffer. |
1071 | 0 | // Unlikely, but must work: in the current buffer. |
1072 | 0 | u8b = (UTF8Buf *)ut->q; // the alternate buffer |
1073 | 0 | if (ix>u8b->bufNativeStart && ix<=u8b->bufNativeLimit) { |
1074 | 0 | // Requested index is in the other buffer. |
1075 | 0 | goto swapBuffers; |
1076 | 0 | } |
1077 | 0 | // Requested index is start-of-string. |
1078 | 0 | // (this is the case of randomly seeking to the start. |
1079 | 0 | // The case of iterating off the start is handled earlier.) |
1080 | 0 | if (ix==0) { |
1081 | 0 | if (u8b->bufNativeStart==0) { |
1082 | 0 | // Alternate buffer contains the data for the start string. |
1083 | 0 | // Make it be the current buffer. |
1084 | 0 | goto swapBuffersAndFail; |
1085 | 0 | } else { |
1086 | 0 | // Request for data before the start of string, |
1087 | 0 | // neither buffer is usable. |
1088 | 0 | // set up a zero-length buffer. |
1089 | 0 | goto makeStubBuffer; |
1090 | 0 | } |
1091 | 0 | } |
1092 | 0 | |
1093 | 0 | if (ix<=ut->chunkNativeStart || ix>ut->chunkNativeLimit) { |
1094 | 0 | // Requested index is in neither buffer. |
1095 | 0 | goto fillReverse; |
1096 | 0 | } |
1097 | 0 | |
1098 | 0 | // Requested index is in this buffer. |
1099 | 0 | // Set the utf16 buffer index. |
1100 | 0 | u8b = (UTF8Buf *)ut->p; |
1101 | 0 | mapIndex = ix - u8b->toUCharsMapStart; |
1102 | 0 | ut->chunkOffset = u8b->mapToUChars[mapIndex] - u8b->bufStartIdx; |
1103 | 0 | if (ut->chunkOffset==0) { |
1104 | 0 | // This occurs when the first character in the text is |
1105 | 0 | // a multi-byte UTF-8 char, and the requested index is to |
1106 | 0 | // one of the trailing bytes. Because there is no preceding , |
1107 | 0 | // character, this access fails. We can't pick up on the |
1108 | 0 | // situation sooner because the requested index is not zero. |
1109 | 0 | return FALSE; |
1110 | 0 | } else { |
1111 | 0 | return TRUE; |
1112 | 0 | } |
1113 | 0 |
|
1114 | 0 |
|
1115 | 0 |
|
1116 | 0 | swapBuffers: |
1117 | 0 | // The alternate buffer (ut->q) has the string data that was requested. |
1118 | 0 | // Swap the primary and alternate buffers, and set the |
1119 | 0 | // chunk index into the new primary buffer. |
1120 | 0 | { |
1121 | 0 | u8b = (UTF8Buf *)ut->q; |
1122 | 0 | ut->q = ut->p; |
1123 | 0 | ut->p = u8b; |
1124 | 0 | ut->chunkContents = &u8b->buf[u8b->bufStartIdx]; |
1125 | 0 | ut->chunkLength = u8b->bufLimitIdx - u8b->bufStartIdx; |
1126 | 0 | ut->chunkNativeStart = u8b->bufNativeStart; |
1127 | 0 | ut->chunkNativeLimit = u8b->bufNativeLimit; |
1128 | 0 | ut->nativeIndexingLimit = u8b->bufNILimit; |
1129 | 0 |
|
1130 | 0 | // Index into the (now current) chunk |
1131 | 0 | // Use the map to set the chunk index. It's more trouble than it's worth |
1132 | 0 | // to check whether native indexing can be used. |
1133 | 0 | U_ASSERT(ix>=u8b->bufNativeStart); |
1134 | 0 | U_ASSERT(ix<=u8b->bufNativeLimit); |
1135 | 0 | mapIndex = ix - u8b->toUCharsMapStart; |
1136 | 0 | U_ASSERT(mapIndex>=0); |
1137 | 0 | U_ASSERT(mapIndex<(int32_t)sizeof(u8b->mapToUChars)); |
1138 | 0 | ut->chunkOffset = u8b->mapToUChars[mapIndex] - u8b->bufStartIdx; |
1139 | 0 |
|
1140 | 0 | return TRUE; |
1141 | 0 | } |
1142 | 0 |
|
1143 | 0 |
|
1144 | 0 | swapBuffersAndFail: |
1145 | 0 | // We got a request for either the start or end of the string, |
1146 | 0 | // with iteration continuing in the out-of-bounds direction. |
1147 | 0 | // The alternate buffer already contains the data up to the |
1148 | 0 | // start/end. |
1149 | 0 | // Swap the buffers, then return failure, indicating that we couldn't |
1150 | 0 | // make things correct for continuing the iteration in the requested |
1151 | 0 | // direction. The position & buffer are correct should the |
1152 | 0 | // user decide to iterate in the opposite direction. |
1153 | 0 | u8b = (UTF8Buf *)ut->q; |
1154 | 0 | ut->q = ut->p; |
1155 | 0 | ut->p = u8b; |
1156 | 0 | ut->chunkContents = &u8b->buf[u8b->bufStartIdx]; |
1157 | 0 | ut->chunkLength = u8b->bufLimitIdx - u8b->bufStartIdx; |
1158 | 0 | ut->chunkNativeStart = u8b->bufNativeStart; |
1159 | 0 | ut->chunkNativeLimit = u8b->bufNativeLimit; |
1160 | 0 | ut->nativeIndexingLimit = u8b->bufNILimit; |
1161 | 0 |
|
1162 | 0 | // Index into the (now current) chunk |
1163 | 0 | // For this function (swapBuffersAndFail), the requested index |
1164 | 0 | // will always be at either the start or end of the chunk. |
1165 | 0 | if (ix==u8b->bufNativeLimit) { |
1166 | 0 | ut->chunkOffset = ut->chunkLength; |
1167 | 0 | } else { |
1168 | 0 | ut->chunkOffset = 0; |
1169 | 0 | U_ASSERT(ix == u8b->bufNativeStart); |
1170 | 0 | } |
1171 | 0 | return FALSE; |
1172 | 0 |
|
1173 | 0 | makeStubBuffer: |
1174 | 0 | // The user has done a seek/access past the start or end |
1175 | 0 | // of the string. Rather than loading data that is likely |
1176 | 0 | // to never be used, just set up a zero-length buffer at |
1177 | 0 | // the position. |
1178 | 0 | u8b = (UTF8Buf *)ut->q; |
1179 | 0 | u8b->bufNativeStart = ix; |
1180 | 0 | u8b->bufNativeLimit = ix; |
1181 | 0 | u8b->bufStartIdx = 0; |
1182 | 0 | u8b->bufLimitIdx = 0; |
1183 | 0 | u8b->bufNILimit = 0; |
1184 | 0 | u8b->toUCharsMapStart = ix; |
1185 | 0 | u8b->mapToNative[0] = 0; |
1186 | 0 | u8b->mapToUChars[0] = 0; |
1187 | 0 | goto swapBuffersAndFail; |
1188 | 0 | |
1189 | 0 | |
1190 | 0 | |
1191 | 0 | fillForward: |
1192 | 0 | { |
1193 | 0 | // Move the incoming index to a code point boundary. |
1194 | 0 | U8_SET_CP_START(s8, 0, ix); |
1195 | 0 |
|
1196 | 0 | // Swap the UText buffers. |
1197 | 0 | // We want to fill what was previously the alternate buffer, |
1198 | 0 | // and make what was the current buffer be the new alternate. |
1199 | 0 | UTF8Buf *u8b = (UTF8Buf *)ut->q; |
1200 | 0 | ut->q = ut->p; |
1201 | 0 | ut->p = u8b; |
1202 | 0 |
|
1203 | 0 | int32_t strLen = ut->b; |
1204 | 0 | UBool nulTerminated = FALSE; |
1205 | 0 | if (strLen < 0) { |
1206 | 0 | strLen = 0x7fffffff; |
1207 | 0 | nulTerminated = TRUE; |
1208 | 0 | } |
1209 | 0 |
|
1210 | 0 | UChar *buf = u8b->buf; |
1211 | 0 | uint8_t *mapToNative = u8b->mapToNative; |
1212 | 0 | uint8_t *mapToUChars = u8b->mapToUChars; |
1213 | 0 | int32_t destIx = 0; |
1214 | 0 | int32_t srcIx = ix; |
1215 | 0 | UBool seenNonAscii = FALSE; |
1216 | 0 | UChar32 c = 0; |
1217 | 0 |
|
1218 | 0 | // Fill the chunk buffer and mapping arrays. |
1219 | 0 | while (destIx<UTF8_TEXT_CHUNK_SIZE) { |
1220 | 0 | c = s8[srcIx]; |
1221 | 0 | if (c>0 && c<0x80) { |
1222 | 0 | // Special case ASCII range for speed. |
1223 | 0 | // zero is excluded to simplify bounds checking. |
1224 | 0 | buf[destIx] = (UChar)c; |
1225 | 0 | mapToNative[destIx] = (uint8_t)(srcIx - ix); |
1226 | 0 | mapToUChars[srcIx-ix] = (uint8_t)destIx; |
1227 | 0 | srcIx++; |
1228 | 0 | destIx++; |
1229 | 0 | } else { |
1230 | 0 | // General case, handle everything. |
1231 | 0 | if (seenNonAscii == FALSE) { |
1232 | 0 | seenNonAscii = TRUE; |
1233 | 0 | u8b->bufNILimit = destIx; |
1234 | 0 | } |
1235 | 0 |
|
1236 | 0 | int32_t cIx = srcIx; |
1237 | 0 | int32_t dIx = destIx; |
1238 | 0 | int32_t dIxSaved = destIx; |
1239 | 0 | U8_NEXT_OR_FFFD(s8, srcIx, strLen, c); |
1240 | 0 | if (c==0 && nulTerminated) { |
1241 | 0 | srcIx--; |
1242 | 0 | break; |
1243 | 0 | } |
1244 | 0 | |
1245 | 0 | U16_APPEND_UNSAFE(buf, destIx, c); |
1246 | 0 | do { |
1247 | 0 | mapToNative[dIx++] = (uint8_t)(cIx - ix); |
1248 | 0 | } while (dIx < destIx); |
1249 | 0 |
|
1250 | 0 | do { |
1251 | 0 | mapToUChars[cIx++ - ix] = (uint8_t)dIxSaved; |
1252 | 0 | } while (cIx < srcIx); |
1253 | 0 | } |
1254 | 0 | if (srcIx>=strLen) { |
1255 | 0 | break; |
1256 | 0 | } |
1257 | 0 |
|
1258 | 0 | } |
1259 | 0 |
|
1260 | 0 | // store Native <--> Chunk Map entries for the end of the buffer. |
1261 | 0 | // There is no actual character here, but the index position is valid. |
1262 | 0 | mapToNative[destIx] = (uint8_t)(srcIx - ix); |
1263 | 0 | mapToUChars[srcIx - ix] = (uint8_t)destIx; |
1264 | 0 |
|
1265 | 0 | // fill in Buffer descriptor |
1266 | 0 | u8b->bufNativeStart = ix; |
1267 | 0 | u8b->bufNativeLimit = srcIx; |
1268 | 0 | u8b->bufStartIdx = 0; |
1269 | 0 | u8b->bufLimitIdx = destIx; |
1270 | 0 | if (seenNonAscii == FALSE) { |
1271 | 0 | u8b->bufNILimit = destIx; |
1272 | 0 | } |
1273 | 0 | u8b->toUCharsMapStart = u8b->bufNativeStart; |
1274 | 0 |
|
1275 | 0 | // Set UText chunk to refer to this buffer. |
1276 | 0 | ut->chunkContents = buf; |
1277 | 0 | ut->chunkOffset = 0; |
1278 | 0 | ut->chunkLength = u8b->bufLimitIdx; |
1279 | 0 | ut->chunkNativeStart = u8b->bufNativeStart; |
1280 | 0 | ut->chunkNativeLimit = u8b->bufNativeLimit; |
1281 | 0 | ut->nativeIndexingLimit = u8b->bufNILimit; |
1282 | 0 |
|
1283 | 0 | // For zero terminated strings, keep track of the maximum point |
1284 | 0 | // scanned so far. |
1285 | 0 | if (nulTerminated && srcIx>ut->c) { |
1286 | 0 | ut->c = srcIx; |
1287 | 0 | if (c==0) { |
1288 | 0 | // We scanned to the end. |
1289 | 0 | // Remember the actual length. |
1290 | 0 | ut->b = srcIx; |
1291 | 0 | ut->providerProperties &= ~I32_FLAG(UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE); |
1292 | 0 | } |
1293 | 0 | } |
1294 | 0 | return TRUE; |
1295 | 0 | } |
1296 | 0 |
|
1297 | 0 |
|
1298 | 0 | fillReverse: |
1299 | 0 | { |
1300 | 0 | // Move the incoming index to a code point boundary. |
1301 | 0 | // Can only do this if the incoming index is somewhere in the interior of the string. |
1302 | 0 | // If index is at the end, there is no character there to look at. |
1303 | 0 | if (ix != ut->b) { |
1304 | 0 | // Note: this function will only move the index back if it is on a trail byte |
1305 | 0 | // and there is a preceding lead byte and the sequence from the lead |
1306 | 0 | // through this trail could be part of a valid UTF-8 sequence |
1307 | 0 | // Otherwise the index remains unchanged. |
1308 | 0 | U8_SET_CP_START(s8, 0, ix); |
1309 | 0 | } |
1310 | 0 |
|
1311 | 0 | // Swap the UText buffers. |
1312 | 0 | // We want to fill what was previously the alternate buffer, |
1313 | 0 | // and make what was the current buffer be the new alternate. |
1314 | 0 | UTF8Buf *u8b = (UTF8Buf *)ut->q; |
1315 | 0 | ut->q = ut->p; |
1316 | 0 | ut->p = u8b; |
1317 | 0 |
|
1318 | 0 | UChar *buf = u8b->buf; |
1319 | 0 | uint8_t *mapToNative = u8b->mapToNative; |
1320 | 0 | uint8_t *mapToUChars = u8b->mapToUChars; |
1321 | 0 | int32_t toUCharsMapStart = ix - sizeof(UTF8Buf::mapToUChars) + 1; |
1322 | 0 | // Note that toUCharsMapStart can be negative. Happens when the remaining |
1323 | 0 | // text from current position to the beginning is less than the buffer size. |
1324 | 0 | // + 1 because mapToUChars must have a slot at the end for the bufNativeLimit entry. |
1325 | 0 | int32_t destIx = UTF8_TEXT_CHUNK_SIZE+2; // Start in the overflow region |
1326 | 0 | // at end of buffer to leave room |
1327 | 0 | // for a surrogate pair at the |
1328 | 0 | // buffer start. |
1329 | 0 | int32_t srcIx = ix; |
1330 | 0 | int32_t bufNILimit = destIx; |
1331 | 0 | UChar32 c; |
1332 | 0 |
|
1333 | 0 | // Map to/from Native Indexes, fill in for the position at the end of |
1334 | 0 | // the buffer. |
1335 | 0 | // |
1336 | 0 | mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart); |
1337 | 0 | mapToUChars[srcIx - toUCharsMapStart] = (uint8_t)destIx; |
1338 | 0 |
|
1339 | 0 | // Fill the chunk buffer |
1340 | 0 | // Work backwards, filling from the end of the buffer towards the front. |
1341 | 0 | // |
1342 | 0 | while (destIx>2 && (srcIx - toUCharsMapStart > 5) && (srcIx > 0)) { |
1343 | 0 | srcIx--; |
1344 | 0 | destIx--; |
1345 | 0 |
|
1346 | 0 | // Get last byte of the UTF-8 character |
1347 | 0 | c = s8[srcIx]; |
1348 | 0 | if (c<0x80) { |
1349 | 0 | // Special case ASCII range for speed. |
1350 | 0 | buf[destIx] = (UChar)c; |
1351 | 0 | U_ASSERT(toUCharsMapStart <= srcIx); |
1352 | 0 | mapToUChars[srcIx - toUCharsMapStart] = (uint8_t)destIx; |
1353 | 0 | mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart); |
1354 | 0 | } else { |
1355 | 0 | // General case, handle everything non-ASCII. |
1356 | 0 |
|
1357 | 0 | int32_t sIx = srcIx; // ix of last byte of multi-byte u8 char |
1358 | 0 |
|
1359 | 0 | // Get the full character from the UTF8 string. |
1360 | 0 | // use code derived from tbe macros in utf8.h |
1361 | 0 | // Leaves srcIx pointing at the first byte of the UTF-8 char. |
1362 | 0 | // |
1363 | 0 | c=utf8_prevCharSafeBody(s8, 0, &srcIx, c, -3); |
1364 | 0 | // leaves srcIx at first byte of the multi-byte char. |
1365 | 0 |
|
1366 | 0 | // Store the character in UTF-16 buffer. |
1367 | 0 | if (c<0x10000) { |
1368 | 0 | buf[destIx] = (UChar)c; |
1369 | 0 | mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart); |
1370 | 0 | } else { |
1371 | 0 | buf[destIx] = U16_TRAIL(c); |
1372 | 0 | mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart); |
1373 | 0 | buf[--destIx] = U16_LEAD(c); |
1374 | 0 | mapToNative[destIx] = (uint8_t)(srcIx - toUCharsMapStart); |
1375 | 0 | } |
1376 | 0 |
|
1377 | 0 | // Fill in the map from native indexes to UChars buf index. |
1378 | 0 | do { |
1379 | 0 | mapToUChars[sIx-- - toUCharsMapStart] = (uint8_t)destIx; |
1380 | 0 | } while (sIx >= srcIx); |
1381 | 0 | U_ASSERT(toUCharsMapStart <= (srcIx+1)); |
1382 | 0 |
|
1383 | 0 | // Set native indexing limit to be the current position. |
1384 | 0 | // We are processing a non-ascii, non-native-indexing char now; |
1385 | 0 | // the limit will be here if the rest of the chars to be |
1386 | 0 | // added to this buffer are ascii. |
1387 | 0 | bufNILimit = destIx; |
1388 | 0 | } |
1389 | 0 | } |
1390 | 0 | u8b->bufNativeStart = srcIx; |
1391 | 0 | u8b->bufNativeLimit = ix; |
1392 | 0 | u8b->bufStartIdx = destIx; |
1393 | 0 | u8b->bufLimitIdx = UTF8_TEXT_CHUNK_SIZE+2; |
1394 | 0 | u8b->bufNILimit = bufNILimit - u8b->bufStartIdx; |
1395 | 0 | u8b->toUCharsMapStart = toUCharsMapStart; |
1396 | 0 |
|
1397 | 0 | ut->chunkContents = &buf[u8b->bufStartIdx]; |
1398 | 0 | ut->chunkLength = u8b->bufLimitIdx - u8b->bufStartIdx; |
1399 | 0 | ut->chunkOffset = ut->chunkLength; |
1400 | 0 | ut->chunkNativeStart = u8b->bufNativeStart; |
1401 | 0 | ut->chunkNativeLimit = u8b->bufNativeLimit; |
1402 | 0 | ut->nativeIndexingLimit = u8b->bufNILimit; |
1403 | 0 | return TRUE; |
1404 | 0 | } |
1405 | 0 |
|
1406 | 0 | } |
1407 | | |
1408 | | |
1409 | | |
1410 | | // |
1411 | | // This is a slightly modified copy of u_strFromUTF8, |
1412 | | // Inserts a Replacement Char rather than failing on invalid UTF-8 |
1413 | | // Removes unnecessary features. |
1414 | | // |
1415 | | static UChar* |
1416 | | utext_strFromUTF8(UChar *dest, |
1417 | | int32_t destCapacity, |
1418 | | int32_t *pDestLength, |
1419 | | const char* src, |
1420 | | int32_t srcLength, // required. NUL terminated not supported. |
1421 | | UErrorCode *pErrorCode |
1422 | | ) |
1423 | 0 | { |
1424 | 0 |
|
1425 | 0 | UChar *pDest = dest; |
1426 | 0 | UChar *pDestLimit = (dest!=NULL)?(dest+destCapacity):NULL; |
1427 | 0 | UChar32 ch=0; |
1428 | 0 | int32_t index = 0; |
1429 | 0 | int32_t reqLength = 0; |
1430 | 0 | uint8_t* pSrc = (uint8_t*) src; |
1431 | 0 |
|
1432 | 0 |
|
1433 | 0 | while((index < srcLength)&&(pDest<pDestLimit)){ |
1434 | 0 | ch = pSrc[index++]; |
1435 | 0 | if(ch <=0x7f){ |
1436 | 0 | *pDest++=(UChar)ch; |
1437 | 0 | }else{ |
1438 | 0 | ch=utf8_nextCharSafeBody(pSrc, &index, srcLength, ch, -3); |
1439 | 0 | if(U_IS_BMP(ch)){ |
1440 | 0 | *(pDest++)=(UChar)ch; |
1441 | 0 | }else{ |
1442 | 0 | *(pDest++)=U16_LEAD(ch); |
1443 | 0 | if(pDest<pDestLimit){ |
1444 | 0 | *(pDest++)=U16_TRAIL(ch); |
1445 | 0 | }else{ |
1446 | 0 | reqLength++; |
1447 | 0 | break; |
1448 | 0 | } |
1449 | 0 | } |
1450 | 0 | } |
1451 | 0 | } |
1452 | 0 | /* donot fill the dest buffer just count the UChars needed */ |
1453 | 0 | while(index < srcLength){ |
1454 | 0 | ch = pSrc[index++]; |
1455 | 0 | if(ch <= 0x7f){ |
1456 | 0 | reqLength++; |
1457 | 0 | }else{ |
1458 | 0 | ch=utf8_nextCharSafeBody(pSrc, &index, srcLength, ch, -3); |
1459 | 0 | reqLength+=U16_LENGTH(ch); |
1460 | 0 | } |
1461 | 0 | } |
1462 | 0 |
|
1463 | 0 | reqLength+=(int32_t)(pDest - dest); |
1464 | 0 |
|
1465 | 0 | if(pDestLength){ |
1466 | 0 | *pDestLength = reqLength; |
1467 | 0 | } |
1468 | 0 |
|
1469 | 0 | /* Terminate the buffer */ |
1470 | 0 | u_terminateUChars(dest,destCapacity,reqLength,pErrorCode); |
1471 | 0 |
|
1472 | 0 | return dest; |
1473 | 0 | } |
1474 | | |
1475 | | |
1476 | | |
1477 | | static int32_t U_CALLCONV |
1478 | | utf8TextExtract(UText *ut, |
1479 | | int64_t start, int64_t limit, |
1480 | | UChar *dest, int32_t destCapacity, |
1481 | 0 | UErrorCode *pErrorCode) { |
1482 | 0 | if(U_FAILURE(*pErrorCode)) { |
1483 | 0 | return 0; |
1484 | 0 | } |
1485 | 0 | if(destCapacity<0 || (dest==NULL && destCapacity>0)) { |
1486 | 0 | *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; |
1487 | 0 | return 0; |
1488 | 0 | } |
1489 | 0 | int32_t length = ut->b; |
1490 | 0 | int32_t start32 = pinIndex(start, length); |
1491 | 0 | int32_t limit32 = pinIndex(limit, length); |
1492 | 0 |
|
1493 | 0 | if(start32>limit32) { |
1494 | 0 | *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; |
1495 | 0 | return 0; |
1496 | 0 | } |
1497 | 0 | |
1498 | 0 | |
1499 | 0 | // adjust the incoming indexes to land on code point boundaries if needed. |
1500 | 0 | // adjust by no more than three, because that is the largest number of trail bytes |
1501 | 0 | // in a well formed UTF8 character. |
1502 | 0 | const uint8_t *buf = (const uint8_t *)ut->context; |
1503 | 0 | int i; |
1504 | 0 | if (start32 < ut->chunkNativeLimit) { |
1505 | 0 | for (i=0; i<3; i++) { |
1506 | 0 | if (U8_IS_SINGLE(buf[start32]) || U8_IS_LEAD(buf[start32]) || start32==0) { |
1507 | 0 | break; |
1508 | 0 | } |
1509 | 0 | start32--; |
1510 | 0 | } |
1511 | 0 | } |
1512 | 0 |
|
1513 | 0 | if (limit32 < ut->chunkNativeLimit) { |
1514 | 0 | for (i=0; i<3; i++) { |
1515 | 0 | if (U8_IS_SINGLE(buf[limit32]) || U8_IS_LEAD(buf[limit32]) || limit32==0) { |
1516 | 0 | break; |
1517 | 0 | } |
1518 | 0 | limit32--; |
1519 | 0 | } |
1520 | 0 | } |
1521 | 0 |
|
1522 | 0 | // Do the actual extract. |
1523 | 0 | int32_t destLength=0; |
1524 | 0 | utext_strFromUTF8(dest, destCapacity, &destLength, |
1525 | 0 | (const char *)ut->context+start32, limit32-start32, |
1526 | 0 | pErrorCode); |
1527 | 0 | utf8TextAccess(ut, limit32, TRUE); |
1528 | 0 | return destLength; |
1529 | 0 | } |
1530 | | |
1531 | | // |
1532 | | // utf8TextMapOffsetToNative |
1533 | | // |
1534 | | // Map a chunk (UTF-16) offset to a native index. |
1535 | | static int64_t U_CALLCONV |
1536 | 0 | utf8TextMapOffsetToNative(const UText *ut) { |
1537 | 0 | // |
1538 | 0 | UTF8Buf *u8b = (UTF8Buf *)ut->p; |
1539 | 0 | U_ASSERT(ut->chunkOffset>ut->nativeIndexingLimit && ut->chunkOffset<=ut->chunkLength); |
1540 | 0 | int32_t nativeOffset = u8b->mapToNative[ut->chunkOffset + u8b->bufStartIdx] + u8b->toUCharsMapStart; |
1541 | 0 | U_ASSERT(nativeOffset >= ut->chunkNativeStart && nativeOffset <= ut->chunkNativeLimit); |
1542 | 0 | return nativeOffset; |
1543 | 0 | } |
1544 | | |
1545 | | // |
1546 | | // Map a native index to the corrsponding chunk offset |
1547 | | // |
1548 | | static int32_t U_CALLCONV |
1549 | 0 | utf8TextMapIndexToUTF16(const UText *ut, int64_t index64) { |
1550 | 0 | U_ASSERT(index64 <= 0x7fffffff); |
1551 | 0 | int32_t index = (int32_t)index64; |
1552 | 0 | UTF8Buf *u8b = (UTF8Buf *)ut->p; |
1553 | 0 | U_ASSERT(index>=ut->chunkNativeStart+ut->nativeIndexingLimit); |
1554 | 0 | U_ASSERT(index<=ut->chunkNativeLimit); |
1555 | 0 | int32_t mapIndex = index - u8b->toUCharsMapStart; |
1556 | 0 | U_ASSERT(mapIndex < (int32_t)sizeof(UTF8Buf::mapToUChars)); |
1557 | 0 | int32_t offset = u8b->mapToUChars[mapIndex] - u8b->bufStartIdx; |
1558 | 0 | U_ASSERT(offset>=0 && offset<=ut->chunkLength); |
1559 | 0 | return offset; |
1560 | 0 | } |
1561 | | |
1562 | | static UText * U_CALLCONV |
1563 | | utf8TextClone(UText *dest, const UText *src, UBool deep, UErrorCode *status) |
1564 | 0 | { |
1565 | 0 | // First do a generic shallow clone. Does everything needed for the UText struct itself. |
1566 | 0 | dest = shallowTextClone(dest, src, status); |
1567 | 0 |
|
1568 | 0 | // For deep clones, make a copy of the string. |
1569 | 0 | // The copied storage is owned by the newly created clone. |
1570 | 0 | // |
1571 | 0 | // TODO: There is an isssue with using utext_nativeLength(). |
1572 | 0 | // That function is non-const in cases where the input was NUL terminated |
1573 | 0 | // and the length has not yet been determined. |
1574 | 0 | // This function (clone()) is const. |
1575 | 0 | // There potentially a thread safety issue lurking here. |
1576 | 0 | // |
1577 | 0 | if (deep && U_SUCCESS(*status)) { |
1578 | 0 | int32_t len = (int32_t)utext_nativeLength((UText *)src); |
1579 | 0 | char *copyStr = (char *)uprv_malloc(len+1); |
1580 | 0 | if (copyStr == NULL) { |
1581 | 0 | *status = U_MEMORY_ALLOCATION_ERROR; |
1582 | 0 | } else { |
1583 | 0 | uprv_memcpy(copyStr, src->context, len+1); |
1584 | 0 | dest->context = copyStr; |
1585 | 0 | dest->providerProperties |= I32_FLAG(UTEXT_PROVIDER_OWNS_TEXT); |
1586 | 0 | } |
1587 | 0 | } |
1588 | 0 | return dest; |
1589 | 0 | } |
1590 | | |
1591 | | |
1592 | | static void U_CALLCONV |
1593 | 0 | utf8TextClose(UText *ut) { |
1594 | 0 | // Most of the work of close is done by the generic UText framework close. |
1595 | 0 | // All that needs to be done here is to delete the UTF8 string if the UText |
1596 | 0 | // owns it. This occurs if the UText was created by cloning. |
1597 | 0 | if (ut->providerProperties & I32_FLAG(UTEXT_PROVIDER_OWNS_TEXT)) { |
1598 | 0 | char *s = (char *)ut->context; |
1599 | 0 | uprv_free(s); |
1600 | 0 | ut->context = NULL; |
1601 | 0 | } |
1602 | 0 | } |
1603 | | |
1604 | | U_CDECL_END |
1605 | | |
1606 | | |
1607 | | static const struct UTextFuncs utf8Funcs = |
1608 | | { |
1609 | | sizeof(UTextFuncs), |
1610 | | 0, 0, 0, // Reserved alignment padding |
1611 | | utf8TextClone, |
1612 | | utf8TextLength, |
1613 | | utf8TextAccess, |
1614 | | utf8TextExtract, |
1615 | | NULL, /* replace*/ |
1616 | | NULL, /* copy */ |
1617 | | utf8TextMapOffsetToNative, |
1618 | | utf8TextMapIndexToUTF16, |
1619 | | utf8TextClose, |
1620 | | NULL, // spare 1 |
1621 | | NULL, // spare 2 |
1622 | | NULL // spare 3 |
1623 | | }; |
1624 | | |
1625 | | |
1626 | | static const char gEmptyString[] = {0}; |
1627 | | |
1628 | | U_CAPI UText * U_EXPORT2 |
1629 | 0 | utext_openUTF8(UText *ut, const char *s, int64_t length, UErrorCode *status) { |
1630 | 0 | if(U_FAILURE(*status)) { |
1631 | 0 | return NULL; |
1632 | 0 | } |
1633 | 0 | if(s==NULL && length==0) { |
1634 | 0 | s = gEmptyString; |
1635 | 0 | } |
1636 | 0 |
|
1637 | 0 | if(s==NULL || length<-1 || length>INT32_MAX) { |
1638 | 0 | *status=U_ILLEGAL_ARGUMENT_ERROR; |
1639 | 0 | return NULL; |
1640 | 0 | } |
1641 | 0 | |
1642 | 0 | ut = utext_setup(ut, sizeof(UTF8Buf) * 2, status); |
1643 | 0 | if (U_FAILURE(*status)) { |
1644 | 0 | return ut; |
1645 | 0 | } |
1646 | 0 | |
1647 | 0 | ut->pFuncs = &utf8Funcs; |
1648 | 0 | ut->context = s; |
1649 | 0 | ut->b = (int32_t)length; |
1650 | 0 | ut->c = (int32_t)length; |
1651 | 0 | if (ut->c < 0) { |
1652 | 0 | ut->c = 0; |
1653 | 0 | ut->providerProperties |= I32_FLAG(UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE); |
1654 | 0 | } |
1655 | 0 | ut->p = ut->pExtra; |
1656 | 0 | ut->q = (char *)ut->pExtra + sizeof(UTF8Buf); |
1657 | 0 | return ut; |
1658 | 0 |
|
1659 | 0 | } |
1660 | | |
1661 | | |
1662 | | |
1663 | | |
1664 | | |
1665 | | |
1666 | | |
1667 | | |
1668 | | //------------------------------------------------------------------------------ |
1669 | | // |
1670 | | // UText implementation wrapper for Replaceable (read/write) |
1671 | | // |
1672 | | // Use of UText data members: |
1673 | | // context pointer to Replaceable. |
1674 | | // p pointer to Replaceable if it is owned by the UText. |
1675 | | // |
1676 | | //------------------------------------------------------------------------------ |
1677 | | |
1678 | | |
1679 | | |
1680 | | // minimum chunk size for this implementation: 3 |
1681 | | // to allow for possible trimming for code point boundaries |
1682 | | enum { REP_TEXT_CHUNK_SIZE=10 }; |
1683 | | |
1684 | | struct ReplExtra { |
1685 | | /* |
1686 | | * Chunk UChars. |
1687 | | * +1 to simplify filling with surrogate pair at the end. |
1688 | | */ |
1689 | | UChar s[REP_TEXT_CHUNK_SIZE+1]; |
1690 | | }; |
1691 | | |
1692 | | |
1693 | | U_CDECL_BEGIN |
1694 | | |
1695 | | static UText * U_CALLCONV |
1696 | 0 | repTextClone(UText *dest, const UText *src, UBool deep, UErrorCode *status) { |
1697 | 0 | // First do a generic shallow clone. Does everything needed for the UText struct itself. |
1698 | 0 | dest = shallowTextClone(dest, src, status); |
1699 | 0 |
|
1700 | 0 | // For deep clones, make a copy of the Replaceable. |
1701 | 0 | // The copied Replaceable storage is owned by the newly created UText clone. |
1702 | 0 | // A non-NULL pointer in UText.p is the signal to the close() function to delete |
1703 | 0 | // it. |
1704 | 0 | // |
1705 | 0 | if (deep && U_SUCCESS(*status)) { |
1706 | 0 | const Replaceable *replSrc = (const Replaceable *)src->context; |
1707 | 0 | dest->context = replSrc->clone(); |
1708 | 0 | dest->providerProperties |= I32_FLAG(UTEXT_PROVIDER_OWNS_TEXT); |
1709 | 0 |
|
1710 | 0 | // with deep clone, the copy is writable, even when the source is not. |
1711 | 0 | dest->providerProperties |= I32_FLAG(UTEXT_PROVIDER_WRITABLE); |
1712 | 0 | } |
1713 | 0 | return dest; |
1714 | 0 | } |
1715 | | |
1716 | | |
1717 | | static void U_CALLCONV |
1718 | 0 | repTextClose(UText *ut) { |
1719 | 0 | // Most of the work of close is done by the generic UText framework close. |
1720 | 0 | // All that needs to be done here is delete the Replaceable if the UText |
1721 | 0 | // owns it. This occurs if the UText was created by cloning. |
1722 | 0 | if (ut->providerProperties & I32_FLAG(UTEXT_PROVIDER_OWNS_TEXT)) { |
1723 | 0 | Replaceable *rep = (Replaceable *)ut->context; |
1724 | 0 | delete rep; |
1725 | 0 | ut->context = NULL; |
1726 | 0 | } |
1727 | 0 | } |
1728 | | |
1729 | | |
1730 | | static int64_t U_CALLCONV |
1731 | 0 | repTextLength(UText *ut) { |
1732 | 0 | const Replaceable *replSrc = (const Replaceable *)ut->context; |
1733 | 0 | int32_t len = replSrc->length(); |
1734 | 0 | return len; |
1735 | 0 | } |
1736 | | |
1737 | | |
1738 | | static UBool U_CALLCONV |
1739 | 0 | repTextAccess(UText *ut, int64_t index, UBool forward) { |
1740 | 0 | const Replaceable *rep=(const Replaceable *)ut->context; |
1741 | 0 | int32_t length=rep->length(); // Full length of the input text (bigger than a chunk) |
1742 | 0 |
|
1743 | 0 | // clip the requested index to the limits of the text. |
1744 | 0 | int32_t index32 = pinIndex(index, length); |
1745 | 0 | U_ASSERT(index<=INT32_MAX); |
1746 | 0 |
|
1747 | 0 |
|
1748 | 0 | /* |
1749 | 0 | * Compute start/limit boundaries around index, for a segment of text |
1750 | 0 | * to be extracted. |
1751 | 0 | * To allow for the possibility that our user gave an index to the trailing |
1752 | 0 | * half of a surrogate pair, we must request one extra preceding UChar when |
1753 | 0 | * going in the forward direction. This will ensure that the buffer has the |
1754 | 0 | * entire code point at the specified index. |
1755 | 0 | */ |
1756 | 0 | if(forward) { |
1757 | 0 |
|
1758 | 0 | if (index32>=ut->chunkNativeStart && index32<ut->chunkNativeLimit) { |
1759 | 0 | // Buffer already contains the requested position. |
1760 | 0 | ut->chunkOffset = (int32_t)(index - ut->chunkNativeStart); |
1761 | 0 | return TRUE; |
1762 | 0 | } |
1763 | 0 | if (index32>=length && ut->chunkNativeLimit==length) { |
1764 | 0 | // Request for end of string, and buffer already extends up to it. |
1765 | 0 | // Can't get the data, but don't change the buffer. |
1766 | 0 | ut->chunkOffset = length - (int32_t)ut->chunkNativeStart; |
1767 | 0 | return FALSE; |
1768 | 0 | } |
1769 | 0 |
|
1770 | 0 | ut->chunkNativeLimit = index + REP_TEXT_CHUNK_SIZE - 1; |
1771 | 0 | // Going forward, so we want to have the buffer with stuff at and beyond |
1772 | 0 | // the requested index. The -1 gets us one code point before the |
1773 | 0 | // requested index also, to handle the case of the index being on |
1774 | 0 | // a trail surrogate of a surrogate pair. |
1775 | 0 | if(ut->chunkNativeLimit > length) { |
1776 | 0 | ut->chunkNativeLimit = length; |
1777 | 0 | } |
1778 | 0 | // unless buffer ran off end, start is index-1. |
1779 | 0 | ut->chunkNativeStart = ut->chunkNativeLimit - REP_TEXT_CHUNK_SIZE; |
1780 | 0 | if(ut->chunkNativeStart < 0) { |
1781 | 0 | ut->chunkNativeStart = 0; |
1782 | 0 | } |
1783 | 0 | } else { |
1784 | 0 | // Reverse iteration. Fill buffer with data preceding the requested index. |
1785 | 0 | if (index32>ut->chunkNativeStart && index32<=ut->chunkNativeLimit) { |
1786 | 0 | // Requested position already in buffer. |
1787 | 0 | ut->chunkOffset = index32 - (int32_t)ut->chunkNativeStart; |
1788 | 0 | return TRUE; |
1789 | 0 | } |
1790 | 0 | if (index32==0 && ut->chunkNativeStart==0) { |
1791 | 0 | // Request for start, buffer already begins at start. |
1792 | 0 | // No data, but keep the buffer as is. |
1793 | 0 | ut->chunkOffset = 0; |
1794 | 0 | return FALSE; |
1795 | 0 | } |
1796 | 0 |
|
1797 | 0 | // Figure out the bounds of the chunk to extract for reverse iteration. |
1798 | 0 | // Need to worry about chunk not splitting surrogate pairs, and while still |
1799 | 0 | // containing the data we need. |
1800 | 0 | // Fix by requesting a chunk that includes an extra UChar at the end. |
1801 | 0 | // If this turns out to be a lead surrogate, we can lop it off and still have |
1802 | 0 | // the data we wanted. |
1803 | 0 | ut->chunkNativeStart = index32 + 1 - REP_TEXT_CHUNK_SIZE; |
1804 | 0 | if (ut->chunkNativeStart < 0) { |
1805 | 0 | ut->chunkNativeStart = 0; |
1806 | 0 | } |
1807 | 0 |
|
1808 | 0 | ut->chunkNativeLimit = index32 + 1; |
1809 | 0 | if (ut->chunkNativeLimit > length) { |
1810 | 0 | ut->chunkNativeLimit = length; |
1811 | 0 | } |
1812 | 0 | } |
1813 | 0 |
|
1814 | 0 | // Extract the new chunk of text from the Replaceable source. |
1815 | 0 | ReplExtra *ex = (ReplExtra *)ut->pExtra; |
1816 | 0 | // UnicodeString with its buffer a writable alias to the chunk buffer |
1817 | 0 | UnicodeString buffer(ex->s, 0 /*buffer length*/, REP_TEXT_CHUNK_SIZE /*buffer capacity*/); |
1818 | 0 | rep->extractBetween((int32_t)ut->chunkNativeStart, (int32_t)ut->chunkNativeLimit, buffer); |
1819 | 0 |
|
1820 | 0 | ut->chunkContents = ex->s; |
1821 | 0 | ut->chunkLength = (int32_t)(ut->chunkNativeLimit - ut->chunkNativeStart); |
1822 | 0 | ut->chunkOffset = (int32_t)(index32 - ut->chunkNativeStart); |
1823 | 0 |
|
1824 | 0 | // Surrogate pairs from the input text must not span chunk boundaries. |
1825 | 0 | // If end of chunk could be the start of a surrogate, trim it off. |
1826 | 0 | if (ut->chunkNativeLimit < length && |
1827 | 0 | U16_IS_LEAD(ex->s[ut->chunkLength-1])) { |
1828 | 0 | ut->chunkLength--; |
1829 | 0 | ut->chunkNativeLimit--; |
1830 | 0 | if (ut->chunkOffset > ut->chunkLength) { |
1831 | 0 | ut->chunkOffset = ut->chunkLength; |
1832 | 0 | } |
1833 | 0 | } |
1834 | 0 |
|
1835 | 0 | // if the first UChar in the chunk could be the trailing half of a surrogate pair, |
1836 | 0 | // trim it off. |
1837 | 0 | if(ut->chunkNativeStart>0 && U16_IS_TRAIL(ex->s[0])) { |
1838 | 0 | ++(ut->chunkContents); |
1839 | 0 | ++(ut->chunkNativeStart); |
1840 | 0 | --(ut->chunkLength); |
1841 | 0 | --(ut->chunkOffset); |
1842 | 0 | } |
1843 | 0 |
|
1844 | 0 | // adjust the index/chunkOffset to a code point boundary |
1845 | 0 | U16_SET_CP_START(ut->chunkContents, 0, ut->chunkOffset); |
1846 | 0 |
|
1847 | 0 | // Use fast indexing for get/setNativeIndex() |
1848 | 0 | ut->nativeIndexingLimit = ut->chunkLength; |
1849 | 0 |
|
1850 | 0 | return TRUE; |
1851 | 0 | } |
1852 | | |
1853 | | |
1854 | | |
1855 | | static int32_t U_CALLCONV |
1856 | | repTextExtract(UText *ut, |
1857 | | int64_t start, int64_t limit, |
1858 | | UChar *dest, int32_t destCapacity, |
1859 | 0 | UErrorCode *status) { |
1860 | 0 | const Replaceable *rep=(const Replaceable *)ut->context; |
1861 | 0 | int32_t length=rep->length(); |
1862 | 0 |
|
1863 | 0 | if(U_FAILURE(*status)) { |
1864 | 0 | return 0; |
1865 | 0 | } |
1866 | 0 | if(destCapacity<0 || (dest==NULL && destCapacity>0)) { |
1867 | 0 | *status=U_ILLEGAL_ARGUMENT_ERROR; |
1868 | 0 | } |
1869 | 0 | if(start>limit) { |
1870 | 0 | *status=U_INDEX_OUTOFBOUNDS_ERROR; |
1871 | 0 | return 0; |
1872 | 0 | } |
1873 | 0 | |
1874 | 0 | int32_t start32 = pinIndex(start, length); |
1875 | 0 | int32_t limit32 = pinIndex(limit, length); |
1876 | 0 |
|
1877 | 0 | // adjust start, limit if they point to trail half of surrogates |
1878 | 0 | if (start32<length && U16_IS_TRAIL(rep->charAt(start32)) && |
1879 | 0 | U_IS_SUPPLEMENTARY(rep->char32At(start32))){ |
1880 | 0 | start32--; |
1881 | 0 | } |
1882 | 0 | if (limit32<length && U16_IS_TRAIL(rep->charAt(limit32)) && |
1883 | 0 | U_IS_SUPPLEMENTARY(rep->char32At(limit32))){ |
1884 | 0 | limit32--; |
1885 | 0 | } |
1886 | 0 |
|
1887 | 0 | length=limit32-start32; |
1888 | 0 | if(length>destCapacity) { |
1889 | 0 | limit32 = start32 + destCapacity; |
1890 | 0 | } |
1891 | 0 | UnicodeString buffer(dest, 0, destCapacity); // writable alias |
1892 | 0 | rep->extractBetween(start32, limit32, buffer); |
1893 | 0 | repTextAccess(ut, limit32, TRUE); |
1894 | 0 |
|
1895 | 0 | return u_terminateUChars(dest, destCapacity, length, status); |
1896 | 0 | } |
1897 | | |
1898 | | static int32_t U_CALLCONV |
1899 | | repTextReplace(UText *ut, |
1900 | | int64_t start, int64_t limit, |
1901 | | const UChar *src, int32_t length, |
1902 | 0 | UErrorCode *status) { |
1903 | 0 | Replaceable *rep=(Replaceable *)ut->context; |
1904 | 0 | int32_t oldLength; |
1905 | 0 |
|
1906 | 0 | if(U_FAILURE(*status)) { |
1907 | 0 | return 0; |
1908 | 0 | } |
1909 | 0 | if(src==NULL && length!=0) { |
1910 | 0 | *status=U_ILLEGAL_ARGUMENT_ERROR; |
1911 | 0 | return 0; |
1912 | 0 | } |
1913 | 0 | oldLength=rep->length(); // will subtract from new length |
1914 | 0 | if(start>limit ) { |
1915 | 0 | *status=U_INDEX_OUTOFBOUNDS_ERROR; |
1916 | 0 | return 0; |
1917 | 0 | } |
1918 | 0 | |
1919 | 0 | int32_t start32 = pinIndex(start, oldLength); |
1920 | 0 | int32_t limit32 = pinIndex(limit, oldLength); |
1921 | 0 |
|
1922 | 0 | // Snap start & limit to code point boundaries. |
1923 | 0 | if (start32<oldLength && U16_IS_TRAIL(rep->charAt(start32)) && |
1924 | 0 | start32>0 && U16_IS_LEAD(rep->charAt(start32-1))) |
1925 | 0 | { |
1926 | 0 | start32--; |
1927 | 0 | } |
1928 | 0 | if (limit32<oldLength && U16_IS_LEAD(rep->charAt(limit32-1)) && |
1929 | 0 | U16_IS_TRAIL(rep->charAt(limit32))) |
1930 | 0 | { |
1931 | 0 | limit32++; |
1932 | 0 | } |
1933 | 0 |
|
1934 | 0 | // Do the actual replace operation using methods of the Replaceable class |
1935 | 0 | UnicodeString replStr((UBool)(length<0), src, length); // read-only alias |
1936 | 0 | rep->handleReplaceBetween(start32, limit32, replStr); |
1937 | 0 | int32_t newLength = rep->length(); |
1938 | 0 | int32_t lengthDelta = newLength - oldLength; |
1939 | 0 |
|
1940 | 0 | // Is the UText chunk buffer OK? |
1941 | 0 | if (ut->chunkNativeLimit > start32) { |
1942 | 0 | // this replace operation may have impacted the current chunk. |
1943 | 0 | // invalidate it, which will force a reload on the next access. |
1944 | 0 | invalidateChunk(ut); |
1945 | 0 | } |
1946 | 0 |
|
1947 | 0 | // set the iteration position to the end of the newly inserted replacement text. |
1948 | 0 | int32_t newIndexPos = limit32 + lengthDelta; |
1949 | 0 | repTextAccess(ut, newIndexPos, TRUE); |
1950 | 0 |
|
1951 | 0 | return lengthDelta; |
1952 | 0 | } |
1953 | | |
1954 | | |
1955 | | static void U_CALLCONV |
1956 | | repTextCopy(UText *ut, |
1957 | | int64_t start, int64_t limit, |
1958 | | int64_t destIndex, |
1959 | | UBool move, |
1960 | | UErrorCode *status) |
1961 | 0 | { |
1962 | 0 | Replaceable *rep=(Replaceable *)ut->context; |
1963 | 0 | int32_t length=rep->length(); |
1964 | 0 |
|
1965 | 0 | if(U_FAILURE(*status)) { |
1966 | 0 | return; |
1967 | 0 | } |
1968 | 0 | if (start>limit || (start<destIndex && destIndex<limit)) |
1969 | 0 | { |
1970 | 0 | *status=U_INDEX_OUTOFBOUNDS_ERROR; |
1971 | 0 | return; |
1972 | 0 | } |
1973 | 0 | |
1974 | 0 | int32_t start32 = pinIndex(start, length); |
1975 | 0 | int32_t limit32 = pinIndex(limit, length); |
1976 | 0 | int32_t destIndex32 = pinIndex(destIndex, length); |
1977 | 0 |
|
1978 | 0 | // TODO: snap input parameters to code point boundaries. |
1979 | 0 |
|
1980 | 0 | if(move) { |
1981 | 0 | // move: copy to destIndex, then replace original with nothing |
1982 | 0 | int32_t segLength=limit32-start32; |
1983 | 0 | rep->copy(start32, limit32, destIndex32); |
1984 | 0 | if(destIndex32<start32) { |
1985 | 0 | start32+=segLength; |
1986 | 0 | limit32+=segLength; |
1987 | 0 | } |
1988 | 0 | rep->handleReplaceBetween(start32, limit32, UnicodeString()); |
1989 | 0 | } else { |
1990 | 0 | // copy |
1991 | 0 | rep->copy(start32, limit32, destIndex32); |
1992 | 0 | } |
1993 | 0 |
|
1994 | 0 | // If the change to the text touched the region in the chunk buffer, |
1995 | 0 | // invalidate the buffer. |
1996 | 0 | int32_t firstAffectedIndex = destIndex32; |
1997 | 0 | if (move && start32<firstAffectedIndex) { |
1998 | 0 | firstAffectedIndex = start32; |
1999 | 0 | } |
2000 | 0 | if (firstAffectedIndex < ut->chunkNativeLimit) { |
2001 | 0 | // changes may have affected range covered by the chunk |
2002 | 0 | invalidateChunk(ut); |
2003 | 0 | } |
2004 | 0 |
|
2005 | 0 | // Put iteration position at the newly inserted (moved) block, |
2006 | 0 | int32_t nativeIterIndex = destIndex32 + limit32 - start32; |
2007 | 0 | if (move && destIndex32>start32) { |
2008 | 0 | // moved a block of text towards the end of the string. |
2009 | 0 | nativeIterIndex = destIndex32; |
2010 | 0 | } |
2011 | 0 |
|
2012 | 0 | // Set position, reload chunk if needed. |
2013 | 0 | repTextAccess(ut, nativeIterIndex, TRUE); |
2014 | 0 | } |
2015 | | |
2016 | | static const struct UTextFuncs repFuncs = |
2017 | | { |
2018 | | sizeof(UTextFuncs), |
2019 | | 0, 0, 0, // Reserved alignment padding |
2020 | | repTextClone, |
2021 | | repTextLength, |
2022 | | repTextAccess, |
2023 | | repTextExtract, |
2024 | | repTextReplace, |
2025 | | repTextCopy, |
2026 | | NULL, // MapOffsetToNative, |
2027 | | NULL, // MapIndexToUTF16, |
2028 | | repTextClose, |
2029 | | NULL, // spare 1 |
2030 | | NULL, // spare 2 |
2031 | | NULL // spare 3 |
2032 | | }; |
2033 | | |
2034 | | |
2035 | | U_CAPI UText * U_EXPORT2 |
2036 | | utext_openReplaceable(UText *ut, Replaceable *rep, UErrorCode *status) |
2037 | 0 | { |
2038 | 0 | if(U_FAILURE(*status)) { |
2039 | 0 | return NULL; |
2040 | 0 | } |
2041 | 0 | if(rep==NULL) { |
2042 | 0 | *status=U_ILLEGAL_ARGUMENT_ERROR; |
2043 | 0 | return NULL; |
2044 | 0 | } |
2045 | 0 | ut = utext_setup(ut, sizeof(ReplExtra), status); |
2046 | 0 | if(U_FAILURE(*status)) { |
2047 | 0 | return ut; |
2048 | 0 | } |
2049 | 0 | |
2050 | 0 | ut->providerProperties = I32_FLAG(UTEXT_PROVIDER_WRITABLE); |
2051 | 0 | if(rep->hasMetaData()) { |
2052 | 0 | ut->providerProperties |=I32_FLAG(UTEXT_PROVIDER_HAS_META_DATA); |
2053 | 0 | } |
2054 | 0 |
|
2055 | 0 | ut->pFuncs = &repFuncs; |
2056 | 0 | ut->context = rep; |
2057 | 0 | return ut; |
2058 | 0 | } |
2059 | | |
2060 | | U_CDECL_END |
2061 | | |
2062 | | |
2063 | | |
2064 | | |
2065 | | |
2066 | | |
2067 | | |
2068 | | |
2069 | | //------------------------------------------------------------------------------ |
2070 | | // |
2071 | | // UText implementation for UnicodeString (read/write) and |
2072 | | // for const UnicodeString (read only) |
2073 | | // (same implementation, only the flags are different) |
2074 | | // |
2075 | | // Use of UText data members: |
2076 | | // context pointer to UnicodeString |
2077 | | // p pointer to UnicodeString IF this UText owns the string |
2078 | | // and it must be deleted on close(). NULL otherwise. |
2079 | | // |
2080 | | //------------------------------------------------------------------------------ |
2081 | | |
2082 | | U_CDECL_BEGIN |
2083 | | |
2084 | | |
2085 | | static UText * U_CALLCONV |
2086 | 0 | unistrTextClone(UText *dest, const UText *src, UBool deep, UErrorCode *status) { |
2087 | 0 | // First do a generic shallow clone. Does everything needed for the UText struct itself. |
2088 | 0 | dest = shallowTextClone(dest, src, status); |
2089 | 0 |
|
2090 | 0 | // For deep clones, make a copy of the UnicodeSring. |
2091 | 0 | // The copied UnicodeString storage is owned by the newly created UText clone. |
2092 | 0 | // A non-NULL pointer in UText.p is the signal to the close() function to delete |
2093 | 0 | // the UText. |
2094 | 0 | // |
2095 | 0 | if (deep && U_SUCCESS(*status)) { |
2096 | 0 | const UnicodeString *srcString = (const UnicodeString *)src->context; |
2097 | 0 | dest->context = new UnicodeString(*srcString); |
2098 | 0 | dest->providerProperties |= I32_FLAG(UTEXT_PROVIDER_OWNS_TEXT); |
2099 | 0 |
|
2100 | 0 | // with deep clone, the copy is writable, even when the source is not. |
2101 | 0 | dest->providerProperties |= I32_FLAG(UTEXT_PROVIDER_WRITABLE); |
2102 | 0 | } |
2103 | 0 | return dest; |
2104 | 0 | } |
2105 | | |
2106 | | static void U_CALLCONV |
2107 | 0 | unistrTextClose(UText *ut) { |
2108 | 0 | // Most of the work of close is done by the generic UText framework close. |
2109 | 0 | // All that needs to be done here is delete the UnicodeString if the UText |
2110 | 0 | // owns it. This occurs if the UText was created by cloning. |
2111 | 0 | if (ut->providerProperties & I32_FLAG(UTEXT_PROVIDER_OWNS_TEXT)) { |
2112 | 0 | UnicodeString *str = (UnicodeString *)ut->context; |
2113 | 0 | delete str; |
2114 | 0 | ut->context = NULL; |
2115 | 0 | } |
2116 | 0 | } |
2117 | | |
2118 | | |
2119 | | static int64_t U_CALLCONV |
2120 | 0 | unistrTextLength(UText *t) { |
2121 | 0 | return ((const UnicodeString *)t->context)->length(); |
2122 | 0 | } |
2123 | | |
2124 | | |
2125 | | static UBool U_CALLCONV |
2126 | 0 | unistrTextAccess(UText *ut, int64_t index, UBool forward) { |
2127 | 0 | int32_t length = ut->chunkLength; |
2128 | 0 | ut->chunkOffset = pinIndex(index, length); |
2129 | 0 |
|
2130 | 0 | // Check whether request is at the start or end |
2131 | 0 | UBool retVal = (forward && index<length) || (!forward && index>0); |
2132 | 0 | return retVal; |
2133 | 0 | } |
2134 | | |
2135 | | |
2136 | | |
2137 | | static int32_t U_CALLCONV |
2138 | | unistrTextExtract(UText *t, |
2139 | | int64_t start, int64_t limit, |
2140 | | UChar *dest, int32_t destCapacity, |
2141 | 0 | UErrorCode *pErrorCode) { |
2142 | 0 | const UnicodeString *us=(const UnicodeString *)t->context; |
2143 | 0 | int32_t length=us->length(); |
2144 | 0 |
|
2145 | 0 | if(U_FAILURE(*pErrorCode)) { |
2146 | 0 | return 0; |
2147 | 0 | } |
2148 | 0 | if(destCapacity<0 || (dest==NULL && destCapacity>0)) { |
2149 | 0 | *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; |
2150 | 0 | } |
2151 | 0 | if(start<0 || start>limit) { |
2152 | 0 | *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; |
2153 | 0 | return 0; |
2154 | 0 | } |
2155 | 0 | |
2156 | 0 | int32_t start32 = start<length ? us->getChar32Start((int32_t)start) : length; |
2157 | 0 | int32_t limit32 = limit<length ? us->getChar32Start((int32_t)limit) : length; |
2158 | 0 |
|
2159 | 0 | length=limit32-start32; |
2160 | 0 | if (destCapacity>0 && dest!=NULL) { |
2161 | 0 | int32_t trimmedLength = length; |
2162 | 0 | if(trimmedLength>destCapacity) { |
2163 | 0 | trimmedLength=destCapacity; |
2164 | 0 | } |
2165 | 0 | us->extract(start32, trimmedLength, dest); |
2166 | 0 | t->chunkOffset = start32+trimmedLength; |
2167 | 0 | } else { |
2168 | 0 | t->chunkOffset = start32; |
2169 | 0 | } |
2170 | 0 | u_terminateUChars(dest, destCapacity, length, pErrorCode); |
2171 | 0 | return length; |
2172 | 0 | } |
2173 | | |
2174 | | static int32_t U_CALLCONV |
2175 | | unistrTextReplace(UText *ut, |
2176 | | int64_t start, int64_t limit, |
2177 | | const UChar *src, int32_t length, |
2178 | 0 | UErrorCode *pErrorCode) { |
2179 | 0 | UnicodeString *us=(UnicodeString *)ut->context; |
2180 | 0 | int32_t oldLength; |
2181 | 0 |
|
2182 | 0 | if(U_FAILURE(*pErrorCode)) { |
2183 | 0 | return 0; |
2184 | 0 | } |
2185 | 0 | if(src==NULL && length!=0) { |
2186 | 0 | *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; |
2187 | 0 | } |
2188 | 0 | if(start>limit) { |
2189 | 0 | *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; |
2190 | 0 | return 0; |
2191 | 0 | } |
2192 | 0 | oldLength=us->length(); |
2193 | 0 | int32_t start32 = pinIndex(start, oldLength); |
2194 | 0 | int32_t limit32 = pinIndex(limit, oldLength); |
2195 | 0 | if (start32 < oldLength) { |
2196 | 0 | start32 = us->getChar32Start(start32); |
2197 | 0 | } |
2198 | 0 | if (limit32 < oldLength) { |
2199 | 0 | limit32 = us->getChar32Start(limit32); |
2200 | 0 | } |
2201 | 0 |
|
2202 | 0 | // replace |
2203 | 0 | us->replace(start32, limit32-start32, src, length); |
2204 | 0 | int32_t newLength = us->length(); |
2205 | 0 |
|
2206 | 0 | // Update the chunk description. |
2207 | 0 | ut->chunkContents = us->getBuffer(); |
2208 | 0 | ut->chunkLength = newLength; |
2209 | 0 | ut->chunkNativeLimit = newLength; |
2210 | 0 | ut->nativeIndexingLimit = newLength; |
2211 | 0 |
|
2212 | 0 | // Set iteration position to the point just following the newly inserted text. |
2213 | 0 | int32_t lengthDelta = newLength - oldLength; |
2214 | 0 | ut->chunkOffset = limit32 + lengthDelta; |
2215 | 0 |
|
2216 | 0 | return lengthDelta; |
2217 | 0 | } |
2218 | | |
2219 | | static void U_CALLCONV |
2220 | | unistrTextCopy(UText *ut, |
2221 | | int64_t start, int64_t limit, |
2222 | | int64_t destIndex, |
2223 | | UBool move, |
2224 | 0 | UErrorCode *pErrorCode) { |
2225 | 0 | UnicodeString *us=(UnicodeString *)ut->context; |
2226 | 0 | int32_t length=us->length(); |
2227 | 0 |
|
2228 | 0 | if(U_FAILURE(*pErrorCode)) { |
2229 | 0 | return; |
2230 | 0 | } |
2231 | 0 | int32_t start32 = pinIndex(start, length); |
2232 | 0 | int32_t limit32 = pinIndex(limit, length); |
2233 | 0 | int32_t destIndex32 = pinIndex(destIndex, length); |
2234 | 0 |
|
2235 | 0 | if( start32>limit32 || (start32<destIndex32 && destIndex32<limit32)) { |
2236 | 0 | *pErrorCode=U_INDEX_OUTOFBOUNDS_ERROR; |
2237 | 0 | return; |
2238 | 0 | } |
2239 | 0 | |
2240 | 0 | if(move) { |
2241 | 0 | // move: copy to destIndex, then remove original |
2242 | 0 | int32_t segLength=limit32-start32; |
2243 | 0 | us->copy(start32, limit32, destIndex32); |
2244 | 0 | if(destIndex32<start32) { |
2245 | 0 | start32+=segLength; |
2246 | 0 | } |
2247 | 0 | us->remove(start32, segLength); |
2248 | 0 | } else { |
2249 | 0 | // copy |
2250 | 0 | us->copy(start32, limit32, destIndex32); |
2251 | 0 | } |
2252 | 0 |
|
2253 | 0 | // update chunk description, set iteration position. |
2254 | 0 | ut->chunkContents = us->getBuffer(); |
2255 | 0 | if (move==FALSE) { |
2256 | 0 | // copy operation, string length grows |
2257 | 0 | ut->chunkLength += limit32-start32; |
2258 | 0 | ut->chunkNativeLimit = ut->chunkLength; |
2259 | 0 | ut->nativeIndexingLimit = ut->chunkLength; |
2260 | 0 | } |
2261 | 0 |
|
2262 | 0 | // Iteration position to end of the newly inserted text. |
2263 | 0 | ut->chunkOffset = destIndex32+limit32-start32; |
2264 | 0 | if (move && destIndex32>start32) { |
2265 | 0 | ut->chunkOffset = destIndex32; |
2266 | 0 | } |
2267 | 0 |
|
2268 | 0 | } |
2269 | | |
2270 | | static const struct UTextFuncs unistrFuncs = |
2271 | | { |
2272 | | sizeof(UTextFuncs), |
2273 | | 0, 0, 0, // Reserved alignment padding |
2274 | | unistrTextClone, |
2275 | | unistrTextLength, |
2276 | | unistrTextAccess, |
2277 | | unistrTextExtract, |
2278 | | unistrTextReplace, |
2279 | | unistrTextCopy, |
2280 | | NULL, // MapOffsetToNative, |
2281 | | NULL, // MapIndexToUTF16, |
2282 | | unistrTextClose, |
2283 | | NULL, // spare 1 |
2284 | | NULL, // spare 2 |
2285 | | NULL // spare 3 |
2286 | | }; |
2287 | | |
2288 | | |
2289 | | |
2290 | | U_CDECL_END |
2291 | | |
2292 | | |
2293 | | U_CAPI UText * U_EXPORT2 |
2294 | 0 | utext_openUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status) { |
2295 | 0 | ut = utext_openConstUnicodeString(ut, s, status); |
2296 | 0 | if (U_SUCCESS(*status)) { |
2297 | 0 | ut->providerProperties |= I32_FLAG(UTEXT_PROVIDER_WRITABLE); |
2298 | 0 | } |
2299 | 0 | return ut; |
2300 | 0 | } |
2301 | | |
2302 | | |
2303 | | |
2304 | | U_CAPI UText * U_EXPORT2 |
2305 | 0 | utext_openConstUnicodeString(UText *ut, const UnicodeString *s, UErrorCode *status) { |
2306 | 0 | if (U_SUCCESS(*status) && s->isBogus()) { |
2307 | 0 | // The UnicodeString is bogus, but we still need to detach the UText |
2308 | 0 | // from whatever it was hooked to before, if anything. |
2309 | 0 | utext_openUChars(ut, NULL, 0, status); |
2310 | 0 | *status = U_ILLEGAL_ARGUMENT_ERROR; |
2311 | 0 | return ut; |
2312 | 0 | } |
2313 | 0 | ut = utext_setup(ut, 0, status); |
2314 | 0 | // note: use the standard (writable) function table for UnicodeString. |
2315 | 0 | // The flag settings disable writing, so having the functions in |
2316 | 0 | // the table is harmless. |
2317 | 0 | if (U_SUCCESS(*status)) { |
2318 | 0 | ut->pFuncs = &unistrFuncs; |
2319 | 0 | ut->context = s; |
2320 | 0 | ut->providerProperties = I32_FLAG(UTEXT_PROVIDER_STABLE_CHUNKS); |
2321 | 0 | ut->chunkContents = s->getBuffer(); |
2322 | 0 | ut->chunkLength = s->length(); |
2323 | 0 | ut->chunkNativeStart = 0; |
2324 | 0 | ut->chunkNativeLimit = ut->chunkLength; |
2325 | 0 | ut->nativeIndexingLimit = ut->chunkLength; |
2326 | 0 | } |
2327 | 0 | return ut; |
2328 | 0 | } |
2329 | | |
2330 | | //------------------------------------------------------------------------------ |
2331 | | // |
2332 | | // UText implementation for const UChar * strings |
2333 | | // |
2334 | | // Use of UText data members: |
2335 | | // context pointer to UnicodeString |
2336 | | // a length. -1 if not yet known. |
2337 | | // |
2338 | | // TODO: support 64 bit lengths. |
2339 | | // |
2340 | | //------------------------------------------------------------------------------ |
2341 | | |
2342 | | U_CDECL_BEGIN |
2343 | | |
2344 | | |
2345 | | static UText * U_CALLCONV |
2346 | 0 | ucstrTextClone(UText *dest, const UText * src, UBool deep, UErrorCode * status) { |
2347 | 0 | // First do a generic shallow clone. |
2348 | 0 | dest = shallowTextClone(dest, src, status); |
2349 | 0 |
|
2350 | 0 | // For deep clones, make a copy of the string. |
2351 | 0 | // The copied storage is owned by the newly created clone. |
2352 | 0 | // A non-NULL pointer in UText.p is the signal to the close() function to delete |
2353 | 0 | // it. |
2354 | 0 | // |
2355 | 0 | if (deep && U_SUCCESS(*status)) { |
2356 | 0 | U_ASSERT(utext_nativeLength(dest) < INT32_MAX); |
2357 | 0 | int32_t len = (int32_t)utext_nativeLength(dest); |
2358 | 0 |
|
2359 | 0 | // The cloned string IS going to be NUL terminated, whether or not the original was. |
2360 | 0 | const UChar *srcStr = (const UChar *)src->context; |
2361 | 0 | UChar *copyStr = (UChar *)uprv_malloc((len+1) * sizeof(UChar)); |
2362 | 0 | if (copyStr == NULL) { |
2363 | 0 | *status = U_MEMORY_ALLOCATION_ERROR; |
2364 | 0 | } else { |
2365 | 0 | int64_t i; |
2366 | 0 | for (i=0; i<len; i++) { |
2367 | 0 | copyStr[i] = srcStr[i]; |
2368 | 0 | } |
2369 | 0 | copyStr[len] = 0; |
2370 | 0 | dest->context = copyStr; |
2371 | 0 | dest->providerProperties |= I32_FLAG(UTEXT_PROVIDER_OWNS_TEXT); |
2372 | 0 | } |
2373 | 0 | } |
2374 | 0 | return dest; |
2375 | 0 | } |
2376 | | |
2377 | | |
2378 | | static void U_CALLCONV |
2379 | 0 | ucstrTextClose(UText *ut) { |
2380 | 0 | // Most of the work of close is done by the generic UText framework close. |
2381 | 0 | // All that needs to be done here is delete the string if the UText |
2382 | 0 | // owns it. This occurs if the UText was created by cloning. |
2383 | 0 | if (ut->providerProperties & I32_FLAG(UTEXT_PROVIDER_OWNS_TEXT)) { |
2384 | 0 | UChar *s = (UChar *)ut->context; |
2385 | 0 | uprv_free(s); |
2386 | 0 | ut->context = NULL; |
2387 | 0 | } |
2388 | 0 | } |
2389 | | |
2390 | | |
2391 | | |
2392 | | static int64_t U_CALLCONV |
2393 | 0 | ucstrTextLength(UText *ut) { |
2394 | 0 | if (ut->a < 0) { |
2395 | 0 | // null terminated, we don't yet know the length. Scan for it. |
2396 | 0 | // Access is not convenient for doing this |
2397 | 0 | // because the current interation postion can't be changed. |
2398 | 0 | const UChar *str = (const UChar *)ut->context; |
2399 | 0 | for (;;) { |
2400 | 0 | if (str[ut->chunkNativeLimit] == 0) { |
2401 | 0 | break; |
2402 | 0 | } |
2403 | 0 | ut->chunkNativeLimit++; |
2404 | 0 | } |
2405 | 0 | ut->a = ut->chunkNativeLimit; |
2406 | 0 | ut->chunkLength = (int32_t)ut->chunkNativeLimit; |
2407 | 0 | ut->nativeIndexingLimit = ut->chunkLength; |
2408 | 0 | ut->providerProperties &= ~I32_FLAG(UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE); |
2409 | 0 | } |
2410 | 0 | return ut->a; |
2411 | 0 | } |
2412 | | |
2413 | | |
2414 | | static UBool U_CALLCONV |
2415 | 0 | ucstrTextAccess(UText *ut, int64_t index, UBool forward) { |
2416 | 0 | const UChar *str = (const UChar *)ut->context; |
2417 | 0 |
|
2418 | 0 | // pin the requested index to the bounds of the string, |
2419 | 0 | // and set current iteration position. |
2420 | 0 | if (index<0) { |
2421 | 0 | index = 0; |
2422 | 0 | } else if (index < ut->chunkNativeLimit) { |
2423 | 0 | // The request data is within the chunk as it is known so far. |
2424 | 0 | // Put index on a code point boundary. |
2425 | 0 | U16_SET_CP_START(str, 0, index); |
2426 | 0 | } else if (ut->a >= 0) { |
2427 | 0 | // We know the length of this string, and the user is requesting something |
2428 | 0 | // at or beyond the length. Pin the requested index to the length. |
2429 | 0 | index = ut->a; |
2430 | 0 | } else { |
2431 | 0 | // Null terminated string, length not yet known, and the requested index |
2432 | 0 | // is beyond where we have scanned so far. |
2433 | 0 | // Scan to 32 UChars beyond the requested index. The strategy here is |
2434 | 0 | // to avoid fully scanning a long string when the caller only wants to |
2435 | 0 | // see a few characters at its beginning. |
2436 | 0 | int32_t scanLimit = (int32_t)index + 32; |
2437 | 0 | if ((index + 32)>INT32_MAX || (index + 32)<0 ) { // note: int64 expression |
2438 | 0 | scanLimit = INT32_MAX; |
2439 | 0 | } |
2440 | 0 |
|
2441 | 0 | int32_t chunkLimit = (int32_t)ut->chunkNativeLimit; |
2442 | 0 | for (; chunkLimit<scanLimit; chunkLimit++) { |
2443 | 0 | if (str[chunkLimit] == 0) { |
2444 | 0 | // We found the end of the string. Remember it, pin the requested index to it, |
2445 | 0 | // and bail out of here. |
2446 | 0 | ut->a = chunkLimit; |
2447 | 0 | ut->chunkLength = chunkLimit; |
2448 | 0 | ut->nativeIndexingLimit = chunkLimit; |
2449 | 0 | if (index >= chunkLimit) { |
2450 | 0 | index = chunkLimit; |
2451 | 0 | } else { |
2452 | 0 | U16_SET_CP_START(str, 0, index); |
2453 | 0 | } |
2454 | 0 |
|
2455 | 0 | ut->chunkNativeLimit = chunkLimit; |
2456 | 0 | ut->providerProperties &= ~I32_FLAG(UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE); |
2457 | 0 | goto breakout; |
2458 | 0 | } |
2459 | 0 | } |
2460 | 0 | // We scanned through the next batch of UChars without finding the end. |
2461 | 0 | U16_SET_CP_START(str, 0, index); |
2462 | 0 | if (chunkLimit == INT32_MAX) { |
2463 | 0 | // Scanned to the limit of a 32 bit length. |
2464 | 0 | // Forceably trim the overlength string back so length fits in int32 |
2465 | 0 | // TODO: add support for 64 bit strings. |
2466 | 0 | ut->a = chunkLimit; |
2467 | 0 | ut->chunkLength = chunkLimit; |
2468 | 0 | ut->nativeIndexingLimit = chunkLimit; |
2469 | 0 | if (index > chunkLimit) { |
2470 | 0 | index = chunkLimit; |
2471 | 0 | } |
2472 | 0 | ut->chunkNativeLimit = chunkLimit; |
2473 | 0 | ut->providerProperties &= ~I32_FLAG(UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE); |
2474 | 0 | } else { |
2475 | 0 | // The endpoint of a chunk must not be left in the middle of a surrogate pair. |
2476 | 0 | // If the current end is on a lead surrogate, back the end up by one. |
2477 | 0 | // It doesn't matter if the end char happens to be an unpaired surrogate, |
2478 | 0 | // and it's simpler not to worry about it. |
2479 | 0 | if (U16_IS_LEAD(str[chunkLimit-1])) { |
2480 | 0 | --chunkLimit; |
2481 | 0 | } |
2482 | 0 | // Null-terminated chunk with end still unknown. |
2483 | 0 | // Update the chunk length to reflect what has been scanned thus far. |
2484 | 0 | // That the full length is still unknown is (still) flagged by |
2485 | 0 | // ut->a being < 0. |
2486 | 0 | ut->chunkNativeLimit = chunkLimit; |
2487 | 0 | ut->nativeIndexingLimit = chunkLimit; |
2488 | 0 | ut->chunkLength = chunkLimit; |
2489 | 0 | } |
2490 | 0 |
|
2491 | 0 | } |
2492 | 0 | breakout: |
2493 | 0 | U_ASSERT(index<=INT32_MAX); |
2494 | 0 | ut->chunkOffset = (int32_t)index; |
2495 | 0 |
|
2496 | 0 | // Check whether request is at the start or end |
2497 | 0 | UBool retVal = (forward && index<ut->chunkNativeLimit) || (!forward && index>0); |
2498 | 0 | return retVal; |
2499 | 0 | } |
2500 | | |
2501 | | |
2502 | | |
2503 | | static int32_t U_CALLCONV |
2504 | | ucstrTextExtract(UText *ut, |
2505 | | int64_t start, int64_t limit, |
2506 | | UChar *dest, int32_t destCapacity, |
2507 | | UErrorCode *pErrorCode) |
2508 | 0 | { |
2509 | 0 | if(U_FAILURE(*pErrorCode)) { |
2510 | 0 | return 0; |
2511 | 0 | } |
2512 | 0 | if(destCapacity<0 || (dest==NULL && destCapacity>0) || start>limit) { |
2513 | 0 | *pErrorCode=U_ILLEGAL_ARGUMENT_ERROR; |
2514 | 0 | return 0; |
2515 | 0 | } |
2516 | 0 | |
2517 | 0 | //const UChar *s=(const UChar *)ut->context; |
2518 | 0 | int32_t si, di; |
2519 | 0 |
|
2520 | 0 | int32_t start32; |
2521 | 0 | int32_t limit32; |
2522 | 0 |
|
2523 | 0 | // Access the start. Does two things we need: |
2524 | 0 | // Pins 'start' to the length of the string, if it came in out-of-bounds. |
2525 | 0 | // Snaps 'start' to the beginning of a code point. |
2526 | 0 | ucstrTextAccess(ut, start, TRUE); |
2527 | 0 | const UChar *s=ut->chunkContents; |
2528 | 0 | start32 = ut->chunkOffset; |
2529 | 0 |
|
2530 | 0 | int32_t strLength=(int32_t)ut->a; |
2531 | 0 | if (strLength >= 0) { |
2532 | 0 | limit32 = pinIndex(limit, strLength); |
2533 | 0 | } else { |
2534 | 0 | limit32 = pinIndex(limit, INT32_MAX); |
2535 | 0 | } |
2536 | 0 | di = 0; |
2537 | 0 | for (si=start32; si<limit32; si++) { |
2538 | 0 | if (strLength<0 && s[si]==0) { |
2539 | 0 | // Just hit the end of a null-terminated string. |
2540 | 0 | ut->a = si; // set string length for this UText |
2541 | 0 | ut->chunkNativeLimit = si; |
2542 | 0 | ut->chunkLength = si; |
2543 | 0 | ut->nativeIndexingLimit = si; |
2544 | 0 | strLength = si; |
2545 | 0 | limit32 = si; |
2546 | 0 | break; |
2547 | 0 | } |
2548 | 0 | U_ASSERT(di>=0); /* to ensure di never exceeds INT32_MAX, which must not happen logically */ |
2549 | 0 | if (di<destCapacity) { |
2550 | 0 | // only store if there is space. |
2551 | 0 | dest[di] = s[si]; |
2552 | 0 | } else { |
2553 | 0 | if (strLength>=0) { |
2554 | 0 | // We have filled the destination buffer, and the string length is known. |
2555 | 0 | // Cut the loop short. There is no need to scan string termination. |
2556 | 0 | di = limit32 - start32; |
2557 | 0 | si = limit32; |
2558 | 0 | break; |
2559 | 0 | } |
2560 | 0 | } |
2561 | 0 | di++; |
2562 | 0 | } |
2563 | 0 |
|
2564 | 0 | // If the limit index points to a lead surrogate of a pair, |
2565 | 0 | // add the corresponding trail surrogate to the destination. |
2566 | 0 | if (si>0 && U16_IS_LEAD(s[si-1]) && |
2567 | 0 | ((si<strLength || strLength<0) && U16_IS_TRAIL(s[si]))) |
2568 | 0 | { |
2569 | 0 | if (di<destCapacity) { |
2570 | 0 | // store only if there is space in the output buffer. |
2571 | 0 | dest[di++] = s[si]; |
2572 | 0 | } |
2573 | 0 | si++; |
2574 | 0 | } |
2575 | 0 |
|
2576 | 0 | // Put iteration position at the point just following the extracted text |
2577 | 0 | if (si <= ut->chunkNativeLimit) { |
2578 | 0 | ut->chunkOffset = si; |
2579 | 0 | } else { |
2580 | 0 | ucstrTextAccess(ut, si, TRUE); |
2581 | 0 | } |
2582 | 0 |
|
2583 | 0 | // Add a terminating NUL if space in the buffer permits, |
2584 | 0 | // and set the error status as required. |
2585 | 0 | u_terminateUChars(dest, destCapacity, di, pErrorCode); |
2586 | 0 | return di; |
2587 | 0 | } |
2588 | | |
2589 | | static const struct UTextFuncs ucstrFuncs = |
2590 | | { |
2591 | | sizeof(UTextFuncs), |
2592 | | 0, 0, 0, // Reserved alignment padding |
2593 | | ucstrTextClone, |
2594 | | ucstrTextLength, |
2595 | | ucstrTextAccess, |
2596 | | ucstrTextExtract, |
2597 | | NULL, // Replace |
2598 | | NULL, // Copy |
2599 | | NULL, // MapOffsetToNative, |
2600 | | NULL, // MapIndexToUTF16, |
2601 | | ucstrTextClose, |
2602 | | NULL, // spare 1 |
2603 | | NULL, // spare 2 |
2604 | | NULL, // spare 3 |
2605 | | }; |
2606 | | |
2607 | | U_CDECL_END |
2608 | | |
2609 | | static const UChar gEmptyUString[] = {0}; |
2610 | | |
2611 | | U_CAPI UText * U_EXPORT2 |
2612 | 0 | utext_openUChars(UText *ut, const UChar *s, int64_t length, UErrorCode *status) { |
2613 | 0 | if (U_FAILURE(*status)) { |
2614 | 0 | return NULL; |
2615 | 0 | } |
2616 | 0 | if(s==NULL && length==0) { |
2617 | 0 | s = gEmptyUString; |
2618 | 0 | } |
2619 | 0 | if (s==NULL || length < -1 || length>INT32_MAX) { |
2620 | 0 | *status = U_ILLEGAL_ARGUMENT_ERROR; |
2621 | 0 | return NULL; |
2622 | 0 | } |
2623 | 0 | ut = utext_setup(ut, 0, status); |
2624 | 0 | if (U_SUCCESS(*status)) { |
2625 | 0 | ut->pFuncs = &ucstrFuncs; |
2626 | 0 | ut->context = s; |
2627 | 0 | ut->providerProperties = I32_FLAG(UTEXT_PROVIDER_STABLE_CHUNKS); |
2628 | 0 | if (length==-1) { |
2629 | 0 | ut->providerProperties |= I32_FLAG(UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE); |
2630 | 0 | } |
2631 | 0 | ut->a = length; |
2632 | 0 | ut->chunkContents = s; |
2633 | 0 | ut->chunkNativeStart = 0; |
2634 | 0 | ut->chunkNativeLimit = length>=0? length : 0; |
2635 | 0 | ut->chunkLength = (int32_t)ut->chunkNativeLimit; |
2636 | 0 | ut->chunkOffset = 0; |
2637 | 0 | ut->nativeIndexingLimit = ut->chunkLength; |
2638 | 0 | } |
2639 | 0 | return ut; |
2640 | 0 | } |
2641 | | |
2642 | | |
2643 | | //------------------------------------------------------------------------------ |
2644 | | // |
2645 | | // UText implementation for text from ICU CharacterIterators |
2646 | | // |
2647 | | // Use of UText data members: |
2648 | | // context pointer to the CharacterIterator |
2649 | | // a length of the full text. |
2650 | | // p pointer to buffer 1 |
2651 | | // b start index of local buffer 1 contents |
2652 | | // q pointer to buffer 2 |
2653 | | // c start index of local buffer 2 contents |
2654 | | // r pointer to the character iterator if the UText owns it. |
2655 | | // Null otherwise. |
2656 | | // |
2657 | | //------------------------------------------------------------------------------ |
2658 | 0 | #define CIBufSize 16 |
2659 | | |
2660 | | U_CDECL_BEGIN |
2661 | | static void U_CALLCONV |
2662 | 0 | charIterTextClose(UText *ut) { |
2663 | 0 | // Most of the work of close is done by the generic UText framework close. |
2664 | 0 | // All that needs to be done here is delete the CharacterIterator if the UText |
2665 | 0 | // owns it. This occurs if the UText was created by cloning. |
2666 | 0 | CharacterIterator *ci = (CharacterIterator *)ut->r; |
2667 | 0 | delete ci; |
2668 | 0 | ut->r = NULL; |
2669 | 0 | } |
2670 | | |
2671 | | static int64_t U_CALLCONV |
2672 | 0 | charIterTextLength(UText *ut) { |
2673 | 0 | return (int32_t)ut->a; |
2674 | 0 | } |
2675 | | |
2676 | | static UBool U_CALLCONV |
2677 | 0 | charIterTextAccess(UText *ut, int64_t index, UBool forward) { |
2678 | 0 | CharacterIterator *ci = (CharacterIterator *)ut->context; |
2679 | 0 |
|
2680 | 0 | int32_t clippedIndex = (int32_t)index; |
2681 | 0 | if (clippedIndex<0) { |
2682 | 0 | clippedIndex=0; |
2683 | 0 | } else if (clippedIndex>=ut->a) { |
2684 | 0 | clippedIndex=(int32_t)ut->a; |
2685 | 0 | } |
2686 | 0 | int32_t neededIndex = clippedIndex; |
2687 | 0 | if (!forward && neededIndex>0) { |
2688 | 0 | // reverse iteration, want the position just before what was asked for. |
2689 | 0 | neededIndex--; |
2690 | 0 | } else if (forward && neededIndex==ut->a && neededIndex>0) { |
2691 | 0 | // Forward iteration, don't ask for something past the end of the text. |
2692 | 0 | neededIndex--; |
2693 | 0 | } |
2694 | 0 |
|
2695 | 0 | // Find the native index of the start of the buffer containing what we want. |
2696 | 0 | neededIndex -= neededIndex % CIBufSize; |
2697 | 0 |
|
2698 | 0 | UChar *buf = NULL; |
2699 | 0 | UBool needChunkSetup = TRUE; |
2700 | 0 | int i; |
2701 | 0 | if (ut->chunkNativeStart == neededIndex) { |
2702 | 0 | // The buffer we want is already the current chunk. |
2703 | 0 | needChunkSetup = FALSE; |
2704 | 0 | } else if (ut->b == neededIndex) { |
2705 | 0 | // The first buffer (buffer p) has what we need. |
2706 | 0 | buf = (UChar *)ut->p; |
2707 | 0 | } else if (ut->c == neededIndex) { |
2708 | 0 | // The second buffer (buffer q) has what we need. |
2709 | 0 | buf = (UChar *)ut->q; |
2710 | 0 | } else { |
2711 | 0 | // Neither buffer already has what we need. |
2712 | 0 | // Load new data from the character iterator. |
2713 | 0 | // Use the buf that is not the current buffer. |
2714 | 0 | buf = (UChar *)ut->p; |
2715 | 0 | if (ut->p == ut->chunkContents) { |
2716 | 0 | buf = (UChar *)ut->q; |
2717 | 0 | } |
2718 | 0 | ci->setIndex(neededIndex); |
2719 | 0 | for (i=0; i<CIBufSize; i++) { |
2720 | 0 | buf[i] = ci->nextPostInc(); |
2721 | 0 | if (i+neededIndex > ut->a) { |
2722 | 0 | break; |
2723 | 0 | } |
2724 | 0 | } |
2725 | 0 | } |
2726 | 0 |
|
2727 | 0 | // We have a buffer with the data we need. |
2728 | 0 | // Set it up as the current chunk, if it wasn't already. |
2729 | 0 | if (needChunkSetup) { |
2730 | 0 | ut->chunkContents = buf; |
2731 | 0 | ut->chunkLength = CIBufSize; |
2732 | 0 | ut->chunkNativeStart = neededIndex; |
2733 | 0 | ut->chunkNativeLimit = neededIndex + CIBufSize; |
2734 | 0 | if (ut->chunkNativeLimit > ut->a) { |
2735 | 0 | ut->chunkNativeLimit = ut->a; |
2736 | 0 | ut->chunkLength = (int32_t)(ut->chunkNativeLimit)-(int32_t)(ut->chunkNativeStart); |
2737 | 0 | } |
2738 | 0 | ut->nativeIndexingLimit = ut->chunkLength; |
2739 | 0 | U_ASSERT(ut->chunkOffset>=0 && ut->chunkOffset<=CIBufSize); |
2740 | 0 | } |
2741 | 0 | ut->chunkOffset = clippedIndex - (int32_t)ut->chunkNativeStart; |
2742 | 0 | UBool success = (forward? ut->chunkOffset<ut->chunkLength : ut->chunkOffset>0); |
2743 | 0 | return success; |
2744 | 0 | } |
2745 | | |
2746 | | static UText * U_CALLCONV |
2747 | 0 | charIterTextClone(UText *dest, const UText *src, UBool deep, UErrorCode * status) { |
2748 | 0 | if (U_FAILURE(*status)) { |
2749 | 0 | return NULL; |
2750 | 0 | } |
2751 | 0 | |
2752 | 0 | if (deep) { |
2753 | 0 | // There is no CharacterIterator API for cloning the underlying text storage. |
2754 | 0 | *status = U_UNSUPPORTED_ERROR; |
2755 | 0 | return NULL; |
2756 | 0 | } else { |
2757 | 0 | CharacterIterator *srcCI =(CharacterIterator *)src->context; |
2758 | 0 | srcCI = srcCI->clone(); |
2759 | 0 | dest = utext_openCharacterIterator(dest, srcCI, status); |
2760 | 0 | if (U_FAILURE(*status)) { |
2761 | 0 | return dest; |
2762 | 0 | } |
2763 | 0 | // cast off const on getNativeIndex. |
2764 | 0 | // For CharacterIterator based UTexts, this is safe, the operation is const. |
2765 | 0 | int64_t ix = utext_getNativeIndex((UText *)src); |
2766 | 0 | utext_setNativeIndex(dest, ix); |
2767 | 0 | dest->r = srcCI; // flags that this UText owns the CharacterIterator |
2768 | 0 | } |
2769 | 0 | return dest; |
2770 | 0 | } |
2771 | | |
2772 | | static int32_t U_CALLCONV |
2773 | | charIterTextExtract(UText *ut, |
2774 | | int64_t start, int64_t limit, |
2775 | | UChar *dest, int32_t destCapacity, |
2776 | | UErrorCode *status) |
2777 | 0 | { |
2778 | 0 | if(U_FAILURE(*status)) { |
2779 | 0 | return 0; |
2780 | 0 | } |
2781 | 0 | if(destCapacity<0 || (dest==NULL && destCapacity>0) || start>limit) { |
2782 | 0 | *status=U_ILLEGAL_ARGUMENT_ERROR; |
2783 | 0 | return 0; |
2784 | 0 | } |
2785 | 0 | int32_t length = (int32_t)ut->a; |
2786 | 0 | int32_t start32 = pinIndex(start, length); |
2787 | 0 | int32_t limit32 = pinIndex(limit, length); |
2788 | 0 | int32_t desti = 0; |
2789 | 0 | int32_t srci; |
2790 | 0 | int32_t copyLimit; |
2791 | 0 |
|
2792 | 0 | CharacterIterator *ci = (CharacterIterator *)ut->context; |
2793 | 0 | ci->setIndex32(start32); // Moves ix to lead of surrogate pair, if needed. |
2794 | 0 | srci = ci->getIndex(); |
2795 | 0 | copyLimit = srci; |
2796 | 0 | while (srci<limit32) { |
2797 | 0 | UChar32 c = ci->next32PostInc(); |
2798 | 0 | int32_t len = U16_LENGTH(c); |
2799 | 0 | U_ASSERT(desti+len>0); /* to ensure desti+len never exceeds MAX_INT32, which must not happen logically */ |
2800 | 0 | if (desti+len <= destCapacity) { |
2801 | 0 | U16_APPEND_UNSAFE(dest, desti, c); |
2802 | 0 | copyLimit = srci+len; |
2803 | 0 | } else { |
2804 | 0 | desti += len; |
2805 | 0 | *status = U_BUFFER_OVERFLOW_ERROR; |
2806 | 0 | } |
2807 | 0 | srci += len; |
2808 | 0 | } |
2809 | 0 |
|
2810 | 0 | charIterTextAccess(ut, copyLimit, TRUE); |
2811 | 0 |
|
2812 | 0 | u_terminateUChars(dest, destCapacity, desti, status); |
2813 | 0 | return desti; |
2814 | 0 | } |
2815 | | |
2816 | | static const struct UTextFuncs charIterFuncs = |
2817 | | { |
2818 | | sizeof(UTextFuncs), |
2819 | | 0, 0, 0, // Reserved alignment padding |
2820 | | charIterTextClone, |
2821 | | charIterTextLength, |
2822 | | charIterTextAccess, |
2823 | | charIterTextExtract, |
2824 | | NULL, // Replace |
2825 | | NULL, // Copy |
2826 | | NULL, // MapOffsetToNative, |
2827 | | NULL, // MapIndexToUTF16, |
2828 | | charIterTextClose, |
2829 | | NULL, // spare 1 |
2830 | | NULL, // spare 2 |
2831 | | NULL // spare 3 |
2832 | | }; |
2833 | | U_CDECL_END |
2834 | | |
2835 | | |
2836 | | U_CAPI UText * U_EXPORT2 |
2837 | 0 | utext_openCharacterIterator(UText *ut, CharacterIterator *ci, UErrorCode *status) { |
2838 | 0 | if (U_FAILURE(*status)) { |
2839 | 0 | return NULL; |
2840 | 0 | } |
2841 | 0 | |
2842 | 0 | if (ci->startIndex() > 0) { |
2843 | 0 | // No support for CharacterIterators that do not start indexing from zero. |
2844 | 0 | *status = U_UNSUPPORTED_ERROR; |
2845 | 0 | return NULL; |
2846 | 0 | } |
2847 | 0 | |
2848 | 0 | // Extra space in UText for 2 buffers of CIBufSize UChars each. |
2849 | 0 | int32_t extraSpace = 2 * CIBufSize * sizeof(UChar); |
2850 | 0 | ut = utext_setup(ut, extraSpace, status); |
2851 | 0 | if (U_SUCCESS(*status)) { |
2852 | 0 | ut->pFuncs = &charIterFuncs; |
2853 | 0 | ut->context = ci; |
2854 | 0 | ut->providerProperties = 0; |
2855 | 0 | ut->a = ci->endIndex(); // Length of text |
2856 | 0 | ut->p = ut->pExtra; // First buffer |
2857 | 0 | ut->b = -1; // Native index of first buffer contents |
2858 | 0 | ut->q = (UChar*)ut->pExtra+CIBufSize; // Second buffer |
2859 | 0 | ut->c = -1; // Native index of second buffer contents |
2860 | 0 |
|
2861 | 0 | // Initialize current chunk contents to be empty. |
2862 | 0 | // First access will fault something in. |
2863 | 0 | // Note: The initial nativeStart and chunkOffset must sum to zero |
2864 | 0 | // so that getNativeIndex() will correctly compute to zero |
2865 | 0 | // if no call to Access() has ever been made. They can't be both |
2866 | 0 | // zero without Access() thinking that the chunk is valid. |
2867 | 0 | ut->chunkContents = (UChar *)ut->p; |
2868 | 0 | ut->chunkNativeStart = -1; |
2869 | 0 | ut->chunkOffset = 1; |
2870 | 0 | ut->chunkNativeLimit = 0; |
2871 | 0 | ut->chunkLength = 0; |
2872 | 0 | ut->nativeIndexingLimit = ut->chunkOffset; // enables native indexing |
2873 | 0 | } |
2874 | 0 | return ut; |
2875 | 0 | } |