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