Commit | Line | Data |
---|---|---|
a0ed51b3 LW |
1 | /* utf8.c |
2 | * | |
1129b882 | 3 | * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
b94e2f88 | 4 | * by Larry Wall and 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 | /* | |
4ac71550 TC |
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 | * | |
cdad3b53 | 16 | * [p.603 of _The Lord of the Rings_, IV/I: "The Taming of Sméagol"] |
a0ed51b3 LW |
17 | * |
18 | * 'Well do I understand your speech,' he answered in the same language; | |
19 | * 'yet few strangers do so. Why then do you not speak in the Common Tongue, | |
4ac71550 | 20 | * as is the custom in the West, if you wish to be answered?' |
cdad3b53 | 21 | * --Gandalf, addressing Théoden's door wardens |
4ac71550 TC |
22 | * |
23 | * [p.508 of _The Lord of the Rings_, III/vi: "The King of the Golden Hall"] | |
a0ed51b3 LW |
24 | * |
25 | * ...the travellers perceived that the floor was paved with stones of many | |
26 | * hues; branching runes and strange devices intertwined beneath their feet. | |
4ac71550 TC |
27 | * |
28 | * [p.512 of _The Lord of the Rings_, III/vi: "The King of the Golden Hall"] | |
a0ed51b3 LW |
29 | */ |
30 | ||
31 | #include "EXTERN.h" | |
864dbfa3 | 32 | #define PERL_IN_UTF8_C |
a0ed51b3 | 33 | #include "perl.h" |
81e983c1 | 34 | #include "inline_invlist.c" |
a0ed51b3 | 35 | |
a0c21aa1 | 36 | #ifndef EBCDIC |
970ea3cb | 37 | /* Separate prototypes needed because in ASCII systems these are |
a0c21aa1 JH |
38 | * usually macros but they still are compiled as code, too. */ |
39 | PERL_CALLCONV UV Perl_utf8n_to_uvchr(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags); | |
6dd9dce9 | 40 | PERL_CALLCONV UV Perl_valid_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen); |
a0c21aa1 JH |
41 | PERL_CALLCONV U8* Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv); |
42 | #endif | |
43 | ||
27da23d5 JH |
44 | static const char unees[] = |
45 | "Malformed UTF-8 character (unexpected end of string)"; | |
901b21bf | 46 | |
48ef279e | 47 | /* |
ccfc67b7 | 48 | =head1 Unicode Support |
a0ed51b3 | 49 | |
166f8a29 DM |
50 | This file contains various utility functions for manipulating UTF8-encoded |
51 | strings. For the uninitiated, this is a method of representing arbitrary | |
61296642 | 52 | Unicode characters as a variable number of bytes, in such a way that |
56da48f7 DM |
53 | characters in the ASCII range are unmodified, and a zero byte never appears |
54 | within non-zero characters. | |
166f8a29 | 55 | |
eaf7a4d2 CS |
56 | =cut |
57 | */ | |
58 | ||
59 | /* | |
60 | =for apidoc is_ascii_string | |
61 | ||
a1433954 | 62 | Returns true if the first C<len> bytes of the string C<s> are the same whether |
970ea3cb KW |
63 | or not the string is encoded in UTF-8 (or UTF-EBCDIC on EBCDIC machines). That |
64 | is, if they are invariant. On ASCII-ish machines, only ASCII characters | |
65 | fit this definition, hence the function's name. | |
eaf7a4d2 | 66 | |
9f7e3d64 MH |
67 | If C<len> is 0, it will be calculated using C<strlen(s)>. |
68 | ||
a1433954 | 69 | See also L</is_utf8_string>(), L</is_utf8_string_loclen>(), and L</is_utf8_string_loc>(). |
eaf7a4d2 CS |
70 | |
71 | =cut | |
72 | */ | |
73 | ||
74 | bool | |
668b6d8d | 75 | Perl_is_ascii_string(const U8 *s, STRLEN len) |
eaf7a4d2 CS |
76 | { |
77 | const U8* const send = s + (len ? len : strlen((const char *)s)); | |
78 | const U8* x = s; | |
79 | ||
80 | PERL_ARGS_ASSERT_IS_ASCII_STRING; | |
eaf7a4d2 CS |
81 | |
82 | for (; x < send; ++x) { | |
83 | if (!UTF8_IS_INVARIANT(*x)) | |
84 | break; | |
85 | } | |
86 | ||
87 | return x == send; | |
88 | } | |
89 | ||
90 | /* | |
87cea99e | 91 | =for apidoc uvuni_to_utf8_flags |
eebe1485 | 92 | |
6ee84de2 KW |
93 | Adds the UTF-8 representation of the code point C<uv> to the end |
94 | of the string C<d>; C<d> should have at least C<UTF8_MAXBYTES+1> free | |
eebe1485 | 95 | bytes available. The return value is the pointer to the byte after the |
9041c2e3 | 96 | end of the new character. In other words, |
eebe1485 | 97 | |
b851fbc1 JH |
98 | d = uvuni_to_utf8_flags(d, uv, flags); |
99 | ||
100 | or, in most cases, | |
101 | ||
9041c2e3 | 102 | d = uvuni_to_utf8(d, uv); |
eebe1485 | 103 | |
b851fbc1 JH |
104 | (which is equivalent to) |
105 | ||
106 | d = uvuni_to_utf8_flags(d, uv, 0); | |
107 | ||
949cf498 | 108 | This is the recommended Unicode-aware way of saying |
eebe1485 SC |
109 | |
110 | *(d++) = uv; | |
111 | ||
949cf498 KW |
112 | This function will convert to UTF-8 (and not warn) even code points that aren't |
113 | legal Unicode or are problematic, unless C<flags> contains one or more of the | |
a1433954 KW |
114 | following flags: |
115 | ||
949cf498 KW |
116 | If C<uv> is a Unicode surrogate code point and UNICODE_WARN_SURROGATE is set, |
117 | the function will raise a warning, provided UTF8 warnings are enabled. If instead | |
118 | UNICODE_DISALLOW_SURROGATE is set, the function will fail and return NULL. | |
119 | If both flags are set, the function will both warn and return NULL. | |
120 | ||
121 | The UNICODE_WARN_NONCHAR and UNICODE_DISALLOW_NONCHAR flags correspondingly | |
122 | affect how the function handles a Unicode non-character. And, likewise for the | |
123 | UNICODE_WARN_SUPER and UNICODE_DISALLOW_SUPER flags, and code points that are | |
124 | above the Unicode maximum of 0x10FFFF. Code points above 0x7FFF_FFFF (which are | |
125 | even less portable) can be warned and/or disallowed even if other above-Unicode | |
126 | code points are accepted by the UNICODE_WARN_FE_FF and UNICODE_DISALLOW_FE_FF | |
127 | flags. | |
128 | ||
129 | And finally, the flag UNICODE_WARN_ILLEGAL_INTERCHANGE selects all four of the | |
130 | above WARN flags; and UNICODE_DISALLOW_ILLEGAL_INTERCHANGE selects all four | |
131 | DISALLOW flags. | |
132 | ||
133 | ||
eebe1485 SC |
134 | =cut |
135 | */ | |
136 | ||
dfe13c55 | 137 | U8 * |
b851fbc1 | 138 | Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags) |
a0ed51b3 | 139 | { |
7918f24d NC |
140 | PERL_ARGS_ASSERT_UVUNI_TO_UTF8_FLAGS; |
141 | ||
979f77b6 KW |
142 | /* The first problematic code point is the first surrogate */ |
143 | if (uv >= UNICODE_SURROGATE_FIRST | |
144 | && ckWARN4_d(WARN_UTF8, WARN_SURROGATE, WARN_NON_UNICODE, WARN_NONCHAR)) | |
145 | { | |
949cf498 KW |
146 | if (UNICODE_IS_SURROGATE(uv)) { |
147 | if (flags & UNICODE_WARN_SURROGATE) { | |
8457b38f | 148 | Perl_ck_warner_d(aTHX_ packWARN(WARN_SURROGATE), |
949cf498 KW |
149 | "UTF-16 surrogate U+%04"UVXf, uv); |
150 | } | |
151 | if (flags & UNICODE_DISALLOW_SURROGATE) { | |
152 | return NULL; | |
153 | } | |
154 | } | |
155 | else if (UNICODE_IS_SUPER(uv)) { | |
156 | if (flags & UNICODE_WARN_SUPER | |
157 | || (UNICODE_IS_FE_FF(uv) && (flags & UNICODE_WARN_FE_FF))) | |
158 | { | |
8457b38f | 159 | Perl_ck_warner_d(aTHX_ packWARN(WARN_NON_UNICODE), |
949cf498 KW |
160 | "Code point 0x%04"UVXf" is not Unicode, may not be portable", uv); |
161 | } | |
162 | if (flags & UNICODE_DISALLOW_SUPER | |
163 | || (UNICODE_IS_FE_FF(uv) && (flags & UNICODE_DISALLOW_FE_FF))) | |
164 | { | |
165 | return NULL; | |
166 | } | |
167 | } | |
168 | else if (UNICODE_IS_NONCHAR(uv)) { | |
169 | if (flags & UNICODE_WARN_NONCHAR) { | |
8457b38f | 170 | Perl_ck_warner_d(aTHX_ packWARN(WARN_NONCHAR), |
949cf498 KW |
171 | "Unicode non-character U+%04"UVXf" is illegal for open interchange", |
172 | uv); | |
173 | } | |
174 | if (flags & UNICODE_DISALLOW_NONCHAR) { | |
175 | return NULL; | |
176 | } | |
177 | } | |
507b9800 | 178 | } |
c4d5f83a | 179 | if (UNI_IS_INVARIANT(uv)) { |
eb160463 | 180 | *d++ = (U8)UTF_TO_NATIVE(uv); |
a0ed51b3 LW |
181 | return d; |
182 | } | |
2d331972 | 183 | #if defined(EBCDIC) |
1d72bdf6 NIS |
184 | else { |
185 | STRLEN len = UNISKIP(uv); | |
186 | U8 *p = d+len-1; | |
187 | while (p > d) { | |
eb160463 | 188 | *p-- = (U8)UTF_TO_NATIVE((uv & UTF_CONTINUATION_MASK) | UTF_CONTINUATION_MARK); |
1d72bdf6 NIS |
189 | uv >>= UTF_ACCUMULATION_SHIFT; |
190 | } | |
eb160463 | 191 | *p = (U8)UTF_TO_NATIVE((uv & UTF_START_MASK(len)) | UTF_START_MARK(len)); |
1d72bdf6 NIS |
192 | return d+len; |
193 | } | |
194 | #else /* Non loop style */ | |
a0ed51b3 | 195 | if (uv < 0x800) { |
eb160463 GS |
196 | *d++ = (U8)(( uv >> 6) | 0xc0); |
197 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
198 | return d; |
199 | } | |
200 | if (uv < 0x10000) { | |
eb160463 GS |
201 | *d++ = (U8)(( uv >> 12) | 0xe0); |
202 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
203 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
204 | return d; |
205 | } | |
206 | if (uv < 0x200000) { | |
eb160463 GS |
207 | *d++ = (U8)(( uv >> 18) | 0xf0); |
208 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
209 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
210 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
211 | return d; |
212 | } | |
213 | if (uv < 0x4000000) { | |
eb160463 GS |
214 | *d++ = (U8)(( uv >> 24) | 0xf8); |
215 | *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80); | |
216 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
217 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
218 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
219 | return d; |
220 | } | |
221 | if (uv < 0x80000000) { | |
eb160463 GS |
222 | *d++ = (U8)(( uv >> 30) | 0xfc); |
223 | *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80); | |
224 | *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80); | |
225 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
226 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
227 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
228 | return d; |
229 | } | |
6b8eaf93 | 230 | #ifdef HAS_QUAD |
d7578b48 | 231 | if (uv < UTF8_QUAD_MAX) |
a0ed51b3 LW |
232 | #endif |
233 | { | |
eb160463 GS |
234 | *d++ = 0xfe; /* Can't match U+FEFF! */ |
235 | *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80); | |
236 | *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80); | |
237 | *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80); | |
238 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
239 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
240 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
241 | return d; |
242 | } | |
6b8eaf93 | 243 | #ifdef HAS_QUAD |
a0ed51b3 | 244 | { |
eb160463 GS |
245 | *d++ = 0xff; /* Can't match U+FFFE! */ |
246 | *d++ = 0x80; /* 6 Reserved bits */ | |
247 | *d++ = (U8)(((uv >> 60) & 0x0f) | 0x80); /* 2 Reserved bits */ | |
248 | *d++ = (U8)(((uv >> 54) & 0x3f) | 0x80); | |
249 | *d++ = (U8)(((uv >> 48) & 0x3f) | 0x80); | |
250 | *d++ = (U8)(((uv >> 42) & 0x3f) | 0x80); | |
251 | *d++ = (U8)(((uv >> 36) & 0x3f) | 0x80); | |
252 | *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80); | |
253 | *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80); | |
254 | *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80); | |
255 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
256 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
257 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
258 | return d; |
259 | } | |
260 | #endif | |
1d72bdf6 | 261 | #endif /* Loop style */ |
a0ed51b3 | 262 | } |
9041c2e3 | 263 | |
646ca15d JH |
264 | /* |
265 | ||
f7d739d1 | 266 | Tests if the first C<len> bytes of string C<s> form a valid UTF-8 |
646ca15d | 267 | character. Note that an INVARIANT (i.e. ASCII) character is a valid |
f7d739d1 | 268 | UTF-8 character. The number of bytes in the UTF-8 character |
646ca15d JH |
269 | will be returned if it is valid, otherwise 0. |
270 | ||
271 | This is the "slow" version as opposed to the "fast" version which is | |
272 | the "unrolled" IS_UTF8_CHAR(). E.g. for t/uni/class.t the speed | |
273 | difference is a factor of 2 to 3. For lengths (UTF8SKIP(s)) of four | |
274 | or less you should use the IS_UTF8_CHAR(), for lengths of five or more | |
275 | you should use the _slow(). In practice this means that the _slow() | |
276 | will be used very rarely, since the maximum Unicode code point (as of | |
277 | Unicode 4.1) is U+10FFFF, which encodes in UTF-8 to four bytes. Only | |
278 | the "Perl extended UTF-8" (the infamous 'v-strings') will encode into | |
279 | five bytes or more. | |
280 | ||
281 | =cut */ | |
7af276bc | 282 | PERL_STATIC_INLINE STRLEN |
5f66b61c | 283 | S_is_utf8_char_slow(const U8 *s, const STRLEN len) |
646ca15d | 284 | { |
cd7e6c88 | 285 | dTHX; /* The function called below requires thread context */ |
646ca15d | 286 | |
cd7e6c88 | 287 | STRLEN actual_len; |
646ca15d | 288 | |
cd7e6c88 | 289 | PERL_ARGS_ASSERT_IS_UTF8_CHAR_SLOW; |
646ca15d | 290 | |
cd7e6c88 | 291 | utf8n_to_uvuni(s, len, &actual_len, UTF8_CHECK_ONLY); |
646ca15d | 292 | |
cd7e6c88 | 293 | return (actual_len == (STRLEN) -1) ? 0 : actual_len; |
646ca15d | 294 | } |
9041c2e3 NIS |
295 | |
296 | /* | |
492a624f KW |
297 | =for apidoc is_utf8_char_buf |
298 | ||
299 | Returns the number of bytes that comprise the first UTF-8 encoded character in | |
300 | buffer C<buf>. C<buf_end> should point to one position beyond the end of the | |
301 | buffer. 0 is returned if C<buf> does not point to a complete, valid UTF-8 | |
302 | encoded character. | |
303 | ||
304 | Note that an INVARIANT character (i.e. ASCII on non-EBCDIC | |
305 | machines) is a valid UTF-8 character. | |
306 | ||
307 | =cut */ | |
308 | ||
309 | STRLEN | |
310 | Perl_is_utf8_char_buf(const U8 *buf, const U8* buf_end) | |
311 | { | |
312 | ||
313 | STRLEN len; | |
314 | ||
315 | PERL_ARGS_ASSERT_IS_UTF8_CHAR_BUF; | |
316 | ||
317 | if (buf_end <= buf) { | |
318 | return 0; | |
319 | } | |
320 | ||
321 | len = buf_end - buf; | |
322 | if (len > UTF8SKIP(buf)) { | |
323 | len = UTF8SKIP(buf); | |
324 | } | |
325 | ||
326 | #ifdef IS_UTF8_CHAR | |
327 | if (IS_UTF8_CHAR_FAST(len)) | |
328 | return IS_UTF8_CHAR(buf, len) ? len : 0; | |
329 | #endif /* #ifdef IS_UTF8_CHAR */ | |
330 | return is_utf8_char_slow(buf, len); | |
331 | } | |
332 | ||
333 | /* | |
87cea99e | 334 | =for apidoc is_utf8_char |
eebe1485 | 335 | |
76848387 KW |
336 | DEPRECATED! |
337 | ||
5da9da9e | 338 | Tests if some arbitrary number of bytes begins in a valid UTF-8 |
2bbc8d55 SP |
339 | character. Note that an INVARIANT (i.e. ASCII on non-EBCDIC machines) |
340 | character is a valid UTF-8 character. The actual number of bytes in the UTF-8 | |
341 | character will be returned if it is valid, otherwise 0. | |
9041c2e3 | 342 | |
76848387 | 343 | This function is deprecated due to the possibility that malformed input could |
a1433954 | 344 | cause reading beyond the end of the input buffer. Use L</is_utf8_char_buf> |
76848387 | 345 | instead. |
e0328548 | 346 | |
82686b01 | 347 | =cut */ |
76848387 | 348 | |
067a85ef | 349 | STRLEN |
668b6d8d | 350 | Perl_is_utf8_char(const U8 *s) |
386d01d6 | 351 | { |
7918f24d | 352 | PERL_ARGS_ASSERT_IS_UTF8_CHAR; |
492a624f | 353 | |
76848387 | 354 | /* Assumes we have enough space, which is why this is deprecated */ |
492a624f | 355 | return is_utf8_char_buf(s, s + UTF8SKIP(s)); |
386d01d6 GS |
356 | } |
357 | ||
eaf7a4d2 | 358 | |
6662521e | 359 | /* |
87cea99e | 360 | =for apidoc is_utf8_string |
6662521e | 361 | |
a1433954 | 362 | Returns true if the first C<len> bytes of string C<s> form a valid |
9f7e3d64 | 363 | UTF-8 string, false otherwise. If C<len> is 0, it will be calculated |
e0328548 KW |
364 | using C<strlen(s)> (which means if you use this option, that C<s> has to have a |
365 | terminating NUL byte). Note that all characters being ASCII constitute 'a | |
366 | valid UTF-8 string'. | |
6662521e | 367 | |
a1433954 | 368 | See also L</is_ascii_string>(), L</is_utf8_string_loclen>(), and L</is_utf8_string_loc>(). |
768c67ee | 369 | |
6662521e GS |
370 | =cut |
371 | */ | |
372 | ||
8e84507e | 373 | bool |
668b6d8d | 374 | Perl_is_utf8_string(const U8 *s, STRLEN len) |
6662521e | 375 | { |
35da51f7 | 376 | const U8* const send = s + (len ? len : strlen((const char *)s)); |
7fc63493 | 377 | const U8* x = s; |
067a85ef | 378 | |
7918f24d | 379 | PERL_ARGS_ASSERT_IS_UTF8_STRING; |
1aa99e6b | 380 | |
6662521e | 381 | while (x < send) { |
1acdb0da | 382 | /* Inline the easy bits of is_utf8_char() here for speed... */ |
e0328548 KW |
383 | if (UTF8_IS_INVARIANT(*x)) { |
384 | x++; | |
385 | } | |
1acdb0da JH |
386 | else { |
387 | /* ... and call is_utf8_char() only if really needed. */ | |
e0328548 KW |
388 | const STRLEN c = UTF8SKIP(x); |
389 | const U8* const next_char_ptr = x + c; | |
390 | ||
391 | if (next_char_ptr > send) { | |
392 | return FALSE; | |
393 | } | |
394 | ||
768c67ee JH |
395 | if (IS_UTF8_CHAR_FAST(c)) { |
396 | if (!IS_UTF8_CHAR(x, c)) | |
e0328548 | 397 | return FALSE; |
3c614e38 | 398 | } |
e0328548 KW |
399 | else if (! is_utf8_char_slow(x, c)) { |
400 | return FALSE; | |
401 | } | |
402 | x = next_char_ptr; | |
1acdb0da | 403 | } |
6662521e | 404 | } |
768c67ee | 405 | |
067a85ef | 406 | return TRUE; |
6662521e GS |
407 | } |
408 | ||
67e989fb | 409 | /* |
814fafa7 NC |
410 | Implemented as a macro in utf8.h |
411 | ||
87cea99e | 412 | =for apidoc is_utf8_string_loc |
814fafa7 | 413 | |
a1433954 KW |
414 | Like L</is_utf8_string> but stores the location of the failure (in the |
415 | case of "utf8ness failure") or the location C<s>+C<len> (in the case of | |
814fafa7 NC |
416 | "utf8ness success") in the C<ep>. |
417 | ||
a1433954 | 418 | See also L</is_utf8_string_loclen>() and L</is_utf8_string>(). |
814fafa7 | 419 | |
87cea99e | 420 | =for apidoc is_utf8_string_loclen |
81cd54e3 | 421 | |
a1433954 KW |
422 | Like L</is_utf8_string>() but stores the location of the failure (in the |
423 | case of "utf8ness failure") or the location C<s>+C<len> (in the case of | |
768c67ee JH |
424 | "utf8ness success") in the C<ep>, and the number of UTF-8 |
425 | encoded characters in the C<el>. | |
426 | ||
a1433954 | 427 | See also L</is_utf8_string_loc>() and L</is_utf8_string>(). |
81cd54e3 JH |
428 | |
429 | =cut | |
430 | */ | |
431 | ||
432 | bool | |
668b6d8d | 433 | Perl_is_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el) |
81cd54e3 | 434 | { |
35da51f7 | 435 | const U8* const send = s + (len ? len : strlen((const char *)s)); |
7fc63493 | 436 | const U8* x = s; |
81cd54e3 | 437 | STRLEN c; |
3ebfea28 | 438 | STRLEN outlen = 0; |
7918f24d NC |
439 | |
440 | PERL_ARGS_ASSERT_IS_UTF8_STRING_LOCLEN; | |
81cd54e3 | 441 | |
81cd54e3 | 442 | while (x < send) { |
e0328548 KW |
443 | const U8* next_char_ptr; |
444 | ||
81cd54e3 JH |
445 | /* Inline the easy bits of is_utf8_char() here for speed... */ |
446 | if (UTF8_IS_INVARIANT(*x)) | |
e0328548 | 447 | next_char_ptr = x + 1; |
81cd54e3 | 448 | else { |
768c67ee | 449 | /* ... and call is_utf8_char() only if really needed. */ |
768c67ee | 450 | c = UTF8SKIP(x); |
e0328548 KW |
451 | next_char_ptr = c + x; |
452 | if (next_char_ptr > send) { | |
453 | goto out; | |
454 | } | |
768c67ee JH |
455 | if (IS_UTF8_CHAR_FAST(c)) { |
456 | if (!IS_UTF8_CHAR(x, c)) | |
457 | c = 0; | |
458 | } else | |
459 | c = is_utf8_char_slow(x, c); | |
768c67ee JH |
460 | if (!c) |
461 | goto out; | |
81cd54e3 | 462 | } |
e0328548 | 463 | x = next_char_ptr; |
3ebfea28 | 464 | outlen++; |
81cd54e3 | 465 | } |
768c67ee JH |
466 | |
467 | out: | |
3ebfea28 AL |
468 | if (el) |
469 | *el = outlen; | |
470 | ||
768c67ee JH |
471 | if (ep) |
472 | *ep = x; | |
3ebfea28 | 473 | return (x == send); |
81cd54e3 JH |
474 | } |
475 | ||
476 | /* | |
768c67ee | 477 | |
87cea99e | 478 | =for apidoc utf8n_to_uvuni |
67e989fb | 479 | |
9041c2e3 | 480 | Bottom level UTF-8 decode routine. |
746afd53 KW |
481 | Returns the code point value of the first character in the string C<s>, |
482 | which is assumed to be in UTF-8 (or UTF-EBCDIC) encoding, and no longer than | |
483 | C<curlen> bytes; C<*retlen> (if C<retlen> isn't NULL) will be set to | |
484 | the length, in bytes, of that character. | |
949cf498 KW |
485 | |
486 | The value of C<flags> determines the behavior when C<s> does not point to a | |
487 | well-formed UTF-8 character. If C<flags> is 0, when a malformation is found, | |
524080c4 KW |
488 | zero is returned and C<*retlen> is set so that (S<C<s> + C<*retlen>>) is the |
489 | next possible position in C<s> that could begin a non-malformed character. | |
490 | Also, if UTF-8 warnings haven't been lexically disabled, a warning is raised. | |
949cf498 KW |
491 | |
492 | Various ALLOW flags can be set in C<flags> to allow (and not warn on) | |
493 | individual types of malformations, such as the sequence being overlong (that | |
494 | is, when there is a shorter sequence that can express the same code point; | |
495 | overlong sequences are expressly forbidden in the UTF-8 standard due to | |
496 | potential security issues). Another malformation example is the first byte of | |
497 | a character not being a legal first byte. See F<utf8.h> for the list of such | |
524080c4 KW |
498 | flags. For allowed 0 length strings, this function returns 0; for allowed |
499 | overlong sequences, the computed code point is returned; for all other allowed | |
500 | malformations, the Unicode REPLACEMENT CHARACTER is returned, as these have no | |
501 | determinable reasonable value. | |
949cf498 KW |
502 | |
503 | The UTF8_CHECK_ONLY flag overrides the behavior when a non-allowed (by other | |
504 | flags) malformation is found. If this flag is set, the routine assumes that | |
505 | the caller will raise a warning, and this function will silently just set | |
d088425d KW |
506 | C<retlen> to C<-1> (cast to C<STRLEN>) and return zero. |
507 | ||
508 | Note that this API requires disambiguation between successful decoding a NUL | |
509 | character, and an error return (unless the UTF8_CHECK_ONLY flag is set), as | |
510 | in both cases, 0 is returned. To disambiguate, upon a zero return, see if the | |
511 | first byte of C<s> is 0 as well. If so, the input was a NUL; if not, the input | |
512 | had an error. | |
949cf498 KW |
513 | |
514 | Certain code points are considered problematic. These are Unicode surrogates, | |
746afd53 | 515 | Unicode non-characters, and code points above the Unicode maximum of 0x10FFFF. |
949cf498 | 516 | By default these are considered regular code points, but certain situations |
5eafe189 | 517 | warrant special handling for them. If C<flags> contains |
949cf498 KW |
518 | UTF8_DISALLOW_ILLEGAL_INTERCHANGE, all three classes are treated as |
519 | malformations and handled as such. The flags UTF8_DISALLOW_SURROGATE, | |
520 | UTF8_DISALLOW_NONCHAR, and UTF8_DISALLOW_SUPER (meaning above the legal Unicode | |
521 | maximum) can be set to disallow these categories individually. | |
522 | ||
523 | The flags UTF8_WARN_ILLEGAL_INTERCHANGE, UTF8_WARN_SURROGATE, | |
524 | UTF8_WARN_NONCHAR, and UTF8_WARN_SUPER will cause warning messages to be raised | |
525 | for their respective categories, but otherwise the code points are considered | |
526 | valid (not malformations). To get a category to both be treated as a | |
527 | malformation and raise a warning, specify both the WARN and DISALLOW flags. | |
528 | (But note that warnings are not raised if lexically disabled nor if | |
529 | UTF8_CHECK_ONLY is also specified.) | |
530 | ||
531 | Very large code points (above 0x7FFF_FFFF) are considered more problematic than | |
532 | the others that are above the Unicode legal maximum. There are several | |
eb83ed87 KW |
533 | reasons: they requre at least 32 bits to represent them on ASCII platforms, are |
534 | not representable at all on EBCDIC platforms, and the original UTF-8 | |
535 | specification never went above this number (the current 0x10FFFF limit was | |
536 | imposed later). (The smaller ones, those that fit into 32 bits, are | |
537 | representable by a UV on ASCII platforms, but not by an IV, which means that | |
538 | the number of operations that can be performed on them is quite restricted.) | |
539 | The UTF-8 encoding on ASCII platforms for these large code points begins with a | |
540 | byte containing 0xFE or 0xFF. The UTF8_DISALLOW_FE_FF flag will cause them to | |
541 | be treated as malformations, while allowing smaller above-Unicode code points. | |
542 | (Of course UTF8_DISALLOW_SUPER will treat all above-Unicode code points, | |
543 | including these, as malformations.) Similarly, UTF8_WARN_FE_FF acts just like | |
544 | the other WARN flags, but applies just to these code points. | |
949cf498 KW |
545 | |
546 | All other code points corresponding to Unicode characters, including private | |
547 | use and those yet to be assigned, are never considered malformed and never | |
548 | warn. | |
67e989fb | 549 | |
ec5f19d0 | 550 | Most code should use L</utf8_to_uvchr_buf>() rather than call this directly. |
9041c2e3 | 551 | |
37607a96 PK |
552 | =cut |
553 | */ | |
67e989fb | 554 | |
a0ed51b3 | 555 | UV |
7fc63493 | 556 | Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags) |
a0ed51b3 | 557 | { |
97aff369 | 558 | dVAR; |
d4c19fe8 | 559 | const U8 * const s0 = s; |
eb83ed87 | 560 | U8 overflow_byte = '\0'; /* Save byte in case of overflow */ |
0b8d30e8 | 561 | U8 * send; |
eb83ed87 KW |
562 | UV uv = *s; |
563 | STRLEN expectlen; | |
949cf498 | 564 | SV* sv = NULL; |
eb83ed87 KW |
565 | UV outlier_ret = 0; /* return value when input is in error or problematic |
566 | */ | |
567 | UV pack_warn = 0; /* Save result of packWARN() for later */ | |
568 | bool unexpected_non_continuation = FALSE; | |
569 | bool overflowed = FALSE; | |
2f8f112e | 570 | bool do_overlong_test = TRUE; /* May have to skip this test */ |
a0dbb045 | 571 | |
eb83ed87 | 572 | const char* const malformed_text = "Malformed UTF-8 character"; |
7918f24d | 573 | |
eb83ed87 | 574 | PERL_ARGS_ASSERT_UTF8N_TO_UVUNI; |
a0dbb045 | 575 | |
eb83ed87 KW |
576 | /* The order of malformation tests here is important. We should consume as |
577 | * few bytes as possible in order to not skip any valid character. This is | |
578 | * required by the Unicode Standard (section 3.9 of Unicode 6.0); see also | |
579 | * http://unicode.org/reports/tr36 for more discussion as to why. For | |
580 | * example, once we've done a UTF8SKIP, we can tell the expected number of | |
581 | * bytes, and could fail right off the bat if the input parameters indicate | |
582 | * that there are too few available. But it could be that just that first | |
583 | * byte is garbled, and the intended character occupies fewer bytes. If we | |
584 | * blindly assumed that the first byte is correct, and skipped based on | |
585 | * that number, we could skip over a valid input character. So instead, we | |
586 | * always examine the sequence byte-by-byte. | |
587 | * | |
588 | * We also should not consume too few bytes, otherwise someone could inject | |
589 | * things. For example, an input could be deliberately designed to | |
590 | * overflow, and if this code bailed out immediately upon discovering that, | |
591 | * returning to the caller *retlen pointing to the very next byte (one | |
592 | * which is actually part of of the overflowing sequence), that could look | |
593 | * legitimate to the caller, which could discard the initial partial | |
594 | * sequence and process the rest, inappropriately */ | |
595 | ||
596 | /* Zero length strings, if allowed, of necessity are zero */ | |
b5b9af04 | 597 | if (UNLIKELY(curlen == 0)) { |
eb83ed87 KW |
598 | if (retlen) { |
599 | *retlen = 0; | |
600 | } | |
a0dbb045 | 601 | |
eb83ed87 KW |
602 | if (flags & UTF8_ALLOW_EMPTY) { |
603 | return 0; | |
604 | } | |
605 | if (! (flags & UTF8_CHECK_ONLY)) { | |
606 | sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (empty string)", malformed_text)); | |
607 | } | |
0c443dc2 JH |
608 | goto malformed; |
609 | } | |
610 | ||
eb83ed87 KW |
611 | expectlen = UTF8SKIP(s); |
612 | ||
613 | /* A well-formed UTF-8 character, as the vast majority of calls to this | |
614 | * function will be for, has this expected length. For efficiency, set | |
615 | * things up here to return it. It will be overriden only in those rare | |
616 | * cases where a malformation is found */ | |
617 | if (retlen) { | |
618 | *retlen = expectlen; | |
619 | } | |
620 | ||
621 | /* An invariant is trivially well-formed */ | |
1d72bdf6 | 622 | if (UTF8_IS_INVARIANT(uv)) { |
c4d5f83a | 623 | return (UV) (NATIVE_TO_UTF(*s)); |
a0ed51b3 | 624 | } |
67e989fb | 625 | |
eb83ed87 | 626 | /* A continuation character can't start a valid sequence */ |
b5b9af04 | 627 | if (UNLIKELY(UTF8_IS_CONTINUATION(uv))) { |
eb83ed87 KW |
628 | if (flags & UTF8_ALLOW_CONTINUATION) { |
629 | if (retlen) { | |
630 | *retlen = 1; | |
631 | } | |
632 | return UNICODE_REPLACEMENT; | |
633 | } | |
ba210ebe | 634 | |
eb83ed87 KW |
635 | if (! (flags & UTF8_CHECK_ONLY)) { |
636 | sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (unexpected continuation byte 0x%02x, with no preceding start byte)", malformed_text, *s0)); | |
637 | } | |
638 | curlen = 1; | |
ba210ebe JH |
639 | goto malformed; |
640 | } | |
9041c2e3 | 641 | |
1d72bdf6 | 642 | #ifdef EBCDIC |
75383841 | 643 | uv = NATIVE_TO_UTF(uv); |
1d72bdf6 NIS |
644 | #endif |
645 | ||
eb83ed87 KW |
646 | /* Here is not a continuation byte, nor an invariant. The only thing left |
647 | * is a start byte (possibly for an overlong) */ | |
ba210ebe | 648 | |
eb83ed87 KW |
649 | /* Remove the leading bits that indicate the number of bytes in the |
650 | * character's whole UTF-8 sequence, leaving just the bits that are part of | |
651 | * the value */ | |
652 | uv &= UTF_START_MASK(expectlen); | |
ba210ebe | 653 | |
eb83ed87 KW |
654 | /* Now, loop through the remaining bytes in the character's sequence, |
655 | * accumulating each into the working value as we go. Be sure to not look | |
656 | * past the end of the input string */ | |
0b8d30e8 KW |
657 | send = (U8*) s0 + ((expectlen <= curlen) ? expectlen : curlen); |
658 | ||
eb83ed87 | 659 | for (s = s0 + 1; s < send; s++) { |
b5b9af04 | 660 | if (LIKELY(UTF8_IS_CONTINUATION(*s))) { |
eb83ed87 KW |
661 | #ifndef EBCDIC /* Can't overflow in EBCDIC */ |
662 | if (uv & UTF_ACCUMULATION_OVERFLOW_MASK) { | |
663 | ||
664 | /* The original implementors viewed this malformation as more | |
665 | * serious than the others (though I, khw, don't understand | |
666 | * why, since other malformations also give very very wrong | |
667 | * results), so there is no way to turn off checking for it. | |
668 | * Set a flag, but keep going in the loop, so that we absorb | |
669 | * the rest of the bytes that comprise the character. */ | |
670 | overflowed = TRUE; | |
671 | overflow_byte = *s; /* Save for warning message's use */ | |
672 | } | |
673 | #endif | |
8850bf83 | 674 | uv = UTF8_ACCUMULATE(uv, *s); |
eb83ed87 KW |
675 | } |
676 | else { | |
677 | /* Here, found a non-continuation before processing all expected | |
678 | * bytes. This byte begins a new character, so quit, even if | |
679 | * allowing this malformation. */ | |
680 | unexpected_non_continuation = TRUE; | |
681 | break; | |
682 | } | |
683 | } /* End of loop through the character's bytes */ | |
684 | ||
685 | /* Save how many bytes were actually in the character */ | |
686 | curlen = s - s0; | |
687 | ||
688 | /* The loop above finds two types of malformations: non-continuation and/or | |
689 | * overflow. The non-continuation malformation is really a too-short | |
690 | * malformation, as it means that the current character ended before it was | |
691 | * expected to (being terminated prematurely by the beginning of the next | |
692 | * character, whereas in the too-short malformation there just are too few | |
693 | * bytes available to hold the character. In both cases, the check below | |
694 | * that we have found the expected number of bytes would fail if executed.) | |
695 | * Thus the non-continuation malformation is really unnecessary, being a | |
696 | * subset of the too-short malformation. But there may be existing | |
697 | * applications that are expecting the non-continuation type, so we retain | |
698 | * it, and return it in preference to the too-short malformation. (If this | |
699 | * code were being written from scratch, the two types might be collapsed | |
700 | * into one.) I, khw, am also giving priority to returning the | |
701 | * non-continuation and too-short malformations over overflow when multiple | |
702 | * ones are present. I don't know of any real reason to prefer one over | |
703 | * the other, except that it seems to me that multiple-byte errors trumps | |
704 | * errors from a single byte */ | |
b5b9af04 | 705 | if (UNLIKELY(unexpected_non_continuation)) { |
eb83ed87 KW |
706 | if (!(flags & UTF8_ALLOW_NON_CONTINUATION)) { |
707 | if (! (flags & UTF8_CHECK_ONLY)) { | |
708 | if (curlen == 1) { | |
709 | sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (unexpected non-continuation byte 0x%02x, immediately after start byte 0x%02x)", malformed_text, *s, *s0)); | |
710 | } | |
711 | else { | |
712 | sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (unexpected non-continuation byte 0x%02x, %d bytes after start byte 0x%02x, expected %d bytes)", malformed_text, *s, (int) curlen, *s0, (int)expectlen)); | |
a0dbb045 JH |
713 | } |
714 | } | |
eb83ed87 KW |
715 | goto malformed; |
716 | } | |
717 | uv = UNICODE_REPLACEMENT; | |
2f8f112e KW |
718 | |
719 | /* Skip testing for overlongs, as the REPLACEMENT may not be the same | |
720 | * as what the original expectations were. */ | |
721 | do_overlong_test = FALSE; | |
eb83ed87 KW |
722 | if (retlen) { |
723 | *retlen = curlen; | |
724 | } | |
725 | } | |
b5b9af04 | 726 | else if (UNLIKELY(curlen < expectlen)) { |
eb83ed87 KW |
727 | if (! (flags & UTF8_ALLOW_SHORT)) { |
728 | if (! (flags & UTF8_CHECK_ONLY)) { | |
729 | sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (%d byte%s, need %d, after start byte 0x%02x)", malformed_text, (int)curlen, curlen == 1 ? "" : "s", (int)expectlen, *s0)); | |
a0dbb045 | 730 | } |
eb83ed87 KW |
731 | goto malformed; |
732 | } | |
733 | uv = UNICODE_REPLACEMENT; | |
2f8f112e | 734 | do_overlong_test = FALSE; |
eb83ed87 KW |
735 | if (retlen) { |
736 | *retlen = curlen; | |
737 | } | |
738 | } | |
739 | ||
740 | #ifndef EBCDIC /* EBCDIC allows FE, FF, can't overflow */ | |
2f8f112e | 741 | if ((*s0 & 0xFE) == 0xFE /* matches both FE, FF */ |
eb83ed87 KW |
742 | && (flags & (UTF8_WARN_FE_FF|UTF8_DISALLOW_FE_FF))) |
743 | { | |
744 | /* By adding UTF8_CHECK_ONLY to the test, we avoid unnecessary | |
745 | * generation of the sv, since no warnings are raised under CHECK */ | |
746 | if ((flags & (UTF8_WARN_FE_FF|UTF8_CHECK_ONLY)) == UTF8_WARN_FE_FF | |
747 | && ckWARN_d(WARN_UTF8)) | |
748 | { | |
42303544 KW |
749 | /* This message is deliberately not of the same syntax as the other |
750 | * messages for malformations, for backwards compatibility in the | |
751 | * unlikely event that code is relying on its precise earlier text | |
752 | */ | |
eb83ed87 KW |
753 | sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s Code point beginning with byte 0x%02X is not Unicode, and not portable", malformed_text, *s0)); |
754 | pack_warn = packWARN(WARN_UTF8); | |
755 | } | |
756 | if (flags & UTF8_DISALLOW_FE_FF) { | |
757 | goto malformed; | |
ba210ebe | 758 | } |
ba210ebe | 759 | } |
b5b9af04 | 760 | if (UNLIKELY(overflowed)) { |
ba210ebe | 761 | |
eb83ed87 KW |
762 | /* If the first byte is FF, it will overflow a 32-bit word. If the |
763 | * first byte is FE, it will overflow a signed 32-bit word. The | |
764 | * above preserves backward compatibility, since its message was used | |
765 | * in earlier versions of this code in preference to overflow */ | |
766 | sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (overflow at byte 0x%02x, after start byte 0x%02x)", malformed_text, overflow_byte, *s0)); | |
ba210ebe | 767 | goto malformed; |
eb83ed87 KW |
768 | } |
769 | #endif | |
770 | ||
2f8f112e KW |
771 | if (do_overlong_test |
772 | && expectlen > (STRLEN)UNISKIP(uv) | |
773 | && ! (flags & UTF8_ALLOW_LONG)) | |
774 | { | |
eb83ed87 KW |
775 | /* The overlong malformation has lower precedence than the others. |
776 | * Note that if this malformation is allowed, we return the actual | |
777 | * value, instead of the replacement character. This is because this | |
778 | * value is actually well-defined. */ | |
779 | if (! (flags & UTF8_CHECK_ONLY)) { | |
780 | sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (%d byte%s, need %d, after start byte 0x%02x)", malformed_text, (int)expectlen, expectlen == 1 ? "": "s", UNISKIP(uv), *s0)); | |
781 | } | |
782 | goto malformed; | |
783 | } | |
784 | ||
785 | /* Here, the input is considered to be well-formed , but could be a | |
786 | * problematic code point that is not allowed by the input parameters. */ | |
787 | if (uv >= UNICODE_SURROGATE_FIRST /* isn't problematic if < this */ | |
788 | && (flags & (UTF8_DISALLOW_ILLEGAL_INTERCHANGE | |
789 | |UTF8_WARN_ILLEGAL_INTERCHANGE))) | |
790 | { | |
949cf498 | 791 | if (UNICODE_IS_SURROGATE(uv)) { |
eb83ed87 KW |
792 | if ((flags & (UTF8_WARN_SURROGATE|UTF8_CHECK_ONLY)) == UTF8_WARN_SURROGATE |
793 | && ckWARN2_d(WARN_UTF8, WARN_SURROGATE)) | |
794 | { | |
111d382d | 795 | sv = sv_2mortal(Perl_newSVpvf(aTHX_ "UTF-16 surrogate U+%04"UVXf"", uv)); |
eb83ed87 | 796 | pack_warn = packWARN2(WARN_UTF8, WARN_SURROGATE); |
949cf498 KW |
797 | } |
798 | if (flags & UTF8_DISALLOW_SURROGATE) { | |
799 | goto disallowed; | |
800 | } | |
801 | } | |
949cf498 | 802 | else if ((uv > PERL_UNICODE_MAX)) { |
eb83ed87 KW |
803 | if ((flags & (UTF8_WARN_SUPER|UTF8_CHECK_ONLY)) == UTF8_WARN_SUPER |
804 | && ckWARN2_d(WARN_UTF8, WARN_NON_UNICODE)) | |
805 | { | |
111d382d | 806 | sv = sv_2mortal(Perl_newSVpvf(aTHX_ "Code point 0x%04"UVXf" is not Unicode, may not be portable", uv)); |
eb83ed87 | 807 | pack_warn = packWARN2(WARN_UTF8, WARN_NON_UNICODE); |
949cf498 KW |
808 | } |
809 | if (flags & UTF8_DISALLOW_SUPER) { | |
810 | goto disallowed; | |
811 | } | |
812 | } | |
4190d317 KW |
813 | else if (UNICODE_IS_NONCHAR(uv)) { |
814 | if ((flags & (UTF8_WARN_NONCHAR|UTF8_CHECK_ONLY)) == UTF8_WARN_NONCHAR | |
815 | && ckWARN2_d(WARN_UTF8, WARN_NONCHAR)) | |
816 | { | |
817 | sv = sv_2mortal(Perl_newSVpvf(aTHX_ "Unicode non-character U+%04"UVXf" is illegal for open interchange", uv)); | |
818 | pack_warn = packWARN2(WARN_UTF8, WARN_NONCHAR); | |
819 | } | |
820 | if (flags & UTF8_DISALLOW_NONCHAR) { | |
821 | goto disallowed; | |
822 | } | |
823 | } | |
949cf498 | 824 | |
eb83ed87 KW |
825 | if (sv) { |
826 | outlier_ret = uv; | |
827 | goto do_warn; | |
828 | } | |
829 | ||
949cf498 KW |
830 | /* Here, this is not considered a malformed character, so drop through |
831 | * to return it */ | |
a0ed51b3 | 832 | } |
ba210ebe | 833 | |
a0ed51b3 | 834 | return uv; |
ba210ebe | 835 | |
eb83ed87 KW |
836 | /* There are three cases which get to beyond this point. In all 3 cases: |
837 | * <sv> if not null points to a string to print as a warning. | |
838 | * <curlen> is what <*retlen> should be set to if UTF8_CHECK_ONLY isn't | |
839 | * set. | |
840 | * <outlier_ret> is what return value to use if UTF8_CHECK_ONLY isn't set. | |
841 | * This is done by initializing it to 0, and changing it only | |
842 | * for case 1). | |
843 | * The 3 cases are: | |
844 | * 1) The input is valid but problematic, and to be warned about. The | |
845 | * return value is the resultant code point; <*retlen> is set to | |
846 | * <curlen>, the number of bytes that comprise the code point. | |
847 | * <pack_warn> contains the result of packWARN() for the warning | |
848 | * types. The entry point for this case is the label <do_warn>; | |
849 | * 2) The input is a valid code point but disallowed by the parameters to | |
850 | * this function. The return value is 0. If UTF8_CHECK_ONLY is set, | |
851 | * <*relen> is -1; otherwise it is <curlen>, the number of bytes that | |
852 | * comprise the code point. <pack_warn> contains the result of | |
853 | * packWARN() for the warning types. The entry point for this case is | |
854 | * the label <disallowed>. | |
855 | * 3) The input is malformed. The return value is 0. If UTF8_CHECK_ONLY | |
856 | * is set, <*relen> is -1; otherwise it is <curlen>, the number of | |
857 | * bytes that comprise the malformation. All such malformations are | |
858 | * assumed to be warning type <utf8>. The entry point for this case | |
859 | * is the label <malformed>. | |
860 | */ | |
949cf498 | 861 | |
ba210ebe JH |
862 | malformed: |
863 | ||
eb83ed87 KW |
864 | if (sv && ckWARN_d(WARN_UTF8)) { |
865 | pack_warn = packWARN(WARN_UTF8); | |
866 | } | |
867 | ||
868 | disallowed: | |
869 | ||
fcc8fcf6 | 870 | if (flags & UTF8_CHECK_ONLY) { |
ba210ebe | 871 | if (retlen) |
10edeb5d | 872 | *retlen = ((STRLEN) -1); |
ba210ebe JH |
873 | return 0; |
874 | } | |
875 | ||
eb83ed87 | 876 | do_warn: |
5b311467 | 877 | |
eb83ed87 KW |
878 | if (pack_warn) { /* <pack_warn> was initialized to 0, and changed only |
879 | if warnings are to be raised. */ | |
f555bc63 | 880 | const char * const string = SvPVX_const(sv); |
a0dbb045 | 881 | |
f555bc63 KW |
882 | if (PL_op) |
883 | Perl_warner(aTHX_ pack_warn, "%s in %s", string, OP_DESC(PL_op)); | |
884 | else | |
885 | Perl_warner(aTHX_ pack_warn, "%s", string); | |
a0dbb045 JH |
886 | } |
887 | ||
eb83ed87 KW |
888 | if (retlen) { |
889 | *retlen = curlen; | |
890 | } | |
ba210ebe | 891 | |
eb83ed87 | 892 | return outlier_ret; |
a0ed51b3 LW |
893 | } |
894 | ||
8e84507e | 895 | /* |
ec5f19d0 KW |
896 | =for apidoc utf8_to_uvchr_buf |
897 | ||
898 | Returns the native code point of the first character in the string C<s> which | |
899 | is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>. | |
524080c4 | 900 | C<*retlen> will be set to the length, in bytes, of that character. |
ec5f19d0 | 901 | |
524080c4 KW |
902 | If C<s> does not point to a well-formed UTF-8 character and UTF8 warnings are |
903 | enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't | |
173db420 KW |
904 | NULL) to -1. If those warnings are off, the computed value, if well-defined |
905 | (or the Unicode REPLACEMENT CHARACTER if not), is silently returned, and | |
906 | C<*retlen> is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is | |
907 | the next possible position in C<s> that could begin a non-malformed character. | |
908 | See L</utf8n_to_uvuni> for details on when the REPLACEMENT CHARACTER is | |
909 | returned. | |
ec5f19d0 KW |
910 | |
911 | =cut | |
912 | */ | |
913 | ||
914 | ||
915 | UV | |
916 | Perl_utf8_to_uvchr_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen) | |
917 | { | |
918 | PERL_ARGS_ASSERT_UTF8_TO_UVCHR_BUF; | |
919 | ||
920 | assert(s < send); | |
921 | ||
922 | return utf8n_to_uvchr(s, send - s, retlen, | |
923 | ckWARN_d(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY); | |
924 | } | |
925 | ||
27d6c58a | 926 | /* Like L</utf8_to_uvchr_buf>(), but should only be called when it is known that |
3986bb7c | 927 | * there are no malformations in the input UTF-8 string C<s>. surrogates, |
6dd9dce9 KW |
928 | * non-character code points, and non-Unicode code points are allowed. A macro |
929 | * in utf8.h is used to normally avoid this function wrapper */ | |
27d6c58a KW |
930 | |
931 | UV | |
932 | Perl_valid_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen) | |
933 | { | |
3986bb7c KW |
934 | const UV uv = valid_utf8_to_uvuni(s, retlen); |
935 | ||
27d6c58a KW |
936 | PERL_ARGS_ASSERT_VALID_UTF8_TO_UVCHR; |
937 | ||
3986bb7c | 938 | return UNI_TO_NATIVE(uv); |
27d6c58a KW |
939 | } |
940 | ||
ec5f19d0 | 941 | /* |
87cea99e | 942 | =for apidoc utf8_to_uvchr |
9041c2e3 | 943 | |
977c1d31 KW |
944 | DEPRECATED! |
945 | ||
6ee84de2 | 946 | Returns the native code point of the first character in the string C<s> |
1e54db1a | 947 | which is assumed to be in UTF-8 encoding; C<retlen> will be set to the |
9041c2e3 NIS |
948 | length, in bytes, of that character. |
949 | ||
4b88fb76 | 950 | Some, but not all, UTF-8 malformations are detected, and in fact, some |
977c1d31 KW |
951 | malformed input could cause reading beyond the end of the input buffer, which |
952 | is why this function is deprecated. Use L</utf8_to_uvchr_buf> instead. | |
4b88fb76 | 953 | |
524080c4 KW |
954 | If C<s> points to one of the detected malformations, and UTF8 warnings are |
955 | enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't | |
956 | NULL) to -1. If those warnings are off, the computed value if well-defined (or | |
957 | the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen> | |
958 | is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the | |
959 | next possible position in C<s> that could begin a non-malformed character. | |
960 | See L</utf8n_to_uvuni> for details on when the REPLACEMENT CHARACTER is returned. | |
9041c2e3 NIS |
961 | |
962 | =cut | |
963 | */ | |
964 | ||
965 | UV | |
7fc63493 | 966 | Perl_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen) |
9041c2e3 | 967 | { |
7918f24d NC |
968 | PERL_ARGS_ASSERT_UTF8_TO_UVCHR; |
969 | ||
2ff6c191 | 970 | return utf8_to_uvchr_buf(s, s + UTF8_MAXBYTES, retlen); |
9041c2e3 NIS |
971 | } |
972 | ||
973 | /* | |
ec5f19d0 KW |
974 | =for apidoc utf8_to_uvuni_buf |
975 | ||
976 | Returns the Unicode code point of the first character in the string C<s> which | |
977 | is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>. | |
978 | C<retlen> will be set to the length, in bytes, of that character. | |
979 | ||
980 | This function should only be used when the returned UV is considered | |
981 | an index into the Unicode semantic tables (e.g. swashes). | |
982 | ||
524080c4 KW |
983 | If C<s> does not point to a well-formed UTF-8 character and UTF8 warnings are |
984 | enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't | |
985 | NULL) to -1. If those warnings are off, the computed value if well-defined (or | |
986 | the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen> | |
987 | is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the | |
988 | next possible position in C<s> that could begin a non-malformed character. | |
989 | See L</utf8n_to_uvuni> for details on when the REPLACEMENT CHARACTER is returned. | |
ec5f19d0 KW |
990 | |
991 | =cut | |
992 | */ | |
993 | ||
994 | UV | |
995 | Perl_utf8_to_uvuni_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen) | |
996 | { | |
997 | PERL_ARGS_ASSERT_UTF8_TO_UVUNI_BUF; | |
998 | ||
999 | assert(send > s); | |
1000 | ||
1001 | /* Call the low level routine asking for checks */ | |
1002 | return Perl_utf8n_to_uvuni(aTHX_ s, send -s, retlen, | |
1003 | ckWARN_d(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY); | |
1004 | } | |
1005 | ||
27d6c58a | 1006 | /* Like L</utf8_to_uvuni_buf>(), but should only be called when it is known that |
2114036c | 1007 | * there are no malformations in the input UTF-8 string C<s>. Surrogates, |
3986bb7c | 1008 | * non-character code points, and non-Unicode code points are allowed */ |
27d6c58a KW |
1009 | |
1010 | UV | |
1011 | Perl_valid_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen) | |
1012 | { | |
3986bb7c KW |
1013 | UV expectlen = UTF8SKIP(s); |
1014 | const U8* send = s + expectlen; | |
1015 | UV uv = NATIVE_TO_UTF(*s); | |
1016 | ||
27d6c58a KW |
1017 | PERL_ARGS_ASSERT_VALID_UTF8_TO_UVUNI; |
1018 | ||
3986bb7c KW |
1019 | if (retlen) { |
1020 | *retlen = expectlen; | |
1021 | } | |
1022 | ||
1023 | /* An invariant is trivially returned */ | |
1024 | if (expectlen == 1) { | |
1025 | return uv; | |
1026 | } | |
1027 | ||
1028 | /* Remove the leading bits that indicate the number of bytes, leaving just | |
1029 | * the bits that are part of the value */ | |
1030 | uv &= UTF_START_MASK(expectlen); | |
1031 | ||
1032 | /* Now, loop through the remaining bytes, accumulating each into the | |
08bc774e KW |
1033 | * working total as we go. (I khw tried unrolling the loop for up to 4 |
1034 | * bytes, but there was no performance improvement) */ | |
3986bb7c KW |
1035 | for (++s; s < send; s++) { |
1036 | uv = UTF8_ACCUMULATE(uv, *s); | |
1037 | } | |
1038 | ||
1039 | return uv; | |
27d6c58a KW |
1040 | } |
1041 | ||
ec5f19d0 | 1042 | /* |
87cea99e | 1043 | =for apidoc utf8_to_uvuni |
9041c2e3 | 1044 | |
977c1d31 KW |
1045 | DEPRECATED! |
1046 | ||
9041c2e3 | 1047 | Returns the Unicode code point of the first character in the string C<s> |
1e54db1a | 1048 | which is assumed to be in UTF-8 encoding; C<retlen> will be set to the |
9041c2e3 NIS |
1049 | length, in bytes, of that character. |
1050 | ||
39e518fd KW |
1051 | This function should only be used when the returned UV is considered |
1052 | an index into the Unicode semantic tables (e.g. swashes). | |
1053 | ||
4b88fb76 | 1054 | Some, but not all, UTF-8 malformations are detected, and in fact, some |
977c1d31 KW |
1055 | malformed input could cause reading beyond the end of the input buffer, which |
1056 | is why this function is deprecated. Use L</utf8_to_uvuni_buf> instead. | |
9041c2e3 | 1057 | |
524080c4 KW |
1058 | If C<s> points to one of the detected malformations, and UTF8 warnings are |
1059 | enabled, zero is returned and C<*retlen> is set (if C<retlen> doesn't point to | |
1060 | NULL) to -1. If those warnings are off, the computed value if well-defined (or | |
1061 | the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen> | |
1062 | is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the | |
1063 | next possible position in C<s> that could begin a non-malformed character. | |
1064 | See L</utf8n_to_uvuni> for details on when the REPLACEMENT CHARACTER is returned. | |
8e84507e NIS |
1065 | |
1066 | =cut | |
1067 | */ | |
1068 | ||
1069 | UV | |
7fc63493 | 1070 | Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen) |
8e84507e | 1071 | { |
7918f24d NC |
1072 | PERL_ARGS_ASSERT_UTF8_TO_UVUNI; |
1073 | ||
4b88fb76 | 1074 | return valid_utf8_to_uvuni(s, retlen); |
8e84507e NIS |
1075 | } |
1076 | ||
b76347f2 | 1077 | /* |
87cea99e | 1078 | =for apidoc utf8_length |
b76347f2 JH |
1079 | |
1080 | Return the length of the UTF-8 char encoded string C<s> in characters. | |
02eb7b47 JH |
1081 | Stops at C<e> (inclusive). If C<e E<lt> s> or if the scan would end |
1082 | up past C<e>, croaks. | |
b76347f2 JH |
1083 | |
1084 | =cut | |
1085 | */ | |
1086 | ||
1087 | STRLEN | |
35a4481c | 1088 | Perl_utf8_length(pTHX_ const U8 *s, const U8 *e) |
b76347f2 | 1089 | { |
97aff369 | 1090 | dVAR; |
b76347f2 JH |
1091 | STRLEN len = 0; |
1092 | ||
7918f24d NC |
1093 | PERL_ARGS_ASSERT_UTF8_LENGTH; |
1094 | ||
8850bf83 JH |
1095 | /* Note: cannot use UTF8_IS_...() too eagerly here since e.g. |
1096 | * the bitops (especially ~) can create illegal UTF-8. | |
1097 | * In other words: in Perl UTF-8 is not just for Unicode. */ | |
1098 | ||
a3b680e6 AL |
1099 | if (e < s) |
1100 | goto warn_and_return; | |
b76347f2 | 1101 | while (s < e) { |
4cbf4130 | 1102 | s += UTF8SKIP(s); |
8e91ec7f AV |
1103 | len++; |
1104 | } | |
1105 | ||
1106 | if (e != s) { | |
1107 | len--; | |
1108 | warn_and_return: | |
9b387841 NC |
1109 | if (PL_op) |
1110 | Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), | |
1111 | "%s in %s", unees, OP_DESC(PL_op)); | |
1112 | else | |
61a12c31 | 1113 | Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), "%s", unees); |
b76347f2 JH |
1114 | } |
1115 | ||
1116 | return len; | |
1117 | } | |
1118 | ||
b06226ff | 1119 | /* |
87cea99e | 1120 | =for apidoc utf8_distance |
b06226ff | 1121 | |
1e54db1a | 1122 | Returns the number of UTF-8 characters between the UTF-8 pointers C<a> |
b06226ff JH |
1123 | and C<b>. |
1124 | ||
1125 | WARNING: use only if you *know* that the pointers point inside the | |
1126 | same UTF-8 buffer. | |
1127 | ||
37607a96 PK |
1128 | =cut |
1129 | */ | |
a0ed51b3 | 1130 | |
02eb7b47 | 1131 | IV |
35a4481c | 1132 | Perl_utf8_distance(pTHX_ const U8 *a, const U8 *b) |
a0ed51b3 | 1133 | { |
7918f24d NC |
1134 | PERL_ARGS_ASSERT_UTF8_DISTANCE; |
1135 | ||
bf1665bc | 1136 | return (a < b) ? -1 * (IV) utf8_length(a, b) : (IV) utf8_length(b, a); |
a0ed51b3 LW |
1137 | } |
1138 | ||
b06226ff | 1139 | /* |
87cea99e | 1140 | =for apidoc utf8_hop |
b06226ff | 1141 | |
8850bf83 JH |
1142 | Return the UTF-8 pointer C<s> displaced by C<off> characters, either |
1143 | forward or backward. | |
b06226ff JH |
1144 | |
1145 | WARNING: do not use the following unless you *know* C<off> is within | |
8850bf83 JH |
1146 | the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned |
1147 | on the first byte of character or just after the last byte of a character. | |
b06226ff | 1148 | |
37607a96 PK |
1149 | =cut |
1150 | */ | |
a0ed51b3 LW |
1151 | |
1152 | U8 * | |
4373e329 | 1153 | Perl_utf8_hop(pTHX_ const U8 *s, I32 off) |
a0ed51b3 | 1154 | { |
7918f24d NC |
1155 | PERL_ARGS_ASSERT_UTF8_HOP; |
1156 | ||
96a5add6 | 1157 | PERL_UNUSED_CONTEXT; |
8850bf83 JH |
1158 | /* Note: cannot use UTF8_IS_...() too eagerly here since e.g |
1159 | * the bitops (especially ~) can create illegal UTF-8. | |
1160 | * In other words: in Perl UTF-8 is not just for Unicode. */ | |
1161 | ||
a0ed51b3 LW |
1162 | if (off >= 0) { |
1163 | while (off--) | |
1164 | s += UTF8SKIP(s); | |
1165 | } | |
1166 | else { | |
1167 | while (off++) { | |
1168 | s--; | |
8850bf83 JH |
1169 | while (UTF8_IS_CONTINUATION(*s)) |
1170 | s--; | |
a0ed51b3 LW |
1171 | } |
1172 | } | |
4373e329 | 1173 | return (U8 *)s; |
a0ed51b3 LW |
1174 | } |
1175 | ||
6940069f | 1176 | /* |
fed3ba5d NC |
1177 | =for apidoc bytes_cmp_utf8 |
1178 | ||
a1433954 KW |
1179 | Compares the sequence of characters (stored as octets) in C<b>, C<blen> with the |
1180 | sequence of characters (stored as UTF-8) in C<u>, C<ulen>. Returns 0 if they are | |
fed3ba5d NC |
1181 | equal, -1 or -2 if the first string is less than the second string, +1 or +2 |
1182 | if the first string is greater than the second string. | |
1183 | ||
1184 | -1 or +1 is returned if the shorter string was identical to the start of the | |
1185 | longer string. -2 or +2 is returned if the was a difference between characters | |
1186 | within the strings. | |
1187 | ||
1188 | =cut | |
1189 | */ | |
1190 | ||
1191 | int | |
1192 | Perl_bytes_cmp_utf8(pTHX_ const U8 *b, STRLEN blen, const U8 *u, STRLEN ulen) | |
1193 | { | |
1194 | const U8 *const bend = b + blen; | |
1195 | const U8 *const uend = u + ulen; | |
1196 | ||
1197 | PERL_ARGS_ASSERT_BYTES_CMP_UTF8; | |
1198 | ||
1199 | PERL_UNUSED_CONTEXT; | |
1200 | ||
1201 | while (b < bend && u < uend) { | |
1202 | U8 c = *u++; | |
1203 | if (!UTF8_IS_INVARIANT(c)) { | |
1204 | if (UTF8_IS_DOWNGRADEABLE_START(c)) { | |
1205 | if (u < uend) { | |
1206 | U8 c1 = *u++; | |
1207 | if (UTF8_IS_CONTINUATION(c1)) { | |
356979f4 | 1208 | c = UNI_TO_NATIVE(TWO_BYTE_UTF8_TO_UNI(c, c1)); |
fed3ba5d NC |
1209 | } else { |
1210 | Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), | |
1211 | "Malformed UTF-8 character " | |
1212 | "(unexpected non-continuation byte 0x%02x" | |
1213 | ", immediately after start byte 0x%02x)" | |
1214 | /* Dear diag.t, it's in the pod. */ | |
1215 | "%s%s", c1, c, | |
1216 | PL_op ? " in " : "", | |
1217 | PL_op ? OP_DESC(PL_op) : ""); | |
1218 | return -2; | |
1219 | } | |
1220 | } else { | |
1221 | if (PL_op) | |
1222 | Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), | |
1223 | "%s in %s", unees, OP_DESC(PL_op)); | |
1224 | else | |
61a12c31 | 1225 | Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), "%s", unees); |
fed3ba5d NC |
1226 | return -2; /* Really want to return undef :-) */ |
1227 | } | |
1228 | } else { | |
1229 | return -2; | |
1230 | } | |
1231 | } | |
1232 | if (*b != c) { | |
1233 | return *b < c ? -2 : +2; | |
1234 | } | |
1235 | ++b; | |
1236 | } | |
1237 | ||
1238 | if (b == bend && u == uend) | |
1239 | return 0; | |
1240 | ||
1241 | return b < bend ? +1 : -1; | |
1242 | } | |
1243 | ||
1244 | /* | |
87cea99e | 1245 | =for apidoc utf8_to_bytes |
6940069f | 1246 | |
2bbc8d55 | 1247 | Converts a string C<s> of length C<len> from UTF-8 into native byte encoding. |
a1433954 KW |
1248 | Unlike L</bytes_to_utf8>, this over-writes the original string, and |
1249 | updates C<len> to contain the new length. | |
67e989fb | 1250 | Returns zero on failure, setting C<len> to -1. |
6940069f | 1251 | |
a1433954 | 1252 | If you need a copy of the string, see L</bytes_from_utf8>. |
95be277c | 1253 | |
6940069f GS |
1254 | =cut |
1255 | */ | |
1256 | ||
1257 | U8 * | |
37607a96 | 1258 | Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len) |
6940069f | 1259 | { |
d4c19fe8 AL |
1260 | U8 * const save = s; |
1261 | U8 * const send = s + *len; | |
6940069f | 1262 | U8 *d; |
246fae53 | 1263 | |
7918f24d NC |
1264 | PERL_ARGS_ASSERT_UTF8_TO_BYTES; |
1265 | ||
1e54db1a | 1266 | /* ensure valid UTF-8 and chars < 256 before updating string */ |
d4c19fe8 | 1267 | while (s < send) { |
dcad2880 JH |
1268 | U8 c = *s++; |
1269 | ||
1d72bdf6 NIS |
1270 | if (!UTF8_IS_INVARIANT(c) && |
1271 | (!UTF8_IS_DOWNGRADEABLE_START(c) || (s >= send) | |
1272 | || !(c = *s++) || !UTF8_IS_CONTINUATION(c))) { | |
10edeb5d | 1273 | *len = ((STRLEN) -1); |
dcad2880 JH |
1274 | return 0; |
1275 | } | |
246fae53 | 1276 | } |
dcad2880 JH |
1277 | |
1278 | d = s = save; | |
6940069f | 1279 | while (s < send) { |
ed646e6e | 1280 | STRLEN ulen; |
4b88fb76 | 1281 | *d++ = (U8)utf8_to_uvchr_buf(s, send, &ulen); |
ed646e6e | 1282 | s += ulen; |
6940069f GS |
1283 | } |
1284 | *d = '\0'; | |
246fae53 | 1285 | *len = d - save; |
6940069f GS |
1286 | return save; |
1287 | } | |
1288 | ||
1289 | /* | |
87cea99e | 1290 | =for apidoc bytes_from_utf8 |
f9a63242 | 1291 | |
2bbc8d55 | 1292 | Converts a string C<s> of length C<len> from UTF-8 into native byte encoding. |
a1433954 | 1293 | Unlike L</utf8_to_bytes> but like L</bytes_to_utf8>, returns a pointer to |
ef9edfd0 JH |
1294 | the newly-created string, and updates C<len> to contain the new |
1295 | length. Returns the original string if no conversion occurs, C<len> | |
1296 | is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to | |
2bbc8d55 SP |
1297 | 0 if C<s> is converted or consisted entirely of characters that are invariant |
1298 | in utf8 (i.e., US-ASCII on non-EBCDIC machines). | |
f9a63242 | 1299 | |
37607a96 PK |
1300 | =cut |
1301 | */ | |
f9a63242 JH |
1302 | |
1303 | U8 * | |
e1ec3a88 | 1304 | Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8) |
f9a63242 | 1305 | { |
f9a63242 | 1306 | U8 *d; |
e1ec3a88 AL |
1307 | const U8 *start = s; |
1308 | const U8 *send; | |
f9a63242 JH |
1309 | I32 count = 0; |
1310 | ||
7918f24d NC |
1311 | PERL_ARGS_ASSERT_BYTES_FROM_UTF8; |
1312 | ||
96a5add6 | 1313 | PERL_UNUSED_CONTEXT; |
f9a63242 | 1314 | if (!*is_utf8) |
73d840c0 | 1315 | return (U8 *)start; |
f9a63242 | 1316 | |
1e54db1a | 1317 | /* ensure valid UTF-8 and chars < 256 before converting string */ |
f9a63242 | 1318 | for (send = s + *len; s < send;) { |
e1ec3a88 | 1319 | U8 c = *s++; |
1d72bdf6 | 1320 | if (!UTF8_IS_INVARIANT(c)) { |
db42d148 NIS |
1321 | if (UTF8_IS_DOWNGRADEABLE_START(c) && s < send && |
1322 | (c = *s++) && UTF8_IS_CONTINUATION(c)) | |
1323 | count++; | |
1324 | else | |
73d840c0 | 1325 | return (U8 *)start; |
db42d148 | 1326 | } |
f9a63242 JH |
1327 | } |
1328 | ||
35da51f7 | 1329 | *is_utf8 = FALSE; |
f9a63242 | 1330 | |
212542aa | 1331 | Newx(d, (*len) - count + 1, U8); |
ef9edfd0 | 1332 | s = start; start = d; |
f9a63242 JH |
1333 | while (s < send) { |
1334 | U8 c = *s++; | |
c4d5f83a NIS |
1335 | if (!UTF8_IS_INVARIANT(c)) { |
1336 | /* Then it is two-byte encoded */ | |
356979f4 | 1337 | c = UNI_TO_NATIVE(TWO_BYTE_UTF8_TO_UNI(c, *s++)); |
c4d5f83a NIS |
1338 | } |
1339 | *d++ = c; | |
f9a63242 JH |
1340 | } |
1341 | *d = '\0'; | |
1342 | *len = d - start; | |
73d840c0 | 1343 | return (U8 *)start; |
f9a63242 JH |
1344 | } |
1345 | ||
1346 | /* | |
87cea99e | 1347 | =for apidoc bytes_to_utf8 |
6940069f | 1348 | |
ff97e5cf KW |
1349 | Converts a string C<s> of length C<len> bytes from the native encoding into |
1350 | UTF-8. | |
6662521e | 1351 | Returns a pointer to the newly-created string, and sets C<len> to |
ff97e5cf | 1352 | reflect the new length in bytes. |
6940069f | 1353 | |
2bbc8d55 SP |
1354 | A NUL character will be written after the end of the string. |
1355 | ||
1356 | If you want to convert to UTF-8 from encodings other than | |
1357 | the native (Latin1 or EBCDIC), | |
a1433954 | 1358 | see L</sv_recode_to_utf8>(). |
c9ada85f | 1359 | |
497711e7 | 1360 | =cut |
6940069f GS |
1361 | */ |
1362 | ||
c682ebef FC |
1363 | /* This logic is duplicated in sv_catpvn_flags, so any bug fixes will |
1364 | likewise need duplication. */ | |
1365 | ||
6940069f | 1366 | U8* |
35a4481c | 1367 | Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len) |
6940069f | 1368 | { |
35a4481c | 1369 | const U8 * const send = s + (*len); |
6940069f GS |
1370 | U8 *d; |
1371 | U8 *dst; | |
7918f24d NC |
1372 | |
1373 | PERL_ARGS_ASSERT_BYTES_TO_UTF8; | |
96a5add6 | 1374 | PERL_UNUSED_CONTEXT; |
6940069f | 1375 | |
212542aa | 1376 | Newx(d, (*len) * 2 + 1, U8); |
6940069f GS |
1377 | dst = d; |
1378 | ||
1379 | while (s < send) { | |
35a4481c | 1380 | const UV uv = NATIVE_TO_ASCII(*s++); |
c4d5f83a | 1381 | if (UNI_IS_INVARIANT(uv)) |
eb160463 | 1382 | *d++ = (U8)UTF_TO_NATIVE(uv); |
6940069f | 1383 | else { |
eb160463 GS |
1384 | *d++ = (U8)UTF8_EIGHT_BIT_HI(uv); |
1385 | *d++ = (U8)UTF8_EIGHT_BIT_LO(uv); | |
6940069f GS |
1386 | } |
1387 | } | |
1388 | *d = '\0'; | |
6662521e | 1389 | *len = d-dst; |
6940069f GS |
1390 | return dst; |
1391 | } | |
1392 | ||
a0ed51b3 | 1393 | /* |
dea0fc0b | 1394 | * Convert native (big-endian) or reversed (little-endian) UTF-16 to UTF-8. |
a0ed51b3 LW |
1395 | * |
1396 | * Destination must be pre-extended to 3/2 source. Do not use in-place. | |
1397 | * We optimize for native, for obvious reasons. */ | |
1398 | ||
1399 | U8* | |
dea0fc0b | 1400 | Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen) |
a0ed51b3 | 1401 | { |
dea0fc0b JH |
1402 | U8* pend; |
1403 | U8* dstart = d; | |
1404 | ||
7918f24d NC |
1405 | PERL_ARGS_ASSERT_UTF16_TO_UTF8; |
1406 | ||
dea0fc0b | 1407 | if (bytelen & 1) |
f5992bc4 | 1408 | Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen %"UVuf, (UV)bytelen); |
dea0fc0b JH |
1409 | |
1410 | pend = p + bytelen; | |
1411 | ||
a0ed51b3 | 1412 | while (p < pend) { |
dea0fc0b JH |
1413 | UV uv = (p[0] << 8) + p[1]; /* UTF-16BE */ |
1414 | p += 2; | |
a0ed51b3 | 1415 | if (uv < 0x80) { |
e294cc5d JH |
1416 | #ifdef EBCDIC |
1417 | *d++ = UNI_TO_NATIVE(uv); | |
1418 | #else | |
eb160463 | 1419 | *d++ = (U8)uv; |
e294cc5d | 1420 | #endif |
a0ed51b3 LW |
1421 | continue; |
1422 | } | |
1423 | if (uv < 0x800) { | |
eb160463 GS |
1424 | *d++ = (U8)(( uv >> 6) | 0xc0); |
1425 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
1426 | continue; |
1427 | } | |
52b9aa85 | 1428 | if (uv >= 0xd800 && uv <= 0xdbff) { /* surrogates */ |
01ea242b | 1429 | if (p >= pend) { |
dea0fc0b | 1430 | Perl_croak(aTHX_ "Malformed UTF-16 surrogate"); |
01ea242b NC |
1431 | } else { |
1432 | UV low = (p[0] << 8) + p[1]; | |
1433 | p += 2; | |
52b9aa85 | 1434 | if (low < 0xdc00 || low > 0xdfff) |
01ea242b NC |
1435 | Perl_croak(aTHX_ "Malformed UTF-16 surrogate"); |
1436 | uv = ((uv - 0xd800) << 10) + (low - 0xdc00) + 0x10000; | |
1437 | } | |
dbde1951 NC |
1438 | } else if (uv >= 0xdc00 && uv <= 0xdfff) { |
1439 | Perl_croak(aTHX_ "Malformed UTF-16 surrogate"); | |
a0ed51b3 LW |
1440 | } |
1441 | if (uv < 0x10000) { | |
eb160463 GS |
1442 | *d++ = (U8)(( uv >> 12) | 0xe0); |
1443 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
1444 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
1445 | continue; |
1446 | } | |
1447 | else { | |
eb160463 GS |
1448 | *d++ = (U8)(( uv >> 18) | 0xf0); |
1449 | *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80); | |
1450 | *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80); | |
1451 | *d++ = (U8)(( uv & 0x3f) | 0x80); | |
a0ed51b3 LW |
1452 | continue; |
1453 | } | |
1454 | } | |
dea0fc0b | 1455 | *newlen = d - dstart; |
a0ed51b3 LW |
1456 | return d; |
1457 | } | |
1458 | ||
1459 | /* Note: this one is slightly destructive of the source. */ | |
1460 | ||
1461 | U8* | |
dea0fc0b | 1462 | Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen) |
a0ed51b3 LW |
1463 | { |
1464 | U8* s = (U8*)p; | |
d4c19fe8 | 1465 | U8* const send = s + bytelen; |
7918f24d NC |
1466 | |
1467 | PERL_ARGS_ASSERT_UTF16_TO_UTF8_REVERSED; | |
1468 | ||
e0ea5e2d NC |
1469 | if (bytelen & 1) |
1470 | Perl_croak(aTHX_ "panic: utf16_to_utf8_reversed: odd bytelen %"UVuf, | |
1471 | (UV)bytelen); | |
1472 | ||
a0ed51b3 | 1473 | while (s < send) { |
d4c19fe8 | 1474 | const U8 tmp = s[0]; |
a0ed51b3 LW |
1475 | s[0] = s[1]; |
1476 | s[1] = tmp; | |
1477 | s += 2; | |
1478 | } | |
dea0fc0b | 1479 | return utf16_to_utf8(p, d, bytelen, newlen); |
a0ed51b3 LW |
1480 | } |
1481 | ||
922e8cb4 KW |
1482 | bool |
1483 | Perl__is_uni_FOO(pTHX_ const U8 classnum, const UV c) | |
1484 | { | |
1485 | U8 tmpbuf[UTF8_MAXBYTES+1]; | |
1486 | uvchr_to_utf8(tmpbuf, c); | |
1487 | return _is_utf8_FOO(classnum, tmpbuf); | |
1488 | } | |
1489 | ||
c3fd2246 KW |
1490 | /* for now these are all defined (inefficiently) in terms of the utf8 versions. |
1491 | * Note that the macros in handy.h that call these short-circuit calling them | |
1492 | * for Latin-1 range inputs */ | |
a0ed51b3 LW |
1493 | |
1494 | bool | |
84afefe6 | 1495 | Perl_is_uni_alnum(pTHX_ UV c) |
a0ed51b3 | 1496 | { |
89ebb4a3 | 1497 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1498 | uvchr_to_utf8(tmpbuf, c); |
922e8cb4 | 1499 | return _is_utf8_FOO(_CC_WORDCHAR, tmpbuf); |
a0ed51b3 LW |
1500 | } |
1501 | ||
1502 | bool | |
5092f92a KW |
1503 | Perl_is_uni_alnumc(pTHX_ UV c) |
1504 | { | |
1505 | U8 tmpbuf[UTF8_MAXBYTES+1]; | |
1506 | uvchr_to_utf8(tmpbuf, c); | |
922e8cb4 | 1507 | return _is_utf8_FOO(_CC_ALPHANUMERIC, tmpbuf); |
5092f92a KW |
1508 | } |
1509 | ||
61b19385 KW |
1510 | bool /* Internal function so we can deprecate the external one, and call |
1511 | this one from other deprecated functions in this file */ | |
1512 | S_is_utf8_idfirst(pTHX_ const U8 *p) | |
1513 | { | |
1514 | dVAR; | |
1515 | ||
1516 | if (*p == '_') | |
1517 | return TRUE; | |
1518 | /* is_utf8_idstart would be more logical. */ | |
1519 | return is_utf8_common(p, &PL_utf8_idstart, "IdStart"); | |
1520 | } | |
1521 | ||
5092f92a | 1522 | bool |
84afefe6 | 1523 | Perl_is_uni_idfirst(pTHX_ UV c) |
a0ed51b3 | 1524 | { |
89ebb4a3 | 1525 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1526 | uvchr_to_utf8(tmpbuf, c); |
61b19385 | 1527 | return S_is_utf8_idfirst(aTHX_ tmpbuf); |
a0ed51b3 LW |
1528 | } |
1529 | ||
1530 | bool | |
f91dcd13 KW |
1531 | Perl__is_uni_perl_idstart(pTHX_ UV c) |
1532 | { | |
1533 | U8 tmpbuf[UTF8_MAXBYTES+1]; | |
1534 | uvchr_to_utf8(tmpbuf, c); | |
1535 | return _is_utf8_perl_idstart(tmpbuf); | |
1536 | } | |
1537 | ||
1538 | bool | |
84afefe6 | 1539 | Perl_is_uni_alpha(pTHX_ UV c) |
a0ed51b3 | 1540 | { |
89ebb4a3 | 1541 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1542 | uvchr_to_utf8(tmpbuf, c); |
922e8cb4 | 1543 | return _is_utf8_FOO(_CC_ALPHA, tmpbuf); |
a0ed51b3 LW |
1544 | } |
1545 | ||
1546 | bool | |
84afefe6 | 1547 | Perl_is_uni_ascii(pTHX_ UV c) |
4d61ec05 | 1548 | { |
bc39fe24 | 1549 | return isASCII(c); |
4d61ec05 GS |
1550 | } |
1551 | ||
1552 | bool | |
bdd8600f KW |
1553 | Perl_is_uni_blank(pTHX_ UV c) |
1554 | { | |
2cafb56b | 1555 | return isBLANK_uni(c); |
bdd8600f KW |
1556 | } |
1557 | ||
1558 | bool | |
84afefe6 | 1559 | Perl_is_uni_space(pTHX_ UV c) |
a0ed51b3 | 1560 | { |
add4123a | 1561 | return isSPACE_uni(c); |
a0ed51b3 LW |
1562 | } |
1563 | ||
1564 | bool | |
84afefe6 | 1565 | Perl_is_uni_digit(pTHX_ UV c) |
a0ed51b3 | 1566 | { |
89ebb4a3 | 1567 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1568 | uvchr_to_utf8(tmpbuf, c); |
922e8cb4 | 1569 | return _is_utf8_FOO(_CC_DIGIT, tmpbuf); |
a0ed51b3 LW |
1570 | } |
1571 | ||
1572 | bool | |
84afefe6 | 1573 | Perl_is_uni_upper(pTHX_ UV c) |
a0ed51b3 | 1574 | { |
89ebb4a3 | 1575 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1576 | uvchr_to_utf8(tmpbuf, c); |
922e8cb4 | 1577 | return _is_utf8_FOO(_CC_UPPER, tmpbuf); |
a0ed51b3 LW |
1578 | } |
1579 | ||
1580 | bool | |
84afefe6 | 1581 | Perl_is_uni_lower(pTHX_ UV c) |
a0ed51b3 | 1582 | { |
89ebb4a3 | 1583 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1584 | uvchr_to_utf8(tmpbuf, c); |
922e8cb4 | 1585 | return _is_utf8_FOO(_CC_LOWER, tmpbuf); |
a0ed51b3 LW |
1586 | } |
1587 | ||
1588 | bool | |
84afefe6 | 1589 | Perl_is_uni_cntrl(pTHX_ UV c) |
b8c5462f | 1590 | { |
7b952154 | 1591 | return isCNTRL_L1(c); |
b8c5462f JH |
1592 | } |
1593 | ||
1594 | bool | |
84afefe6 | 1595 | Perl_is_uni_graph(pTHX_ UV c) |
b8c5462f | 1596 | { |
89ebb4a3 | 1597 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1598 | uvchr_to_utf8(tmpbuf, c); |
922e8cb4 | 1599 | return _is_utf8_FOO(_CC_GRAPH, tmpbuf); |
b8c5462f JH |
1600 | } |
1601 | ||
1602 | bool | |
84afefe6 | 1603 | Perl_is_uni_print(pTHX_ UV c) |
a0ed51b3 | 1604 | { |
89ebb4a3 | 1605 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1606 | uvchr_to_utf8(tmpbuf, c); |
922e8cb4 | 1607 | return _is_utf8_FOO(_CC_PRINT, tmpbuf); |
a0ed51b3 LW |
1608 | } |
1609 | ||
b8c5462f | 1610 | bool |
84afefe6 | 1611 | Perl_is_uni_punct(pTHX_ UV c) |
b8c5462f | 1612 | { |
89ebb4a3 | 1613 | U8 tmpbuf[UTF8_MAXBYTES+1]; |
230880c1 | 1614 | uvchr_to_utf8(tmpbuf, c); |
922e8cb4 | 1615 | return _is_utf8_FOO(_CC_PUNCT, tmpbuf); |
b8c5462f JH |
1616 | } |
1617 | ||
4d61ec05 | 1618 | bool |
84afefe6 | 1619 | Perl_is_uni_xdigit(pTHX_ UV c) |
4d61ec05 | 1620 | { |
4ac6419d | 1621 | return isXDIGIT_uni(c); |
4d61ec05 GS |
1622 | } |
1623 | ||
3a4c58c9 KW |
1624 | UV |
1625 | Perl__to_upper_title_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp, const char S_or_s) | |
1626 | { | |
1627 | /* We have the latin1-range values compiled into the core, so just use | |
1628 | * those, converting the result to utf8. The only difference between upper | |
1629 | * and title case in this range is that LATIN_SMALL_LETTER_SHARP_S is | |
1630 | * either "SS" or "Ss". Which one to use is passed into the routine in | |
1631 | * 'S_or_s' to avoid a test */ | |
1632 | ||
1633 | UV converted = toUPPER_LATIN1_MOD(c); | |
1634 | ||
1635 | PERL_ARGS_ASSERT__TO_UPPER_TITLE_LATIN1; | |
1636 | ||
1637 | assert(S_or_s == 'S' || S_or_s == 's'); | |
1638 | ||
1639 | if (UNI_IS_INVARIANT(converted)) { /* No difference between the two for | |
1640 | characters in this range */ | |
1641 | *p = (U8) converted; | |
1642 | *lenp = 1; | |
1643 | return converted; | |
1644 | } | |
1645 | ||
1646 | /* toUPPER_LATIN1_MOD gives the correct results except for three outliers, | |
1647 | * which it maps to one of them, so as to only have to have one check for | |
1648 | * it in the main case */ | |
1649 | if (UNLIKELY(converted == LATIN_SMALL_LETTER_Y_WITH_DIAERESIS)) { | |
1650 | switch (c) { | |
1651 | case LATIN_SMALL_LETTER_Y_WITH_DIAERESIS: | |
1652 | converted = LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS; | |
1653 | break; | |
1654 | case MICRO_SIGN: | |
1655 | converted = GREEK_CAPITAL_LETTER_MU; | |
1656 | break; | |
1657 | case LATIN_SMALL_LETTER_SHARP_S: | |
1658 | *(p)++ = 'S'; | |
1659 | *p = S_or_s; | |
1660 | *lenp = 2; | |
1661 | return 'S'; | |
1662 | default: | |
1663 | Perl_croak(aTHX_ "panic: to_upper_title_latin1 did not expect '%c' to map to '%c'", c, LATIN_SMALL_LETTER_Y_WITH_DIAERESIS); | |
118e2215 | 1664 | assert(0); /* NOTREACHED */ |
3a4c58c9 KW |
1665 | } |
1666 | } | |
1667 | ||
1668 | *(p)++ = UTF8_TWO_BYTE_HI(converted); | |
1669 | *p = UTF8_TWO_BYTE_LO(converted); | |
1670 | *lenp = 2; | |
1671 | ||
1672 | return converted; | |
1673 | } | |
1674 | ||
50bda2c3 KW |
1675 | /* Call the function to convert a UTF-8 encoded character to the specified case. |
1676 | * Note that there may be more than one character in the result. | |
1677 | * INP is a pointer to the first byte of the input character | |
1678 | * OUTP will be set to the first byte of the string of changed characters. It | |
1679 | * needs to have space for UTF8_MAXBYTES_CASE+1 bytes | |
1680 | * LENP will be set to the length in bytes of the string of changed characters | |
1681 | * | |
1682 | * The functions return the ordinal of the first character in the string of OUTP */ | |
f90a9a02 KW |
1683 | #define CALL_UPPER_CASE(INP, OUTP, LENP) Perl_to_utf8_case(aTHX_ INP, OUTP, LENP, &PL_utf8_toupper, "ToUc", "utf8::ToSpecUc") |
1684 | #define CALL_TITLE_CASE(INP, OUTP, LENP) Perl_to_utf8_case(aTHX_ INP, OUTP, LENP, &PL_utf8_totitle, "ToTc", "utf8::ToSpecTc") | |
1685 | #define CALL_LOWER_CASE(INP, OUTP, LENP) Perl_to_utf8_case(aTHX_ INP, OUTP, LENP, &PL_utf8_tolower, "ToLc", "utf8::ToSpecLc") | |
50bda2c3 KW |
1686 | |
1687 | /* This additionally has the input parameter SPECIALS, which if non-zero will | |
1688 | * cause this to use the SPECIALS hash for folding (meaning get full case | |
1689 | * folding); otherwise, when zero, this implies a simple case fold */ | |
f90a9a02 | 1690 | #define CALL_FOLD_CASE(INP, OUTP, LENP, SPECIALS) Perl_to_utf8_case(aTHX_ INP, OUTP, LENP, &PL_utf8_tofold, "ToCf", (SPECIALS) ? "utf8::ToSpecCf" : NULL) |
c3fd2246 | 1691 | |
84afefe6 JH |
1692 | UV |
1693 | Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp) | |
a0ed51b3 | 1694 | { |
3a4c58c9 KW |
1695 | dVAR; |
1696 | ||
a1433954 KW |
1697 | /* Convert the Unicode character whose ordinal is <c> to its uppercase |
1698 | * version and store that in UTF-8 in <p> and its length in bytes in <lenp>. | |
1699 | * Note that the <p> needs to be at least UTF8_MAXBYTES_CASE+1 bytes since | |
c3fd2246 KW |
1700 | * the changed version may be longer than the original character. |
1701 | * | |
1702 | * The ordinal of the first character of the changed version is returned | |
1703 | * (but note, as explained above, that there may be more.) */ | |
1704 | ||
7918f24d NC |
1705 | PERL_ARGS_ASSERT_TO_UNI_UPPER; |
1706 | ||
3a4c58c9 KW |
1707 | if (c < 256) { |
1708 | return _to_upper_title_latin1((U8) c, p, lenp, 'S'); | |
1709 | } | |
1710 | ||
0ebc6274 | 1711 | uvchr_to_utf8(p, c); |
3a4c58c9 | 1712 | return CALL_UPPER_CASE(p, p, lenp); |
a0ed51b3 LW |
1713 | } |
1714 | ||
84afefe6 JH |
1715 | UV |
1716 | Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp) | |
a0ed51b3 | 1717 | { |
3a4c58c9 KW |
1718 | dVAR; |
1719 | ||
7918f24d NC |
1720 | PERL_ARGS_ASSERT_TO_UNI_TITLE; |
1721 | ||
3a4c58c9 KW |
1722 | if (c < 256) { |
1723 | return _to_upper_title_latin1((U8) c, p, lenp, 's'); | |
1724 | } | |
1725 | ||
0ebc6274 | 1726 | uvchr_to_utf8(p, c); |
3a4c58c9 | 1727 | return CALL_TITLE_CASE(p, p, lenp); |
a0ed51b3 LW |
1728 | } |
1729 | ||
afc16117 KW |
1730 | STATIC U8 |
1731 | S_to_lower_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp) | |
1732 | { | |
1733 | /* We have the latin1-range values compiled into the core, so just use | |
1734 | * those, converting the result to utf8. Since the result is always just | |
a1433954 | 1735 | * one character, we allow <p> to be NULL */ |
afc16117 KW |
1736 | |
1737 | U8 converted = toLOWER_LATIN1(c); | |
1738 | ||
1739 | if (p != NULL) { | |
1740 | if (UNI_IS_INVARIANT(converted)) { | |
1741 | *p = converted; | |
1742 | *lenp = 1; | |
1743 | } | |
1744 | else { | |
1745 | *p = UTF8_TWO_BYTE_HI(converted); | |
1746 | *(p+1) = UTF8_TWO_BYTE_LO(converted); | |
1747 | *lenp = 2; | |
1748 | } | |
1749 | } | |
1750 | return converted; | |
1751 | } | |
1752 | ||
84afefe6 JH |
1753 | UV |
1754 | Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp) | |
a0ed51b3 | 1755 | { |
968c5e6a KW |
1756 | dVAR; |
1757 | ||
7918f24d NC |
1758 | PERL_ARGS_ASSERT_TO_UNI_LOWER; |
1759 | ||
afc16117 KW |
1760 | if (c < 256) { |
1761 | return to_lower_latin1((U8) c, p, lenp); | |
bca00c02 KW |
1762 | } |
1763 | ||
afc16117 | 1764 | uvchr_to_utf8(p, c); |
968c5e6a | 1765 | return CALL_LOWER_CASE(p, p, lenp); |
a0ed51b3 LW |
1766 | } |
1767 | ||
84afefe6 | 1768 | UV |
f673fad4 | 1769 | Perl__to_fold_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp, const bool flags) |
a1dde8de | 1770 | { |
a1433954 | 1771 | /* Corresponds to to_lower_latin1(), <flags> is TRUE if to use full case |
f673fad4 KW |
1772 | * folding */ |
1773 | ||
a1dde8de KW |
1774 | UV converted; |
1775 | ||
1776 | PERL_ARGS_ASSERT__TO_FOLD_LATIN1; | |
1777 | ||
1778 | if (c == MICRO_SIGN) { | |
1779 | converted = GREEK_SMALL_LETTER_MU; | |
1780 | } | |
1781 | else if (flags && c == LATIN_SMALL_LETTER_SHARP_S) { | |
1782 | *(p)++ = 's'; | |
1783 | *p = 's'; | |
1784 | *lenp = 2; | |
1785 | return 's'; | |
1786 | } | |
1787 | else { /* In this range the fold of all other characters is their lower | |
1788 | case */ | |
1789 | converted = toLOWER_LATIN1(c); | |
1790 | } | |
1791 | ||
1792 | if (UNI_IS_INVARIANT(converted)) { | |
1793 | *p = (U8) converted; | |
1794 | *lenp = 1; | |
1795 | } | |
1796 | else { | |
1797 | *(p)++ = UTF8_TWO_BYTE_HI(converted); | |
1798 | *p = UTF8_TWO_BYTE_LO(converted); | |
1799 | *lenp = 2; | |
1800 | } | |
1801 | ||
1802 | return converted; | |
1803 | } | |
1804 | ||
1805 | UV | |
a0270393 | 1806 | Perl__to_uni_fold_flags(pTHX_ UV c, U8* p, STRLEN *lenp, const U8 flags) |
84afefe6 | 1807 | { |
4b593389 | 1808 | |
a0270393 KW |
1809 | /* Not currently externally documented, and subject to change |
1810 | * <flags> bits meanings: | |
1811 | * FOLD_FLAGS_FULL iff full folding is to be used; | |
1812 | * FOLD_FLAGS_LOCALE iff in locale | |
1813 | * FOLD_FLAGS_NOMIX_ASCII iff non-ASCII to ASCII folds are prohibited | |
1814 | */ | |
4b593389 | 1815 | |
36bb2ab6 | 1816 | PERL_ARGS_ASSERT__TO_UNI_FOLD_FLAGS; |
7918f24d | 1817 | |
a1dde8de | 1818 | if (c < 256) { |
a0270393 KW |
1819 | UV result = _to_fold_latin1((U8) c, p, lenp, |
1820 | cBOOL(((flags & FOLD_FLAGS_FULL) | |
1821 | /* If ASCII-safe, don't allow full folding, | |
1822 | * as that could include SHARP S => ss; | |
1823 | * otherwise there is no crossing of | |
1824 | * ascii/non-ascii in the latin1 range */ | |
1825 | && ! (flags & FOLD_FLAGS_NOMIX_ASCII)))); | |
1826 | /* It is illegal for the fold to cross the 255/256 boundary under | |
1827 | * locale; in this case return the original */ | |
1828 | return (result > 256 && flags & FOLD_FLAGS_LOCALE) | |
1829 | ? c | |
1830 | : result; | |
a1dde8de KW |
1831 | } |
1832 | ||
a0270393 KW |
1833 | /* If no special needs, just use the macro */ |
1834 | if ( ! (flags & (FOLD_FLAGS_LOCALE|FOLD_FLAGS_NOMIX_ASCII))) { | |
1835 | uvchr_to_utf8(p, c); | |
1836 | return CALL_FOLD_CASE(p, p, lenp, flags & FOLD_FLAGS_FULL); | |
1837 | } | |
1838 | else { /* Otherwise, _to_utf8_fold_flags has the intelligence to deal with | |
1839 | the special flags. */ | |
1840 | U8 utf8_c[UTF8_MAXBYTES + 1]; | |
1841 | uvchr_to_utf8(utf8_c, c); | |
1842 | return _to_utf8_fold_flags(utf8_c, p, lenp, flags, NULL); | |
1843 | } | |
84afefe6 JH |
1844 | } |
1845 | ||
a0ed51b3 | 1846 | bool |
84afefe6 | 1847 | Perl_is_uni_alnum_lc(pTHX_ UV c) |
a0ed51b3 | 1848 | { |
edfb3318 KW |
1849 | if (c < 256) { |
1850 | return isALNUM_LC(UNI_TO_NATIVE(c)); | |
1851 | } | |
922e8cb4 | 1852 | return _is_uni_FOO(_CC_WORDCHAR, c); |
a0ed51b3 LW |
1853 | } |
1854 | ||
1855 | bool | |
5092f92a KW |
1856 | Perl_is_uni_alnumc_lc(pTHX_ UV c) |
1857 | { | |
1858 | if (c < 256) { | |
15861f94 | 1859 | return isALPHANUMERIC_LC(UNI_TO_NATIVE(c)); |
5092f92a | 1860 | } |
922e8cb4 | 1861 | return _is_uni_FOO(_CC_ALPHANUMERIC, c); |
5092f92a KW |
1862 | } |
1863 | ||
1864 | bool | |
84afefe6 | 1865 | Perl_is_uni_idfirst_lc(pTHX_ UV c) |
a0ed51b3 | 1866 | { |
edfb3318 KW |
1867 | if (c < 256) { |
1868 | return isIDFIRST_LC(UNI_TO_NATIVE(c)); | |
1869 | } | |
1870 | return _is_uni_perl_idstart(c); | |
a0ed51b3 LW |
1871 | } |
1872 | ||
1873 | bool | |
84afefe6 | 1874 | Perl_is_uni_alpha_lc(pTHX_ UV c) |
a0ed51b3 | 1875 | { |
edfb3318 KW |
1876 | if (c < 256) { |
1877 | return isALPHA_LC(UNI_TO_NATIVE(c)); | |
1878 | } | |
922e8cb4 | 1879 | return _is_uni_FOO(_CC_ALPHA, c); |
a0ed51b3 LW |
1880 | } |
1881 | ||
1882 | bool | |
84afefe6 | 1883 | Perl_is_uni_ascii_lc(pTHX_ UV c) |
4d61ec05 | 1884 | { |
edfb3318 KW |
1885 | if (c < 256) { |
1886 | return isASCII_LC(UNI_TO_NATIVE(c)); | |
1887 | } | |
1888 | return 0; | |
4d61ec05 GS |
1889 | } |
1890 | ||
1891 | bool | |
bdd8600f KW |
1892 | Perl_is_uni_blank_lc(pTHX_ UV c) |
1893 | { | |
edfb3318 KW |
1894 | if (c < 256) { |
1895 | return isBLANK_LC(UNI_TO_NATIVE(c)); | |
1896 | } | |
61b19385 | 1897 | return isBLANK_uni(c); |
bdd8600f KW |
1898 | } |
1899 | ||
1900 | bool | |
84afefe6 | 1901 | Perl_is_uni_space_lc(pTHX_ UV c) |
a0ed51b3 | 1902 | { |
edfb3318 KW |
1903 | if (c < 256) { |
1904 | return isSPACE_LC(UNI_TO_NATIVE(c)); | |
1905 | } | |
61b19385 | 1906 | return isSPACE_uni(c); |
a0ed51b3 LW |
1907 | } |
1908 | ||
1909 | bool | |
84afefe6 | 1910 | Perl_is_uni_digit_lc(pTHX_ UV c) |
a0ed51b3 | 1911 | { |
edfb3318 KW |
1912 | if (c < 256) { |
1913 | return isDIGIT_LC(UNI_TO_NATIVE(c)); | |
1914 | } | |
922e8cb4 | 1915 | return _is_uni_FOO(_CC_DIGIT, c); |
a0ed51b3 LW |
1916 | } |
1917 | ||
1918 | bool | |
84afefe6 | 1919 | Perl_is_uni_upper_lc(pTHX_ UV c) |
a0ed51b3 | 1920 | { |
edfb3318 KW |
1921 | if (c < 256) { |
1922 | return isUPPER_LC(UNI_TO_NATIVE(c)); | |
1923 | } | |
922e8cb4 | 1924 | return _is_uni_FOO(_CC_UPPER, c); |
a0ed51b3 LW |
1925 | } |
1926 | ||
1927 | bool | |
84afefe6 | 1928 | Perl_is_uni_lower_lc(pTHX_ UV c) |
a0ed51b3 | 1929 | { |
edfb3318 KW |
1930 | if (c < 256) { |
1931 | return isLOWER_LC(UNI_TO_NATIVE(c)); | |
1932 | } | |
922e8cb4 | 1933 | return _is_uni_FOO(_CC_LOWER, c); |
a0ed51b3 LW |
1934 | } |
1935 | ||
1936 | bool | |
84afefe6 | 1937 | Perl_is_uni_cntrl_lc(pTHX_ UV c) |
b8c5462f | 1938 | { |
edfb3318 KW |
1939 | if (c < 256) { |
1940 | return isCNTRL_LC(UNI_TO_NATIVE(c)); | |
1941 | } | |
61b19385 | 1942 | return 0; |
b8c5462f JH |
1943 | } |
1944 | ||
1945 | bool | |
84afefe6 | 1946 | Perl_is_uni_graph_lc(pTHX_ UV c) |
b8c5462f | 1947 | { |
edfb3318 KW |
1948 | if (c < 256) { |
1949 | return isGRAPH_LC(UNI_TO_NATIVE(c)); | |
1950 | } | |
922e8cb4 | 1951 | return _is_uni_FOO(_CC_GRAPH, c); |
b8c5462f JH |
1952 | } |
1953 | ||
1954 | bool | |
84afefe6 | 1955 | Perl_is_uni_print_lc(pTHX_ UV c) |
a0ed51b3 | 1956 | { |
edfb3318 KW |
1957 | if (c < 256) { |
1958 | return isPRINT_LC(UNI_TO_NATIVE(c)); | |
1959 | } | |
922e8cb4 | 1960 | return _is_uni_FOO(_CC_PRINT, c); |
a0ed51b3 LW |
1961 | } |
1962 | ||
b8c5462f | 1963 | bool |
84afefe6 | 1964 | Perl_is_uni_punct_lc(pTHX_ UV c) |
b8c5462f | 1965 | { |
edfb3318 KW |
1966 | if (c < 256) { |
1967 | return isPUNCT_LC(UNI_TO_NATIVE(c)); | |
1968 | } | |
922e8cb4 | 1969 | return _is_uni_FOO(_CC_PUNCT, c); |
b8c5462f JH |
1970 | } |
1971 | ||
4d61ec05 | 1972 | bool |
84afefe6 | 1973 | Perl_is_uni_xdigit_lc(pTHX_ UV c) |
4d61ec05 | 1974 | { |
edfb3318 KW |
1975 | if (c < 256) { |
1976 | return isXDIGIT_LC(UNI_TO_NATIVE(c)); | |
1977 | } | |
61b19385 | 1978 | return isXDIGIT_uni(c); |
4d61ec05 GS |
1979 | } |
1980 | ||
b7ac61fa JH |
1981 | U32 |
1982 | Perl_to_uni_upper_lc(pTHX_ U32 c) | |
1983 | { | |
ee099d14 JH |
1984 | /* XXX returns only the first character -- do not use XXX */ |
1985 | /* XXX no locale support yet */ | |
1986 | STRLEN len; | |
89ebb4a3 | 1987 | U8 tmpbuf[UTF8_MAXBYTES_CASE+1]; |
ee099d14 | 1988 | return (U32)to_uni_upper(c, tmpbuf, &len); |
b7ac61fa JH |
1989 | } |
1990 | ||
1991 | U32 | |
1992 | Perl_to_uni_title_lc(pTHX_ U32 c) | |
1993 | { | |
ee099d14 JH |
1994 | /* XXX returns only the first character XXX -- do not use XXX */ |
1995 | /* XXX no locale support yet */ | |
1996 | STRLEN len; | |
89ebb4a3 | 1997 | U8 tmpbuf[UTF8_MAXBYTES_CASE+1]; |
ee099d14 | 1998 | return (U32)to_uni_title(c, tmpbuf, &len); |
b7ac61fa JH |
1999 | } |
2000 | ||
2001 | U32 | |
2002 | Perl_to_uni_lower_lc(pTHX_ U32 c) | |
2003 | { | |
ee099d14 JH |
2004 | /* XXX returns only the first character -- do not use XXX */ |
2005 | /* XXX no locale support yet */ | |
2006 | STRLEN len; | |
89ebb4a3 | 2007 | U8 tmpbuf[UTF8_MAXBYTES_CASE+1]; |
ee099d14 | 2008 | return (U32)to_uni_lower(c, tmpbuf, &len); |
b7ac61fa JH |
2009 | } |
2010 | ||
26483009 | 2011 | PERL_STATIC_INLINE bool |
5141f98e | 2012 | S_is_utf8_common(pTHX_ const U8 *const p, SV **swash, |
bde6a22d NC |
2013 | const char *const swashname) |
2014 | { | |
ea317ccb KW |
2015 | /* returns a boolean giving whether or not the UTF8-encoded character that |
2016 | * starts at <p> is in the swash indicated by <swashname>. <swash> | |
2017 | * contains a pointer to where the swash indicated by <swashname> | |
2018 | * is to be stored; which this routine will do, so that future calls will | |
2019 | * look at <*swash> and only generate a swash if it is not null | |
2020 | * | |
2021 | * Note that it is assumed that the buffer length of <p> is enough to | |
2022 | * contain all the bytes that comprise the character. Thus, <*p> should | |
2023 | * have been checked before this call for mal-formedness enough to assure | |
2024 | * that. */ | |
2025 | ||
97aff369 | 2026 | dVAR; |
7918f24d NC |
2027 | |
2028 | PERL_ARGS_ASSERT_IS_UTF8_COMMON; | |
2029 | ||
492a624f KW |
2030 | /* The API should have included a length for the UTF-8 character in <p>, |
2031 | * but it doesn't. We therefor assume that p has been validated at least | |
2032 | * as far as there being enough bytes available in it to accommodate the | |
2033 | * character without reading beyond the end, and pass that number on to the | |
2034 | * validating routine */ | |
2035 | if (!is_utf8_char_buf(p, p + UTF8SKIP(p))) | |
bde6a22d | 2036 | return FALSE; |
87367d5f KW |
2037 | if (!*swash) { |
2038 | U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST; | |
2039 | *swash = _core_swash_init("utf8", swashname, &PL_sv_undef, 1, 0, NULL, &flags); | |
2040 | } | |
bde6a22d NC |
2041 | return swash_fetch(*swash, p, TRUE) != 0; |
2042 | } | |
2043 | ||
2044 | bool | |
922e8cb4 KW |
2045 | Perl__is_utf8_FOO(pTHX_ const U8 classnum, const U8 *p) |
2046 | { | |
2047 | dVAR; | |
2048 | ||
2049 | PERL_ARGS_ASSERT__IS_UTF8_FOO; | |
2050 | ||
2051 | assert(classnum < _FIRST_NON_SWASH_CC); | |
2052 | ||
2053 | return is_utf8_common(p, &PL_utf8_swash_ptrs[classnum], swash_property_names[classnum]); | |
2054 | } | |
2055 | ||
2056 | bool | |
7fc63493 | 2057 | Perl_is_utf8_alnum(pTHX_ const U8 *p) |
a0ed51b3 | 2058 | { |
97aff369 | 2059 | dVAR; |
7918f24d NC |
2060 | |
2061 | PERL_ARGS_ASSERT_IS_UTF8_ALNUM; | |
2062 | ||
671c33bf NC |
2063 | /* NOTE: "IsWord", not "IsAlnum", since Alnum is a true |
2064 | * descendant of isalnum(3), in other words, it doesn't | |
2065 | * contain the '_'. --jhi */ | |
03940dc2 | 2066 | return is_utf8_common(p, &PL_utf8_swash_ptrs[_CC_WORDCHAR], "IsWord"); |
a0ed51b3 LW |
2067 | } |
2068 | ||
2069 | bool | |
5092f92a KW |
2070 | Perl_is_utf8_alnumc(pTHX_ const U8 *p) |
2071 | { | |
2072 | dVAR; | |
2073 | ||
2074 | PERL_ARGS_ASSERT_IS_UTF8_ALNUMC; | |
2075 | ||
03940dc2 | 2076 | return is_utf8_common(p, &PL_utf8_swash_ptrs[_CC_ALPHANUMERIC], "IsAlnum"); |
5092f92a KW |
2077 | } |
2078 | ||
2079 | bool | |
7fc63493 | 2080 | Perl_is_utf8_idfirst(pTHX_ const U8 *p) /* The naming is historical. */ |
a0ed51b3 | 2081 | { |
97aff369 | 2082 | dVAR; |
7918f24d NC |
2083 | |
2084 | PERL_ARGS_ASSERT_IS_UTF8_IDFIRST; | |
2085 | ||
61b19385 | 2086 | return S_is_utf8_idfirst(aTHX_ p); |
82686b01 JH |
2087 | } |
2088 | ||
2089 | bool | |
c11ff943 KW |
2090 | Perl_is_utf8_xidfirst(pTHX_ const U8 *p) /* The naming is historical. */ |
2091 | { | |
2092 | dVAR; | |
2093 | ||
2094 | PERL_ARGS_ASSERT_IS_UTF8_XIDFIRST; | |
2095 | ||
2096 | if (*p == '_') | |
2097 | return TRUE; | |
2098 | /* is_utf8_idstart would be more logical. */ | |
2099 | return is_utf8_common(p, &PL_utf8_xidstart, "XIdStart"); | |
2100 | } | |
2101 | ||
2102 | bool | |
d65654cb | 2103 | Perl__is_utf8_perl_idstart(pTHX_ const U8 *p) |
b6912c02 KW |
2104 | { |
2105 | dVAR; | |
2106 | ||
d65654cb | 2107 | PERL_ARGS_ASSERT__IS_UTF8_PERL_IDSTART; |
b6912c02 KW |
2108 | |
2109 | return is_utf8_common(p, &PL_utf8_perl_idstart, "_Perl_IDStart"); | |
2110 | } | |
2111 | ||
2112 | bool | |
7fc63493 | 2113 | Perl_is_utf8_idcont(pTHX_ const U8 *p) |
82686b01 | 2114 | { |
97aff369 | 2115 | dVAR; |
7918f24d NC |
2116 | |
2117 | PERL_ARGS_ASSERT_IS_UTF8_IDCONT; | |
2118 | ||
d4c19fe8 | 2119 | return is_utf8_common(p, &PL_utf8_idcont, "IdContinue"); |
a0ed51b3 LW |
2120 | } |
2121 | ||
2122 | bool | |
c11ff943 KW |
2123 | Perl_is_utf8_xidcont(pTHX_ const U8 *p) |
2124 | { | |
2125 | dVAR; | |
2126 | ||
2127 | PERL_ARGS_ASSERT_IS_UTF8_XIDCONT; | |
2128 | ||
c11ff943 KW |
2129 | return is_utf8_common(p, &PL_utf8_idcont, "XIdContinue"); |
2130 | } | |
2131 | ||
2132 | bool | |
7fc63493 | 2133 | Perl_is_utf8_alpha(pTHX_ const U8 *p) |
a0ed51b3 | 2134 | { |
97aff369 | 2135 | dVAR; |
7918f24d NC |
2136 | |
2137 | PERL_ARGS_ASSERT_IS_UTF8_ALPHA; | |
2138 | ||
03940dc2 | 2139 | return is_utf8_common(p, &PL_utf8_swash_ptrs[_CC_ALPHA], "IsAlpha"); |
a0ed51b3 LW |
2140 | } |
2141 | ||
2142 | bool | |
7fc63493 | 2143 | Perl_is_utf8_ascii(pTHX_ const U8 *p) |
b8c5462f | 2144 | { |
97aff369 | 2145 | dVAR; |
7918f24d NC |
2146 | |
2147 | PERL_ARGS_ASSERT_IS_UTF8_ASCII; | |
2148 | ||
bc39fe24 KW |
2149 | /* ASCII characters are the same whether in utf8 or not. So the macro |
2150 | * works on both utf8 and non-utf8 representations. */ | |
2151 | return isASCII(*p); | |
b8c5462f JH |
2152 | } |
2153 | ||
2154 | bool | |
bdd8600f KW |
2155 | Perl_is_utf8_blank(pTHX_ const U8 *p) |
2156 | { | |
2157 | dVAR; | |
2158 | ||
2159 | PERL_ARGS_ASSERT_IS_UTF8_BLANK; | |
2160 | ||
2cafb56b | 2161 | return isBLANK_utf8(p); |
bdd8600f KW |
2162 | } |
2163 | ||
2164 | bool | |
7fc63493 | 2165 | Perl_is_utf8_space(pTHX_ const U8 *p) |
a0ed51b3 | 2166 | { |
97aff369 | 2167 | dVAR; |
7918f24d NC |
2168 | |
2169 | PERL_ARGS_ASSERT_IS_UTF8_SPACE; | |
2170 | ||
add4123a | 2171 | return isSPACE_utf8(p); |
a0ed51b3 LW |
2172 | } |
2173 | ||
2174 | bool | |
d1eb3177 YO |
2175 | Perl_is_utf8_perl_space(pTHX_ const U8 *p) |
2176 | { | |
2177 | dVAR; | |
2178 | ||
2179 | PERL_ARGS_ASSERT_IS_UTF8_PERL_SPACE; | |
2180 | ||
c4428693 KW |
2181 | /* Only true if is an ASCII space-like character, and ASCII is invariant |
2182 | * under utf8, so can just use the macro */ | |
2183 | return isSPACE_A(*p); | |
d1eb3177 YO |
2184 | } |
2185 | ||
2186 | bool | |
2187 | Perl_is_utf8_perl_word(pTHX_ const U8 *p) | |
2188 | { | |
2189 | dVAR; | |
2190 | ||
2191 | PERL_ARGS_ASSERT_IS_UTF8_PERL_WORD; | |
2192 | ||
c4428693 KW |
2193 | /* Only true if is an ASCII word character, and ASCII is invariant |
2194 | * under utf8, so can just use the macro */ | |
2195 | return isWORDCHAR_A(*p); | |
d1eb3177 YO |
2196 | } |
2197 | ||
2198 | bool | |
7fc63493 | 2199 | Perl_is_utf8_digit(pTHX_ const U8 *p) |
a0ed51b3 | 2200 | { |
97aff369 | 2201 | dVAR; |
7918f24d NC |
2202 | |
2203 | PERL_ARGS_ASSERT_IS_UTF8_DIGIT; | |
2204 | ||
03940dc2 | 2205 | return is_utf8_common(p, &PL_utf8_swash_ptrs[_CC_DIGIT], "IsDigit"); |
a0ed51b3 LW |
2206 | } |
2207 | ||
2208 | bool | |
d1eb3177 YO |
2209 | Perl_is_utf8_posix_digit(pTHX_ const U8 *p) |
2210 | { | |
2211 | dVAR; | |
2212 | ||
2213 | PERL_ARGS_ASSERT_IS_UTF8_POSIX_DIGIT; | |
2214 | ||
c4428693 KW |
2215 | /* Only true if is an ASCII digit character, and ASCII is invariant |
2216 | * under utf8, so can just use the macro */ | |
2217 | return isDIGIT_A(*p); | |
d1eb3177 YO |
2218 | } |
2219 | ||
2220 | bool | |
7fc63493 | 2221 | Perl_is_utf8_upper(pTHX_ const U8 *p) |
a0ed51b3 | 2222 | { |
97aff369 | 2223 | dVAR; |
7918f24d NC |
2224 | |
2225 | PERL_ARGS_ASSERT_IS_UTF8_UPPER; | |
2226 | ||
03940dc2 | 2227 | return is_utf8_common(p, &PL_utf8_swash_ptrs[_CC_UPPER], "IsUppercase"); |
a0ed51b3 LW |
2228 | } |
2229 | ||
2230 | bool | |
7fc63493 | 2231 | Perl_is_utf8_lower(pTHX_ const U8 *p) |
a0ed51b3 | 2232 | { |
97aff369 | 2233 | dVAR; |
7918f24d NC |
2234 | |
2235 | PERL_ARGS_ASSERT_IS_UTF8_LOWER; | |
2236 | ||
03940dc2 | 2237 | return is_utf8_common(p, &PL_utf8_swash_ptrs[_CC_LOWER], "IsLowercase"); |
a0ed51b3 LW |
2238 | } |
2239 | ||
2240 | bool | |
7fc63493 | 2241 | Perl_is_utf8_cntrl(pTHX_ const U8 *p) |
b8c5462f | 2242 | { |
97aff369 | 2243 | dVAR; |
7918f24d NC |
2244 | |
2245 | PERL_ARGS_ASSERT_IS_UTF8_CNTRL; | |
2246 | ||
a35d759a | 2247 | return isCNTRL_utf8(p); |
b8c5462f JH |
2248 | } |
2249 | ||
2250 | bool | |
7fc63493 | 2251 | Perl_is_utf8_graph(pTHX_ const U8 *p) |
b8c5462f | 2252 | { |
97aff369 | 2253 | dVAR; |
7918f24d NC |
2254 | |
2255 | PERL_ARGS_ASSERT_IS_UTF8_GRAPH; | |
2256 | ||
03940dc2 | 2257 | return is_utf8_common(p, &PL_utf8_swash_ptrs[_CC_GRAPH], "IsGraph"); |
b8c5462f JH |
2258 | } |
2259 | ||
2260 | bool | |
7fc63493 | 2261 | Perl_is_utf8_print(pTHX_ const U8 *p) |
a0ed51b3 | 2262 | { |
97aff369 | 2263 | dVAR; |
7918f24d NC |
2264 | |
2265 | PERL_ARGS_ASSERT_IS_UTF8_PRINT; | |
2266 | ||
03940dc2 | 2267 | return is_utf8_common(p, &PL_utf8_swash_ptrs[_CC_PRINT], "IsPrint"); |
a0ed51b3 LW |
2268 | } |
2269 | ||
2270 | bool | |
7fc63493 | 2271 | Perl_is_utf8_punct(pTHX_ const U8 *p) |
b8c5462f | 2272 | { |
97aff369 | 2273 | dVAR; |
7918f24d NC |
2274 | |
2275 | PERL_ARGS_ASSERT_IS_UTF8_PUNCT; | |
2276 | ||
03940dc2 | 2277 | return is_utf8_common(p, &PL_utf8_swash_ptrs[_CC_PUNCT], "IsPunct"); |
b8c5462f JH |
2278 | } |
2279 | ||
2280 | bool | |
7fc63493 | 2281 | Perl_is_utf8_xdigit(pTHX_ const U8 *p) |
b8c5462f | 2282 | { |
97aff369 | 2283 | dVAR; |
7918f24d NC |
2284 | |
2285 | PERL_ARGS_ASSERT_IS_UTF8_XDIGIT; | |
2286 | ||
4ac6419d | 2287 | return is_XDIGIT_utf8(p); |
b8c5462f JH |
2288 | } |
2289 | ||
2290 | bool | |
7dbf68d2 KW |
2291 | Perl__is_utf8_mark(pTHX_ const U8 *p) |
2292 | { | |
2293 | dVAR; | |
2294 | ||
2295 | PERL_ARGS_ASSERT__IS_UTF8_MARK; | |
2296 | ||
2297 | return is_utf8_common(p, &PL_utf8_mark, "IsM"); | |
2298 | } | |
2299 | ||
2300 | ||
2301 | bool | |
7fc63493 | 2302 | Perl_is_utf8_mark(pTHX_ const U8 *p) |
a0ed51b3 | 2303 | { |
97aff369 | 2304 | dVAR; |
7918f24d NC |
2305 | |
2306 | PERL_ARGS_ASSERT_IS_UTF8_MARK; | |
2307 | ||
7dbf68d2 | 2308 | return _is_utf8_mark(p); |
a0ed51b3 LW |
2309 | } |
2310 | ||
6b5c0936 | 2311 | /* |
87cea99e | 2312 | =for apidoc to_utf8_case |
6b5c0936 | 2313 | |
a1433954 KW |
2314 | The C<p> contains the pointer to the UTF-8 string encoding |
2315 | the character that is being converted. This routine assumes that the character | |
2316 | at C<p> is well-formed. | |
6b5c0936 | 2317 | |
a1433954 KW |
2318 | The C<ustrp> is a pointer to the character buffer to put the |
2319 | conversion result to. The C<lenp> is a pointer to the length | |
6b5c0936 JH |
2320 | of the result. |
2321 | ||
a1433954 | 2322 | The C<swashp> is a pointer to the swash to use. |
6b5c0936 | 2323 | |
a1433954 KW |
2324 | Both the special and normal mappings are stored in F<lib/unicore/To/Foo.pl>, |
2325 | and loaded by SWASHNEW, using F<lib/utf8_heavy.pl>. The C<special> (usually, | |
0134edef | 2326 | but not always, a multicharacter mapping), is tried first. |
6b5c0936 | 2327 | |
a1433954 | 2328 | The C<special> is a string like "utf8::ToSpecLower", which means the |
0134edef JH |
2329 | hash %utf8::ToSpecLower. The access to the hash is through |
2330 | Perl_to_utf8_case(). | |
6b5c0936 | 2331 | |
a1433954 | 2332 | The C<normal> is a string like "ToLower" which means the swash |
0134edef JH |
2333 | %utf8::ToLower. |
2334 | ||
2335 | =cut */ | |
6b5c0936 | 2336 | |
2104c8d9 | 2337 | UV |
9a957fbc AL |
2338 | Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, |
2339 | SV **swashp, const char *normal, const char *special) | |
a0ed51b3 | 2340 | { |
97aff369 | 2341 | dVAR; |
89ebb4a3 | 2342 | U8 tmpbuf[UTF8_MAXBYTES_CASE+1]; |
0134edef | 2343 | STRLEN len = 0; |
4b88fb76 | 2344 | const UV uv0 = valid_utf8_to_uvchr(p, NULL); |
1feea2c7 JH |
2345 | /* The NATIVE_TO_UNI() and UNI_TO_NATIVE() mappings |
2346 | * are necessary in EBCDIC, they are redundant no-ops | |
2347 | * in ASCII-ish platforms, and hopefully optimized away. */ | |
f54cb97a | 2348 | const UV uv1 = NATIVE_TO_UNI(uv0); |
7918f24d NC |
2349 | |
2350 | PERL_ARGS_ASSERT_TO_UTF8_CASE; | |
2351 | ||
9ae3ac1a KW |
2352 | /* Note that swash_fetch() doesn't output warnings for these because it |
2353 | * assumes we will */ | |
8457b38f | 2354 | if (uv1 >= UNICODE_SURROGATE_FIRST) { |
9ae3ac1a | 2355 | if (uv1 <= UNICODE_SURROGATE_LAST) { |
8457b38f KW |
2356 | if (ckWARN_d(WARN_SURROGATE)) { |
2357 | const char* desc = (PL_op) ? OP_DESC(PL_op) : normal; | |
2358 | Perl_warner(aTHX_ packWARN(WARN_SURROGATE), | |
2359 | "Operation \"%s\" returns its argument for UTF-16 surrogate U+%04"UVXf"", desc, uv1); | |
2360 | } | |
9ae3ac1a KW |
2361 | } |
2362 | else if (UNICODE_IS_SUPER(uv1)) { | |
8457b38f KW |
2363 | if (ckWARN_d(WARN_NON_UNICODE)) { |
2364 | const char* desc = (PL_op) ? OP_DESC(PL_op) : normal; | |
2365 | Perl_warner(aTHX_ packWARN(WARN_NON_UNICODE), | |
2366 | "Operation \"%s\" returns its argument for non-Unicode code point 0x%04"UVXf"", desc, uv1); | |
2367 | } | |
9ae3ac1a KW |
2368 | } |
2369 | ||
2370 | /* Note that non-characters are perfectly legal, so no warning should | |
2371 | * be given */ | |
2372 | } | |
2373 | ||
1feea2c7 | 2374 | uvuni_to_utf8(tmpbuf, uv1); |
0134edef JH |
2375 | |
2376 | if (!*swashp) /* load on-demand */ | |
5ab9d2ef | 2377 | *swashp = _core_swash_init("utf8", normal, &PL_sv_undef, 4, 0, NULL, NULL); |
0134edef | 2378 | |
a6f87d8c | 2379 | if (special) { |
0134edef | 2380 | /* It might be "special" (sometimes, but not always, |
2a37f04d | 2381 | * a multicharacter mapping) */ |
6673a63c | 2382 | HV * const hv = get_hv(special, 0); |
b08cf34e JH |
2383 | SV **svp; |
2384 | ||
35da51f7 | 2385 | if (hv && |
b08cf34e JH |
2386 | (svp = hv_fetch(hv, (const char*)tmpbuf, UNISKIP(uv1), FALSE)) && |
2387 | (*svp)) { | |
cfd0369c | 2388 | const char *s; |
47654450 | 2389 | |
cfd0369c | 2390 | s = SvPV_const(*svp, len); |
47654450 JH |
2391 | if (len == 1) |
2392 | len = uvuni_to_utf8(ustrp, NATIVE_TO_UNI(*(U8*)s)) - ustrp; | |
2a37f04d | 2393 | else { |
2f9475ad JH |
2394 | #ifdef EBCDIC |
2395 | /* If we have EBCDIC we need to remap the characters | |
2396 | * since any characters in the low 256 are Unicode | |
2397 | * code points, not EBCDIC. */ | |
7cda7a3d | 2398 | U8 *t = (U8*)s, *tend = t + len, *d; |
2f9475ad JH |
2399 | |
2400 | d = tmpbuf; | |
b08cf34e | 2401 | if (SvUTF8(*svp)) { |
2f9475ad JH |
2402 | STRLEN tlen = 0; |
2403 | ||
2404 | while (t < tend) { | |
6bd1c396 | 2405 | const UV c = utf8_to_uvchr_buf(t, tend, &tlen); |
2f9475ad JH |
2406 | if (tlen > 0) { |
2407 | d = uvchr_to_utf8(d, UNI_TO_NATIVE(c)); | |
2408 | t += tlen; | |
2409 | } | |
2410 | else | |
2411 | break; | |
2412 | } | |
2413 | } | |
2414 | else { | |
36fec512 JH |
2415 | while (t < tend) { |
2416 | d = uvchr_to_utf8(d, UNI_TO_NATIVE(*t)); | |
2417 | t++; | |
2418 | } | |
2f9475ad JH |
2419 | } |
2420 | len = d - tmpbuf; | |
2421 | Copy(tmpbuf, ustrp, len, U8); | |
2422 | #else | |
d2dcd0fb | 2423 | Copy(s, ustrp, len, U8); |
2f9475ad | 2424 | #endif |
29e98929 | 2425 | } |
983ffd37 | 2426 | } |
0134edef JH |
2427 | } |
2428 | ||
2429 | if (!len && *swashp) { | |
2114036c | 2430 | const UV uv2 = swash_fetch(*swashp, tmpbuf, TRUE /* => is utf8 */); |
d4c19fe8 | 2431 | |
0134edef JH |
2432 | if (uv2) { |
2433 | /* It was "normal" (a single character mapping). */ | |
d4c19fe8 | 2434 | const UV uv3 = UNI_TO_NATIVE(uv2); |
e9101d72 | 2435 | len = uvchr_to_utf8(ustrp, uv3) - ustrp; |
2a37f04d JH |
2436 | } |
2437 | } | |
1feea2c7 | 2438 | |
cbe07460 KW |
2439 | if (len) { |
2440 | if (lenp) { | |
2441 | *lenp = len; | |
2442 | } | |
2443 | return valid_utf8_to_uvchr(ustrp, 0); | |
2444 | } | |
2445 | ||
2446 | /* Here, there was no mapping defined, which means that the code point maps | |
2447 | * to itself. Return the inputs */ | |
bfdf22ec | 2448 | len = UTF8SKIP(p); |
ca9fab46 KW |
2449 | if (p != ustrp) { /* Don't copy onto itself */ |
2450 | Copy(p, ustrp, len, U8); | |
2451 | } | |
0134edef | 2452 | |
2a37f04d JH |
2453 | if (lenp) |
2454 | *lenp = len; | |
2455 | ||
cbe07460 KW |
2456 | return uv0; |
2457 | ||
a0ed51b3 LW |
2458 | } |
2459 | ||
051a06d4 KW |
2460 | STATIC UV |
2461 | S_check_locale_boundary_crossing(pTHX_ const U8* const p, const UV result, U8* const ustrp, STRLEN *lenp) | |
2462 | { | |
2463 | /* This is called when changing the case of a utf8-encoded character above | |
2464 | * the Latin1 range, and the operation is in locale. If the result | |
2465 | * contains a character that crosses the 255/256 boundary, disallow the | |
2466 | * change, and return the original code point. See L<perlfunc/lc> for why; | |
2467 | * | |
a1433954 KW |
2468 | * p points to the original string whose case was changed; assumed |
2469 | * by this routine to be well-formed | |
051a06d4 KW |
2470 | * result the code point of the first character in the changed-case string |
2471 | * ustrp points to the changed-case string (<result> represents its first char) | |
2472 | * lenp points to the length of <ustrp> */ | |
2473 | ||
2474 | UV original; /* To store the first code point of <p> */ | |
2475 | ||
2476 | PERL_ARGS_ASSERT_CHECK_LOCALE_BOUNDARY_CROSSING; | |
2477 | ||
2478 | assert(! UTF8_IS_INVARIANT(*p) && ! UTF8_IS_DOWNGRADEABLE_START(*p)); | |
2479 | ||
2480 | /* We know immediately if the first character in the string crosses the | |
2481 | * boundary, so can skip */ | |
2482 | if (result > 255) { | |
2483 | ||
2484 | /* Look at every character in the result; if any cross the | |
2485 | * boundary, the whole thing is disallowed */ | |
2486 | U8* s = ustrp + UTF8SKIP(ustrp); | |
2487 | U8* e = ustrp + *lenp; | |
2488 | while (s < e) { | |
2489 | if (UTF8_IS_INVARIANT(*s) || UTF8_IS_DOWNGRADEABLE_START(*s)) | |
2490 | { | |
2491 | goto bad_crossing; | |
2492 | } | |
2493 | s += UTF8SKIP(s); | |
2494 | } | |
2495 | ||
2496 | /* Here, no characters crossed, result is ok as-is */ | |
2497 | return result; | |
2498 | } | |
2499 | ||
2500 | bad_crossing: | |
2501 | ||
2502 | /* Failed, have to return the original */ | |
4b88fb76 | 2503 | original = valid_utf8_to_uvchr(p, lenp); |
051a06d4 KW |
2504 | Copy(p, ustrp, *lenp, char); |
2505 | return original; | |
2506 | } | |
2507 | ||
d3e79532 | 2508 | /* |
87cea99e | 2509 | =for apidoc to_utf8_upper |
d3e79532 | 2510 | |
a1433954 KW |
2511 | Convert the UTF-8 encoded character at C<p> to its uppercase version and |
2512 | store that in UTF-8 in C<ustrp> and its length in bytes in C<lenp>. Note | |
89ebb4a3 JH |
2513 | that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since |
2514 | the uppercase version may be longer than the original character. | |
d3e79532 JH |
2515 | |
2516 | The first character of the uppercased version is returned | |
2517 | (but note, as explained above, that there may be more.) | |
2518 | ||
a1433954 KW |
2519 | The character at C<p> is assumed by this routine to be well-formed. |
2520 | ||
d3e79532 JH |
2521 | =cut */ |
2522 | ||
051a06d4 KW |
2523 | /* Not currently externally documented, and subject to change: |
2524 | * <flags> is set iff locale semantics are to be used for code points < 256 | |
2525 | * <tainted_ptr> if non-null, *tainted_ptr will be set TRUE iff locale rules | |
2526 | * were used in the calculation; otherwise unchanged. */ | |
2527 | ||
2104c8d9 | 2528 | UV |
051a06d4 | 2529 | Perl__to_utf8_upper_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, const bool flags, bool* tainted_ptr) |
a0ed51b3 | 2530 | { |
97aff369 | 2531 | dVAR; |
7918f24d | 2532 | |
051a06d4 KW |
2533 | UV result; |
2534 | ||
2535 | PERL_ARGS_ASSERT__TO_UTF8_UPPER_FLAGS; | |
7918f24d | 2536 | |
3a4c58c9 | 2537 | if (UTF8_IS_INVARIANT(*p)) { |
051a06d4 KW |
2538 | if (flags) { |
2539 | result = toUPPER_LC(*p); | |
2540 | } | |
2541 | else { | |
81c6c7ce | 2542 | return _to_upper_title_latin1(*p, ustrp, lenp, 'S'); |
051a06d4 | 2543 | } |
3a4c58c9 KW |
2544 | } |
2545 | else if UTF8_IS_DOWNGRADEABLE_START(*p) { | |
051a06d4 KW |
2546 | if (flags) { |
2547 | result = toUPPER_LC(TWO_BYTE_UTF8_TO_UNI(*p, *(p+1))); | |
2548 | } | |
2549 | else { | |
81c6c7ce KW |
2550 | return _to_upper_title_latin1(TWO_BYTE_UTF8_TO_UNI(*p, *(p+1)), |
2551 | ustrp, lenp, 'S'); | |
051a06d4 KW |
2552 | } |
2553 | } | |
2554 | else { /* utf8, ord above 255 */ | |
2555 | result = CALL_UPPER_CASE(p, ustrp, lenp); | |
2556 | ||
2557 | if (flags) { | |
2558 | result = check_locale_boundary_crossing(p, result, ustrp, lenp); | |
2559 | } | |
2560 | return result; | |
2561 | } | |
2562 | ||
2563 | /* Here, used locale rules. Convert back to utf8 */ | |
2564 | if (UTF8_IS_INVARIANT(result)) { | |
2565 | *ustrp = (U8) result; | |
2566 | *lenp = 1; | |
2567 | } | |
2568 | else { | |
2569 | *ustrp = UTF8_EIGHT_BIT_HI(result); | |
2570 | *(ustrp + 1) = UTF8_EIGHT_BIT_LO(result); | |
2571 | *lenp = 2; | |
3a4c58c9 KW |
2572 | } |
2573 | ||
051a06d4 KW |
2574 | if (tainted_ptr) { |
2575 | *tainted_ptr = TRUE; | |
2576 | } | |
2577 | return result; | |
983ffd37 | 2578 | } |
a0ed51b3 | 2579 | |
d3e79532 | 2580 | /* |
87cea99e | 2581 | =for apidoc to_utf8_title |
d3e79532 | 2582 | |
a1433954 KW |
2583 | Convert the UTF-8 encoded character at C<p> to its titlecase version and |
2584 | store that in UTF-8 in C<ustrp> and its length in bytes in C<lenp>. Note | |
2585 | that the C<ustrp> needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the | |
89ebb4a3 | 2586 | titlecase version may be longer than the original character. |
d3e79532 JH |
2587 | |
2588 | The first character of the titlecased version is returned | |
2589 | (but note, as explained above, that there may be more.) | |
2590 | ||
a1433954 KW |
2591 | The character at C<p> is assumed by this routine to be well-formed. |
2592 | ||
d3e79532 JH |
2593 | =cut */ |
2594 | ||
051a06d4 KW |
2595 | /* Not currently externally documented, and subject to change: |
2596 | * <flags> is set iff locale semantics are to be used for code points < 256 | |
2597 | * Since titlecase is not defined in POSIX, uppercase is used instead | |
2598 | * for these/ | |
2599 | * <tainted_ptr> if non-null, *tainted_ptr will be set TRUE iff locale rules | |
2600 | * were used in the calculation; otherwise unchanged. */ | |
2601 | ||
983ffd37 | 2602 | UV |
051a06d4 | 2603 | Perl__to_utf8_title_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, const bool flags, bool* tainted_ptr) |
983ffd37 | 2604 | { |
97aff369 | 2605 | dVAR; |
7918f24d | 2606 | |
051a06d4 KW |
2607 | UV result; |
2608 | ||
2609 | PERL_ARGS_ASSERT__TO_UTF8_TITLE_FLAGS; | |
7918f24d | 2610 | |
3a4c58c9 | 2611 | if (UTF8_IS_INVARIANT(*p)) { |
051a06d4 KW |
2612 | if (flags) { |
2613 | result = toUPPER_LC(*p); | |
2614 | } | |
2615 | else { | |
81c6c7ce | 2616 | return _to_upper_title_latin1(*p, ustrp, lenp, 's'); |
051a06d4 | 2617 | } |
3a4c58c9 KW |
2618 | } |
2619 | else if UTF8_IS_DOWNGRADEABLE_START(*p) { | |
051a06d4 KW |
2620 | if (flags) { |
2621 | result = toUPPER_LC(TWO_BYTE_UTF8_TO_UNI(*p, *(p+1))); | |
2622 | } | |
2623 | else { | |
81c6c7ce KW |
2624 | return _to_upper_title_latin1(TWO_BYTE_UTF8_TO_UNI(*p, *(p+1)), |
2625 | ustrp, lenp, 's'); | |
051a06d4 KW |
2626 | } |
2627 | } | |
2628 | else { /* utf8, ord above 255 */ | |
2629 | result = CALL_TITLE_CASE(p, ustrp, lenp); | |
2630 | ||
2631 | if (flags) { | |
2632 | result = check_locale_boundary_crossing(p, result, ustrp, lenp); | |
2633 | } | |
2634 | return result; | |
2635 | } | |
2636 | ||
2637 | /* Here, used locale rules. Convert back to utf8 */ | |
2638 | if (UTF8_IS_INVARIANT(result)) { | |
2639 | *ustrp = (U8) result; | |
2640 | *lenp = 1; | |
2641 | } | |
2642 | else { | |
2643 | *ustrp = UTF8_EIGHT_BIT_HI(result); | |
2644 | *(ustrp + 1) = UTF8_EIGHT_BIT_LO(result); | |
2645 | *lenp = 2; | |
3a4c58c9 KW |
2646 | } |
2647 | ||
051a06d4 KW |
2648 | if (tainted_ptr) { |
2649 | *tainted_ptr = TRUE; | |
2650 | } | |
2651 | return result; | |
a0ed51b3 LW |
2652 | } |
2653 | ||
d3e79532 | 2654 | /* |
87cea99e | 2655 | =for apidoc to_utf8_lower |
d3e79532 | 2656 | |
a1433954 KW |
2657 | Convert the UTF-8 encoded character at C<p> to its lowercase version and |
2658 | store that in UTF-8 in ustrp and its length in bytes in C<lenp>. Note | |
2659 | that the C<ustrp> needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the | |
89ebb4a3 | 2660 | lowercase version may be longer than the original character. |
d3e79532 JH |
2661 | |
2662 | The first character of the lowercased version is returned | |
2663 | (but note, as explained above, that there may be more.) | |
2664 | ||
a1433954 KW |
2665 | The character at C<p> is assumed by this routine to be well-formed. |
2666 | ||
d3e79532 JH |
2667 | =cut */ |
2668 | ||
051a06d4 KW |
2669 | /* Not currently externally documented, and subject to change: |
2670 | * <flags> is set iff locale semantics are to be used for code points < 256 | |
2671 | * <tainted_ptr> if non-null, *tainted_ptr will be set TRUE iff locale rules | |
2672 | * were used in the calculation; otherwise unchanged. */ | |
2673 | ||
2104c8d9 | 2674 | UV |
051a06d4 | 2675 | Perl__to_utf8_lower_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, const bool flags, bool* tainted_ptr) |
a0ed51b3 | 2676 | { |
051a06d4 KW |
2677 | UV result; |
2678 | ||
97aff369 | 2679 | dVAR; |
7918f24d | 2680 | |
051a06d4 | 2681 | PERL_ARGS_ASSERT__TO_UTF8_LOWER_FLAGS; |
7918f24d | 2682 | |
968c5e6a | 2683 | if (UTF8_IS_INVARIANT(*p)) { |
051a06d4 KW |
2684 | if (flags) { |
2685 | result = toLOWER_LC(*p); | |
2686 | } | |
2687 | else { | |
81c6c7ce | 2688 | return to_lower_latin1(*p, ustrp, lenp); |
051a06d4 | 2689 | } |
968c5e6a KW |
2690 | } |
2691 | else if UTF8_IS_DOWNGRADEABLE_START(*p) { | |
051a06d4 KW |
2692 | if (flags) { |
2693 | result = toLOWER_LC(TWO_BYTE_UTF8_TO_UNI(*p, *(p+1))); | |
2694 | } | |
2695 | else { | |
81c6c7ce KW |
2696 | return to_lower_latin1(TWO_BYTE_UTF8_TO_UNI(*p, *(p+1)), |
2697 | ustrp, lenp); | |
051a06d4 | 2698 | } |
968c5e6a | 2699 | } |
051a06d4 KW |
2700 | else { /* utf8, ord above 255 */ |
2701 | result = CALL_LOWER_CASE(p, ustrp, lenp); | |
2702 | ||
2703 | if (flags) { | |
2704 | result = check_locale_boundary_crossing(p, result, ustrp, lenp); | |
2705 | } | |
968c5e6a | 2706 | |
051a06d4 KW |
2707 | return result; |
2708 | } | |
2709 | ||
2710 | /* Here, used locale rules. Convert back to utf8 */ | |
2711 | if (UTF8_IS_INVARIANT(result)) { | |
2712 | *ustrp = (U8) result; | |
2713 | *lenp = 1; | |
2714 | } | |
2715 | else { | |
2716 | *ustrp = UTF8_EIGHT_BIT_HI(result); | |
2717 | *(ustrp + 1) = UTF8_EIGHT_BIT_LO(result); | |
2718 | *lenp = 2; | |
2719 | } | |
2720 | ||
2721 | if (tainted_ptr) { | |
2722 | *tainted_ptr = TRUE; | |
2723 | } | |
2724 | return result; | |
b4e400f9 JH |
2725 | } |
2726 | ||
d3e79532 | 2727 | /* |
87cea99e | 2728 | =for apidoc to_utf8_fold |
d3e79532 | 2729 | |
a1433954 KW |
2730 | Convert the UTF-8 encoded character at C<p> to its foldcase version and |
2731 | store that in UTF-8 in C<ustrp> and its length in bytes in C<lenp>. Note | |
2732 | that the C<ustrp> needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the | |
d3e79532 JH |
2733 | foldcase version may be longer than the original character (up to |
2734 | three characters). | |
2735 | ||
2736 | The first character of the foldcased version is returned | |
2737 | (but note, as explained above, that there may be more.) | |
2738 | ||
a1433954 KW |
2739 | The character at C<p> is assumed by this routine to be well-formed. |
2740 | ||
d3e79532 JH |
2741 | =cut */ |
2742 | ||
051a06d4 KW |
2743 | /* Not currently externally documented, and subject to change, |
2744 | * in <flags> | |
2745 | * bit FOLD_FLAGS_LOCALE is set iff locale semantics are to be used for code | |
2746 | * points < 256. Since foldcase is not defined in | |
2747 | * POSIX, lowercase is used instead | |
2748 | * bit FOLD_FLAGS_FULL is set iff full case folds are to be used; | |
2749 | * otherwise simple folds | |
a0270393 KW |
2750 | * bit FOLD_FLAGS_NOMIX_ASCII is set iff folds of non-ASCII to ASCII are |
2751 | * prohibited | |
051a06d4 KW |
2752 | * <tainted_ptr> if non-null, *tainted_ptr will be set TRUE iff locale rules |
2753 | * were used in the calculation; otherwise unchanged. */ | |
36bb2ab6 | 2754 | |
b4e400f9 | 2755 | UV |
051a06d4 | 2756 | Perl__to_utf8_fold_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, U8 flags, bool* tainted_ptr) |
b4e400f9 | 2757 | { |
97aff369 | 2758 | dVAR; |
7918f24d | 2759 | |
051a06d4 KW |
2760 | UV result; |
2761 | ||
36bb2ab6 | 2762 | PERL_ARGS_ASSERT__TO_UTF8_FOLD_FLAGS; |
7918f24d | 2763 | |
a0270393 KW |
2764 | /* These are mutually exclusive */ |
2765 | assert (! ((flags & FOLD_FLAGS_LOCALE) && (flags & FOLD_FLAGS_NOMIX_ASCII))); | |
2766 | ||
50ba90ff KW |
2767 | assert(p != ustrp); /* Otherwise overwrites */ |
2768 | ||
a1dde8de | 2769 | if (UTF8_IS_INVARIANT(*p)) { |
051a06d4 KW |
2770 | if (flags & FOLD_FLAGS_LOCALE) { |
2771 | result = toLOWER_LC(*p); | |
2772 | } | |
2773 | else { | |
81c6c7ce KW |
2774 | return _to_fold_latin1(*p, ustrp, lenp, |
2775 | cBOOL(flags & FOLD_FLAGS_FULL)); | |
051a06d4 | 2776 | } |
a1dde8de KW |
2777 | } |
2778 | else if UTF8_IS_DOWNGRADEABLE_START(*p) { | |
051a06d4 KW |
2779 | if (flags & FOLD_FLAGS_LOCALE) { |
2780 | result = toLOWER_LC(TWO_BYTE_UTF8_TO_UNI(*p, *(p+1))); | |
2781 | } | |
2782 | else { | |
81c6c7ce | 2783 | return _to_fold_latin1(TWO_BYTE_UTF8_TO_UNI(*p, *(p+1)), |
a0270393 KW |
2784 | ustrp, lenp, |
2785 | cBOOL((flags & FOLD_FLAGS_FULL | |
2786 | /* If ASCII safe, don't allow full | |
2787 | * folding, as that could include SHARP | |
2788 | * S => ss; otherwise there is no | |
2789 | * crossing of ascii/non-ascii in the | |
2790 | * latin1 range */ | |
2791 | && ! (flags & FOLD_FLAGS_NOMIX_ASCII)))); | |
051a06d4 | 2792 | } |
a1dde8de | 2793 | } |
051a06d4 | 2794 | else { /* utf8, ord above 255 */ |
a0270393 | 2795 | result = CALL_FOLD_CASE(p, ustrp, lenp, flags & FOLD_FLAGS_FULL); |
a1dde8de | 2796 | |
051a06d4 | 2797 | if ((flags & FOLD_FLAGS_LOCALE)) { |
a0270393 | 2798 | return check_locale_boundary_crossing(p, result, ustrp, lenp); |
051a06d4 | 2799 | } |
a0270393 KW |
2800 | else if (! (flags & FOLD_FLAGS_NOMIX_ASCII)) { |
2801 | return result; | |
2802 | } | |
2803 | else { | |
2804 | /* This is called when changing the case of a utf8-encoded | |
2805 | * character above the Latin1 range, and the result should not | |
2806 | * contain an ASCII character. */ | |
2807 | ||
2808 | UV original; /* To store the first code point of <p> */ | |
2809 | ||
2810 | /* Look at every character in the result; if any cross the | |
2811 | * boundary, the whole thing is disallowed */ | |
2812 | U8* s = ustrp; | |
2813 | U8* e = ustrp + *lenp; | |
2814 | while (s < e) { | |
2815 | if (isASCII(*s)) { | |
2816 | /* Crossed, have to return the original */ | |
2817 | original = valid_utf8_to_uvchr(p, lenp); | |
2818 | Copy(p, ustrp, *lenp, char); | |
2819 | return original; | |
2820 | } | |
2821 | s += UTF8SKIP(s); | |
2822 | } | |
051a06d4 | 2823 | |
a0270393 KW |
2824 | /* Here, no characters crossed, result is ok as-is */ |
2825 | return result; | |
2826 | } | |
051a06d4 KW |
2827 | } |
2828 | ||
2829 | /* Here, used locale rules. Convert back to utf8 */ | |
2830 | if (UTF8_IS_INVARIANT(result)) { | |
2831 | *ustrp = (U8) result; | |
2832 | *lenp = 1; | |
2833 | } | |
2834 | else { | |
2835 | *ustrp = UTF8_EIGHT_BIT_HI(result); | |
2836 | *(ustrp + 1) = UTF8_EIGHT_BIT_LO(result); | |
2837 | *lenp = 2; | |
2838 | } | |
2839 | ||
2840 | if (tainted_ptr) { | |
2841 | *tainted_ptr = TRUE; | |
2842 | } | |
2843 | return result; | |
a0ed51b3 LW |
2844 | } |
2845 | ||
711a919c | 2846 | /* Note: |
f90a9a02 | 2847 | * Returns a "swash" which is a hash described in utf8.c:Perl_swash_fetch(). |
711a919c TS |
2848 | * C<pkg> is a pointer to a package name for SWASHNEW, should be "utf8". |
2849 | * For other parameters, see utf8::SWASHNEW in lib/utf8_heavy.pl. | |
2850 | */ | |
c4a5db0c | 2851 | |
a0ed51b3 | 2852 | SV* |
7fc63493 | 2853 | Perl_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none) |
a0ed51b3 | 2854 | { |
c4a5db0c KW |
2855 | PERL_ARGS_ASSERT_SWASH_INIT; |
2856 | ||
2857 | /* Returns a copy of a swash initiated by the called function. This is the | |
2858 | * public interface, and returning a copy prevents others from doing | |
2859 | * mischief on the original */ | |
2860 | ||
5d3d13d1 | 2861 | return newSVsv(_core_swash_init(pkg, name, listsv, minbits, none, NULL, NULL)); |
c4a5db0c KW |
2862 | } |
2863 | ||
2864 | SV* | |
5d3d13d1 | 2865 | Perl__core_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none, SV* invlist, U8* const flags_p) |
c4a5db0c KW |
2866 | { |
2867 | /* Initialize and return a swash, creating it if necessary. It does this | |
87367d5f KW |
2868 | * by calling utf8_heavy.pl in the general case. The returned value may be |
2869 | * the swash's inversion list instead if the input parameters allow it. | |
2870 | * Which is returned should be immaterial to callers, as the only | |
923b6d4e KW |
2871 | * operations permitted on a swash, swash_fetch(), _get_swash_invlist(), |
2872 | * and swash_to_invlist() handle both these transparently. | |
c4a5db0c KW |
2873 | * |
2874 | * This interface should only be used by functions that won't destroy or | |
2875 | * adversely change the swash, as doing so affects all other uses of the | |
2876 | * swash in the program; the general public should use 'Perl_swash_init' | |
2877 | * instead. | |
2878 | * | |
2879 | * pkg is the name of the package that <name> should be in. | |
2880 | * name is the name of the swash to find. Typically it is a Unicode | |
2881 | * property name, including user-defined ones | |
2882 | * listsv is a string to initialize the swash with. It must be of the form | |
2883 | * documented as the subroutine return value in | |
2884 | * L<perlunicode/User-Defined Character Properties> | |
2885 | * minbits is the number of bits required to represent each data element. | |
2886 | * It is '1' for binary properties. | |
2887 | * none I (khw) do not understand this one, but it is used only in tr///. | |
9a53f6cf | 2888 | * invlist is an inversion list to initialize the swash with (or NULL) |
83199d38 KW |
2889 | * flags_p if non-NULL is the address of various input and output flag bits |
2890 | * to the routine, as follows: ('I' means is input to the routine; | |
2891 | * 'O' means output from the routine. Only flags marked O are | |
2892 | * meaningful on return.) | |
2893 | * _CORE_SWASH_INIT_USER_DEFINED_PROPERTY indicates if the swash | |
2894 | * came from a user-defined property. (I O) | |
5d3d13d1 KW |
2895 | * _CORE_SWASH_INIT_RETURN_IF_UNDEF indicates that instead of croaking |
2896 | * when the swash cannot be located, to simply return NULL. (I) | |
87367d5f KW |
2897 | * _CORE_SWASH_INIT_ACCEPT_INVLIST indicates that the caller will accept a |
2898 | * return of an inversion list instead of a swash hash if this routine | |
2899 | * thinks that would result in faster execution of swash_fetch() later | |
2900 | * on. (I) | |
9a53f6cf KW |
2901 | * |
2902 | * Thus there are three possible inputs to find the swash: <name>, | |
2903 | * <listsv>, and <invlist>. At least one must be specified. The result | |
2904 | * will be the union of the specified ones, although <listsv>'s various | |
2905 | * actions can intersect, etc. what <name> gives. | |
2906 | * | |
2907 | * <invlist> is only valid for binary properties */ | |
c4a5db0c | 2908 | |
27da23d5 | 2909 | dVAR; |
c4a5db0c | 2910 | SV* retval = &PL_sv_undef; |
83199d38 | 2911 | HV* swash_hv = NULL; |
87367d5f KW |
2912 | const int invlist_swash_boundary = |
2913 | (flags_p && *flags_p & _CORE_SWASH_INIT_ACCEPT_INVLIST) | |
2914 | ? 512 /* Based on some benchmarking, but not extensive, see commit | |
2915 | message */ | |
2916 | : -1; /* Never return just an inversion list */ | |
9a53f6cf KW |
2917 | |
2918 | assert(listsv != &PL_sv_undef || strNE(name, "") || invlist); | |
2919 | assert(! invlist || minbits == 1); | |
2920 | ||
2921 | /* If data was passed in to go out to utf8_heavy to find the swash of, do | |
2922 | * so */ | |
2923 | if (listsv != &PL_sv_undef || strNE(name, "")) { | |
69794297 KW |
2924 | dSP; |
2925 | const size_t pkg_len = strlen(pkg); | |
2926 | const size_t name_len = strlen(name); | |
2927 | HV * const stash = gv_stashpvn(pkg, pkg_len, 0); | |
2928 | SV* errsv_save; | |
2929 | GV *method; | |
2930 | ||
2931 | PERL_ARGS_ASSERT__CORE_SWASH_INIT; | |
2932 | ||
2933 | PUSHSTACKi(PERLSI_MAGIC); | |
ce3b816e | 2934 | ENTER; |
69794297 KW |
2935 | SAVEHINTS(); |
2936 | save_re_context(); | |
650f067c JL |
2937 | /* We might get here via a subroutine signature which uses a utf8 |
2938 | * parameter name, at which point PL_subname will have been set | |
2939 | * but not yet used. */ | |
2940 | save_item(PL_subname); | |
69794297 KW |
2941 | if (PL_parser && PL_parser->error_count) |
2942 | SAVEI8(PL_parser->error_count), PL_parser->error_count = 0; | |
2943 | method = gv_fetchmeth(stash, "SWASHNEW", 8, -1); | |
2944 | if (!method) { /* demand load utf8 */ | |
2945 | ENTER; | |
db2c6cb3 FC |
2946 | if ((errsv_save = GvSV(PL_errgv))) SAVEFREESV(errsv_save); |
2947 | GvSV(PL_errgv) = NULL; | |
69794297 KW |
2948 | /* It is assumed that callers of this routine are not passing in |
2949 | * any user derived data. */ | |
2950 | /* Need to do this after save_re_context() as it will set | |
2951 | * PL_tainted to 1 while saving $1 etc (see the code after getrx: | |
2952 | * in Perl_magic_get). Even line to create errsv_save can turn on | |
2953 | * PL_tainted. */ | |
284167a5 S |
2954 | #ifndef NO_TAINT_SUPPORT |
2955 | SAVEBOOL(TAINT_get); | |
2956 | TAINT_NOT; | |
2957 | #endif | |
69794297 KW |
2958 | Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, newSVpvn(pkg,pkg_len), |
2959 | NULL); | |
eed484f9 | 2960 | { |
db2c6cb3 FC |
2961 | /* Not ERRSV, as there is no need to vivify a scalar we are |
2962 | about to discard. */ | |
2963 | SV * const errsv = GvSV(PL_errgv); | |
2964 | if (!SvTRUE(errsv)) { | |
2965 | GvSV(PL_errgv) = SvREFCNT_inc_simple(errsv_save); | |
2966 | SvREFCNT_dec(errsv); | |
2967 | } | |
eed484f9 | 2968 | } |
69794297 KW |
2969 | LEAVE; |
2970 | } | |
2971 | SPAGAIN; | |
2972 | PUSHMARK(SP); | |
2973 | EXTEND(SP,5); | |
2974 | mPUSHp(pkg, pkg_len); | |
2975 | mPUSHp(name, name_len); | |
2976 | PUSHs(listsv); | |
2977 | mPUSHi(minbits); | |
2978 | mPUSHi(none); | |
2979 | PUTBACK; | |
db2c6cb3 FC |
2980 | if ((errsv_save = GvSV(PL_errgv))) SAVEFREESV(errsv_save); |
2981 | GvSV(PL_errgv) = NULL; | |
69794297 KW |
2982 | /* If we already have a pointer to the method, no need to use |
2983 | * call_method() to repeat the lookup. */ | |
c41800a8 KW |
2984 | if (method |
2985 | ? call_sv(MUTABLE_SV(method), G_SCALAR) | |
69794297 KW |
2986 | : call_sv(newSVpvs_flags("SWASHNEW", SVs_TEMP), G_SCALAR | G_METHOD)) |
2987 | { | |
2988 | retval = *PL_stack_sp--; | |
2989 | SvREFCNT_inc(retval); | |
2990 | } | |
eed484f9 | 2991 | { |
db2c6cb3 FC |
2992 | /* Not ERRSV. See above. */ |
2993 | SV * const errsv = GvSV(PL_errgv); | |
2994 | if (!SvTRUE(errsv)) { | |
2995 | GvSV(PL_errgv) = SvREFCNT_inc_simple(errsv_save); | |
2996 | SvREFCNT_dec(errsv); | |
2997 | } | |
eed484f9 | 2998 | } |
ce3b816e | 2999 | LEAVE; |
69794297 KW |
3000 | POPSTACK; |
3001 | if (IN_PERL_COMPILETIME) { | |
3002 | CopHINTS_set(PL_curcop, PL_hints); | |
3003 | } | |
3004 | if (!SvROK(retval) || SvTYPE(SvRV(retval)) != SVt_PVHV) { | |
3005 | if (SvPOK(retval)) | |
3006 | ||
3007 | /* If caller wants to handle missing properties, let them */ | |
5d3d13d1 | 3008 | if (flags_p && *flags_p & _CORE_SWASH_INIT_RETURN_IF_UNDEF) { |
69794297 KW |
3009 | return NULL; |
3010 | } | |
3011 | Perl_croak(aTHX_ | |
3012 | "Can't find Unicode property definition \"%"SVf"\"", | |
3013 | SVfARG(retval)); | |
3014 | Perl_croak(aTHX_ "SWASHNEW didn't return an HV ref"); | |
3015 | } | |
9a53f6cf | 3016 | } /* End of calling the module to find the swash */ |
36eb48b4 | 3017 | |
83199d38 KW |
3018 | /* If this operation fetched a swash, and we will need it later, get it */ |
3019 | if (retval != &PL_sv_undef | |
3020 | && (minbits == 1 || (flags_p | |
3021 | && ! (*flags_p | |
3022 | & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY)))) | |
3023 | { | |
3024 | swash_hv = MUTABLE_HV(SvRV(retval)); | |
3025 | ||
3026 | /* If we don't already know that there is a user-defined component to | |
3027 | * this swash, and the user has indicated they wish to know if there is | |
3028 | * one (by passing <flags_p>), find out */ | |
3029 | if (flags_p && ! (*flags_p & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY)) { | |
3030 | SV** user_defined = hv_fetchs(swash_hv, "USER_DEFINED", FALSE); | |
3031 | if (user_defined && SvUV(*user_defined)) { | |
3032 | *flags_p |= _CORE_SWASH_INIT_USER_DEFINED_PROPERTY; | |
3033 | } | |
3034 | } | |
3035 | } | |
3036 | ||
36eb48b4 KW |
3037 | /* Make sure there is an inversion list for binary properties */ |
3038 | if (minbits == 1) { | |
3039 | SV** swash_invlistsvp = NULL; | |
3040 | SV* swash_invlist = NULL; | |
9a53f6cf | 3041 | bool invlist_in_swash_is_valid = FALSE; |
02c85471 FC |
3042 | bool swash_invlist_unclaimed = FALSE; /* whether swash_invlist has |
3043 | an unclaimed reference count */ | |
36eb48b4 | 3044 | |
9a53f6cf | 3045 | /* If this operation fetched a swash, get its already existing |
83199d38 | 3046 | * inversion list, or create one for it */ |
36eb48b4 | 3047 | |
83199d38 | 3048 | if (swash_hv) { |
5c9f4bd2 | 3049 | swash_invlistsvp = hv_fetchs(swash_hv, "V", FALSE); |
9a53f6cf KW |
3050 | if (swash_invlistsvp) { |
3051 | swash_invlist = *swash_invlistsvp; | |
3052 | invlist_in_swash_is_valid = TRUE; | |
3053 | } | |
3054 | else { | |
36eb48b4 | 3055 | swash_invlist = _swash_to_invlist(retval); |
02c85471 | 3056 | swash_invlist_unclaimed = TRUE; |
9a53f6cf KW |
3057 | } |
3058 | } | |
3059 | ||
3060 | /* If an inversion list was passed in, have to include it */ | |
3061 | if (invlist) { | |
3062 | ||
3063 | /* Any fetched swash will by now have an inversion list in it; | |
3064 | * otherwise <swash_invlist> will be NULL, indicating that we | |
3065 | * didn't fetch a swash */ | |
3066 | if (swash_invlist) { | |
3067 | ||
3068 | /* Add the passed-in inversion list, which invalidates the one | |
3069 | * already stored in the swash */ | |
3070 | invlist_in_swash_is_valid = FALSE; | |
3071 | _invlist_union(invlist, swash_invlist, &swash_invlist); | |
3072 | } | |
3073 | else { | |
3074 | ||
87367d5f KW |
3075 | /* Here, there is no swash already. Set up a minimal one, if |
3076 | * we are going to return a swash */ | |
3077 | if ((int) _invlist_len(invlist) > invlist_swash_boundary) { | |
971d486f | 3078 | swash_hv = newHV(); |
4aca0fe6 | 3079 | retval = newRV_noinc(MUTABLE_SV(swash_hv)); |
87367d5f | 3080 | } |
9a53f6cf KW |
3081 | swash_invlist = invlist; |
3082 | } | |
9a53f6cf KW |
3083 | } |
3084 | ||
3085 | /* Here, we have computed the union of all the passed-in data. It may | |
3086 | * be that there was an inversion list in the swash which didn't get | |
3087 | * touched; otherwise save the one computed one */ | |
87367d5f KW |
3088 | if (! invlist_in_swash_is_valid |
3089 | && (int) _invlist_len(swash_invlist) > invlist_swash_boundary) | |
3090 | { | |
5c9f4bd2 | 3091 | if (! hv_stores(MUTABLE_HV(SvRV(retval)), "V", swash_invlist)) |
69794297 KW |
3092 | { |
3093 | Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed"); | |
3094 | } | |
cc34d8c5 FC |
3095 | /* We just stole a reference count. */ |
3096 | if (swash_invlist_unclaimed) swash_invlist_unclaimed = FALSE; | |
3097 | else SvREFCNT_inc_simple_void_NN(swash_invlist); | |
9a53f6cf | 3098 | } |
87367d5f | 3099 | |
c41800a8 | 3100 | /* Use the inversion list stand-alone if small enough */ |
87367d5f KW |
3101 | if ((int) _invlist_len(swash_invlist) <= invlist_swash_boundary) { |
3102 | SvREFCNT_dec(retval); | |
02c85471 FC |
3103 | if (!swash_invlist_unclaimed) |
3104 | SvREFCNT_inc_simple_void_NN(swash_invlist); | |
3105 | retval = newRV_noinc(swash_invlist); | |
87367d5f | 3106 | } |
36eb48b4 KW |
3107 | } |
3108 | ||
a0ed51b3 LW |
3109 | return retval; |
3110 | } | |
3111 | ||
035d37be JH |
3112 | |
3113 | /* This API is wrong for special case conversions since we may need to | |
3114 | * return several Unicode characters for a single Unicode character | |
3115 | * (see lib/unicore/SpecCase.txt) The SWASHGET in lib/utf8_heavy.pl is | |
3116 | * the lower-level routine, and it is similarly broken for returning | |
38684baa KW |
3117 | * multiple values. --jhi |
3118 | * For those, you should use to_utf8_case() instead */ | |
b0e3252e | 3119 | /* Now SWASHGET is recasted into S_swatch_get in this file. */ |
680c470c TS |
3120 | |
3121 | /* Note: | |
3122 | * Returns the value of property/mapping C<swash> for the first character | |
3123 | * of the string C<ptr>. If C<do_utf8> is true, the string C<ptr> is | |
3124 | * assumed to be in utf8. If C<do_utf8> is false, the string C<ptr> is | |
3125 | * assumed to be in native 8-bit encoding. Caches the swatch in C<swash>. | |
af2af982 KW |
3126 | * |
3127 | * A "swash" is a hash which contains initially the keys/values set up by | |
3128 | * SWASHNEW. The purpose is to be able to completely represent a Unicode | |
3129 | * property for all possible code points. Things are stored in a compact form | |
3130 | * (see utf8_heavy.pl) so that calculation is required to find the actual | |
3131 | * property value for a given code point. As code points are looked up, new | |
3132 | * key/value pairs are added to the hash, so that the calculation doesn't have | |
3133 | * to ever be re-done. Further, each calculation is done, not just for the | |
3134 | * desired one, but for a whole block of code points adjacent to that one. | |
3135 | * For binary properties on ASCII machines, the block is usually for 64 code | |
3136 | * points, starting with a code point evenly divisible by 64. Thus if the | |
3137 | * property value for code point 257 is requested, the code goes out and | |
3138 | * calculates the property values for all 64 code points between 256 and 319, | |
3139 | * and stores these as a single 64-bit long bit vector, called a "swatch", | |
3140 | * under the key for code point 256. The key is the UTF-8 encoding for code | |
3141 | * point 256, minus the final byte. Thus, if the length of the UTF-8 encoding | |
3142 | * for a code point is 13 bytes, the key will be 12 bytes long. If the value | |
3143 | * for code point 258 is then requested, this code realizes that it would be | |
3144 | * stored under the key for 256, and would find that value and extract the | |
3145 | * relevant bit, offset from 256. | |
3146 | * | |
3147 | * Non-binary properties are stored in as many bits as necessary to represent | |
3148 | * their values (32 currently, though the code is more general than that), not | |
3149 | * as single bits, but the principal is the same: the value for each key is a | |
3150 | * vector that encompasses the property values for all code points whose UTF-8 | |
3151 | * representations are represented by the key. That is, for all code points | |
3152 | * whose UTF-8 representations are length N bytes, and the key is the first N-1 | |
3153 | * bytes of that. | |
680c470c | 3154 | */ |
a0ed51b3 | 3155 | UV |
680c470c | 3156 | Perl_swash_fetch(pTHX_ SV *swash, const U8 *ptr, bool do_utf8) |
a0ed51b3 | 3157 | { |
27da23d5 | 3158 | dVAR; |
ef8f7699 | 3159 | HV *const hv = MUTABLE_HV(SvRV(swash)); |
3568d838 JH |
3160 | U32 klen; |
3161 | U32 off; | |
a0ed51b3 | 3162 | STRLEN slen; |
7d85a32c | 3163 | STRLEN needents; |
cfd0369c | 3164 | const U8 *tmps = NULL; |
a0ed51b3 | 3165 | U32 bit; |
979f2922 | 3166 | SV *swatch; |
3568d838 | 3167 | U8 tmputf8[2]; |
35da51f7 | 3168 | const UV c = NATIVE_TO_ASCII(*ptr); |
3568d838 | 3169 | |
7918f24d NC |
3170 | PERL_ARGS_ASSERT_SWASH_FETCH; |
3171 | ||
87367d5f KW |
3172 | /* If it really isn't a hash, it isn't really swash; must be an inversion |
3173 | * list */ | |
3174 | if (SvTYPE(hv) != SVt_PVHV) { | |
3175 | return _invlist_contains_cp((SV*)hv, | |
3176 | (do_utf8) | |
3177 | ? valid_utf8_to_uvchr(ptr, NULL) | |
3178 | : c); | |
3179 | } | |
3180 | ||
dbe7a391 | 3181 | /* Convert to utf8 if not already */ |
3568d838 | 3182 | if (!do_utf8 && !UNI_IS_INVARIANT(c)) { |
979f2922 TS |
3183 | tmputf8[0] = (U8)UTF8_EIGHT_BIT_HI(c); |
3184 | tmputf8[1] = (U8)UTF8_EIGHT_BIT_LO(c); | |
3185 | ptr = tmputf8; | |
3568d838 JH |
3186 | } |
3187 | /* Given a UTF-X encoded char 0xAA..0xYY,0xZZ | |
37e2e78e | 3188 | * then the "swatch" is a vec() for all the chars which start |
3568d838 JH |
3189 | * with 0xAA..0xYY |
3190 | * So the key in the hash (klen) is length of encoded char -1 | |
3191 | */ | |
3192 | klen = UTF8SKIP(ptr) - 1; | |
3193 | off = ptr[klen]; | |
a0ed51b3 | 3194 | |
979f2922 | 3195 | if (klen == 0) { |
37e2e78e | 3196 | /* If char is invariant then swatch is for all the invariant chars |
1e54db1a | 3197 | * In both UTF-8 and UTF-8-MOD that happens to be UTF_CONTINUATION_MARK |
7d85a32c | 3198 | */ |
979f2922 TS |
3199 | needents = UTF_CONTINUATION_MARK; |
3200 | off = NATIVE_TO_UTF(ptr[klen]); | |
3201 | } | |
3202 | else { | |
7d85a32c | 3203 | /* If char is encoded then swatch is for the prefix */ |
979f2922 TS |
3204 | needents = (1 << UTF_ACCUMULATION_SHIFT); |
3205 | off = NATIVE_TO_UTF(ptr[klen]) & UTF_CONTINUATION_MASK; | |
3206 | } | |
7d85a32c | 3207 | |
a0ed51b3 LW |
3208 | /* |
3209 | * This single-entry cache saves about 1/3 of the utf8 overhead in test | |
3210 | * suite. (That is, only 7-8% overall over just a hash cache. Still, | |
3211 | * it's nothing to sniff at.) Pity we usually come through at least | |
3212 | * two function calls to get here... | |
3213 | * | |
3214 | * NB: this code assumes that swatches are never modified, once generated! | |
3215 | */ | |
3216 | ||
3568d838 | 3217 | if (hv == PL_last_swash_hv && |
a0ed51b3 | 3218 | klen == PL_last_swash_klen && |
27da23d5 | 3219 | (!klen || memEQ((char *)ptr, (char *)PL_last_swash_key, klen)) ) |
a0ed51b3 LW |
3220 | { |
3221 | tmps = PL_last_swash_tmps; | |
3222 | slen = PL_last_swash_slen; | |
3223 | } | |
3224 | else { | |
3225 | /* Try our second-level swatch cache, kept in a hash. */ | |
e1ec3a88 | 3226 | SV** svp = hv_fetch(hv, (const char*)ptr, klen, FALSE); |
a0ed51b3 | 3227 | |
b0e3252e | 3228 | /* If not cached, generate it via swatch_get */ |
979f2922 TS |
3229 | if (!svp || !SvPOK(*svp) |
3230 | || !(tmps = (const U8*)SvPV_const(*svp, slen))) { | |
2b9d42f0 NIS |
3231 | /* We use utf8n_to_uvuni() as we want an index into |
3232 | Unicode tables, not a native character number. | |
3233 | */ | |
aec46f14 | 3234 | const UV code_point = utf8n_to_uvuni(ptr, UTF8_MAXBYTES, 0, |
872c91ae JH |
3235 | ckWARN(WARN_UTF8) ? |
3236 | 0 : UTF8_ALLOW_ANY); | |
b0e3252e | 3237 | swatch = swatch_get(swash, |
979f2922 | 3238 | /* On EBCDIC & ~(0xA0-1) isn't a useful thing to do */ |
361ee0fe | 3239 | (klen) ? (code_point & ~((UV)needents - 1)) : 0, |
979f2922 TS |
3240 | needents); |
3241 | ||
923e4eb5 | 3242 | if (IN_PERL_COMPILETIME) |
623e6609 | 3243 | CopHINTS_set(PL_curcop, PL_hints); |
a0ed51b3 | 3244 | |
979f2922 | 3245 | svp = hv_store(hv, (const char *)ptr, klen, swatch, 0); |
a0ed51b3 | 3246 | |
979f2922 TS |
3247 | if (!svp || !(tmps = (U8*)SvPV(*svp, slen)) |
3248 | || (slen << 3) < needents) | |
5637ef5b NC |
3249 | Perl_croak(aTHX_ "panic: swash_fetch got improper swatch, " |
3250 | "svp=%p, tmps=%p, slen=%"UVuf", needents=%"UVuf, | |
3251 | svp, tmps, (UV)slen, (UV)needents); | |
a0ed51b3 LW |
3252 | } |
3253 | ||
3254 | PL_last_swash_hv = hv; | |
16d8f38a | 3255 | assert(klen <= sizeof(PL_last_swash_key)); |
eac04b2e | 3256 | PL_last_swash_klen = (U8)klen; |
cfd0369c NC |
3257 | /* FIXME change interpvar.h? */ |
3258 | PL_last_swash_tmps = (U8 *) tmps; | |
a0ed51b3 LW |
3259 | PL_last_swash_slen = slen; |
3260 | if (klen) | |
3261 | Copy(ptr, PL_last_swash_key, klen, U8); | |
3262 | } | |
3263 | ||
9faf8d75 | 3264 | switch ((int)((slen << 3) / needents)) { |
a0ed51b3 LW |
3265 | case 1: |
3266 | bit = 1 << (off & 7); | |
3267 | off >>= 3; | |
3268 | return (tmps[off] & bit) != 0; | |
3269 | case 8: | |
3270 | return tmps[off]; | |
3271 | case 16: | |
3272 | off <<= 1; | |
3273 | return (tmps[off] << 8) + tmps[off + 1] ; | |
3274 | case 32: | |
3275 | off <<= 2; | |
3276 | return (tmps[off] << 24) + (tmps[off+1] << 16) + (tmps[off+2] << 8) + tmps[off + 3] ; | |
3277 | } | |
5637ef5b NC |
3278 | Perl_croak(aTHX_ "panic: swash_fetch got swatch of unexpected bit width, " |
3279 | "slen=%"UVuf", needents=%"UVuf, (UV)slen, (UV)needents); | |
670f1322 | 3280 | NORETURN_FUNCTION_END; |
a0ed51b3 | 3281 | } |
2b9d42f0 | 3282 | |
319009ee KW |
3283 | /* Read a single line of the main body of the swash input text. These are of |
3284 | * the form: | |
3285 | * 0053 0056 0073 | |
3286 | * where each number is hex. The first two numbers form the minimum and | |
3287 | * maximum of a range, and the third is the value associated with the range. | |
3288 | * Not all swashes should have a third number | |
3289 | * | |
3290 | * On input: l points to the beginning of the line to be examined; it points | |
3291 | * to somewhere in the string of the whole input text, and is | |
3292 | * terminated by a \n or the null string terminator. | |
3293 | * lend points to the null terminator of that string | |
3294 | * wants_value is non-zero if the swash expects a third number | |
3295 | * typestr is the name of the swash's mapping, like 'ToLower' | |
3296 | * On output: *min, *max, and *val are set to the values read from the line. | |
3297 | * returns a pointer just beyond the line examined. If there was no | |
3298 | * valid min number on the line, returns lend+1 | |
3299 | */ | |
3300 | ||
3301 | STATIC U8* | |
3302 | S_swash_scan_list_line(pTHX_ U8* l, U8* const lend, UV* min, UV* max, UV* val, | |
3303 | const bool wants_value, const U8* const typestr) | |
3304 | { | |
3305 | const int typeto = typestr[0] == 'T' && typestr[1] == 'o'; | |
3306 | STRLEN numlen; /* Length of the number */ | |
02470786 KW |
3307 | I32 flags = PERL_SCAN_SILENT_ILLDIGIT |
3308 | | PERL_SCAN_DISALLOW_PREFIX | |
3309 | | PERL_SCAN_SILENT_NON_PORTABLE; | |
319009ee KW |
3310 | |
3311 | /* nl points to the next \n in the scan */ | |
3312 | U8* const nl = (U8*)memchr(l, '\n', lend - l); | |
3313 | ||
3314 | /* Get the first number on the line: the range minimum */ | |
3315 | numlen = lend - l; | |
3316 | *min = grok_hex((char *)l, &numlen, &flags, NULL); | |
3317 | if (numlen) /* If found a hex number, position past it */ | |
3318 | l += numlen; | |
3319 | else if (nl) { /* Else, go handle next line, if any */ | |
3320 | return nl + 1; /* 1 is length of "\n" */ | |
3321 | } | |
3322 | else { /* Else, no next line */ | |
3323 | return lend + 1; /* to LIST's end at which \n is not found */ | |
3324 | } | |
3325 | ||
3326 | /* The max range value follows, separated by a BLANK */ | |
3327 | if (isBLANK(*l)) { | |
3328 | ++l; | |
02470786 KW |
3329 | flags = PERL_SCAN_SILENT_ILLDIGIT |
3330 | | PERL_SCAN_DISALLOW_PREFIX | |
3331 | | PERL_SCAN_SILENT_NON_PORTABLE; | |
319009ee KW |
3332 | numlen = lend - l; |
3333 | *max = grok_hex((char *)l, &numlen, &flags, NULL); | |
3334 | if (numlen) | |
3335 | l += numlen; | |
3336 | else /* If no value here, it is a single element range */ | |
3337 | *max = *min; | |
3338 | ||
3339 | /* Non-binary tables have a third entry: what the first element of the | |
3340 | * range maps to */ | |
3341 | if (wants_value) { | |
3342 | if (isBLANK(*l)) { | |
3343 | ++l; | |
f90a9a02 KW |
3344 | |
3345 | /* The ToLc, etc table mappings are not in hex, and must be | |
3346 | * corrected by adding the code point to them */ | |
3347 | if (typeto) { | |
3348 | char *after_strtol = (char *) lend; | |
3349 | *val = Strtol((char *)l, &after_strtol, 10); | |
3350 | l = (U8 *) after_strtol; | |
f90a9a02 KW |
3351 | } |
3352 | else { /* Other tables are in hex, and are the correct result | |
3353 | without tweaking */ | |
a9d188b3 KW |
3354 | flags = PERL_SCAN_SILENT_ILLDIGIT |
3355 | | PERL_SCAN_DISALLOW_PREFIX | |
3356 | | PERL_SCAN_SILENT_NON_PORTABLE; | |
3357 | numlen = lend - l; | |
3358 | *val = grok_hex((char *)l, &numlen, &flags, NULL); | |
3359 | if (numlen) | |
3360 | l += numlen; | |
3361 | else | |
3362 | *val = 0; | |
f90a9a02 | 3363 | } |
319009ee KW |
3364 | } |
3365 | else { | |
3366 | *val = 0; | |
3367 | if (typeto) { | |
dcbac5bb | 3368 | /* diag_listed_as: To%s: illegal mapping '%s' */ |
319009ee KW |
3369 | Perl_croak(aTHX_ "%s: illegal mapping '%s'", |
3370 | typestr, l); | |
3371 | } | |
3372 | } | |
3373 | } | |
3374 | else | |
3375 | *val = 0; /* bits == 1, then any val should be ignored */ | |
3376 | } | |
3377 | else { /* Nothing following range min, should be single element with no | |
3378 | mapping expected */ | |
3379 | *max = *min; | |
3380 | if (wants_value) { | |
3381 | *val = 0; | |
3382 | if (typeto) { | |
dcbac5bb | 3383 | /* diag_listed_as: To%s: illegal mapping '%s' */ |
319009ee KW |
3384 | Perl_croak(aTHX_ "%s: illegal mapping '%s'", typestr, l); |
3385 | } | |
3386 | } | |
3387 | else | |
3388 | *val = 0; /* bits == 1, then val should be ignored */ | |
3389 | } | |
3390 | ||
3391 | /* Position to next line if any, or EOF */ | |
3392 | if (nl) | |
3393 | l = nl + 1; | |
3394 | else | |
3395 | l = lend; | |
3396 | ||
3397 | return l; | |
3398 | } | |
3399 | ||
979f2922 TS |
3400 | /* Note: |
3401 | * Returns a swatch (a bit vector string) for a code point sequence | |
3402 | * that starts from the value C<start> and comprises the number C<span>. | |
3403 | * A C<swash> must be an object created by SWASHNEW (see lib/utf8_heavy.pl). | |
3404 | * Should be used via swash_fetch, which will cache the swatch in C<swash>. | |
3405 | */ | |
3406 | STATIC SV* | |
b0e3252e | 3407 | S_swatch_get(pTHX_ SV* swash, UV start, UV span) |
979f2922 TS |
3408 | { |
3409 | SV *swatch; | |
77f9f126 | 3410 | U8 *l, *lend, *x, *xend, *s, *send; |
979f2922 | 3411 | STRLEN lcur, xcur, scur; |
ef8f7699 | 3412 | HV *const hv = MUTABLE_HV(SvRV(swash)); |
5c9f4bd2 | 3413 | SV** const invlistsvp = hv_fetchs(hv, "V", FALSE); |
36eb48b4 | 3414 | |
88d45d28 KW |
3415 | SV** listsvp = NULL; /* The string containing the main body of the table */ |
3416 | SV** extssvp = NULL; | |
3417 | SV** invert_it_svp = NULL; | |
3418 | U8* typestr = NULL; | |
786861f5 KW |
3419 | STRLEN bits; |
3420 | STRLEN octets; /* if bits == 1, then octets == 0 */ | |
3421 | UV none; | |
3422 | UV end = start + span; | |
972dd592 | 3423 | |
36eb48b4 | 3424 | if (invlistsvp == NULL) { |
786861f5 KW |
3425 | SV** const bitssvp = hv_fetchs(hv, "BITS", FALSE); |
3426 | SV** const nonesvp = hv_fetchs(hv, "NONE", FALSE); | |
3427 | SV** const typesvp = hv_fetchs(hv, "TYPE", FALSE); | |
3428 | extssvp = hv_fetchs(hv, "EXTRAS", FALSE); | |
3429 | listsvp = hv_fetchs(hv, "LIST", FALSE); | |
3430 | invert_it_svp = hv_fetchs(hv, "INVERT_IT", FALSE); | |
3431 | ||
3432 | bits = SvUV(*bitssvp); | |
3433 | none = SvUV(*nonesvp); | |
3434 | typestr = (U8*)SvPV_nolen(*typesvp); | |
3435 | } | |
36eb48b4 KW |
3436 | else { |
3437 | bits = 1; | |
3438 | none = 0; | |
3439 | } | |
786861f5 | 3440 | octets = bits >> 3; /* if bits == 1, then octets == 0 */ |
979f2922 | 3441 | |
b0e3252e | 3442 | PERL_ARGS_ASSERT_SWATCH_GET; |
7918f24d | 3443 | |
979f2922 | 3444 | if (bits != 1 && bits != 8 && bits != 16 && bits != 32) { |
b0e3252e | 3445 | Perl_croak(aTHX_ "panic: swatch_get doesn't expect bits %"UVuf, |
660a4616 | 3446 | (UV)bits); |
979f2922 TS |
3447 | } |
3448 | ||
84ea5ef6 KW |
3449 | /* If overflowed, use the max possible */ |
3450 | if (end < start) { | |
3451 | end = UV_MAX; | |
3452 | span = end - start; | |
3453 | } | |
3454 | ||
979f2922 | 3455 | /* create and initialize $swatch */ |
979f2922 | 3456 | scur = octets ? (span * octets) : (span + 7) / 8; |
e524fe40 NC |
3457 | swatch = newSV(scur); |
3458 | SvPOK_on(swatch); | |
979f2922 TS |
3459 | s = (U8*)SvPVX(swatch); |
3460 | if (octets && none) { | |
0bd48802 | 3461 | const U8* const e = s + scur; |
979f2922 TS |
3462 | while (s < e) { |
3463 | if (bits == 8) | |
3464 | *s++ = (U8)(none & 0xff); | |
3465 | else if (bits == 16) { | |
3466 | *s++ = (U8)((none >> 8) & 0xff); | |
3467 | *s++ = (U8)( none & 0xff); | |
3468 | } | |
3469 | else if (bits == 32) { | |
3470 | *s++ = (U8)((none >> 24) & 0xff); | |
3471 | *s++ = (U8)((none >> 16) & 0xff); | |
3472 | *s++ = (U8)((none >> 8) & 0xff); | |
3473 | *s++ = (U8)( none & 0xff); | |
3474 | } | |
3475 | } | |
3476 | *s = '\0'; | |
3477 | } | |
3478 | else { | |
3479 | (void)memzero((U8*)s, scur + 1); | |
3480 | } | |
3481 | SvCUR_set(swatch, scur); | |
3482 | s = (U8*)SvPVX(swatch); | |
3483 | ||
36eb48b4 KW |
3484 | if (invlistsvp) { /* If has an inversion list set up use that */ |
3485 | _invlist_populate_swatch(*invlistsvp, start, end, s); | |
3486 | return swatch; | |
3487 | } | |
3488 | ||
3489 | /* read $swash->{LIST} */ | |
979f2922 TS |
3490 | l = (U8*)SvPV(*listsvp, lcur); |
3491 | lend = l + lcur; | |
3492 | while (l < lend) { | |
8ed25d53 | 3493 | UV min, max, val, upper; |
319009ee KW |
3494 | l = S_swash_scan_list_line(aTHX_ l, lend, &min, &max, &val, |
3495 | cBOOL(octets), typestr); | |
3496 | if (l > lend) { | |
979f2922 TS |
3497 | break; |
3498 | } | |
3499 | ||
972dd592 | 3500 | /* If looking for something beyond this range, go try the next one */ |
979f2922 TS |
3501 | if (max < start) |
3502 | continue; | |
3503 | ||
8ed25d53 KW |
3504 | /* <end> is generally 1 beyond where we want to set things, but at the |
3505 | * platform's infinity, where we can't go any higher, we want to | |
3506 | * include the code point at <end> */ | |
3507 | upper = (max < end) | |
3508 | ? max | |
3509 | : (max != UV_MAX || end != UV_MAX) | |
3510 | ? end - 1 | |
3511 | : end; | |
3512 | ||
979f2922 | 3513 | if (octets) { |
35da51f7 | 3514 | UV key; |
979f2922 TS |
3515 | if (min < start) { |
3516 | if (!none || val < none) { | |
3517 | val += start - min; | |
3518 | } | |
3519 | min = start; | |
3520 | } | |
8ed25d53 | 3521 | for (key = min; key <= upper; key++) { |
979f2922 | 3522 | STRLEN offset; |
979f2922 TS |
3523 | /* offset must be non-negative (start <= min <= key < end) */ |
3524 | offset = octets * (key - start); | |
3525 | if (bits == 8) | |
3526 | s[offset] = (U8)(val & 0xff); | |
3527 | else if (bits == 16) { | |
3528 | s[offset ] = (U8)((val >> 8) & 0xff); | |
3529 | s[offset + 1] = (U8)( val & 0xff); | |
3530 | } | |
3531 | else if (bits == 32) { | |
3532 | s[offset ] = (U8)((val >> 24) & 0xff); | |
3533 | s[offset + 1] = (U8)((val >> 16) & 0xff); | |
3534 | s[offset + 2] = (U8)((val >> 8) & 0xff); | |
3535 | s[offset + 3] = (U8)( val & 0xff); | |
3536 | } | |
3537 | ||
3538 | if (!none || val < none) | |
3539 | ++val; | |
3540 | } | |
3541 | } | |
711a919c | 3542 | else { /* bits == 1, then val should be ignored */ |
35da51f7 | 3543 | UV key; |
979f2922 TS |
3544 | if (min < start) |
3545 | min = start; | |
6cb05c12 | 3546 | |
8ed25d53 | 3547 | for (key = min; key <= upper; key++) { |
0bd48802 | 3548 | const STRLEN offset = (STRLEN)(key - start); |
979f2922 TS |
3549 | s[offset >> 3] |= 1 << (offset & 7); |
3550 | } | |
3551 | } | |
3552 | } /* while */ | |
979f2922 | 3553 | |
9479a769 | 3554 | /* Invert if the data says it should be. Assumes that bits == 1 */ |
77f9f126 | 3555 | if (invert_it_svp && SvUV(*invert_it_svp)) { |
0bda3001 KW |
3556 | |
3557 | /* Unicode properties should come with all bits above PERL_UNICODE_MAX | |
3558 | * be 0, and their inversion should also be 0, as we don't succeed any | |
3559 | * Unicode property matches for non-Unicode code points */ | |
3560 | if (start <= PERL_UNICODE_MAX) { | |
3561 | ||
3562 | /* The code below assumes that we never cross the | |
3563 | * Unicode/above-Unicode boundary in a range, as otherwise we would | |
3564 | * have to figure out where to stop flipping the bits. Since this | |
3565 | * boundary is divisible by a large power of 2, and swatches comes | |
3566 | * in small powers of 2, this should be a valid assumption */ | |
3567 | assert(start + span - 1 <= PERL_UNICODE_MAX); | |
3568 | ||
507a8485 KW |
3569 | send = s + scur; |
3570 | while (s < send) { | |
3571 | *s = ~(*s); | |
3572 | s++; | |
3573 | } | |
0bda3001 | 3574 | } |
77f9f126 KW |
3575 | } |
3576 | ||
d73c39c5 KW |
3577 | /* read $swash->{EXTRAS} |
3578 | * This code also copied to swash_to_invlist() below */ | |
979f2922 TS |
3579 | x = (U8*)SvPV(*extssvp, xcur); |
3580 | xend = x + xcur; | |
3581 | while (x < xend) { | |
3582 | STRLEN namelen; | |
3583 | U8 *namestr; | |
3584 | SV** othersvp; | |
3585 | HV* otherhv; | |
3586 | STRLEN otherbits; | |
3587 | SV **otherbitssvp, *other; | |
711a919c | 3588 | U8 *s, *o, *nl; |
979f2922 TS |
3589 | STRLEN slen, olen; |
3590 | ||
35da51f7 | 3591 | const U8 opc = *x++; |
979f2922 TS |
3592 | if (opc == '\n') |
3593 | continue; | |
3594 | ||
3595 | nl = (U8*)memchr(x, '\n', xend - x); | |
3596 | ||
3597 | if (opc != '-' && opc != '+' && opc != '!' && opc != '&') { | |
3598 | if (nl) { | |
3599 | x = nl + 1; /* 1 is length of "\n" */ | |
3600 | continue; | |
3601 | } | |
3602 | else { | |
3603 | x = xend; /* to EXTRAS' end at which \n is not found */ | |
3604 | break; | |
3605 | } | |
3606 | } | |
3607 | ||
3608 | namestr = x; | |
3609 | if (nl) { | |
3610 | namelen = nl - namestr; | |
3611 | x = nl + 1; | |
3612 | } | |
3613 | else { | |
3614 | namelen = xend - namestr; | |
3615 | x = xend; | |
3616 | } | |
3617 | ||
3618 | othersvp = hv_fetch(hv, (char *)namestr, namelen, FALSE); | |
ef8f7699 | 3619 | otherhv = MUTABLE_HV(SvRV(*othersvp)); |
017a3ce5 | 3620 | otherbitssvp = hv_fetchs(otherhv, "BITS", FALSE); |
979f2922 TS |
3621 | otherbits = (STRLEN)SvUV(*otherbitssvp); |
3622 | if (bits < otherbits) | |
5637ef5b NC |
3623 | Perl_croak(aTHX_ "panic: swatch_get found swatch size mismatch, " |
3624 | "bits=%"UVuf", otherbits=%"UVuf, (UV)bits, (UV)otherbits); | |
979f2922 TS |
3625 | |
3626 | /* The "other" swatch must be destroyed after. */ | |
b0e3252e | 3627 | other = swatch_get(*othersvp, start, span); |
979f2922 TS |
3628 | o = (U8*)SvPV(other, olen); |
3629 | ||
3630 | if (!olen) | |
b0e3252e | 3631 | Perl_croak(aTHX_ "panic: swatch_get got improper swatch"); |
979f2922 TS |
3632 | |
3633 | s = (U8*)SvPV(swatch, slen); | |
3634 | if (bits == 1 && otherbits == 1) { | |
3635 | if (slen != olen) | |
5637ef5b NC |
3636 | Perl_croak(aTHX_ "panic: swatch_get found swatch length " |
3637 | "mismatch, slen=%"UVuf", olen=%"UVuf, | |
3638 | (UV)slen, (UV)olen); | |
979f2922 TS |
3639 | |
3640 | switch (opc) { | |
3641 | case '+': | |
3642 | while (slen--) | |
3643 | *s++ |= *o++; | |
3644 | break; | |
3645 | case '!': | |
3646 | while (slen--) | |
3647 | *s++ |= ~*o++; | |
3648 | break; | |
3649 | case '-': | |
3650 | while (slen--) | |
3651 | *s++ &= ~*o++; | |
3652 | break; | |
3653 | case '&': | |
3654 | while (slen--) | |
3655 | *s++ &= *o++; | |
3656 | break; | |
3657 | default: | |
3658 | break; | |
3659 | } | |
3660 | } | |
711a919c | 3661 | else { |
979f2922 TS |
3662 | STRLEN otheroctets = otherbits >> 3; |
3663 | STRLEN offset = 0; | |
35da51f7 | 3664 | U8* const send = s + slen; |
979f2922 TS |
3665 | |
3666 | while (s < send) { | |
3667 | UV otherval = 0; | |
3668 | ||
3669 | if (otherbits == 1) { | |
3670 | otherval = (o[offset >> 3] >> (offset & 7)) & 1; | |
3671 | ++offset; | |
3672 | } | |
3673 | else { | |
3674 | STRLEN vlen = otheroctets; | |
3675 | otherval = *o++; | |
3676 | while (--vlen) { | |
3677 | otherval <<= 8; | |
3678 | otherval |= *o++; | |
3679 | } | |
3680 | } | |
3681 | ||
711a919c | 3682 | if (opc == '+' && otherval) |
6f207bd3 | 3683 | NOOP; /* replace with otherval */ |
979f2922 TS |
3684 | else if (opc == '!' && !otherval) |
3685 | otherval = 1; | |
3686 | else if (opc == '-' && otherval) | |
3687 | otherval = 0; | |
3688 | else if (opc == '&' && !otherval) | |
3689 | otherval = 0; | |
3690 | else { | |
711a919c | 3691 | s += octets; /* no replacement */ |
979f2922 TS |
3692 | continue; |
3693 | } | |
3694 | ||
3695 | if (bits == 8) | |
3696 | *s++ = (U8)( otherval & 0xff); | |
3 |