Commit | Line | Data |
---|---|---|
a0ed51b3 LW |
1 | /* utf8.c |
2 | * | |
af3babe4 NC |
3 | * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 by Larry Wall and |
4 | * others | |
a0ed51b3 LW |
5 | * |
6 | * You may distribute under the terms of either the GNU General Public | |
7 | * License or the Artistic License, as specified in the README file. | |
8 | * | |
9 | */ | |
10 | ||
11 | /* | |
12 | * 'What a fix!' said Sam. 'That's the one place in all the lands we've ever | |
13 | * heard of that we don't want to see any closer; and that's the one place | |
14 | * we're trying to get to! And that's just where we can't get, nohow.' | |
15 | * | |
16 | * 'Well do I understand your speech,' he answered in the same language; | |
17 | * 'yet few strangers do so. Why then do you not speak in the Common Tongue, | |
18 | * as is the custom in the West, if you wish to be answered?' | |
19 | * | |
20 | * ...the travellers perceived that the floor was paved with stones of many | |
21 | * hues; branching runes and strange devices intertwined beneath their feet. | |
22 | */ | |
23 | ||
24 | #include "EXTERN.h" | |
864dbfa3 | 25 | #define PERL_IN_UTF8_C |
a0ed51b3 LW |
26 | #include "perl.h" |
27 | ||
27da23d5 JH |
28 | static const char unees[] = |
29 | "Malformed UTF-8 character (unexpected end of string)"; | |
901b21bf | 30 | |
ccfc67b7 JH |
31 | /* |
32 | =head1 Unicode Support | |
a0ed51b3 | 33 | |
166f8a29 DM |
34 | This file contains various utility functions for manipulating UTF8-encoded |
35 | strings. For the uninitiated, this is a method of representing arbitrary | |
61296642 | 36 | Unicode characters as a variable number of bytes, in such a way that |
56da48f7 DM |
37 | characters in the ASCII range are unmodified, and a zero byte never appears |
38 | within non-zero characters. | |
166f8a29 | 39 | |
b851fbc1 | 40 | =for apidoc A|U8 *|uvuni_to_utf8_flags|U8 *d|UV uv|UV flags |
eebe1485 | 41 | |
1e54db1a | 42 | Adds the UTF-8 representation of the Unicode codepoint C<uv> to the end |
89ebb4a3 | 43 | of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free |
eebe1485 | 44 | bytes available. The return value is the pointer to the byte after the |
9041c2e3 | 45 | end of the new character. In other words, |
eebe1485 | 46 | |
b851fbc1 JH |
47 | d = uvuni_to_utf8_flags(d, uv, flags); |
48 | ||
49 | or, in most cases, | |
50 | ||
9041c2e3 | 51 | d = uvuni_to_utf8(d, uv); |
eebe1485 | 52 | |
b851fbc1 JH |
53 | (which is equivalent to) |
54 | ||
55 | d = uvuni_to_utf8_flags(d, uv, 0); | |
56 | ||
eebe1485 SC |
57 | is the recommended Unicode-aware way of saying |
58 | ||
59 | *(d++) = uv; | |
60 | ||
61 | =cut | |
62 | */ | |
63 | ||
dfe13c55 | 64 | U8 * |
b851fbc1 | 65 | Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags) |
a0ed51b3 | 66 | { |
62961d2e | 67 | if (ckWARN(WARN_UTF8)) { |
b851fbc1 JH |
68 | if (UNICODE_IS_SURROGATE(uv) && |
69 | !(flags & UNICODE_ALLOW_SURROGATE)) | |
9014280d | 70 | Perl_warner(aTHX_ packWARN(WARN_UTF8), "UTF-16 surrogate 0x%04"UVxf, uv); |
b851fbc1 JH |
71 | else if ( |
72 | ((uv >= 0xFDD0 && uv <= 0xFDEF && | |
73 | !(flags & UNICODE_ALLOW_FDD0)) | |
74 | || | |
c867b360 | 75 | ((uv & 0xFFFE) == 0xFFFE && /* Either FFFE or FFFF. */ |
b851fbc1 JH |
76 | !(flags & UNICODE_ALLOW_FFFF))) && |
77 | /* UNICODE_ALLOW_SUPER includes | |
2a20b9da | 78 | * FFFEs and FFFFs beyond 0x10FFFF. */ |
b851fbc1 JH |
79 | ((uv <= PERL_UNICODE_MAX) || |
80 | !(flags & UNICODE_ALLOW_SUPER)) | |
81 | ) | |
9014280d | 82 | Perl_warner(aTHX_ packWARN(WARN_UTF8), |
507b9800 JH |
83 | "Unicode character 0x%04"UVxf" is illegal", uv); |
84 | } | |
c4d5f83a | 85 | if (UNI_IS_INVARIANT(uv)) { |
eb160463 | 86 | *d++ = (U8)UTF_TO_NATIVE(uv); |
a0ed51b3 LW |
87 | return d; |
88 | } | |
2d331972 | 89 | #if defined(EBCDIC) |
1d72bdf6 NIS |
90 | else { |
91 | STRLEN len = UNISKIP(uv); | |
92 | U8 *p = d+len-1; | |
93 | while (p > d) { | |
eb160463 | 94 | *p-- = (U8)UTF_TO_NATIVE((uv & UTF_CONTINUATION_MASK) | UTF_CONTINUATION_MARK); |
1d72bdf6 NIS |
95 | uv >>= UTF_ACCUMULATION_SHIFT; |
96 | } | |
eb160463 | 97 | *p = (U8)UTF_TO_NATIVE((uv & UTF_START_MASK(len)) | UTF_START_MARK(len)); |
1d72bdf6 NIS |
98 | return d+len; |
99 | } | |
100 | #else /* Non loop style */ | |
a0ed51b3 | 101 | if (uv < 0x800) { |
eb160463 GS |
102 | *d++ = (U8)(( uv >> 6) | 0xc0); |
103 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
104 | return d; |
105 | } | |
106 | if (uv < 0x10000) { | |
eb160463 GS |
107 | *d++ = (U8)(( uv >> 12) | 0xe0); |
108 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
109 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
110 | return d; |
111 | } | |
112 | if (uv < 0x200000) { | |
eb160463 GS |
113 | *d++ = (U8)(( uv >> 18) | 0xf0); |
114 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
115 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
116 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
117 | return d; |
118 | } | |
119 | if (uv < 0x4000000) { | |
eb160463 GS |
120 | *d++ = (U8)(( uv >> 24) | 0xf8); |
121 | *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80); | |
122 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
123 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
124 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
125 | return d; |
126 | } | |
127 | if (uv < 0x80000000) { | |
eb160463 GS |
128 | *d++ = (U8)(( uv >> 30) | 0xfc); |
129 | *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80); | |
130 | *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80); | |
131 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
132 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
133 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
134 | return d; |
135 | } | |
6b8eaf93 | 136 | #ifdef HAS_QUAD |
d7578b48 | 137 | if (uv < UTF8_QUAD_MAX) |
a0ed51b3 LW |
138 | #endif |
139 | { | |
eb160463 GS |
140 | *d++ = 0xfe; /* Can't match U+FEFF! */ |
141 | *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80); | |
142 | *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80); | |
143 | *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80); | |
144 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
145 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
146 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
147 | return d; |
148 | } | |
6b8eaf93 | 149 | #ifdef HAS_QUAD |
a0ed51b3 | 150 | { |
eb160463 GS |
151 | *d++ = 0xff; /* Can't match U+FFFE! */ |
152 | *d++ = 0x80; /* 6 Reserved bits */ | |
153 | *d++ = (U8)(((uv >> 60) & 0x0f) | 0x80); /* 2 Reserved bits */ | |
154 | *d++ = (U8)(((uv >> 54) & 0x3f) | 0x80); | |
155 | *d++ = (U8)(((uv >> 48) & 0x3f) | 0x80); | |
156 | *d++ = (U8)(((uv >> 42) & 0x3f) | 0x80); | |
157 | *d++ = (U8)(((uv >> 36) & 0x3f) | 0x80); | |
158 | *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80); | |
159 | *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80); | |
160 | *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80); | |
161 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
162 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
163 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
164 | return d; |
165 | } | |
166 | #endif | |
1d72bdf6 | 167 | #endif /* Loop style */ |
a0ed51b3 | 168 | } |
9041c2e3 | 169 | |
646ca15d JH |
170 | /* |
171 | ||
172 | Tests if some arbitrary number of bytes begins in a valid UTF-8 | |
173 | character. Note that an INVARIANT (i.e. ASCII) character is a valid | |
174 | UTF-8 character. The actual number of bytes in the UTF-8 character | |
175 | will be returned if it is valid, otherwise 0. | |
176 | ||
177 | This is the "slow" version as opposed to the "fast" version which is | |
178 | the "unrolled" IS_UTF8_CHAR(). E.g. for t/uni/class.t the speed | |
179 | difference is a factor of 2 to 3. For lengths (UTF8SKIP(s)) of four | |
180 | or less you should use the IS_UTF8_CHAR(), for lengths of five or more | |
181 | you should use the _slow(). In practice this means that the _slow() | |
182 | will be used very rarely, since the maximum Unicode code point (as of | |
183 | Unicode 4.1) is U+10FFFF, which encodes in UTF-8 to four bytes. Only | |
184 | the "Perl extended UTF-8" (the infamous 'v-strings') will encode into | |
185 | five bytes or more. | |
186 | ||
187 | =cut */ | |
c053b435 | 188 | STATIC STRLEN |
646ca15d JH |
189 | S_is_utf8_char_slow(pTHX_ const U8 *s, const STRLEN len) |
190 | { | |
191 | U8 u = *s; | |
192 | STRLEN slen; | |
193 | UV uv, ouv; | |
194 | ||
195 | if (UTF8_IS_INVARIANT(u)) | |
196 | return 1; | |
197 | ||
198 | if (!UTF8_IS_START(u)) | |
199 | return 0; | |
200 | ||
201 | if (len < 2 || !UTF8_IS_CONTINUATION(s[1])) | |
202 | return 0; | |
203 | ||
204 | slen = len - 1; | |
205 | s++; | |
77263263 TS |
206 | #ifdef EBCDIC |
207 | u = NATIVE_TO_UTF(u); | |
208 | #endif | |
646ca15d JH |
209 | u &= UTF_START_MASK(len); |
210 | uv = u; | |
211 | ouv = uv; | |
212 | while (slen--) { | |
213 | if (!UTF8_IS_CONTINUATION(*s)) | |
214 | return 0; | |
215 | uv = UTF8_ACCUMULATE(uv, *s); | |
216 | if (uv < ouv) | |
217 | return 0; | |
218 | ouv = uv; | |
219 | s++; | |
220 | } | |
221 | ||
222 | if ((STRLEN)UNISKIP(uv) < len) | |
223 | return 0; | |
224 | ||
225 | return len; | |
226 | } | |
9041c2e3 NIS |
227 | |
228 | /* | |
7fc63493 | 229 | =for apidoc A|STRLEN|is_utf8_char|const U8 *s |
eebe1485 | 230 | |
5da9da9e | 231 | Tests if some arbitrary number of bytes begins in a valid UTF-8 |
82686b01 JH |
232 | character. Note that an INVARIANT (i.e. ASCII) character is a valid |
233 | UTF-8 character. The actual number of bytes in the UTF-8 character | |
234 | will be returned if it is valid, otherwise 0. | |
9041c2e3 | 235 | |
82686b01 | 236 | =cut */ |
067a85ef | 237 | STRLEN |
7fc63493 | 238 | Perl_is_utf8_char(pTHX_ const U8 *s) |
386d01d6 | 239 | { |
44f8325f | 240 | const STRLEN len = UTF8SKIP(s); |
3b0fc154 | 241 | #ifdef IS_UTF8_CHAR |
768c67ee | 242 | if (IS_UTF8_CHAR_FAST(len)) |
3b0fc154 JH |
243 | return IS_UTF8_CHAR(s, len) ? len : 0; |
244 | #endif /* #ifdef IS_UTF8_CHAR */ | |
2c0c5f92 | 245 | return is_utf8_char_slow(s, len); |
386d01d6 GS |
246 | } |
247 | ||
6662521e | 248 | /* |
7fc63493 | 249 | =for apidoc A|bool|is_utf8_string|const U8 *s|STRLEN len |
6662521e | 250 | |
c9ada85f | 251 | Returns true if first C<len> bytes of the given string form a valid |
1e54db1a JH |
252 | UTF-8 string, false otherwise. Note that 'a valid UTF-8 string' does |
253 | not mean 'a string that contains code points above 0x7F encoded in UTF-8' | |
254 | because a valid ASCII string is a valid UTF-8 string. | |
6662521e | 255 | |
768c67ee JH |
256 | See also is_utf8_string_loclen() and is_utf8_string_loc(). |
257 | ||
6662521e GS |
258 | =cut |
259 | */ | |
260 | ||
8e84507e | 261 | bool |
7fc63493 | 262 | Perl_is_utf8_string(pTHX_ const U8 *s, STRLEN len) |
6662521e | 263 | { |
7fc63493 AL |
264 | const U8* x = s; |
265 | const U8* send; | |
067a85ef | 266 | |
44f8325f | 267 | if (!len) |
e1ec3a88 | 268 | len = strlen((const char *)s); |
1aa99e6b IH |
269 | send = s + len; |
270 | ||
6662521e | 271 | while (x < send) { |
a3b680e6 | 272 | STRLEN c; |
1acdb0da JH |
273 | /* Inline the easy bits of is_utf8_char() here for speed... */ |
274 | if (UTF8_IS_INVARIANT(*x)) | |
275 | c = 1; | |
276 | else if (!UTF8_IS_START(*x)) | |
768c67ee | 277 | goto out; |
1acdb0da JH |
278 | else { |
279 | /* ... and call is_utf8_char() only if really needed. */ | |
646ca15d JH |
280 | #ifdef IS_UTF8_CHAR |
281 | c = UTF8SKIP(x); | |
768c67ee JH |
282 | if (IS_UTF8_CHAR_FAST(c)) { |
283 | if (!IS_UTF8_CHAR(x, c)) | |
284 | goto out; | |
285 | } else if (!is_utf8_char_slow(x, c)) | |
286 | goto out; | |
646ca15d JH |
287 | #else |
288 | c = is_utf8_char(x); | |
289 | #endif /* #ifdef IS_UTF8_CHAR */ | |
1acdb0da | 290 | if (!c) |
768c67ee | 291 | goto out; |
1acdb0da | 292 | } |
6662521e | 293 | x += c; |
6662521e | 294 | } |
768c67ee JH |
295 | |
296 | out: | |
60006e79 JH |
297 | if (x != send) |
298 | return FALSE; | |
067a85ef A |
299 | |
300 | return TRUE; | |
6662521e GS |
301 | } |
302 | ||
67e989fb | 303 | /* |
814fafa7 NC |
304 | Implemented as a macro in utf8.h |
305 | ||
306 | =for apidoc A|bool|is_utf8_string_loc|const U8 *s|STRLEN len|const U8 **ep | |
307 | ||
308 | Like is_utf8_string() but stores the location of the failure (in the | |
309 | case of "utf8ness failure") or the location s+len (in the case of | |
310 | "utf8ness success") in the C<ep>. | |
311 | ||
312 | See also is_utf8_string_loclen() and is_utf8_string(). | |
313 | ||
768c67ee | 314 | =for apidoc A|bool|is_utf8_string_loclen|const U8 *s|STRLEN len|const U8 **ep|const STRLEN *el |
81cd54e3 | 315 | |
e3e4599f | 316 | Like is_utf8_string() but stores the location of the failure (in the |
768c67ee JH |
317 | case of "utf8ness failure") or the location s+len (in the case of |
318 | "utf8ness success") in the C<ep>, and the number of UTF-8 | |
319 | encoded characters in the C<el>. | |
320 | ||
321 | See also is_utf8_string_loc() and is_utf8_string(). | |
81cd54e3 JH |
322 | |
323 | =cut | |
324 | */ | |
325 | ||
326 | bool | |
768c67ee | 327 | Perl_is_utf8_string_loclen(pTHX_ const U8 *s, STRLEN len, const U8 **ep, STRLEN *el) |
81cd54e3 | 328 | { |
7fc63493 AL |
329 | const U8* x = s; |
330 | const U8* send; | |
81cd54e3 JH |
331 | STRLEN c; |
332 | ||
44f8325f | 333 | if (!len) |
e1ec3a88 | 334 | len = strlen((const char *)s); |
81cd54e3 | 335 | send = s + len; |
768c67ee JH |
336 | if (el) |
337 | *el = 0; | |
81cd54e3 JH |
338 | |
339 | while (x < send) { | |
340 | /* Inline the easy bits of is_utf8_char() here for speed... */ | |
341 | if (UTF8_IS_INVARIANT(*x)) | |
768c67ee JH |
342 | c = 1; |
343 | else if (!UTF8_IS_START(*x)) | |
344 | goto out; | |
81cd54e3 | 345 | else { |
768c67ee JH |
346 | /* ... and call is_utf8_char() only if really needed. */ |
347 | #ifdef IS_UTF8_CHAR | |
348 | c = UTF8SKIP(x); | |
349 | if (IS_UTF8_CHAR_FAST(c)) { | |
350 | if (!IS_UTF8_CHAR(x, c)) | |
351 | c = 0; | |
352 | } else | |
353 | c = is_utf8_char_slow(x, c); | |
354 | #else | |
355 | c = is_utf8_char(x); | |
356 | #endif /* #ifdef IS_UTF8_CHAR */ | |
357 | if (!c) | |
358 | goto out; | |
81cd54e3 | 359 | } |
768c67ee JH |
360 | x += c; |
361 | if (el) | |
362 | (*el)++; | |
81cd54e3 | 363 | } |
768c67ee JH |
364 | |
365 | out: | |
366 | if (ep) | |
367 | *ep = x; | |
368 | if (x != send) | |
81cd54e3 | 369 | return FALSE; |
81cd54e3 JH |
370 | |
371 | return TRUE; | |
372 | } | |
373 | ||
374 | /* | |
768c67ee | 375 | |
7fc63493 | 376 | =for apidoc A|UV|utf8n_to_uvuni|const U8 *s|STRLEN curlen|STRLEN *retlen|U32 flags |
67e989fb | 377 | |
9041c2e3 NIS |
378 | Bottom level UTF-8 decode routine. |
379 | Returns the unicode code point value of the first character in the string C<s> | |
1e54db1a | 380 | which is assumed to be in UTF-8 encoding and no longer than C<curlen>; |
7df053ec | 381 | C<retlen> will be set to the length, in bytes, of that character. |
67e989fb | 382 | |
1e54db1a | 383 | If C<s> does not point to a well-formed UTF-8 character, the behaviour |
dcad2880 JH |
384 | is dependent on the value of C<flags>: if it contains UTF8_CHECK_ONLY, |
385 | it is assumed that the caller will raise a warning, and this function | |
28d3d195 JH |
386 | will silently just set C<retlen> to C<-1> and return zero. If the |
387 | C<flags> does not contain UTF8_CHECK_ONLY, warnings about | |
388 | malformations will be given, C<retlen> will be set to the expected | |
389 | length of the UTF-8 character in bytes, and zero will be returned. | |
390 | ||
391 | The C<flags> can also contain various flags to allow deviations from | |
392 | the strict UTF-8 encoding (see F<utf8.h>). | |
67e989fb | 393 | |
9041c2e3 NIS |
394 | Most code should use utf8_to_uvchr() rather than call this directly. |
395 | ||
37607a96 PK |
396 | =cut |
397 | */ | |
67e989fb | 398 | |
a0ed51b3 | 399 | UV |
7fc63493 | 400 | Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags) |
a0ed51b3 | 401 | { |
7fc63493 | 402 | const U8 *s0 = s; |
9c5ffd7c | 403 | UV uv = *s, ouv = 0; |
ba210ebe | 404 | STRLEN len = 1; |
7fc63493 AL |
405 | const bool dowarn = ckWARN_d(WARN_UTF8); |
406 | const UV startbyte = *s; | |
ba210ebe | 407 | STRLEN expectlen = 0; |
a0dbb045 JH |
408 | U32 warning = 0; |
409 | ||
410 | /* This list is a superset of the UTF8_ALLOW_XXX. */ | |
411 | ||
412 | #define UTF8_WARN_EMPTY 1 | |
413 | #define UTF8_WARN_CONTINUATION 2 | |
414 | #define UTF8_WARN_NON_CONTINUATION 3 | |
415 | #define UTF8_WARN_FE_FF 4 | |
416 | #define UTF8_WARN_SHORT 5 | |
417 | #define UTF8_WARN_OVERFLOW 6 | |
418 | #define UTF8_WARN_SURROGATE 7 | |
c867b360 JH |
419 | #define UTF8_WARN_LONG 8 |
420 | #define UTF8_WARN_FFFF 9 /* Also FFFE. */ | |
a0dbb045 JH |
421 | |
422 | if (curlen == 0 && | |
423 | !(flags & UTF8_ALLOW_EMPTY)) { | |
424 | warning = UTF8_WARN_EMPTY; | |
0c443dc2 JH |
425 | goto malformed; |
426 | } | |
427 | ||
1d72bdf6 | 428 | if (UTF8_IS_INVARIANT(uv)) { |
a0ed51b3 LW |
429 | if (retlen) |
430 | *retlen = 1; | |
c4d5f83a | 431 | return (UV) (NATIVE_TO_UTF(*s)); |
a0ed51b3 | 432 | } |
67e989fb | 433 | |
421a8bf2 | 434 | if (UTF8_IS_CONTINUATION(uv) && |
fcc8fcf6 | 435 | !(flags & UTF8_ALLOW_CONTINUATION)) { |
a0dbb045 | 436 | warning = UTF8_WARN_CONTINUATION; |
ba210ebe JH |
437 | goto malformed; |
438 | } | |
439 | ||
421a8bf2 | 440 | if (UTF8_IS_START(uv) && curlen > 1 && !UTF8_IS_CONTINUATION(s[1]) && |
fcc8fcf6 | 441 | !(flags & UTF8_ALLOW_NON_CONTINUATION)) { |
a0dbb045 | 442 | warning = UTF8_WARN_NON_CONTINUATION; |
ba210ebe JH |
443 | goto malformed; |
444 | } | |
9041c2e3 | 445 | |
1d72bdf6 | 446 | #ifdef EBCDIC |
75383841 | 447 | uv = NATIVE_TO_UTF(uv); |
1d72bdf6 | 448 | #else |
fcc8fcf6 JH |
449 | if ((uv == 0xfe || uv == 0xff) && |
450 | !(flags & UTF8_ALLOW_FE_FF)) { | |
a0dbb045 | 451 | warning = UTF8_WARN_FE_FF; |
ba210ebe | 452 | goto malformed; |
a0ed51b3 | 453 | } |
1d72bdf6 NIS |
454 | #endif |
455 | ||
ba210ebe JH |
456 | if (!(uv & 0x20)) { len = 2; uv &= 0x1f; } |
457 | else if (!(uv & 0x10)) { len = 3; uv &= 0x0f; } | |
458 | else if (!(uv & 0x08)) { len = 4; uv &= 0x07; } | |
459 | else if (!(uv & 0x04)) { len = 5; uv &= 0x03; } | |
1d72bdf6 NIS |
460 | #ifdef EBCDIC |
461 | else if (!(uv & 0x02)) { len = 6; uv &= 0x01; } | |
462 | else { len = 7; uv &= 0x01; } | |
463 | #else | |
ba210ebe JH |
464 | else if (!(uv & 0x02)) { len = 6; uv &= 0x01; } |
465 | else if (!(uv & 0x01)) { len = 7; uv = 0; } | |
1d72bdf6 NIS |
466 | else { len = 13; uv = 0; } /* whoa! */ |
467 | #endif | |
468 | ||
a0ed51b3 LW |
469 | if (retlen) |
470 | *retlen = len; | |
9041c2e3 | 471 | |
ba210ebe JH |
472 | expectlen = len; |
473 | ||
fcc8fcf6 JH |
474 | if ((curlen < expectlen) && |
475 | !(flags & UTF8_ALLOW_SHORT)) { | |
a0dbb045 | 476 | warning = UTF8_WARN_SHORT; |
ba210ebe JH |
477 | goto malformed; |
478 | } | |
479 | ||
480 | len--; | |
a0ed51b3 | 481 | s++; |
ba210ebe JH |
482 | ouv = uv; |
483 | ||
a0ed51b3 | 484 | while (len--) { |
421a8bf2 JH |
485 | if (!UTF8_IS_CONTINUATION(*s) && |
486 | !(flags & UTF8_ALLOW_NON_CONTINUATION)) { | |
a0dbb045 JH |
487 | s--; |
488 | warning = UTF8_WARN_NON_CONTINUATION; | |
ba210ebe | 489 | goto malformed; |
a0ed51b3 LW |
490 | } |
491 | else | |
8850bf83 | 492 | uv = UTF8_ACCUMULATE(uv, *s); |
a0dbb045 JH |
493 | if (!(uv > ouv)) { |
494 | /* These cannot be allowed. */ | |
495 | if (uv == ouv) { | |
75dbc644 | 496 | if (expectlen != 13 && !(flags & UTF8_ALLOW_LONG)) { |
a0dbb045 JH |
497 | warning = UTF8_WARN_LONG; |
498 | goto malformed; | |
499 | } | |
500 | } | |
501 | else { /* uv < ouv */ | |
502 | /* This cannot be allowed. */ | |
503 | warning = UTF8_WARN_OVERFLOW; | |
504 | goto malformed; | |
505 | } | |
ba210ebe JH |
506 | } |
507 | s++; | |
508 | ouv = uv; | |
509 | } | |
510 | ||
421a8bf2 | 511 | if (UNICODE_IS_SURROGATE(uv) && |
fcc8fcf6 | 512 | !(flags & UTF8_ALLOW_SURROGATE)) { |
a0dbb045 | 513 | warning = UTF8_WARN_SURROGATE; |
ba210ebe | 514 | goto malformed; |
eb160463 | 515 | } else if ((expectlen > (STRLEN)UNISKIP(uv)) && |
fcc8fcf6 | 516 | !(flags & UTF8_ALLOW_LONG)) { |
a0dbb045 | 517 | warning = UTF8_WARN_LONG; |
ba210ebe | 518 | goto malformed; |
421a8bf2 | 519 | } else if (UNICODE_IS_ILLEGAL(uv) && |
a9917092 | 520 | !(flags & UTF8_ALLOW_FFFF)) { |
a0dbb045 | 521 | warning = UTF8_WARN_FFFF; |
a9917092 | 522 | goto malformed; |
a0ed51b3 | 523 | } |
ba210ebe | 524 | |
a0ed51b3 | 525 | return uv; |
ba210ebe JH |
526 | |
527 | malformed: | |
528 | ||
fcc8fcf6 | 529 | if (flags & UTF8_CHECK_ONLY) { |
ba210ebe | 530 | if (retlen) |
cc366d4b | 531 | *retlen = -1; |
ba210ebe JH |
532 | return 0; |
533 | } | |
534 | ||
a0dbb045 | 535 | if (dowarn) { |
44f8325f | 536 | SV* const sv = sv_2mortal(newSVpv("Malformed UTF-8 character ", 0)); |
a0dbb045 JH |
537 | |
538 | switch (warning) { | |
539 | case 0: /* Intentionally empty. */ break; | |
540 | case UTF8_WARN_EMPTY: | |
54667de8 | 541 | Perl_sv_catpv(aTHX_ sv, "(empty string)"); |
a0dbb045 JH |
542 | break; |
543 | case UTF8_WARN_CONTINUATION: | |
097fb8e2 | 544 | Perl_sv_catpvf(aTHX_ sv, "(unexpected continuation byte 0x%02"UVxf", with no preceding start byte)", uv); |
a0dbb045 JH |
545 | break; |
546 | case UTF8_WARN_NON_CONTINUATION: | |
097fb8e2 JH |
547 | if (s == s0) |
548 | Perl_sv_catpvf(aTHX_ sv, "(unexpected non-continuation byte 0x%02"UVxf", immediately after start byte 0x%02"UVxf")", | |
549 | (UV)s[1], startbyte); | |
551405c4 AL |
550 | else { |
551 | const int len = (int)(s-s0); | |
097fb8e2 | 552 | Perl_sv_catpvf(aTHX_ sv, "(unexpected non-continuation byte 0x%02"UVxf", %d byte%s after start byte 0x%02"UVxf", expected %d bytes)", |
551405c4 AL |
553 | (UV)s[1], len, len > 1 ? "s" : "", startbyte, (int)expectlen); |
554 | } | |
555 | ||
a0dbb045 JH |
556 | break; |
557 | case UTF8_WARN_FE_FF: | |
558 | Perl_sv_catpvf(aTHX_ sv, "(byte 0x%02"UVxf")", uv); | |
559 | break; | |
560 | case UTF8_WARN_SHORT: | |
097fb8e2 | 561 | Perl_sv_catpvf(aTHX_ sv, "(%d byte%s, need %d, after start byte 0x%02"UVxf")", |
5d7488b2 | 562 | (int)curlen, curlen == 1 ? "" : "s", (int)expectlen, startbyte); |
b31f83c2 | 563 | expectlen = curlen; /* distance for caller to skip */ |
a0dbb045 JH |
564 | break; |
565 | case UTF8_WARN_OVERFLOW: | |
097fb8e2 JH |
566 | Perl_sv_catpvf(aTHX_ sv, "(overflow at 0x%"UVxf", byte 0x%02x, after start byte 0x%02"UVxf")", |
567 | ouv, *s, startbyte); | |
a0dbb045 JH |
568 | break; |
569 | case UTF8_WARN_SURROGATE: | |
570 | Perl_sv_catpvf(aTHX_ sv, "(UTF-16 surrogate 0x%04"UVxf")", uv); | |
571 | break; | |
a0dbb045 | 572 | case UTF8_WARN_LONG: |
097fb8e2 | 573 | Perl_sv_catpvf(aTHX_ sv, "(%d byte%s, need %d, after start byte 0x%02"UVxf")", |
5d7488b2 | 574 | (int)expectlen, expectlen == 1 ? "": "s", UNISKIP(uv), startbyte); |
a0dbb045 JH |
575 | break; |
576 | case UTF8_WARN_FFFF: | |
577 | Perl_sv_catpvf(aTHX_ sv, "(character 0x%04"UVxf")", uv); | |
578 | break; | |
579 | default: | |
54667de8 | 580 | Perl_sv_catpv(aTHX_ sv, "(unknown reason)"); |
a0dbb045 JH |
581 | break; |
582 | } | |
583 | ||
584 | if (warning) { | |
44f8325f | 585 | const char * const s = SvPVX_const(sv); |
a0dbb045 JH |
586 | |
587 | if (PL_op) | |
9014280d | 588 | Perl_warner(aTHX_ packWARN(WARN_UTF8), |
53e06cf0 | 589 | "%s in %s", s, OP_DESC(PL_op)); |
a0dbb045 | 590 | else |
9014280d | 591 | Perl_warner(aTHX_ packWARN(WARN_UTF8), "%s", s); |
a0dbb045 JH |
592 | } |
593 | } | |
594 | ||
ba210ebe | 595 | if (retlen) |
28d3d195 | 596 | *retlen = expectlen ? expectlen : len; |
ba210ebe | 597 | |
28d3d195 | 598 | return 0; |
a0ed51b3 LW |
599 | } |
600 | ||
8e84507e | 601 | /* |
7fc63493 | 602 | =for apidoc A|UV|utf8_to_uvchr|const U8 *s|STRLEN *retlen |
9041c2e3 NIS |
603 | |
604 | Returns the native character value of the first character in the string C<s> | |
1e54db1a | 605 | which is assumed to be in UTF-8 encoding; C<retlen> will be set to the |
9041c2e3 NIS |
606 | length, in bytes, of that character. |
607 | ||
1e54db1a | 608 | If C<s> does not point to a well-formed UTF-8 character, zero is |
9041c2e3 NIS |
609 | returned and retlen is set, if possible, to -1. |
610 | ||
611 | =cut | |
612 | */ | |
613 | ||
614 | UV | |
7fc63493 | 615 | Perl_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen) |
9041c2e3 | 616 | { |
89ebb4a3 | 617 | return Perl_utf8n_to_uvchr(aTHX_ s, UTF8_MAXBYTES, retlen, |
872c91ae | 618 | ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY); |
9041c2e3 NIS |
619 | } |
620 | ||
621 | /* | |
7fc63493 | 622 | =for apidoc A|UV|utf8_to_uvuni|const U8 *s|STRLEN *retlen |
9041c2e3 NIS |
623 | |
624 | Returns the Unicode code point of the first character in the string C<s> | |
1e54db1a | 625 | which is assumed to be in UTF-8 encoding; C<retlen> will be set to the |
9041c2e3 NIS |
626 | length, in bytes, of that character. |
627 | ||
628 | This function should only be used when returned UV is considered | |
629 | an index into the Unicode semantic tables (e.g. swashes). | |
630 | ||
1e54db1a | 631 | If C<s> does not point to a well-formed UTF-8 character, zero is |
ba210ebe | 632 | returned and retlen is set, if possible, to -1. |
8e84507e NIS |
633 | |
634 | =cut | |
635 | */ | |
636 | ||
637 | UV | |
7fc63493 | 638 | Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen) |
8e84507e | 639 | { |
9041c2e3 | 640 | /* Call the low level routine asking for checks */ |
89ebb4a3 | 641 | return Perl_utf8n_to_uvuni(aTHX_ s, UTF8_MAXBYTES, retlen, |
872c91ae | 642 | ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY); |
8e84507e NIS |
643 | } |
644 | ||
b76347f2 | 645 | /* |
35a4481c | 646 | =for apidoc A|STRLEN|utf8_length|const U8 *s|const U8 *e |
b76347f2 JH |
647 | |
648 | Return the length of the UTF-8 char encoded string C<s> in characters. | |
02eb7b47 JH |
649 | Stops at C<e> (inclusive). If C<e E<lt> s> or if the scan would end |
650 | up past C<e>, croaks. | |
b76347f2 JH |
651 | |
652 | =cut | |
653 | */ | |
654 | ||
655 | STRLEN | |
35a4481c | 656 | Perl_utf8_length(pTHX_ const U8 *s, const U8 *e) |
b76347f2 JH |
657 | { |
658 | STRLEN len = 0; | |
659 | ||
8850bf83 JH |
660 | /* Note: cannot use UTF8_IS_...() too eagerly here since e.g. |
661 | * the bitops (especially ~) can create illegal UTF-8. | |
662 | * In other words: in Perl UTF-8 is not just for Unicode. */ | |
663 | ||
a3b680e6 AL |
664 | if (e < s) |
665 | goto warn_and_return; | |
b76347f2 | 666 | while (s < e) { |
4373e329 | 667 | const U8 t = UTF8SKIP(s); |
901b21bf | 668 | if (e - s < t) { |
a3b680e6 | 669 | warn_and_return: |
901b21bf JH |
670 | if (ckWARN_d(WARN_UTF8)) { |
671 | if (PL_op) | |
672 | Perl_warner(aTHX_ packWARN(WARN_UTF8), | |
a3b680e6 | 673 | "%s in %s", unees, OP_DESC(PL_op)); |
901b21bf JH |
674 | else |
675 | Perl_warner(aTHX_ packWARN(WARN_UTF8), unees); | |
676 | } | |
677 | return len; | |
678 | } | |
b76347f2 JH |
679 | s += t; |
680 | len++; | |
681 | } | |
682 | ||
683 | return len; | |
684 | } | |
685 | ||
b06226ff | 686 | /* |
35a4481c | 687 | =for apidoc A|IV|utf8_distance|const U8 *a|const U8 *b |
b06226ff | 688 | |
1e54db1a | 689 | Returns the number of UTF-8 characters between the UTF-8 pointers C<a> |
b06226ff JH |
690 | and C<b>. |
691 | ||
692 | WARNING: use only if you *know* that the pointers point inside the | |
693 | same UTF-8 buffer. | |
694 | ||
37607a96 PK |
695 | =cut |
696 | */ | |
a0ed51b3 | 697 | |
02eb7b47 | 698 | IV |
35a4481c | 699 | Perl_utf8_distance(pTHX_ const U8 *a, const U8 *b) |
a0ed51b3 | 700 | { |
02eb7b47 JH |
701 | IV off = 0; |
702 | ||
8850bf83 JH |
703 | /* Note: cannot use UTF8_IS_...() too eagerly here since e.g. |
704 | * the bitops (especially ~) can create illegal UTF-8. | |
705 | * In other words: in Perl UTF-8 is not just for Unicode. */ | |
706 | ||
a0ed51b3 LW |
707 | if (a < b) { |
708 | while (a < b) { | |
35a4481c | 709 | const U8 c = UTF8SKIP(a); |
a3b680e6 AL |
710 | if (b - a < c) |
711 | goto warn_and_return; | |
02eb7b47 | 712 | a += c; |
a0ed51b3 LW |
713 | off--; |
714 | } | |
715 | } | |
716 | else { | |
717 | while (b < a) { | |
4373e329 | 718 | const U8 c = UTF8SKIP(b); |
02eb7b47 | 719 | |
901b21bf | 720 | if (a - b < c) { |
a3b680e6 | 721 | warn_and_return: |
901b21bf JH |
722 | if (ckWARN_d(WARN_UTF8)) { |
723 | if (PL_op) | |
724 | Perl_warner(aTHX_ packWARN(WARN_UTF8), | |
725 | "%s in %s", unees, OP_DESC(PL_op)); | |
726 | else | |
727 | Perl_warner(aTHX_ packWARN(WARN_UTF8), unees); | |
728 | } | |
729 | return off; | |
730 | } | |
02eb7b47 | 731 | b += c; |
a0ed51b3 LW |
732 | off++; |
733 | } | |
734 | } | |
02eb7b47 | 735 | |
a0ed51b3 LW |
736 | return off; |
737 | } | |
738 | ||
b06226ff | 739 | /* |
37607a96 | 740 | =for apidoc A|U8 *|utf8_hop|U8 *s|I32 off |
b06226ff | 741 | |
8850bf83 JH |
742 | Return the UTF-8 pointer C<s> displaced by C<off> characters, either |
743 | forward or backward. | |
b06226ff JH |
744 | |
745 | WARNING: do not use the following unless you *know* C<off> is within | |
8850bf83 JH |
746 | the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned |
747 | on the first byte of character or just after the last byte of a character. | |
b06226ff | 748 | |
37607a96 PK |
749 | =cut |
750 | */ | |
a0ed51b3 LW |
751 | |
752 | U8 * | |
4373e329 | 753 | Perl_utf8_hop(pTHX_ const U8 *s, I32 off) |
a0ed51b3 | 754 | { |
8850bf83 JH |
755 | /* Note: cannot use UTF8_IS_...() too eagerly here since e.g |
756 | * the bitops (especially ~) can create illegal UTF-8. | |
757 | * In other words: in Perl UTF-8 is not just for Unicode. */ | |
758 | ||
a0ed51b3 LW |
759 | if (off >= 0) { |
760 | while (off--) | |
761 | s += UTF8SKIP(s); | |
762 | } | |
763 | else { | |
764 | while (off++) { | |
765 | s--; | |
8850bf83 JH |
766 | while (UTF8_IS_CONTINUATION(*s)) |
767 | s--; | |
a0ed51b3 LW |
768 | } |
769 | } | |
4373e329 | 770 | return (U8 *)s; |
a0ed51b3 LW |
771 | } |
772 | ||
6940069f | 773 | /* |
eebe1485 | 774 | =for apidoc A|U8 *|utf8_to_bytes|U8 *s|STRLEN *len |
6940069f | 775 | |
1e54db1a | 776 | Converts a string C<s> of length C<len> from UTF-8 into byte encoding. |
246fae53 MG |
777 | Unlike C<bytes_to_utf8>, this over-writes the original string, and |
778 | updates len to contain the new length. | |
67e989fb | 779 | Returns zero on failure, setting C<len> to -1. |
6940069f GS |
780 | |
781 | =cut | |
782 | */ | |
783 | ||
784 | U8 * | |
37607a96 | 785 | Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len) |
6940069f | 786 | { |
6940069f GS |
787 | U8 *send; |
788 | U8 *d; | |
dcad2880 | 789 | U8 *save = s; |
246fae53 | 790 | |
1e54db1a | 791 | /* ensure valid UTF-8 and chars < 256 before updating string */ |
dcad2880 JH |
792 | for (send = s + *len; s < send; ) { |
793 | U8 c = *s++; | |
794 | ||
1d72bdf6 NIS |
795 | if (!UTF8_IS_INVARIANT(c) && |
796 | (!UTF8_IS_DOWNGRADEABLE_START(c) || (s >= send) | |
797 | || !(c = *s++) || !UTF8_IS_CONTINUATION(c))) { | |
dcad2880 JH |
798 | *len = -1; |
799 | return 0; | |
800 | } | |
246fae53 | 801 | } |
dcad2880 JH |
802 | |
803 | d = s = save; | |
6940069f | 804 | while (s < send) { |
ed646e6e | 805 | STRLEN ulen; |
9041c2e3 | 806 | *d++ = (U8)utf8_to_uvchr(s, &ulen); |
ed646e6e | 807 | s += ulen; |
6940069f GS |
808 | } |
809 | *d = '\0'; | |
246fae53 | 810 | *len = d - save; |
6940069f GS |
811 | return save; |
812 | } | |
813 | ||
814 | /* | |
e1ec3a88 | 815 | =for apidoc A|U8 *|bytes_from_utf8|const U8 *s|STRLEN *len|bool *is_utf8 |
f9a63242 | 816 | |
1e54db1a | 817 | Converts a string C<s> of length C<len> from UTF-8 into byte encoding. |
35a4481c | 818 | Unlike C<utf8_to_bytes> but like C<bytes_to_utf8>, returns a pointer to |
ef9edfd0 JH |
819 | the newly-created string, and updates C<len> to contain the new |
820 | length. Returns the original string if no conversion occurs, C<len> | |
821 | is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to | |
822 | 0 if C<s> is converted or contains all 7bit characters. | |
f9a63242 | 823 | |
37607a96 PK |
824 | =cut |
825 | */ | |
f9a63242 JH |
826 | |
827 | U8 * | |
e1ec3a88 | 828 | Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8) |
f9a63242 | 829 | { |
f9a63242 | 830 | U8 *d; |
e1ec3a88 AL |
831 | const U8 *start = s; |
832 | const U8 *send; | |
f9a63242 JH |
833 | I32 count = 0; |
834 | ||
835 | if (!*is_utf8) | |
73d840c0 | 836 | return (U8 *)start; |
f9a63242 | 837 | |
1e54db1a | 838 | /* ensure valid UTF-8 and chars < 256 before converting string */ |
f9a63242 | 839 | for (send = s + *len; s < send;) { |
e1ec3a88 | 840 | U8 c = *s++; |
1d72bdf6 | 841 | if (!UTF8_IS_INVARIANT(c)) { |
db42d148 NIS |
842 | if (UTF8_IS_DOWNGRADEABLE_START(c) && s < send && |
843 | (c = *s++) && UTF8_IS_CONTINUATION(c)) | |
844 | count++; | |
845 | else | |
73d840c0 | 846 | return (U8 *)start; |
db42d148 | 847 | } |
f9a63242 JH |
848 | } |
849 | ||
850 | *is_utf8 = 0; | |
851 | ||
a02a5408 | 852 | Newxz(d, (*len) - count + 1, U8); |
ef9edfd0 | 853 | s = start; start = d; |
f9a63242 JH |
854 | while (s < send) { |
855 | U8 c = *s++; | |
c4d5f83a NIS |
856 | if (!UTF8_IS_INVARIANT(c)) { |
857 | /* Then it is two-byte encoded */ | |
858 | c = UTF8_ACCUMULATE(NATIVE_TO_UTF(c), *s++); | |
859 | c = ASCII_TO_NATIVE(c); | |
860 | } | |
861 | *d++ = c; | |
f9a63242 JH |
862 | } |
863 | *d = '\0'; | |
864 | *len = d - start; | |
73d840c0 | 865 | return (U8 *)start; |
f9a63242 JH |
866 | } |
867 | ||
868 | /* | |
35a4481c | 869 | =for apidoc A|U8 *|bytes_to_utf8|const U8 *s|STRLEN *len |
6940069f | 870 | |
1e54db1a | 871 | Converts a string C<s> of length C<len> from ASCII into UTF-8 encoding. |
6662521e GS |
872 | Returns a pointer to the newly-created string, and sets C<len> to |
873 | reflect the new length. | |
6940069f | 874 | |
1e54db1a | 875 | If you want to convert to UTF-8 from other encodings than ASCII, |
c9ada85f JH |
876 | see sv_recode_to_utf8(). |
877 | ||
497711e7 | 878 | =cut |
6940069f GS |
879 | */ |
880 | ||
881 | U8* | |
35a4481c | 882 | Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len) |
6940069f | 883 | { |
35a4481c | 884 | const U8 * const send = s + (*len); |
6940069f GS |
885 | U8 *d; |
886 | U8 *dst; | |
6940069f | 887 | |
a02a5408 | 888 | Newxz(d, (*len) * 2 + 1, U8); |
6940069f GS |
889 | dst = d; |
890 | ||
891 | while (s < send) { | |
35a4481c | 892 | const UV uv = NATIVE_TO_ASCII(*s++); |
c4d5f83a | 893 | if (UNI_IS_INVARIANT(uv)) |
eb160463 | 894 | *d++ = (U8)UTF_TO_NATIVE(uv); |
6940069f | 895 | else { |
eb160463 GS |
896 | *d++ = (U8)UTF8_EIGHT_BIT_HI(uv); |
897 | *d++ = (U8)UTF8_EIGHT_BIT_LO(uv); | |
6940069f GS |
898 | } |
899 | } | |
900 | *d = '\0'; | |
6662521e | 901 | *len = d-dst; |
6940069f GS |
902 | return dst; |
903 | } | |
904 | ||
a0ed51b3 | 905 | /* |
dea0fc0b | 906 | * Convert native (big-endian) or reversed (little-endian) UTF-16 to UTF-8. |
a0ed51b3 LW |
907 | * |
908 | * Destination must be pre-extended to 3/2 source. Do not use in-place. | |
909 | * We optimize for native, for obvious reasons. */ | |
910 | ||
911 | U8* | |
dea0fc0b | 912 | Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen) |
a0ed51b3 | 913 | { |
dea0fc0b JH |
914 | U8* pend; |
915 | U8* dstart = d; | |
916 | ||
1de9afcd RGS |
917 | if (bytelen == 1 && p[0] == 0) { /* Be understanding. */ |
918 | d[0] = 0; | |
919 | *newlen = 1; | |
920 | return d; | |
921 | } | |
922 | ||
dea0fc0b | 923 | if (bytelen & 1) |
014ead4b | 924 | Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen %"UVf, (UV)bytelen); |
dea0fc0b JH |
925 | |
926 | pend = p + bytelen; | |
927 | ||
a0ed51b3 | 928 | while (p < pend) { |
dea0fc0b JH |
929 | UV uv = (p[0] << 8) + p[1]; /* UTF-16BE */ |
930 | p += 2; | |
a0ed51b3 | 931 | if (uv < 0x80) { |
eb160463 | 932 | *d++ = (U8)uv; |
a0ed51b3 LW |
933 | continue; |
934 | } | |
935 | if (uv < 0x800) { | |
eb160463 GS |
936 | *d++ = (U8)(( uv >> 6) | 0xc0); |
937 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
938 | continue; |
939 | } | |
940 | if (uv >= 0xd800 && uv < 0xdbff) { /* surrogates */ | |
30f84f9e TD |
941 | UV low = (p[0] << 8) + p[1]; |
942 | p += 2; | |
dea0fc0b JH |
943 | if (low < 0xdc00 || low >= 0xdfff) |
944 | Perl_croak(aTHX_ "Malformed UTF-16 surrogate"); | |
a0ed51b3 LW |
945 | uv = ((uv - 0xd800) << 10) + (low - 0xdc00) + 0x10000; |
946 | } | |
947 | if (uv < 0x10000) { | |
eb160463 GS |
948 | *d++ = (U8)(( uv >> 12) | 0xe0); |
949 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
950 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
951 | continue; |
952 | } | |
953 | else { | |
eb160463 GS |
954 | *d++ = (U8)(( uv >> 18) | 0xf0); |
955 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
956 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
957 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
958 | continue; |
959 | } | |
960 | } | |
dea0fc0b | 961 | *newlen = d - dstart; |
a0ed51b3 LW |
962 | return d; |
963 | } | |
964 | ||
965 | /* Note: this one is slightly destructive of the source. */ | |
966 | ||
967 | U8* | |
dea0fc0b | 968 | Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen) |
a0ed51b3 LW |
969 | { |
970 | U8* s = (U8*)p; | |
971 | U8* send = s + bytelen; | |
972 | while (s < send) { | |
973 | U8 tmp = s[0]; | |
974 | s[0] = s[1]; | |
975 | s[1] = tmp; | |
976 | s += 2; | |
977 | } | |
dea0fc0b | 978 | return utf16_to_utf8(p, d, bytelen, newlen); |
a0ed51b3 LW |
979 | } |
980 | ||
981 | /* for now these are all defined (inefficiently) in terms of the utf8 versions */ | |
982 | ||
983 | bool | |
84afefe6 | 984 | Perl_is_uni_alnum(pTHX_ UV c) |
a0ed51b3 | 985 | { |
89ebb4a3 | 986 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 987 | uvchr_to_utf8(tmpbuf, c); |
a0ed51b3 LW |
988 | return is_utf8_alnum(tmpbuf); |
989 | } | |
990 | ||
991 | bool | |
84afefe6 | 992 | Perl_is_uni_alnumc(pTHX_ UV c) |
b8c5462f | 993 | { |
89ebb4a3 | 994 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 995 | uvchr_to_utf8(tmpbuf, c); |
b8c5462f JH |
996 | return is_utf8_alnumc(tmpbuf); |
997 | } | |
998 | ||
999 | bool | |
84afefe6 | 1000 | Perl_is_uni_idfirst(pTHX_ UV c) |
a0ed51b3 | 1001 | { |
89ebb4a3 | 1002 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1003 | uvchr_to_utf8(tmpbuf, c); |
a0ed51b3 LW |
1004 | return is_utf8_idfirst(tmpbuf); |
1005 | } | |
1006 | ||
1007 | bool | |
84afefe6 | 1008 | Perl_is_uni_alpha(pTHX_ UV c) |
a0ed51b3 | 1009 | { |
89ebb4a3 | 1010 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1011 | uvchr_to_utf8(tmpbuf, c); |
a0ed51b3 LW |
1012 | return is_utf8_alpha(tmpbuf); |
1013 | } | |
1014 | ||
1015 | bool | |
84afefe6 | 1016 | Perl_is_uni_ascii(pTHX_ UV c) |
4d61ec05 | 1017 | { |
89ebb4a3 | 1018 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1019 | uvchr_to_utf8(tmpbuf, c); |
4d61ec05 GS |
1020 | return is_utf8_ascii(tmpbuf); |
1021 | } | |
1022 | ||
1023 | bool | |
84afefe6 | 1024 | Perl_is_uni_space(pTHX_ UV c) |
a0ed51b3 | 1025 | { |
89ebb4a3 | 1026 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1027 | uvchr_to_utf8(tmpbuf, c); |
a0ed51b3 LW |
1028 | return is_utf8_space(tmpbuf); |
1029 | } | |
1030 | ||
1031 | bool | |
84afefe6 | 1032 | Perl_is_uni_digit(pTHX_ UV c) |
a0ed51b3 | 1033 | { |
89ebb4a3 | 1034 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1035 | uvchr_to_utf8(tmpbuf, c); |
a0ed51b3 LW |
1036 | return is_utf8_digit(tmpbuf); |
1037 | } | |
1038 | ||
1039 | bool | |
84afefe6 | 1040 | Perl_is_uni_upper(pTHX_ UV c) |
a0ed51b3 | 1041 | { |
89ebb4a3 | 1042 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1043 | uvchr_to_utf8(tmpbuf, c); |
a0ed51b3 LW |
1044 | return is_utf8_upper(tmpbuf); |
1045 | } | |
1046 | ||
1047 | bool | |
84afefe6 | 1048 | Perl_is_uni_lower(pTHX_ UV c) |
a0ed51b3 | 1049 | { |
89ebb4a3 | 1050 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1051 | uvchr_to_utf8(tmpbuf, c); |
a0ed51b3 LW |
1052 | return is_utf8_lower(tmpbuf); |
1053 | } | |
1054 | ||
1055 | bool | |
84afefe6 | 1056 | Perl_is_uni_cntrl(pTHX_ UV c) |
b8c5462f | 1057 | { |
89ebb4a3 | 1058 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1059 | uvchr_to_utf8(tmpbuf, c); |
b8c5462f JH |
1060 | return is_utf8_cntrl(tmpbuf); |
1061 | } | |
1062 | ||
1063 | bool | |
84afefe6 | 1064 | Perl_is_uni_graph(pTHX_ UV c) |
b8c5462f | 1065 | { |
89ebb4a3 | 1066 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1067 | uvchr_to_utf8(tmpbuf, c); |
b8c5462f JH |
1068 | return is_utf8_graph(tmpbuf); |
1069 | } | |
1070 | ||
1071 | bool | |
84afefe6 | 1072 | Perl_is_uni_print(pTHX_ UV c) |
a0ed51b3 | 1073 | { |
89ebb4a3 | 1074 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1075 | uvchr_to_utf8(tmpbuf, c); |
a0ed51b3 LW |
1076 | return is_utf8_print(tmpbuf); |
1077 | } | |
1078 | ||
b8c5462f | 1079 | bool |
84afefe6 | 1080 | Perl_is_uni_punct(pTHX_ UV c) |
b8c5462f | 1081 | { |
89ebb4a3 | 1082 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1083 | uvchr_to_utf8(tmpbuf, c); |
b8c5462f JH |
1084 | return is_utf8_punct(tmpbuf); |
1085 | } | |
1086 | ||
4d61ec05 | 1087 | bool |
84afefe6 | 1088 | Perl_is_uni_xdigit(pTHX_ UV c) |
4d61ec05 | 1089 | { |
89ebb4a3 | 1090 | U8 tmpbuf[UTF8_MAXBYTES_CASE+1]; |
230880c1 | 1091 | uvchr_to_utf8(tmpbuf, c); |
4d61ec05 GS |
1092 | return is_utf8_xdigit(tmpbuf); |
1093 | } | |
1094 | ||
84afefe6 JH |
1095 | UV |
1096 | Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp) | |
a0ed51b3 | 1097 | { |
0ebc6274 JH |
1098 | uvchr_to_utf8(p, c); |
1099 | return to_utf8_upper(p, p, lenp); | |
a0ed51b3 LW |
1100 | } |
1101 | ||
84afefe6 JH |
1102 | UV |
1103 | Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp) | |
a0ed51b3 | 1104 | { |
0ebc6274 JH |
1105 | uvchr_to_utf8(p, c); |
1106 | return to_utf8_title(p, p, lenp); | |
a0ed51b3 LW |
1107 | } |
1108 | ||
84afefe6 JH |
1109 | UV |
1110 | Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp) | |
a0ed51b3 | 1111 | { |
0ebc6274 JH |
1112 | uvchr_to_utf8(p, c); |
1113 | return to_utf8_lower(p, p, lenp); | |
a0ed51b3 LW |
1114 | } |
1115 | ||
84afefe6 JH |
1116 | UV |
1117 | Perl_to_uni_fold(pTHX_ UV c, U8* p, STRLEN *lenp) | |
1118 | { | |
0ebc6274 JH |
1119 | uvchr_to_utf8(p, c); |
1120 | return to_utf8_fold(p, p, lenp); | |
84afefe6 JH |
1121 | } |
1122 | ||
a0ed51b3 LW |
1123 | /* for now these all assume no locale info available for Unicode > 255 */ |
1124 | ||
1125 | bool | |
84afefe6 | 1126 | Perl_is_uni_alnum_lc(pTHX_ UV c) |
a0ed51b3 LW |
1127 | { |
1128 | return is_uni_alnum(c); /* XXX no locale support yet */ | |
1129 | } | |
1130 | ||
1131 | bool | |
84afefe6 | 1132 | Perl_is_uni_alnumc_lc(pTHX_ UV c) |
b8c5462f JH |
1133 | { |
1134 | return is_uni_alnumc(c); /* XXX no locale support yet */ | |
1135 | } | |
1136 | ||
1137 | bool | |
84afefe6 | 1138 | Perl_is_uni_idfirst_lc(pTHX_ UV c) |
a0ed51b3 LW |
1139 | { |
1140 | return is_uni_idfirst(c); /* XXX no locale support yet */ | |
1141 | } | |
1142 | ||
1143 | bool | |
84afefe6 | 1144 | Perl_is_uni_alpha_lc(pTHX_ UV c) |
a0ed51b3 LW |
1145 | { |
1146 | return is_uni_alpha(c); /* XXX no locale support yet */ | |
1147 | } | |
1148 | ||
1149 | bool | |
84afefe6 | 1150 | Perl_is_uni_ascii_lc(pTHX_ UV c) |
4d61ec05 GS |
1151 | { |
1152 | return is_uni_ascii(c); /* XXX no locale support yet */ | |
1153 | } | |
1154 | ||
1155 | bool | |
84afefe6 | 1156 | Perl_is_uni_space_lc(pTHX_ UV c) |
a0ed51b3 LW |
1157 | { |
1158 | return is_uni_space(c); /* XXX no locale support yet */ | |
1159 | } | |
1160 | ||
1161 | bool | |
84afefe6 | 1162 | Perl_is_uni_digit_lc(pTHX_ UV c) |
a0ed51b3 LW |
1163 | { |
1164 | return is_uni_digit(c); /* XXX no locale support yet */ | |
1165 | } | |
1166 | ||
1167 | bool | |
84afefe6 | 1168 | Perl_is_uni_upper_lc(pTHX_ UV c) |
a0ed51b3 LW |
1169 | { |
1170 | return is_uni_upper(c); /* XXX no locale support yet */ | |
1171 | } | |
1172 | ||
1173 | bool | |
84afefe6 | 1174 | Perl_is_uni_lower_lc(pTHX_ UV c) |
a0ed51b3 LW |
1175 | { |
1176 | return is_uni_lower(c); /* XXX no locale support yet */ | |
1177 | } | |
1178 | ||
1179 | bool | |
84afefe6 | 1180 | Perl_is_uni_cntrl_lc(pTHX_ UV c) |
b8c5462f JH |
1181 | { |
1182 | return is_uni_cntrl(c); /* XXX no locale support yet */ | |
1183 | } | |
1184 | ||
1185 | bool | |
84afefe6 | 1186 | Perl_is_uni_graph_lc(pTHX_ UV c) |
b8c5462f JH |
1187 | { |
1188 | return is_uni_graph(c); /* XXX no locale support yet */ | |
1189 | } | |
1190 | ||
1191 | bool | |
84afefe6 | 1192 | Perl_is_uni_print_lc(pTHX_ UV c) |
a0ed51b3 LW |
1193 | { |
1194 | return is_uni_print(c); /* XXX no locale support yet */ | |
1195 | } | |
1196 | ||
b8c5462f | 1197 | bool |
84afefe6 | 1198 | Perl_is_uni_punct_lc(pTHX_ UV c) |
b8c5462f JH |
1199 | { |
1200 | return is_uni_punct(c); /* XXX no locale support yet */ | |
1201 | } | |
1202 | ||
4d61ec05 | 1203 | bool |
84afefe6 | 1204 | Perl_is_uni_xdigit_lc(pTHX_ UV c) |
4d61ec05 GS |
1205 | { |
1206 | return is_uni_xdigit(c); /* XXX no locale support yet */ | |
1207 | } | |
1208 | ||
b7ac61fa JH |
1209 | U32 |
1210 | Perl_to_uni_upper_lc(pTHX_ U32 c) | |
1211 | { | |
ee099d14 JH |
1212 | /* XXX returns only the first character -- do not use XXX */ |
1213 | /* XXX no locale support yet */ | |
1214 | STRLEN len; | |
89ebb4a3 | 1215 | U8 tmpbuf[UTF8_MAXBYTES_CASE+1]; |
ee099d14 | 1216 | return (U32)to_uni_upper(c, tmpbuf, &len); |
b7ac61fa JH |
1217 | } |
1218 | ||
1219 | U32 | |
1220 | Perl_to_uni_title_lc(pTHX_ U32 c) | |
1221 | { | |
ee099d14 JH |
1222 | /* XXX returns only the first character XXX -- do not use XXX */ |
1223 | /* XXX no locale support yet */ | |
1224 | STRLEN len; | |
89ebb4a3 | 1225 | U8 tmpbuf[UTF8_MAXBYTES_CASE+1]; |
ee099d14 | 1226 | return (U32)to_uni_title(c, tmpbuf, &len); |
b7ac61fa JH |
1227 | } |
1228 | ||
1229 | U32 | |
1230 | Perl_to_uni_lower_lc(pTHX_ U32 c) | |
1231 | { | |
ee099d14 JH |
1232 | /* XXX returns only the first character -- do not use XXX */ |
1233 | /* XXX no locale support yet */ | |
1234 | STRLEN len; | |
89ebb4a3 | 1235 | U8 tmpbuf[UTF8_MAXBYTES_CASE+1]; |
ee099d14 | 1236 | return (U32)to_uni_lower(c, tmpbuf, &len); |
b7ac61fa JH |
1237 | } |
1238 | ||
a0ed51b3 | 1239 | bool |
7fc63493 | 1240 | Perl_is_utf8_alnum(pTHX_ const U8 *p) |
a0ed51b3 | 1241 | { |
386d01d6 GS |
1242 | if (!is_utf8_char(p)) |
1243 | return FALSE; | |
a0ed51b3 | 1244 | if (!PL_utf8_alnum) |
289d4f09 ML |
1245 | /* NOTE: "IsWord", not "IsAlnum", since Alnum is a true |
1246 | * descendant of isalnum(3), in other words, it doesn't | |
1247 | * contain the '_'. --jhi */ | |
1248 | PL_utf8_alnum = swash_init("utf8", "IsWord", &PL_sv_undef, 0, 0); | |
eb160463 | 1249 | return swash_fetch(PL_utf8_alnum, p, TRUE) != 0; |
a0ed51b3 LW |
1250 | /* return *p == '_' || is_utf8_alpha(p) || is_utf8_digit(p); */ |
1251 | #ifdef SURPRISINGLY_SLOWER /* probably because alpha is usually true */ | |
1252 | if (!PL_utf8_alnum) | |
1253 | PL_utf8_alnum = swash_init("utf8", "", | |
1254 | sv_2mortal(newSVpv("+utf8::IsAlpha\n+utf8::IsDigit\n005F\n",0)), 0, 0); | |
eb160463 | 1255 | return swash_fetch(PL_utf8_alnum, p, TRUE) != 0; |
a0ed51b3 LW |
1256 | #endif |
1257 | } | |
1258 | ||
1259 | bool | |
7fc63493 | 1260 | Perl_is_utf8_alnumc(pTHX_ const U8 *p) |
b8c5462f | 1261 | { |
386d01d6 GS |
1262 | if (!is_utf8_char(p)) |
1263 | return FALSE; | |
b8c5462f JH |
1264 | if (!PL_utf8_alnum) |
1265 | PL_utf8_alnum = swash_init("utf8", "IsAlnumC", &PL_sv_undef, 0, 0); | |
eb160463 | 1266 | return swash_fetch(PL_utf8_alnum, p, TRUE) != 0; |
b8c5462f JH |
1267 | /* return is_utf8_alpha(p) || is_utf8_digit(p); */ |
1268 | #ifdef SURPRISINGLY_SLOWER /* probably because alpha is usually true */ | |
1269 | if (!PL_utf8_alnum) | |
1270 | PL_utf8_alnum = swash_init("utf8", "", | |
1271 | sv_2mortal(newSVpv("+utf8::IsAlpha\n+utf8::IsDigit\n005F\n",0)), 0, 0); | |
eb160463 | 1272 | return swash_fetch(PL_utf8_alnum, p, TRUE) != 0; |
b8c5462f JH |
1273 | #endif |
1274 | } | |
1275 | ||
1276 | bool | |
7fc63493 | 1277 | Perl_is_utf8_idfirst(pTHX_ const U8 *p) /* The naming is historical. */ |
a0ed51b3 | 1278 | { |
82686b01 JH |
1279 | if (*p == '_') |
1280 | return TRUE; | |
1281 | if (!is_utf8_char(p)) | |
1282 | return FALSE; | |
1283 | if (!PL_utf8_idstart) /* is_utf8_idstart would be more logical. */ | |
1284 | PL_utf8_idstart = swash_init("utf8", "IdStart", &PL_sv_undef, 0, 0); | |
eb160463 | 1285 | return swash_fetch(PL_utf8_idstart, p, TRUE) != 0; |
82686b01 JH |
1286 | } |
1287 | ||
1288 | bool | |
7fc63493 | 1289 | Perl_is_utf8_idcont(pTHX_ const U8 *p) |
82686b01 JH |
1290 | { |
1291 | if (*p == '_') | |
1292 | return TRUE; | |
1293 | if (!is_utf8_char(p)) | |
1294 | return FALSE; | |
1295 | if (!PL_utf8_idcont) | |
1296 | PL_utf8_idcont = swash_init("utf8", "IdContinue", &PL_sv_undef, 0, 0); | |
eb160463 | 1297 | return swash_fetch(PL_utf8_idcont, p, TRUE) != 0; |
a0ed51b3 LW |
1298 | } |
1299 | ||
1300 | bool | |
7fc63493 | 1301 | Perl_is_utf8_alpha(pTHX_ const U8 *p) |
a0ed51b3 | 1302 | { |
386d01d6 GS |
1303 | if (!is_utf8_char(p)) |
1304 | return FALSE; | |
a0ed51b3 | 1305 | if (!PL_utf8_alpha) |
e24b16f9 | 1306 | PL_utf8_alpha = swash_init("utf8", "IsAlpha", &PL_sv_undef, 0, 0); |
eb160463 | 1307 | return swash_fetch(PL_utf8_alpha, p, TRUE) != 0; |
a0ed51b3 LW |
1308 | } |
1309 | ||
1310 | bool | |
7fc63493 | 1311 | Perl_is_utf8_ascii(pTHX_ const U8 *p) |
b8c5462f | 1312 | { |
386d01d6 GS |
1313 | if (!is_utf8_char(p)) |
1314 | return FALSE; | |
b8c5462f JH |
1315 | if (!PL_utf8_ascii) |
1316 | PL_utf8_ascii = swash_init("utf8", "IsAscii", &PL_sv_undef, 0, 0); | |
eb160463 | 1317 | return swash_fetch(PL_utf8_ascii, p, TRUE) != 0; |
b8c5462f JH |
1318 | } |
1319 | ||
1320 | bool | |
7fc63493 | 1321 | Perl_is_utf8_space(pTHX_ const U8 *p) |
a0ed51b3 | 1322 | { |
386d01d6 GS |
1323 | if (!is_utf8_char(p)) |
1324 | return FALSE; | |
a0ed51b3 | 1325 | if (!PL_utf8_space) |
3bec3564 | 1326 | PL_utf8_space = swash_init("utf8", "IsSpacePerl", &PL_sv_undef, 0, 0); |
eb160463 | 1327 | return swash_fetch(PL_utf8_space, p, TRUE) != 0; |
a0ed51b3 LW |
1328 | } |
1329 | ||
1330 | bool | |
7fc63493 | 1331 | Perl_is_utf8_digit(pTHX_ const U8 *p) |
a0ed51b3 | 1332 | { |
386d01d6 GS |
1333 | if (!is_utf8_char(p)) |
1334 | return FALSE; | |
a0ed51b3 | 1335 | if (!PL_utf8_digit) |
e24b16f9 | 1336 | PL_utf8_digit = swash_init("utf8", "IsDigit", &PL_sv_undef, 0, 0); |
eb160463 | 1337 | return swash_fetch(PL_utf8_digit, p, TRUE) != 0; |
a0ed51b3 LW |
1338 | } |
1339 | ||
1340 | bool | |
7fc63493 | 1341 | Perl_is_utf8_upper(pTHX_ const U8 *p) |
a0ed51b3 | 1342 | { |
386d01d6 GS |
1343 | if (!is_utf8_char(p)) |
1344 | return FALSE; | |
a0ed51b3 | 1345 | if (!PL_utf8_upper) |
c65e4d19 | 1346 | PL_utf8_upper = swash_init("utf8", "IsUppercase", &PL_sv_undef, 0, 0); |
eb160463 | 1347 | return swash_fetch(PL_utf8_upper, p, TRUE) != 0; |
a0ed51b3 LW |
1348 | } |
1349 | ||
1350 | bool | |
7fc63493 | 1351 | Perl_is_utf8_lower(pTHX_ const U8 *p) |
a0ed51b3 | 1352 | { |
386d01d6 GS |
1353 | if (!is_utf8_char(p)) |
1354 | return FALSE; | |
a0ed51b3 | 1355 | if (!PL_utf8_lower) |
c65e4d19 | 1356 | PL_utf8_lower = swash_init("utf8", "IsLowercase", &PL_sv_undef, 0, 0); |
eb160463 | 1357 | return swash_fetch(PL_utf8_lower, p, TRUE) != 0; |
a0ed51b3 LW |
1358 | } |
1359 | ||
1360 | bool | |
7fc63493 | 1361 | Perl_is_utf8_cntrl(pTHX_ const U8 *p) |
b8c5462f | 1362 | { |
386d01d6 GS |
1363 | if (!is_utf8_char(p)) |
1364 | return FALSE; | |
b8c5462f JH |
1365 | if (!PL_utf8_cntrl) |
1366 | PL_utf8_cntrl = swash_init("utf8", "IsCntrl", &PL_sv_undef, 0, 0); | |
eb160463 | 1367 | return swash_fetch(PL_utf8_cntrl, p, TRUE) != 0; |
b8c5462f JH |
1368 | } |
1369 | ||
1370 | bool | |
7fc63493 | 1371 | Perl_is_utf8_graph(pTHX_ const U8 *p) |
b8c5462f | 1372 | { |
386d01d6 GS |
1373 | if (!is_utf8_char(p)) |
1374 | return FALSE; | |
b8c5462f JH |
1375 | if (!PL_utf8_graph) |
1376 | PL_utf8_graph = swash_init("utf8", "IsGraph", &PL_sv_undef, 0, 0); | |
eb160463 | 1377 | return swash_fetch(PL_utf8_graph, p, TRUE) != 0; |
b8c5462f JH |
1378 | } |
1379 | ||
1380 | bool | |
7fc63493 | 1381 | Perl_is_utf8_print(pTHX_ const U8 *p) |
a0ed51b3 | 1382 | { |
386d01d6 GS |
1383 | if (!is_utf8_char(p)) |
1384 | return FALSE; | |
a0ed51b3 | 1385 | if (!PL_utf8_print) |
e24b16f9 | 1386 | PL_utf8_print = swash_init("utf8", "IsPrint", &PL_sv_undef, 0, 0); |
eb160463 | 1387 | return swash_fetch(PL_utf8_print, p, TRUE) != 0; |
a0ed51b3 LW |
1388 | } |
1389 | ||
1390 | bool | |
7fc63493 | 1391 | Perl_is_utf8_punct(pTHX_ const U8 *p) |
b8c5462f | 1392 | { |
386d01d6 GS |
1393 | if (!is_utf8_char(p)) |
1394 | return FALSE; | |
b8c5462f JH |
1395 | if (!PL_utf8_punct) |
1396 | PL_utf8_punct = swash_init("utf8", "IsPunct", &PL_sv_undef, 0, 0); | |
eb160463 | 1397 | return swash_fetch(PL_utf8_punct, p, TRUE) != 0; |
b8c5462f JH |
1398 | } |
1399 | ||
1400 | bool | |
7fc63493 | 1401 | Perl_is_utf8_xdigit(pTHX_ const U8 *p) |
b8c5462f | 1402 | { |
386d01d6 GS |
1403 | if (!is_utf8_char(p)) |
1404 | return FALSE; | |
b8c5462f JH |
1405 | if (!PL_utf8_xdigit) |
1406 | PL_utf8_xdigit = swash_init("utf8", "IsXDigit", &PL_sv_undef, 0, 0); | |
eb160463 | 1407 | return swash_fetch(PL_utf8_xdigit, p, TRUE) != 0; |
b8c5462f JH |
1408 | } |
1409 | ||
1410 | bool | |
7fc63493 | 1411 | Perl_is_utf8_mark(pTHX_ const U8 *p) |
a0ed51b3 | 1412 | { |
386d01d6 GS |
1413 | if (!is_utf8_char(p)) |
1414 | return FALSE; | |
a0ed51b3 | 1415 | if (!PL_utf8_mark) |
e24b16f9 | 1416 | PL_utf8_mark = swash_init("utf8", "IsM", &PL_sv_undef, 0, 0); |
eb160463 | 1417 | return swash_fetch(PL_utf8_mark, p, TRUE) != 0; |
a0ed51b3 LW |
1418 | } |
1419 | ||
6b5c0936 JH |
1420 | /* |
1421 | =for apidoc A|UV|to_utf8_case|U8 *p|U8* ustrp|STRLEN *lenp|SV **swash|char *normal|char *special | |
1422 | ||
1423 | The "p" contains the pointer to the UTF-8 string encoding | |
1424 | the character that is being converted. | |
1425 | ||
1426 | The "ustrp" is a pointer to the character buffer to put the | |
1427 | conversion result to. The "lenp" is a pointer to the length | |
1428 | of the result. | |
1429 | ||
0134edef | 1430 | The "swashp" is a pointer to the swash to use. |
6b5c0936 | 1431 | |
0134edef JH |
1432 | Both the special and normal mappings are stored lib/unicore/To/Foo.pl, |
1433 | and loaded by SWASHGET, using lib/utf8_heavy.pl. The special (usually, | |
1434 | but not always, a multicharacter mapping), is tried first. | |
6b5c0936 | 1435 | |
0134edef JH |
1436 | The "special" is a string like "utf8::ToSpecLower", which means the |
1437 | hash %utf8::ToSpecLower. The access to the hash is through | |
1438 | Perl_to_utf8_case(). | |
6b5c0936 | 1439 | |
0134edef JH |
1440 | The "normal" is a string like "ToLower" which means the swash |
1441 | %utf8::ToLower. | |
1442 | ||
1443 | =cut */ | |
6b5c0936 | 1444 | |
2104c8d9 | 1445 | UV |
9a957fbc AL |
1446 | Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, |
1447 | SV **swashp, const char *normal, const char *special) | |
a0ed51b3 | 1448 | { |
89ebb4a3 | 1449 | U8 tmpbuf[UTF8_MAXBYTES_CASE+1]; |
0134edef | 1450 | STRLEN len = 0; |
a0ed51b3 | 1451 | |
aec46f14 | 1452 | const UV uv0 = utf8_to_uvchr(p, NULL); |
1feea2c7 JH |
1453 | /* The NATIVE_TO_UNI() and UNI_TO_NATIVE() mappings |
1454 | * are necessary in EBCDIC, they are redundant no-ops | |
1455 | * in ASCII-ish platforms, and hopefully optimized away. */ | |
f54cb97a | 1456 | const UV uv1 = NATIVE_TO_UNI(uv0); |
1feea2c7 | 1457 | uvuni_to_utf8(tmpbuf, uv1); |
0134edef JH |
1458 | |
1459 | if (!*swashp) /* load on-demand */ | |
1460 | *swashp = swash_init("utf8", normal, &PL_sv_undef, 4, 0); | |
1461 | ||
b08cf34e JH |
1462 | /* The 0xDF is the only special casing Unicode code point below 0x100. */ |
1463 | if (special && (uv1 == 0xDF || uv1 > 0xFF)) { | |
0134edef | 1464 | /* It might be "special" (sometimes, but not always, |
2a37f04d | 1465 | * a multicharacter mapping) */ |
983ffd37 | 1466 | HV *hv; |
b08cf34e JH |
1467 | SV **svp; |
1468 | ||
1469 | if ((hv = get_hv(special, FALSE)) && | |
1470 | (svp = hv_fetch(hv, (const char*)tmpbuf, UNISKIP(uv1), FALSE)) && | |
1471 | (*svp)) { | |
cfd0369c | 1472 | const char *s; |
47654450 | 1473 | |
cfd0369c | 1474 | s = SvPV_const(*svp, len); |
47654450 JH |
1475 | if (len == 1) |
1476 | len = uvuni_to_utf8(ustrp, NATIVE_TO_UNI(*(U8*)s)) - ustrp; | |
2a37f04d | 1477 | else { |
2f9475ad JH |
1478 | #ifdef EBCDIC |
1479 | /* If we have EBCDIC we need to remap the characters | |
1480 | * since any characters in the low 256 are Unicode | |
1481 | * code points, not EBCDIC. */ | |
7cda7a3d | 1482 | U8 *t = (U8*)s, *tend = t + len, *d; |
2f9475ad JH |
1483 | |
1484 | d = tmpbuf; | |
b08cf34e | 1485 | if (SvUTF8(*svp)) { |
2f9475ad JH |
1486 | STRLEN tlen = 0; |
1487 | ||
1488 | while (t < tend) { | |
1489 | UV c = utf8_to_uvchr(t, &tlen); | |
1490 | if (tlen > 0) { | |
1491 | d = uvchr_to_utf8(d, UNI_TO_NATIVE(c)); | |
1492 | t += tlen; | |
1493 | } | |
1494 | else | |
1495 | break; | |
1496 | } | |
1497 | } | |
1498 | else { | |
36fec512 JH |
1499 | while (t < tend) { |
1500 | d = uvchr_to_utf8(d, UNI_TO_NATIVE(*t)); | |
1501 | t++; | |
1502 | } | |
2f9475ad JH |
1503 | } |
1504 | len = d - tmpbuf; | |
1505 | Copy(tmpbuf, ustrp, len, U8); | |
1506 | #else | |
d2dcd0fb | 1507 | Copy(s, ustrp, len, U8); |
2f9475ad | 1508 | #endif |
29e98929 | 1509 | } |
983ffd37 | 1510 | } |
0134edef JH |
1511 | } |
1512 | ||
1513 | if (!len && *swashp) { | |
1514 | UV uv2 = swash_fetch(*swashp, tmpbuf, TRUE); | |
1515 | ||
1516 | if (uv2) { | |
1517 | /* It was "normal" (a single character mapping). */ | |
1518 | UV uv3 = UNI_TO_NATIVE(uv2); | |
1519 | ||
e9101d72 | 1520 | len = uvchr_to_utf8(ustrp, uv3) - ustrp; |
2a37f04d JH |
1521 | } |
1522 | } | |
1feea2c7 | 1523 | |
0134edef JH |
1524 | if (!len) /* Neither: just copy. */ |
1525 | len = uvchr_to_utf8(ustrp, uv0) - ustrp; | |
1526 | ||
2a37f04d JH |
1527 | if (lenp) |
1528 | *lenp = len; | |
1529 | ||
0134edef | 1530 | return len ? utf8_to_uvchr(ustrp, 0) : 0; |
a0ed51b3 LW |
1531 | } |
1532 | ||
d3e79532 | 1533 | /* |
7fc63493 | 1534 | =for apidoc A|UV|to_utf8_upper|const U8 *p|U8 *ustrp|STRLEN *lenp |
d3e79532 JH |
1535 | |
1536 | Convert the UTF-8 encoded character at p to its uppercase version and | |
1537 | store that in UTF-8 in ustrp and its length in bytes in lenp. Note | |
89ebb4a3 JH |
1538 | that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since |
1539 | the uppercase version may be longer than the original character. | |
d3e79532 JH |
1540 | |
1541 | The first character of the uppercased version is returned | |
1542 | (but note, as explained above, that there may be more.) | |
1543 | ||
1544 | =cut */ | |
1545 | ||
2104c8d9 | 1546 | UV |
7fc63493 | 1547 | Perl_to_utf8_upper(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp) |
a0ed51b3 | 1548 | { |
983ffd37 | 1549 | return Perl_to_utf8_case(aTHX_ p, ustrp, lenp, |
b4e400f9 | 1550 | &PL_utf8_toupper, "ToUpper", "utf8::ToSpecUpper"); |
983ffd37 | 1551 | } |
a0ed51b3 | 1552 | |
d3e79532 | 1553 | /* |
7fc63493 | 1554 | =for apidoc A|UV|to_utf8_title|const U8 *p|U8 *ustrp|STRLEN *lenp |
d3e79532 JH |
1555 | |
1556 | Convert the UTF-8 encoded character at p to its titlecase version and | |
1557 | store that in UTF-8 in ustrp and its length in bytes in lenp. Note | |
89ebb4a3 JH |
1558 | that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the |
1559 | titlecase version may be longer than the original character. | |
d3e79532 JH |
1560 | |
1561 | The first character of the titlecased version is returned | |
1562 | (but note, as explained above, that there may be more.) | |
1563 | ||
1564 | =cut */ | |
1565 | ||
983ffd37 | 1566 | UV |
7fc63493 | 1567 | Perl_to_utf8_title(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp) |
983ffd37 JH |
1568 | { |
1569 | return Perl_to_utf8_case(aTHX_ p, ustrp, lenp, | |
b4e400f9 | 1570 | &PL_utf8_totitle, "ToTitle", "utf8::ToSpecTitle"); |
a0ed51b3 LW |
1571 | } |
1572 | ||
d3e79532 | 1573 | /* |
7fc63493 | 1574 | =for apidoc A|UV|to_utf8_lower|const U8 *p|U8 *ustrp|STRLEN *lenp |
d3e79532 JH |
1575 | |
1576 | Convert the UTF-8 encoded character at p to its lowercase version and | |
1577 | store that in UTF-8 in ustrp and its length in bytes in lenp. Note | |
89ebb4a3 JH |
1578 | that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the |
1579 | lowercase version may be longer than the original character. | |
d3e79532 JH |
1580 | |
1581 | The first character of the lowercased version is returned | |
1582 | (but note, as explained above, that there may be more.) | |
1583 | ||
1584 | =cut */ | |
1585 | ||
2104c8d9 | 1586 | UV |
7fc63493 | 1587 | Perl_to_utf8_lower(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp) |
a0ed51b3 | 1588 | { |
983ffd37 | 1589 | return Perl_to_utf8_case(aTHX_ p, ustrp, lenp, |
b4e400f9 JH |
1590 | &PL_utf8_tolower, "ToLower", "utf8::ToSpecLower"); |
1591 | } | |
1592 | ||
d3e79532 | 1593 | /* |
7fc63493 | 1594 | =for apidoc A|UV|to_utf8_fold|const U8 *p|U8 *ustrp|STRLEN *lenp |
d3e79532 JH |
1595 | |
1596 | Convert the UTF-8 encoded character at p to its foldcase version and | |
1597 | store that in UTF-8 in ustrp and its length in bytes in lenp. Note | |
89ebb4a3 | 1598 | that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the |
d3e79532 JH |
1599 | foldcase version may be longer than the original character (up to |
1600 | three characters). | |
1601 | ||
1602 | The first character of the foldcased version is returned | |
1603 | (but note, as explained above, that there may be more.) | |
1604 | ||
1605 | =cut */ | |
1606 | ||
b4e400f9 | 1607 | UV |
7fc63493 | 1608 | Perl_to_utf8_fold(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp) |
b4e400f9 JH |
1609 | { |
1610 | return Perl_to_utf8_case(aTHX_ p, ustrp, lenp, | |
1611 | &PL_utf8_tofold, "ToFold", "utf8::ToSpecFold"); | |
a0ed51b3 LW |
1612 | } |
1613 | ||
1614 | /* a "swash" is a swatch hash */ | |
1615 | ||
1616 | SV* | |
7fc63493 | 1617 | Perl_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none) |
a0ed51b3 | 1618 | { |
27da23d5 | 1619 | dVAR; |
a0ed51b3 | 1620 | SV* retval; |
9a957fbc | 1621 | SV* const tokenbufsv = sv_newmortal(); |
8e84507e | 1622 | dSP; |
7fc63493 AL |
1623 | const size_t pkg_len = strlen(pkg); |
1624 | const size_t name_len = strlen(name); | |
aec46f14 | 1625 | HV * const stash = gv_stashpvn(pkg, pkg_len, FALSE); |
f8be5cf0 | 1626 | SV* errsv_save; |
ce3b816e | 1627 | |
96ca9f55 DM |
1628 | PUSHSTACKi(PERLSI_MAGIC); |
1629 | ENTER; | |
1630 | SAVEI32(PL_hints); | |
1631 | PL_hints = 0; | |
1632 | save_re_context(); | |
1b026014 | 1633 | if (!gv_fetchmeth(stash, "SWASHNEW", 8, -1)) { /* demand load utf8 */ |
ce3b816e | 1634 | ENTER; |
f8be5cf0 | 1635 | errsv_save = newSVsv(ERRSV); |
71bed85a NC |
1636 | Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, newSVpvn(pkg,pkg_len), |
1637 | Nullsv); | |
f8be5cf0 JH |
1638 | if (!SvTRUE(ERRSV)) |
1639 | sv_setsv(ERRSV, errsv_save); | |
1640 | SvREFCNT_dec(errsv_save); | |
ce3b816e GS |
1641 | LEAVE; |
1642 | } | |
1643 | SPAGAIN; | |
a0ed51b3 LW |
1644 | PUSHMARK(SP); |
1645 | EXTEND(SP,5); | |
71bed85a NC |
1646 | PUSHs(sv_2mortal(newSVpvn(pkg, pkg_len))); |
1647 | PUSHs(sv_2mortal(newSVpvn(name, name_len))); | |
a0ed51b3 LW |
1648 | PUSHs(listsv); |
1649 | PUSHs(sv_2mortal(newSViv(minbits))); | |
1650 | PUSHs(sv_2mortal(newSViv(none))); | |
1651 | PUTBACK; | |
923e4eb5 | 1652 | if (IN_PERL_COMPILETIME) { |
bf1fed83 | 1653 | /* XXX ought to be handled by lex_start */ |
82686b01 | 1654 | SAVEI32(PL_in_my); |
2b4bd638 | 1655 | PL_in_my = 0; |
bf1fed83 | 1656 | sv_setpv(tokenbufsv, PL_tokenbuf); |
82686b01 | 1657 | } |
f8be5cf0 | 1658 | errsv_save = newSVsv(ERRSV); |
864dbfa3 | 1659 | if (call_method("SWASHNEW", G_SCALAR)) |
8e84507e | 1660 | retval = newSVsv(*PL_stack_sp--); |
a0ed51b3 | 1661 | else |
e24b16f9 | 1662 | retval = &PL_sv_undef; |
f8be5cf0 JH |
1663 | if (!SvTRUE(ERRSV)) |
1664 | sv_setsv(ERRSV, errsv_save); | |
1665 | SvREFCNT_dec(errsv_save); | |
a0ed51b3 LW |
1666 | LEAVE; |
1667 | POPSTACK; | |
923e4eb5 | 1668 | if (IN_PERL_COMPILETIME) { |
bf1fed83 | 1669 | STRLEN len; |
aec46f14 | 1670 | const char* const pv = SvPV_const(tokenbufsv, len); |
bf1fed83 JH |
1671 | |
1672 | Copy(pv, PL_tokenbuf, len+1, char); | |
eb160463 | 1673 | PL_curcop->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK); |
a0ed51b3 | 1674 | } |
bc45ce41 JH |
1675 | if (!SvROK(retval) || SvTYPE(SvRV(retval)) != SVt_PVHV) { |
1676 | if (SvPOK(retval)) | |
35c1215d NC |
1677 | Perl_croak(aTHX_ "Can't find Unicode property definition \"%"SVf"\"", |
1678 | retval); | |
cea2e8a9 | 1679 | Perl_croak(aTHX_ "SWASHNEW didn't return an HV ref"); |
bc45ce41 | 1680 | } |
a0ed51b3 LW |
1681 | return retval; |
1682 | } | |
1683 | ||
035d37be JH |
1684 | |
1685 | /* This API is wrong for special case conversions since we may need to | |
1686 | * return several Unicode characters for a single Unicode character | |
1687 | * (see lib/unicore/SpecCase.txt) The SWASHGET in lib/utf8_heavy.pl is | |
1688 | * the lower-level routine, and it is similarly broken for returning | |
1689 | * multiple values. --jhi */ | |
a0ed51b3 | 1690 | UV |
7fc63493 | 1691 | Perl_swash_fetch(pTHX_ SV *sv, const U8 *ptr, bool do_utf8) |
a0ed51b3 | 1692 | { |
27da23d5 | 1693 | dVAR; |
aec46f14 | 1694 | HV* const hv = (HV*)SvRV(sv); |
3568d838 JH |
1695 | U32 klen; |
1696 | U32 off; | |
a0ed51b3 | 1697 | STRLEN slen; |
7d85a32c | 1698 | STRLEN needents; |
cfd0369c | 1699 | const U8 *tmps = NULL; |
a0ed51b3 LW |
1700 | U32 bit; |
1701 | SV *retval; | |
3568d838 JH |
1702 | U8 tmputf8[2]; |
1703 | UV c = NATIVE_TO_ASCII(*ptr); | |
1704 | ||
1705 | if (!do_utf8 && !UNI_IS_INVARIANT(c)) { | |
eb160463 GS |
1706 | tmputf8[0] = (U8)UTF8_EIGHT_BIT_HI(c); |
1707 | tmputf8[1] = (U8)UTF8_EIGHT_BIT_LO(c); | |
3568d838 JH |
1708 | ptr = tmputf8; |
1709 | } | |
1710 | /* Given a UTF-X encoded char 0xAA..0xYY,0xZZ | |
1711 | * then the "swatch" is a vec() for al the chars which start | |
1712 | * with 0xAA..0xYY | |
1713 | * So the key in the hash (klen) is length of encoded char -1 | |
1714 | */ | |
1715 | klen = UTF8SKIP(ptr) - 1; | |
1716 | off = ptr[klen]; | |
a0ed51b3 | 1717 | |
7d85a32c JH |
1718 | if (klen == 0) |
1719 | { | |
1720 | /* If char in invariant then swatch is for all the invariant chars | |
1e54db1a | 1721 | * In both UTF-8 and UTF-8-MOD that happens to be UTF_CONTINUATION_MARK |
7d85a32c JH |
1722 | */ |
1723 | needents = UTF_CONTINUATION_MARK; | |
1724 | off = NATIVE_TO_UTF(ptr[klen]); | |
1725 | } | |
1726 | else | |
1727 | { | |
1728 | /* If char is encoded then swatch is for the prefix */ | |
1729 | needents = (1 << UTF_ACCUMULATION_SHIFT); | |
1730 | off = NATIVE_TO_UTF(ptr[klen]) & UTF_CONTINUATION_MASK; | |
1731 | } | |
1732 | ||
a0ed51b3 LW |
1733 | /* |
1734 | * This single-entry cache saves about 1/3 of the utf8 overhead in test | |
1735 | * suite. (That is, only 7-8% overall over just a hash cache. Still, | |
1736 | * it's nothing to sniff at.) Pity we usually come through at least | |
1737 | * two function calls to get here... | |
1738 | * | |
1739 | * NB: this code assumes that swatches are never modified, once generated! | |
1740 | */ | |
1741 | ||
3568d838 | 1742 | if (hv == PL_last_swash_hv && |
a0ed51b3 | 1743 | klen == PL_last_swash_klen && |
27da23d5 | 1744 | (!klen || memEQ((char *)ptr, (char *)PL_last_swash_key, klen)) ) |
a0ed51b3 LW |
1745 | { |
1746 | tmps = PL_last_swash_tmps; | |
1747 | slen = PL_last_swash_slen; | |
1748 | } | |
1749 | else { | |
1750 | /* Try our second-level swatch cache, kept in a hash. */ | |
e1ec3a88 | 1751 | SV** svp = hv_fetch(hv, (const char*)ptr, klen, FALSE); |
a0ed51b3 LW |
1752 | |
1753 | /* If not cached, generate it via utf8::SWASHGET */ | |
cfd0369c | 1754 | if (!svp || !SvPOK(*svp) || !(tmps = (const U8*)SvPV_const(*svp, slen))) { |
a0ed51b3 | 1755 | dSP; |
2b9d42f0 NIS |
1756 | /* We use utf8n_to_uvuni() as we want an index into |
1757 | Unicode tables, not a native character number. | |
1758 | */ | |
aec46f14 | 1759 | const UV code_point = utf8n_to_uvuni(ptr, UTF8_MAXBYTES, 0, |
872c91ae JH |
1760 | ckWARN(WARN_UTF8) ? |
1761 | 0 : UTF8_ALLOW_ANY); | |
f8be5cf0 | 1762 | SV *errsv_save; |
a0ed51b3 LW |
1763 | ENTER; |
1764 | SAVETMPS; | |
1765 | save_re_context(); | |
1766 | PUSHSTACKi(PERLSI_MAGIC); | |
1767 | PUSHMARK(SP); | |
1768 | EXTEND(SP,3); | |
1769 | PUSHs((SV*)sv); | |
ffbc6a93 | 1770 | /* On EBCDIC & ~(0xA0-1) isn't a useful thing to do */ |
3568d838 JH |
1771 | PUSHs(sv_2mortal(newSViv((klen) ? |
1772 | (code_point & ~(needents - 1)) : 0))); | |
a0ed51b3 LW |
1773 | PUSHs(sv_2mortal(newSViv(needents))); |
1774 | PUTBACK; | |
f8be5cf0 | 1775 | errsv_save = newSVsv(ERRSV); |
864dbfa3 | 1776 | if (call_method("SWASHGET", G_SCALAR)) |
8e84507e | 1777 | retval = newSVsv(*PL_stack_sp--); |
a0ed51b3 | 1778 | else |
e24b16f9 | 1779 | retval = &PL_sv_undef; |
f8be5cf0 JH |
1780 | if (!SvTRUE(ERRSV)) |
1781 | sv_setsv(ERRSV, errsv_save); | |
1782 | SvREFCNT_dec(errsv_save); | |
a0ed51b3 LW |
1783 | POPSTACK; |
1784 | FREETMPS; | |
1785 | LEAVE; | |
923e4eb5 | 1786 | if (IN_PERL_COMPILETIME) |
eb160463 | 1787 | PL_curcop->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK); |
a0ed51b3 | 1788 | |
e1ec3a88 | 1789 | svp = hv_store(hv, (const char *)ptr, klen, retval, 0); |
a0ed51b3 | 1790 | |
7d85a32c | 1791 | if (!svp || !(tmps = (U8*)SvPV(*svp, slen)) || (slen << 3) < needents) |
cea2e8a9 | 1792 | Perl_croak(aTHX_ "SWASHGET didn't return result of proper length"); |
a0ed51b3 LW |
1793 | } |
1794 | ||
1795 | PL_last_swash_hv = hv; | |
1796 | PL_last_swash_klen = klen; | |
cfd0369c NC |
1797 | /* FIXME change interpvar.h? */ |
1798 | PL_last_swash_tmps = (U8 *) tmps; | |
a0ed51b3 LW |
1799 | PL_last_swash_slen = slen; |
1800 | if (klen) | |
1801 | Copy(ptr, PL_last_swash_key, klen, U8); | |
1802 | } | |
1803 | ||
9faf8d75 | 1804 | switch ((int)((slen << 3) / needents)) { |
a0ed51b3 LW |
1805 | case 1: |
1806 | bit = 1 << (off & 7); | |
1807 | off >>= 3; | |
1808 | return (tmps[off] & bit) != 0; | |
1809 | case 8: | |
1810 | return tmps[off]; | |
1811 | case 16: | |
1812 | off <<= 1; | |
1813 | return (tmps[off] << 8) + tmps[off + 1] ; | |
1814 | case 32: | |
1815 | off <<= 2; | |
1816 | return (tmps[off] << 24) + (tmps[off+1] << 16) + (tmps[off+2] << 8) + tmps[off + 3] ; | |
1817 | } | |
cea2e8a9 | 1818 | Perl_croak(aTHX_ "panic: swash_fetch"); |
a0ed51b3 LW |
1819 | return 0; |
1820 | } | |
2b9d42f0 | 1821 | |
b851fbc1 JH |
1822 | U8 * |
1823 | Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags) | |
1824 | { | |
1825 | return Perl_uvuni_to_utf8_flags(aTHX_ d, NATIVE_TO_UNI(uv), flags); | |
1826 | } | |
2b9d42f0 NIS |
1827 | |
1828 | /* | |
d2cc3551 JH |
1829 | =for apidoc A|char *|pv_uni_display|SV *dsv|U8 *spv|STRLEN len|STRLEN pvlim|UV flags |
1830 | ||
1831 | Build to the scalar dsv a displayable version of the string spv, | |
1832 | length len, the displayable version being at most pvlim bytes long | |
1833 | (if longer, the rest is truncated and "..." will be appended). | |
0a2ef054 | 1834 | |
9e55ce06 | 1835 | The flags argument can have UNI_DISPLAY_ISPRINT set to display |
00e86452 | 1836 | isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH |
0a2ef054 JH |
1837 | to display the \\[nrfta\\] as the backslashed versions (like '\n') |
1838 | (UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\). | |
1839 | UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both | |
1840 | UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on. | |
1841 | ||
d2cc3551 JH |
1842 | The pointer to the PV of the dsv is returned. |
1843 | ||
1844 | =cut */ | |
e6b2e755 | 1845 | char * |
e1ec3a88 | 1846 | Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags) |
e6b2e755 JH |
1847 | { |
1848 | int truncated = 0; | |
e1ec3a88 | 1849 | const char *s, *e; |
e6b2e755 JH |
1850 | |
1851 | sv_setpvn(dsv, "", 0); | |
e1ec3a88 | 1852 | for (s = (const char *)spv, e = s + len; s < e; s += UTF8SKIP(s)) { |
e6b2e755 | 1853 | UV u; |
a49f32c6 NC |
1854 | /* This serves double duty as a flag and a character to print after |
1855 | a \ when flags & UNI_DISPLAY_BACKSLASH is true. | |
1856 | */ | |
1857 | char ok = 0; | |
c728cb41 | 1858 | |
e6b2e755 JH |
1859 | if (pvlim && SvCUR(dsv) >= pvlim) { |
1860 | truncated++; | |
1861 | break; | |
1862 | } | |
1863 | u = utf8_to_uvchr((U8*)s, 0); | |
c728cb41 | 1864 | if (u < 256) { |
a3b680e6 | 1865 | const unsigned char c = (unsigned char)u & 0xFF; |
c728cb41 | 1866 | if (!ok && (flags & UNI_DISPLAY_BACKSLASH)) { |
a49f32c6 | 1867 | switch (c) { |
c728cb41 | 1868 | case '\n': |
a49f32c6 | 1869 | ok = 'n'; break; |
c728cb41 | 1870 | case '\r': |
a49f32c6 | 1871 | ok = 'r'; break; |
c728cb41 | 1872 | case '\t': |
a49f32c6 | 1873 | ok = 't'; break; |
c728cb41 | 1874 | case '\f': |
a49f32c6 | 1875 | ok = 'f'; break; |
c728cb41 | 1876 | case '\a': |
a49f32c6 | 1877 | ok = 'a'; break; |
c728cb41 | 1878 | case '\\': |
a49f32c6 | 1879 | ok = '\\'; break; |
c728cb41 JH |
1880 | default: break; |
1881 | } | |
a49f32c6 NC |
1882 | if (ok) { |
1883 | Perl_sv_catpvf(aTHX_ dsv, "\\%c", ok); | |
1884 | } | |
c728cb41 | 1885 | } |
00e86452 | 1886 | /* isPRINT() is the locale-blind version. */ |
a49f32c6 NC |
1887 | if (!ok && (flags & UNI_DISPLAY_ISPRINT) && isPRINT(c)) { |
1888 | Perl_sv_catpvf(aTHX_ dsv, "%c", c); | |
1889 | ok = 1; | |
0a2ef054 | 1890 | } |
c728cb41 JH |
1891 | } |
1892 | if (!ok) | |
9e55ce06 | 1893 | Perl_sv_catpvf(aTHX_ dsv, "\\x{%"UVxf"}", u); |
e6b2e755 JH |
1894 | } |
1895 | if (truncated) | |
1896 | sv_catpvn(dsv, "...", 3); | |
1897 | ||
1898 | return SvPVX(dsv); | |
1899 | } | |
2b9d42f0 | 1900 | |
d2cc3551 JH |
1901 | /* |
1902 | =for apidoc A|char *|sv_uni_display|SV *dsv|SV *ssv|STRLEN pvlim|UV flags | |
1903 | ||
1904 | Build to the scalar dsv a displayable version of the scalar sv, | |
0a2ef054 | 1905 | the displayable version being at most pvlim bytes long |
d2cc3551 | 1906 | (if longer, the rest is truncated and "..." will be appended). |
0a2ef054 JH |
1907 | |
1908 | The flags argument is as in pv_uni_display(). | |
1909 | ||
d2cc3551 JH |
1910 | The pointer to the PV of the dsv is returned. |
1911 | ||
1912 | =cut */ | |
e6b2e755 JH |
1913 | char * |
1914 | Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags) | |
1915 | { | |
cfd0369c NC |
1916 | return Perl_pv_uni_display(aTHX_ dsv, (const U8*)SvPVX_const(ssv), |
1917 | SvCUR(ssv), pvlim, flags); | |
701a277b JH |
1918 | } |
1919 | ||
d2cc3551 | 1920 | /* |
d07ddd77 | 1921 | =for apidoc A|I32|ibcmp_utf8|const char *s1|char **pe1|register UV l1|bool u1|const char *s2|char **pe2|register UV l2|bool u2 |
d2cc3551 JH |
1922 | |
1923 | Return true if the strings s1 and s2 differ case-insensitively, false | |
1924 | if not (if they are equal case-insensitively). If u1 is true, the | |
1925 | string s1 is assumed to be in UTF-8-encoded Unicode. If u2 is true, | |
d07ddd77 JH |
1926 | the string s2 is assumed to be in UTF-8-encoded Unicode. If u1 or u2 |
1927 | are false, the respective string is assumed to be in native 8-bit | |
1928 | encoding. | |
1929 | ||
1930 | If the pe1 and pe2 are non-NULL, the scanning pointers will be copied | |
1931 | in there (they will point at the beginning of the I<next> character). | |
1932 | If the pointers behind pe1 or pe2 are non-NULL, they are the end | |
1933 | pointers beyond which scanning will not continue under any | |
4cdaeff7 | 1934 | circumstances. If the byte lengths l1 and l2 are non-zero, s1+l1 and |
d07ddd77 JH |
1935 | s2+l2 will be used as goal end pointers that will also stop the scan, |
1936 | and which qualify towards defining a successful match: all the scans | |
1937 | that define an explicit length must reach their goal pointers for | |
1938 | a match to succeed). | |
d2cc3551 JH |
1939 | |
1940 | For case-insensitiveness, the "casefolding" of Unicode is used | |
1941 | instead of upper/lowercasing both the characters, see | |
1942 | http://www.unicode.org/unicode/reports/tr21/ (Case Mappings). | |
1943 | ||
1944 | =cut */ | |
701a277b | 1945 | I32 |
d07ddd77 | 1946 | Perl_ibcmp_utf8(pTHX_ const char *s1, char **pe1, register UV l1, bool u1, const char *s2, char **pe2, register UV l2, bool u2) |
332ddc25 | 1947 | { |
e1ec3a88 AL |
1948 | register const U8 *p1 = (const U8*)s1; |
1949 | register const U8 *p2 = (const U8*)s2; | |
1950 | register const U8 *f1 = 0, *f2 = 0; | |
1951 | register U8 *e1 = 0, *q1 = 0; | |
1952 | register U8 *e2 = 0, *q2 = 0; | |
d07ddd77 | 1953 | STRLEN n1 = 0, n2 = 0; |
89ebb4a3 JH |
1954 | U8 foldbuf1[UTF8_MAXBYTES_CASE+1]; |
1955 | U8 foldbuf2[UTF8_MAXBYTES_CASE+1]; | |
d7f013c8 JH |
1956 | U8 natbuf[1+1]; |
1957 | STRLEN foldlen1, foldlen2; | |
d07ddd77 | 1958 | bool match; |
332ddc25 | 1959 | |
d07ddd77 JH |
1960 | if (pe1) |
1961 | e1 = *(U8**)pe1; | |
e1ec3a88 AL |
1962 | if (e1 == 0 || (l1 && l1 < (UV)(e1 - (const U8*)s1))) |
1963 | f1 = (const U8*)s1 + l1; | |
d07ddd77 JH |
1964 | if (pe2) |
1965 | e2 = *(U8**)pe2; | |
e1ec3a88 AL |
1966 | if (e2 == 0 || (l2 && l2 < (UV)(e2 - (const U8*)s2))) |
1967 | f2 = (const U8*)s2 + l2; | |
d07ddd77 JH |
1968 | |
1969 | if ((e1 == 0 && f1 == 0) || (e2 == 0 && f2 == 0) || (f1 == 0 && f2 == 0)) | |
1970 | return 1; /* mismatch; possible infinite loop or false positive */ | |
1971 | ||
a6872d42 JH |
1972 | if (!u1 || !u2) |
1973 | natbuf[1] = 0; /* Need to terminate the buffer. */ | |
1974 | ||
d07ddd77 JH |
1975 | while ((e1 == 0 || p1 < e1) && |
1976 | (f1 == 0 || p1 < f1) && | |
1977 | (e2 == 0 || p2 < e2) && | |
1978 | (f2 == 0 || p2 < f2)) { | |
1979 | if (n1 == 0) { | |
d7f013c8 JH |
1980 | if (u1) |
1981 | to_utf8_fold(p1, foldbuf1, &foldlen1); | |
1982 | else { | |
809e8e66 | 1983 | uvuni_to_utf8(natbuf, (UV) NATIVE_TO_UNI(((UV)*p1))); |
d7f013c8 JH |
1984 | to_utf8_fold(natbuf, foldbuf1, &foldlen1); |
1985 | } | |
1986 | q1 = foldbuf1; | |
d07ddd77 | 1987 | n1 = foldlen1; |
332ddc25 | 1988 | } |
d07ddd77 | 1989 | if (n2 == 0) { |
d7f013c8 JH |
1990 | if (u2) |
1991 | to_utf8_fold(p2, foldbuf2, &foldlen2); | |
1992 | else { | |
809e8e66 | 1993 | uvuni_to_utf8(natbuf, (UV) NATIVE_TO_UNI(((UV)*p2))); |
d7f013c8 JH |
1994 | to_utf8_fold(natbuf, foldbuf2, &foldlen2); |
1995 | } | |
1996 | q2 = foldbuf2; | |
d07ddd77 | 1997 | n2 = foldlen2; |
332ddc25 | 1998 | } |
d07ddd77 JH |
1999 | while (n1 && n2) { |
2000 | if ( UTF8SKIP(q1) != UTF8SKIP(q2) || | |
2001 | (UTF8SKIP(q1) == 1 && *q1 != *q2) || | |
2002 | memNE((char*)q1, (char*)q2, UTF8SKIP(q1)) ) | |
d7f013c8 | 2003 | return 1; /* mismatch */ |
d07ddd77 | 2004 | n1 -= UTF8SKIP(q1); |
d7f013c8 | 2005 | q1 += UTF8SKIP(q1); |
d07ddd77 | 2006 | n2 -= UTF8SKIP(q2); |
d7f013c8 | 2007 | q2 += UTF8SKIP(q2); |
701a277b | 2008 | } |
d07ddd77 | 2009 | if (n1 == 0) |
d7f013c8 | 2010 | p1 += u1 ? UTF8SKIP(p1) : 1; |
d07ddd77 | 2011 | if (n2 == 0) |
d7f013c8 JH |
2012 | p2 += u2 ? UTF8SKIP(p2) : 1; |
2013 | ||
d2cc3551 | 2014 | } |
5469e704 | 2015 | |
d07ddd77 JH |
2016 | /* A match is defined by all the scans that specified |
2017 | * an explicit length reaching their final goals. */ | |
2018 | match = (f1 == 0 || p1 == f1) && (f2 == 0 || p2 == f2); | |
5469e704 JH |
2019 | |
2020 | if (match) { | |
d07ddd77 JH |
2021 | if (pe1) |
2022 | *pe1 = (char*)p1; | |
2023 | if (pe2) | |
2024 | *pe2 = (char*)p2; | |
5469e704 JH |
2025 | } |
2026 | ||
2027 | return match ? 0 : 1; /* 0 match, 1 mismatch */ | |
e6b2e755 | 2028 | } |
701a277b | 2029 | |
a49f32c6 NC |
2030 | /* |
2031 | * Local variables: | |
2032 | * c-indentation-style: bsd | |
2033 | * c-basic-offset: 4 | |
2034 | * indent-tabs-mode: t | |
2035 | * End: | |
2036 | * | |
37442d52 RGS |
2037 | * ex: set ts=8 sts=4 sw=4 noet: |
2038 | */ |