This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
White-space only; properly indent newly formed blocks
[perl5.git] / utf8.c
CommitLineData
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"
b24b43f7 35#include "charclass_invlists.h"
a0ed51b3 36
27da23d5
JH
37static const char unees[] =
38 "Malformed UTF-8 character (unexpected end of string)";
901b21bf 39
48ef279e 40/*
ccfc67b7 41=head1 Unicode Support
a0ed51b3 42
166f8a29 43This file contains various utility functions for manipulating UTF8-encoded
72d33970 44strings. For the uninitiated, this is a method of representing arbitrary
61296642 45Unicode characters as a variable number of bytes, in such a way that
56da48f7
DM
46characters in the ASCII range are unmodified, and a zero byte never appears
47within non-zero characters.
166f8a29 48
eaf7a4d2
CS
49=cut
50*/
51
52/*
53=for apidoc is_ascii_string
54
a1433954 55Returns true if the first C<len> bytes of the string C<s> are the same whether
970ea3cb
KW
56or not the string is encoded in UTF-8 (or UTF-EBCDIC on EBCDIC machines). That
57is, if they are invariant. On ASCII-ish machines, only ASCII characters
58fit this definition, hence the function's name.
eaf7a4d2 59
9f7e3d64
MH
60If C<len> is 0, it will be calculated using C<strlen(s)>.
61
a1433954 62See also L</is_utf8_string>(), L</is_utf8_string_loclen>(), and L</is_utf8_string_loc>().
eaf7a4d2
CS
63
64=cut
65*/
66
67bool
668b6d8d 68Perl_is_ascii_string(const U8 *s, STRLEN len)
eaf7a4d2
CS
69{
70 const U8* const send = s + (len ? len : strlen((const char *)s));
71 const U8* x = s;
72
73 PERL_ARGS_ASSERT_IS_ASCII_STRING;
eaf7a4d2
CS
74
75 for (; x < send; ++x) {
76 if (!UTF8_IS_INVARIANT(*x))
77 break;
78 }
79
80 return x == send;
81}
82
83/*
378516de 84=for apidoc uvoffuni_to_utf8_flags
eebe1485 85
a27992cc 86THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES.
de69f3af
KW
87Instead, B<Almost all code should use L</uvchr_to_utf8> or
88L</uvchr_to_utf8_flags>>.
a27992cc 89
de69f3af
KW
90This function is like them, but the input is a strict Unicode
91(as opposed to native) code point. Only in very rare circumstances should code
92not be using the native code point.
949cf498 93
de69f3af 94For details, see the description for L</uvchr_to_utf8_flags>>.
949cf498 95
eebe1485
SC
96=cut
97*/
98
dfe13c55 99U8 *
378516de 100Perl_uvoffuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
a0ed51b3 101{
378516de 102 PERL_ARGS_ASSERT_UVOFFUNI_TO_UTF8_FLAGS;
7918f24d 103
d9432125
KW
104 if (UNI_IS_INVARIANT(uv)) {
105 *d++ = (U8) LATIN1_TO_NATIVE(uv);
106 return d;
107 }
108
979f77b6
KW
109 /* The first problematic code point is the first surrogate */
110 if (uv >= UNICODE_SURROGATE_FIRST
0cfa64bf 111 && ckWARN3_d(WARN_SURROGATE, WARN_NON_UNICODE, WARN_NONCHAR))
979f77b6 112 {
949cf498
KW
113 if (UNICODE_IS_SURROGATE(uv)) {
114 if (flags & UNICODE_WARN_SURROGATE) {
8457b38f 115 Perl_ck_warner_d(aTHX_ packWARN(WARN_SURROGATE),
949cf498
KW
116 "UTF-16 surrogate U+%04"UVXf, uv);
117 }
118 if (flags & UNICODE_DISALLOW_SURROGATE) {
119 return NULL;
120 }
121 }
122 else if (UNICODE_IS_SUPER(uv)) {
123 if (flags & UNICODE_WARN_SUPER
124 || (UNICODE_IS_FE_FF(uv) && (flags & UNICODE_WARN_FE_FF)))
125 {
8457b38f 126 Perl_ck_warner_d(aTHX_ packWARN(WARN_NON_UNICODE),
949cf498
KW
127 "Code point 0x%04"UVXf" is not Unicode, may not be portable", uv);
128 }
129 if (flags & UNICODE_DISALLOW_SUPER
130 || (UNICODE_IS_FE_FF(uv) && (flags & UNICODE_DISALLOW_FE_FF)))
131 {
132 return NULL;
133 }
134 }
135 else if (UNICODE_IS_NONCHAR(uv)) {
136 if (flags & UNICODE_WARN_NONCHAR) {
8457b38f 137 Perl_ck_warner_d(aTHX_ packWARN(WARN_NONCHAR),
949cf498
KW
138 "Unicode non-character U+%04"UVXf" is illegal for open interchange",
139 uv);
140 }
141 if (flags & UNICODE_DISALLOW_NONCHAR) {
142 return NULL;
143 }
144 }
507b9800 145 }
d9432125 146
2d331972 147#if defined(EBCDIC)
d9432125 148 {
5aaebcb3 149 STRLEN len = OFFUNISKIP(uv);
1d72bdf6
NIS
150 U8 *p = d+len-1;
151 while (p > d) {
bc3632a8 152 *p-- = (U8) I8_TO_NATIVE_UTF8((uv & UTF_CONTINUATION_MASK) | UTF_CONTINUATION_MARK);
1d72bdf6
NIS
153 uv >>= UTF_ACCUMULATION_SHIFT;
154 }
bc3632a8 155 *p = (U8) I8_TO_NATIVE_UTF8((uv & UTF_START_MASK(len)) | UTF_START_MARK(len));
1d72bdf6
NIS
156 return d+len;
157 }
158#else /* Non loop style */
a0ed51b3 159 if (uv < 0x800) {
eb160463
GS
160 *d++ = (U8)(( uv >> 6) | 0xc0);
161 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
162 return d;
163 }
164 if (uv < 0x10000) {
eb160463
GS
165 *d++ = (U8)(( uv >> 12) | 0xe0);
166 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
167 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
168 return d;
169 }
170 if (uv < 0x200000) {
eb160463
GS
171 *d++ = (U8)(( uv >> 18) | 0xf0);
172 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
173 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
174 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
175 return d;
176 }
177 if (uv < 0x4000000) {
eb160463
GS
178 *d++ = (U8)(( uv >> 24) | 0xf8);
179 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
180 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
181 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
182 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
183 return d;
184 }
185 if (uv < 0x80000000) {
eb160463
GS
186 *d++ = (U8)(( uv >> 30) | 0xfc);
187 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
188 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
189 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
190 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
191 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
192 return d;
193 }
6588300d 194#ifdef UTF8_QUAD_MAX
d7578b48 195 if (uv < UTF8_QUAD_MAX)
a0ed51b3
LW
196#endif
197 {
eb160463
GS
198 *d++ = 0xfe; /* Can't match U+FEFF! */
199 *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80);
200 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
201 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
202 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
203 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
204 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
205 return d;
206 }
6588300d 207#ifdef UTF8_QUAD_MAX
a0ed51b3 208 {
eb160463
GS
209 *d++ = 0xff; /* Can't match U+FFFE! */
210 *d++ = 0x80; /* 6 Reserved bits */
211 *d++ = (U8)(((uv >> 60) & 0x0f) | 0x80); /* 2 Reserved bits */
212 *d++ = (U8)(((uv >> 54) & 0x3f) | 0x80);
213 *d++ = (U8)(((uv >> 48) & 0x3f) | 0x80);
214 *d++ = (U8)(((uv >> 42) & 0x3f) | 0x80);
215 *d++ = (U8)(((uv >> 36) & 0x3f) | 0x80);
216 *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80);
217 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
218 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
219 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
220 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
221 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
222 return d;
223 }
224#endif
537124e4 225#endif /* Non loop style */
a0ed51b3 226}
646ca15d 227/*
07693fe6
KW
228=for apidoc uvchr_to_utf8
229
bcb1a2d4 230Adds the UTF-8 representation of the native code point C<uv> to the end
07693fe6 231of the string C<d>; C<d> should have at least C<UTF8_MAXBYTES+1> free
72d33970
FC
232bytes available. The return value is the pointer to the byte after the
233end of the new character. In other words,
07693fe6
KW
234
235 d = uvchr_to_utf8(d, uv);
236
237is the recommended wide native character-aware way of saying
238
239 *(d++) = uv;
240
de69f3af
KW
241This function accepts any UV as input. To forbid or warn on non-Unicode code
242points, or those that may be problematic, see L</uvchr_to_utf8_flags>.
243
07693fe6
KW
244=cut
245*/
246
de69f3af
KW
247/* This is also a macro */
248PERL_CALLCONV U8* Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv);
249
07693fe6
KW
250U8 *
251Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv)
252{
de69f3af 253 return uvchr_to_utf8(d, uv);
07693fe6
KW
254}
255
de69f3af
KW
256/*
257=for apidoc uvchr_to_utf8_flags
258
259Adds the UTF-8 representation of the native code point C<uv> to the end
260of the string C<d>; C<d> should have at least C<UTF8_MAXBYTES+1> free
72d33970
FC
261bytes available. The return value is the pointer to the byte after the
262end of the new character. In other words,
de69f3af
KW
263
264 d = uvchr_to_utf8_flags(d, uv, flags);
265
266or, in most cases,
267
268 d = uvchr_to_utf8_flags(d, uv, 0);
269
270This is the Unicode-aware way of saying
271
272 *(d++) = uv;
273
274This function will convert to UTF-8 (and not warn) even code points that aren't
275legal Unicode or are problematic, unless C<flags> contains one or more of the
276following flags:
277
278If C<uv> is a Unicode surrogate code point and UNICODE_WARN_SURROGATE is set,
279the function will raise a warning, provided UTF8 warnings are enabled. If instead
280UNICODE_DISALLOW_SURROGATE is set, the function will fail and return NULL.
281If both flags are set, the function will both warn and return NULL.
282
4c3cfd5d 283The UNICODE_WARN_NONCHAR and UNICODE_DISALLOW_NONCHAR flags
de69f3af 284affect how the function handles a Unicode non-character. And likewise, the
4c3cfd5d 285UNICODE_WARN_SUPER and UNICODE_DISALLOW_SUPER flags affect the handling of
de69f3af
KW
286code points that are
287above the Unicode maximum of 0x10FFFF. Code points above 0x7FFF_FFFF (which are
288even less portable) can be warned and/or disallowed even if other above-Unicode
289code points are accepted, by the UNICODE_WARN_FE_FF and UNICODE_DISALLOW_FE_FF
290flags.
291
292And finally, the flag UNICODE_WARN_ILLEGAL_INTERCHANGE selects all four of the
293above WARN flags; and UNICODE_DISALLOW_ILLEGAL_INTERCHANGE selects all four
294DISALLOW flags.
295
296=cut
297*/
298
299/* This is also a macro */
300PERL_CALLCONV U8* Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags);
301
07693fe6
KW
302U8 *
303Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
304{
de69f3af 305 return uvchr_to_utf8_flags(d, uv, flags);
07693fe6
KW
306}
307
308/*
646ca15d 309
f7d739d1 310Tests if the first C<len> bytes of string C<s> form a valid UTF-8
bcb1a2d4
KW
311character. Note that an INVARIANT (i.e. ASCII on non-EBCDIC) character is a
312valid UTF-8 character. The number of bytes in the UTF-8 character
646ca15d
JH
313will be returned if it is valid, otherwise 0.
314
315This is the "slow" version as opposed to the "fast" version which is
316the "unrolled" IS_UTF8_CHAR(). E.g. for t/uni/class.t the speed
317difference is a factor of 2 to 3. For lengths (UTF8SKIP(s)) of four
318or less you should use the IS_UTF8_CHAR(), for lengths of five or more
319you should use the _slow(). In practice this means that the _slow()
320will be used very rarely, since the maximum Unicode code point (as of
321Unicode 4.1) is U+10FFFF, which encodes in UTF-8 to four bytes. Only
537124e4 322the "Perl extended UTF-8" (e.g, the infamous 'v-strings') will encode into
646ca15d
JH
323five bytes or more.
324
325=cut */
7af276bc 326PERL_STATIC_INLINE STRLEN
5f66b61c 327S_is_utf8_char_slow(const U8 *s, const STRLEN len)
646ca15d 328{
cd7e6c88 329 dTHX; /* The function called below requires thread context */
646ca15d 330
cd7e6c88 331 STRLEN actual_len;
646ca15d 332
cd7e6c88 333 PERL_ARGS_ASSERT_IS_UTF8_CHAR_SLOW;
646ca15d 334
18712bce 335 utf8n_to_uvchr(s, len, &actual_len, UTF8_CHECK_ONLY);
646ca15d 336
cd7e6c88 337 return (actual_len == (STRLEN) -1) ? 0 : actual_len;
646ca15d 338}
9041c2e3
NIS
339
340/*
492a624f
KW
341=for apidoc is_utf8_char_buf
342
343Returns the number of bytes that comprise the first UTF-8 encoded character in
344buffer C<buf>. C<buf_end> should point to one position beyond the end of the
345buffer. 0 is returned if C<buf> does not point to a complete, valid UTF-8
346encoded character.
347
348Note that an INVARIANT character (i.e. ASCII on non-EBCDIC
349machines) is a valid UTF-8 character.
350
351=cut */
352
353STRLEN
354Perl_is_utf8_char_buf(const U8 *buf, const U8* buf_end)
355{
356
357 STRLEN len;
358
359 PERL_ARGS_ASSERT_IS_UTF8_CHAR_BUF;
360
361 if (buf_end <= buf) {
362 return 0;
363 }
364
365 len = buf_end - buf;
366 if (len > UTF8SKIP(buf)) {
367 len = UTF8SKIP(buf);
368 }
369
492a624f
KW
370 if (IS_UTF8_CHAR_FAST(len))
371 return IS_UTF8_CHAR(buf, len) ? len : 0;
492a624f
KW
372 return is_utf8_char_slow(buf, len);
373}
374
375/*
87cea99e 376=for apidoc is_utf8_char
eebe1485 377
5da9da9e 378Tests if some arbitrary number of bytes begins in a valid UTF-8
2bbc8d55
SP
379character. Note that an INVARIANT (i.e. ASCII on non-EBCDIC machines)
380character is a valid UTF-8 character. The actual number of bytes in the UTF-8
381character will be returned if it is valid, otherwise 0.
9041c2e3 382
76848387 383This function is deprecated due to the possibility that malformed input could
a1433954 384cause reading beyond the end of the input buffer. Use L</is_utf8_char_buf>
76848387 385instead.
e0328548 386
82686b01 387=cut */
76848387 388
067a85ef 389STRLEN
668b6d8d 390Perl_is_utf8_char(const U8 *s)
386d01d6 391{
7918f24d 392 PERL_ARGS_ASSERT_IS_UTF8_CHAR;
492a624f 393
76848387 394 /* Assumes we have enough space, which is why this is deprecated */
492a624f 395 return is_utf8_char_buf(s, s + UTF8SKIP(s));
386d01d6
GS
396}
397
eaf7a4d2 398
6662521e 399/*
87cea99e 400=for apidoc is_utf8_string
6662521e 401
a1433954 402Returns true if the first C<len> bytes of string C<s> form a valid
9f7e3d64 403UTF-8 string, false otherwise. If C<len> is 0, it will be calculated
e0328548
KW
404using C<strlen(s)> (which means if you use this option, that C<s> has to have a
405terminating NUL byte). Note that all characters being ASCII constitute 'a
406valid UTF-8 string'.
6662521e 407
a1433954 408See also L</is_ascii_string>(), L</is_utf8_string_loclen>(), and L</is_utf8_string_loc>().
768c67ee 409
6662521e
GS
410=cut
411*/
412
8e84507e 413bool
668b6d8d 414Perl_is_utf8_string(const U8 *s, STRLEN len)
6662521e 415{
35da51f7 416 const U8* const send = s + (len ? len : strlen((const char *)s));
7fc63493 417 const U8* x = s;
067a85ef 418
7918f24d 419 PERL_ARGS_ASSERT_IS_UTF8_STRING;
1aa99e6b 420
6662521e 421 while (x < send) {
1acdb0da 422 /* Inline the easy bits of is_utf8_char() here for speed... */
e0328548
KW
423 if (UTF8_IS_INVARIANT(*x)) {
424 x++;
425 }
1acdb0da
JH
426 else {
427 /* ... and call is_utf8_char() only if really needed. */
e0328548
KW
428 const STRLEN c = UTF8SKIP(x);
429 const U8* const next_char_ptr = x + c;
430
431 if (next_char_ptr > send) {
432 return FALSE;
433 }
434
768c67ee
JH
435 if (IS_UTF8_CHAR_FAST(c)) {
436 if (!IS_UTF8_CHAR(x, c))
e0328548 437 return FALSE;
3c614e38 438 }
e0328548
KW
439 else if (! is_utf8_char_slow(x, c)) {
440 return FALSE;
441 }
442 x = next_char_ptr;
1acdb0da 443 }
6662521e 444 }
768c67ee 445
067a85ef 446 return TRUE;
6662521e
GS
447}
448
67e989fb 449/*
814fafa7
NC
450Implemented as a macro in utf8.h
451
87cea99e 452=for apidoc is_utf8_string_loc
814fafa7 453
a1433954
KW
454Like L</is_utf8_string> but stores the location of the failure (in the
455case of "utf8ness failure") or the location C<s>+C<len> (in the case of
814fafa7
NC
456"utf8ness success") in the C<ep>.
457
a1433954 458See also L</is_utf8_string_loclen>() and L</is_utf8_string>().
814fafa7 459
87cea99e 460=for apidoc is_utf8_string_loclen
81cd54e3 461
a1433954
KW
462Like L</is_utf8_string>() but stores the location of the failure (in the
463case of "utf8ness failure") or the location C<s>+C<len> (in the case of
768c67ee
JH
464"utf8ness success") in the C<ep>, and the number of UTF-8
465encoded characters in the C<el>.
466
a1433954 467See also L</is_utf8_string_loc>() and L</is_utf8_string>().
81cd54e3
JH
468
469=cut
470*/
471
472bool
668b6d8d 473Perl_is_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el)
81cd54e3 474{
35da51f7 475 const U8* const send = s + (len ? len : strlen((const char *)s));
7fc63493 476 const U8* x = s;
81cd54e3 477 STRLEN c;
3ebfea28 478 STRLEN outlen = 0;
7918f24d
NC
479
480 PERL_ARGS_ASSERT_IS_UTF8_STRING_LOCLEN;
81cd54e3 481
81cd54e3 482 while (x < send) {
e0328548
KW
483 const U8* next_char_ptr;
484
81cd54e3
JH
485 /* Inline the easy bits of is_utf8_char() here for speed... */
486 if (UTF8_IS_INVARIANT(*x))
e0328548 487 next_char_ptr = x + 1;
81cd54e3 488 else {
768c67ee 489 /* ... and call is_utf8_char() only if really needed. */
768c67ee 490 c = UTF8SKIP(x);
e0328548
KW
491 next_char_ptr = c + x;
492 if (next_char_ptr > send) {
493 goto out;
494 }
768c67ee
JH
495 if (IS_UTF8_CHAR_FAST(c)) {
496 if (!IS_UTF8_CHAR(x, c))
497 c = 0;
498 } else
499 c = is_utf8_char_slow(x, c);
768c67ee
JH
500 if (!c)
501 goto out;
81cd54e3 502 }
e0328548 503 x = next_char_ptr;
3ebfea28 504 outlen++;
81cd54e3 505 }
768c67ee
JH
506
507 out:
3ebfea28
AL
508 if (el)
509 *el = outlen;
510
768c67ee
JH
511 if (ep)
512 *ep = x;
3ebfea28 513 return (x == send);
81cd54e3
JH
514}
515
516/*
768c67ee 517
de69f3af 518=for apidoc utf8n_to_uvchr
378516de
KW
519
520THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES.
de69f3af 521Most code should use L</utf8_to_uvchr_buf>() rather than call this directly.
67e989fb 522
9041c2e3 523Bottom level UTF-8 decode routine.
de69f3af 524Returns the native code point value of the first character in the string C<s>,
746afd53
KW
525which is assumed to be in UTF-8 (or UTF-EBCDIC) encoding, and no longer than
526C<curlen> bytes; C<*retlen> (if C<retlen> isn't NULL) will be set to
527the length, in bytes, of that character.
949cf498
KW
528
529The value of C<flags> determines the behavior when C<s> does not point to a
530well-formed UTF-8 character. If C<flags> is 0, when a malformation is found,
524080c4
KW
531zero is returned and C<*retlen> is set so that (S<C<s> + C<*retlen>>) is the
532next possible position in C<s> that could begin a non-malformed character.
533Also, if UTF-8 warnings haven't been lexically disabled, a warning is raised.
949cf498
KW
534
535Various ALLOW flags can be set in C<flags> to allow (and not warn on)
536individual types of malformations, such as the sequence being overlong (that
537is, when there is a shorter sequence that can express the same code point;
538overlong sequences are expressly forbidden in the UTF-8 standard due to
539potential security issues). Another malformation example is the first byte of
540a character not being a legal first byte. See F<utf8.h> for the list of such
524080c4
KW
541flags. For allowed 0 length strings, this function returns 0; for allowed
542overlong sequences, the computed code point is returned; for all other allowed
543malformations, the Unicode REPLACEMENT CHARACTER is returned, as these have no
544determinable reasonable value.
949cf498
KW
545
546The UTF8_CHECK_ONLY flag overrides the behavior when a non-allowed (by other
547flags) malformation is found. If this flag is set, the routine assumes that
548the caller will raise a warning, and this function will silently just set
d088425d
KW
549C<retlen> to C<-1> (cast to C<STRLEN>) and return zero.
550
551Note that this API requires disambiguation between successful decoding a NUL
552character, and an error return (unless the UTF8_CHECK_ONLY flag is set), as
553in both cases, 0 is returned. To disambiguate, upon a zero return, see if the
554first byte of C<s> is 0 as well. If so, the input was a NUL; if not, the input
555had an error.
949cf498
KW
556
557Certain code points are considered problematic. These are Unicode surrogates,
746afd53 558Unicode non-characters, and code points above the Unicode maximum of 0x10FFFF.
949cf498 559By default these are considered regular code points, but certain situations
5eafe189 560warrant special handling for them. If C<flags> contains
949cf498
KW
561UTF8_DISALLOW_ILLEGAL_INTERCHANGE, all three classes are treated as
562malformations and handled as such. The flags UTF8_DISALLOW_SURROGATE,
563UTF8_DISALLOW_NONCHAR, and UTF8_DISALLOW_SUPER (meaning above the legal Unicode
564maximum) can be set to disallow these categories individually.
565
566The flags UTF8_WARN_ILLEGAL_INTERCHANGE, UTF8_WARN_SURROGATE,
567UTF8_WARN_NONCHAR, and UTF8_WARN_SUPER will cause warning messages to be raised
568for their respective categories, but otherwise the code points are considered
569valid (not malformations). To get a category to both be treated as a
570malformation and raise a warning, specify both the WARN and DISALLOW flags.
571(But note that warnings are not raised if lexically disabled nor if
572UTF8_CHECK_ONLY is also specified.)
573
574Very large code points (above 0x7FFF_FFFF) are considered more problematic than
575the others that are above the Unicode legal maximum. There are several
eb83ed87
KW
576reasons: they requre at least 32 bits to represent them on ASCII platforms, are
577not representable at all on EBCDIC platforms, and the original UTF-8
578specification never went above this number (the current 0x10FFFF limit was
579imposed later). (The smaller ones, those that fit into 32 bits, are
580representable by a UV on ASCII platforms, but not by an IV, which means that
581the number of operations that can be performed on them is quite restricted.)
582The UTF-8 encoding on ASCII platforms for these large code points begins with a
583byte containing 0xFE or 0xFF. The UTF8_DISALLOW_FE_FF flag will cause them to
584be treated as malformations, while allowing smaller above-Unicode code points.
585(Of course UTF8_DISALLOW_SUPER will treat all above-Unicode code points,
72d33970
FC
586including these, as malformations.)
587Similarly, UTF8_WARN_FE_FF acts just like
eb83ed87 588the other WARN flags, but applies just to these code points.
949cf498
KW
589
590All other code points corresponding to Unicode characters, including private
591use and those yet to be assigned, are never considered malformed and never
592warn.
67e989fb 593
37607a96
PK
594=cut
595*/
67e989fb 596
a0ed51b3 597UV
de69f3af 598Perl_utf8n_to_uvchr(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
a0ed51b3 599{
97aff369 600 dVAR;
d4c19fe8 601 const U8 * const s0 = s;
eb83ed87 602 U8 overflow_byte = '\0'; /* Save byte in case of overflow */
0b8d30e8 603 U8 * send;
eb83ed87
KW
604 UV uv = *s;
605 STRLEN expectlen;
949cf498 606 SV* sv = NULL;
eb83ed87
KW
607 UV outlier_ret = 0; /* return value when input is in error or problematic
608 */
609 UV pack_warn = 0; /* Save result of packWARN() for later */
610 bool unexpected_non_continuation = FALSE;
611 bool overflowed = FALSE;
2f8f112e 612 bool do_overlong_test = TRUE; /* May have to skip this test */
a0dbb045 613
eb83ed87 614 const char* const malformed_text = "Malformed UTF-8 character";
7918f24d 615
de69f3af 616 PERL_ARGS_ASSERT_UTF8N_TO_UVCHR;
a0dbb045 617
eb83ed87
KW
618 /* The order of malformation tests here is important. We should consume as
619 * few bytes as possible in order to not skip any valid character. This is
620 * required by the Unicode Standard (section 3.9 of Unicode 6.0); see also
621 * http://unicode.org/reports/tr36 for more discussion as to why. For
622 * example, once we've done a UTF8SKIP, we can tell the expected number of
623 * bytes, and could fail right off the bat if the input parameters indicate
624 * that there are too few available. But it could be that just that first
625 * byte is garbled, and the intended character occupies fewer bytes. If we
626 * blindly assumed that the first byte is correct, and skipped based on
627 * that number, we could skip over a valid input character. So instead, we
628 * always examine the sequence byte-by-byte.
629 *
630 * We also should not consume too few bytes, otherwise someone could inject
631 * things. For example, an input could be deliberately designed to
632 * overflow, and if this code bailed out immediately upon discovering that,
e2660c54 633 * returning to the caller C<*retlen> pointing to the very next byte (one
eb83ed87
KW
634 * which is actually part of of the overflowing sequence), that could look
635 * legitimate to the caller, which could discard the initial partial
636 * sequence and process the rest, inappropriately */
637
638 /* Zero length strings, if allowed, of necessity are zero */
b5b9af04 639 if (UNLIKELY(curlen == 0)) {
eb83ed87
KW
640 if (retlen) {
641 *retlen = 0;
642 }
a0dbb045 643
eb83ed87
KW
644 if (flags & UTF8_ALLOW_EMPTY) {
645 return 0;
646 }
647 if (! (flags & UTF8_CHECK_ONLY)) {
648 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (empty string)", malformed_text));
649 }
0c443dc2
JH
650 goto malformed;
651 }
652
eb83ed87
KW
653 expectlen = UTF8SKIP(s);
654
655 /* A well-formed UTF-8 character, as the vast majority of calls to this
656 * function will be for, has this expected length. For efficiency, set
657 * things up here to return it. It will be overriden only in those rare
658 * cases where a malformation is found */
659 if (retlen) {
660 *retlen = expectlen;
661 }
662
663 /* An invariant is trivially well-formed */
1d72bdf6 664 if (UTF8_IS_INVARIANT(uv)) {
de69f3af 665 return uv;
a0ed51b3 666 }
67e989fb 667
eb83ed87 668 /* A continuation character can't start a valid sequence */
b5b9af04 669 if (UNLIKELY(UTF8_IS_CONTINUATION(uv))) {
eb83ed87
KW
670 if (flags & UTF8_ALLOW_CONTINUATION) {
671 if (retlen) {
672 *retlen = 1;
673 }
674 return UNICODE_REPLACEMENT;
675 }
ba210ebe 676
eb83ed87
KW
677 if (! (flags & UTF8_CHECK_ONLY)) {
678 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (unexpected continuation byte 0x%02x, with no preceding start byte)", malformed_text, *s0));
679 }
680 curlen = 1;
ba210ebe
JH
681 goto malformed;
682 }
9041c2e3 683
dcd27b3c
KW
684 /* Here is not a continuation byte, nor an invariant. The only thing left
685 * is a start byte (possibly for an overlong) */
686
1d72bdf6 687#ifdef EBCDIC
bc3632a8 688 uv = NATIVE_UTF8_TO_I8(uv);
1d72bdf6
NIS
689#endif
690
eb83ed87
KW
691 /* Remove the leading bits that indicate the number of bytes in the
692 * character's whole UTF-8 sequence, leaving just the bits that are part of
693 * the value */
694 uv &= UTF_START_MASK(expectlen);
ba210ebe 695
eb83ed87
KW
696 /* Now, loop through the remaining bytes in the character's sequence,
697 * accumulating each into the working value as we go. Be sure to not look
698 * past the end of the input string */
0b8d30e8
KW
699 send = (U8*) s0 + ((expectlen <= curlen) ? expectlen : curlen);
700
eb83ed87 701 for (s = s0 + 1; s < send; s++) {
b5b9af04 702 if (LIKELY(UTF8_IS_CONTINUATION(*s))) {
eb83ed87
KW
703#ifndef EBCDIC /* Can't overflow in EBCDIC */
704 if (uv & UTF_ACCUMULATION_OVERFLOW_MASK) {
705
706 /* The original implementors viewed this malformation as more
707 * serious than the others (though I, khw, don't understand
708 * why, since other malformations also give very very wrong
709 * results), so there is no way to turn off checking for it.
710 * Set a flag, but keep going in the loop, so that we absorb
711 * the rest of the bytes that comprise the character. */
712 overflowed = TRUE;
713 overflow_byte = *s; /* Save for warning message's use */
714 }
715#endif
8850bf83 716 uv = UTF8_ACCUMULATE(uv, *s);
eb83ed87
KW
717 }
718 else {
719 /* Here, found a non-continuation before processing all expected
720 * bytes. This byte begins a new character, so quit, even if
721 * allowing this malformation. */
722 unexpected_non_continuation = TRUE;
723 break;
724 }
725 } /* End of loop through the character's bytes */
726
727 /* Save how many bytes were actually in the character */
728 curlen = s - s0;
729
730 /* The loop above finds two types of malformations: non-continuation and/or
731 * overflow. The non-continuation malformation is really a too-short
732 * malformation, as it means that the current character ended before it was
733 * expected to (being terminated prematurely by the beginning of the next
734 * character, whereas in the too-short malformation there just are too few
735 * bytes available to hold the character. In both cases, the check below
736 * that we have found the expected number of bytes would fail if executed.)
737 * Thus the non-continuation malformation is really unnecessary, being a
738 * subset of the too-short malformation. But there may be existing
739 * applications that are expecting the non-continuation type, so we retain
740 * it, and return it in preference to the too-short malformation. (If this
741 * code were being written from scratch, the two types might be collapsed
742 * into one.) I, khw, am also giving priority to returning the
743 * non-continuation and too-short malformations over overflow when multiple
744 * ones are present. I don't know of any real reason to prefer one over
745 * the other, except that it seems to me that multiple-byte errors trumps
746 * errors from a single byte */
b5b9af04 747 if (UNLIKELY(unexpected_non_continuation)) {
eb83ed87
KW
748 if (!(flags & UTF8_ALLOW_NON_CONTINUATION)) {
749 if (! (flags & UTF8_CHECK_ONLY)) {
750 if (curlen == 1) {
751 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (unexpected non-continuation byte 0x%02x, immediately after start byte 0x%02x)", malformed_text, *s, *s0));
752 }
753 else {
754 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
755 }
756 }
eb83ed87
KW
757 goto malformed;
758 }
759 uv = UNICODE_REPLACEMENT;
2f8f112e
KW
760
761 /* Skip testing for overlongs, as the REPLACEMENT may not be the same
762 * as what the original expectations were. */
763 do_overlong_test = FALSE;
eb83ed87
KW
764 if (retlen) {
765 *retlen = curlen;
766 }
767 }
b5b9af04 768 else if (UNLIKELY(curlen < expectlen)) {
eb83ed87
KW
769 if (! (flags & UTF8_ALLOW_SHORT)) {
770 if (! (flags & UTF8_CHECK_ONLY)) {
771 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 772 }
eb83ed87
KW
773 goto malformed;
774 }
775 uv = UNICODE_REPLACEMENT;
2f8f112e 776 do_overlong_test = FALSE;
eb83ed87
KW
777 if (retlen) {
778 *retlen = curlen;
779 }
780 }
781
ea5ced44 782#ifndef EBCDIC /* EBCDIC can't overflow */
b5b9af04 783 if (UNLIKELY(overflowed)) {
eb83ed87 784 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (overflow at byte 0x%02x, after start byte 0x%02x)", malformed_text, overflow_byte, *s0));
ba210ebe 785 goto malformed;
eb83ed87
KW
786 }
787#endif
788
2f8f112e 789 if (do_overlong_test
5aaebcb3 790 && expectlen > (STRLEN) OFFUNISKIP(uv)
2f8f112e
KW
791 && ! (flags & UTF8_ALLOW_LONG))
792 {
eb83ed87
KW
793 /* The overlong malformation has lower precedence than the others.
794 * Note that if this malformation is allowed, we return the actual
795 * value, instead of the replacement character. This is because this
796 * value is actually well-defined. */
797 if (! (flags & UTF8_CHECK_ONLY)) {
5aaebcb3 798 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (%d byte%s, need %d, after start byte 0x%02x)", malformed_text, (int)expectlen, expectlen == 1 ? "": "s", OFFUNISKIP(uv), *s0));
eb83ed87
KW
799 }
800 goto malformed;
801 }
802
1a89bb6c 803 /* Here, the input is considered to be well-formed, but it still could be a
eb83ed87
KW
804 * problematic code point that is not allowed by the input parameters. */
805 if (uv >= UNICODE_SURROGATE_FIRST /* isn't problematic if < this */
806 && (flags & (UTF8_DISALLOW_ILLEGAL_INTERCHANGE
807 |UTF8_WARN_ILLEGAL_INTERCHANGE)))
808 {
949cf498 809 if (UNICODE_IS_SURROGATE(uv)) {
ea5ced44
KW
810
811 /* By adding UTF8_CHECK_ONLY to the test, we avoid unnecessary
812 * generation of the sv, since no warnings are raised under CHECK */
eb83ed87 813 if ((flags & (UTF8_WARN_SURROGATE|UTF8_CHECK_ONLY)) == UTF8_WARN_SURROGATE
54f4afef 814 && ckWARN_d(WARN_SURROGATE))
eb83ed87 815 {
111d382d 816 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "UTF-16 surrogate U+%04"UVXf"", uv));
54f4afef 817 pack_warn = packWARN(WARN_SURROGATE);
949cf498
KW
818 }
819 if (flags & UTF8_DISALLOW_SURROGATE) {
820 goto disallowed;
821 }
822 }
949cf498 823 else if ((uv > PERL_UNICODE_MAX)) {
eb83ed87 824 if ((flags & (UTF8_WARN_SUPER|UTF8_CHECK_ONLY)) == UTF8_WARN_SUPER
ea5ced44 825 && ckWARN_d(WARN_NON_UNICODE))
eb83ed87 826 {
111d382d 827 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "Code point 0x%04"UVXf" is not Unicode, may not be portable", uv));
54f4afef 828 pack_warn = packWARN(WARN_NON_UNICODE);
949cf498 829 }
ea5ced44
KW
830#ifndef EBCDIC /* EBCDIC always allows FE, FF */
831
832 /* The first byte being 0xFE or 0xFF is a subset of the SUPER code
833 * points. We test for these after the regular SUPER ones, and
834 * before possibly bailing out, so that the more dire warning
835 * overrides the regular one, if applicable */
836 if ((*s0 & 0xFE) == 0xFE /* matches both FE, FF */
837 && (flags & (UTF8_WARN_FE_FF|UTF8_DISALLOW_FE_FF)))
838 {
839 if ((flags & (UTF8_WARN_FE_FF|UTF8_CHECK_ONLY))
840 == UTF8_WARN_FE_FF
841 && ckWARN_d(WARN_UTF8))
842 {
843 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "Code point 0x%"UVXf" is not Unicode, and not portable", uv));
844 pack_warn = packWARN(WARN_UTF8);
845 }
846 if (flags & UTF8_DISALLOW_FE_FF) {
847 goto disallowed;
848 }
849 }
850#endif
949cf498
KW
851 if (flags & UTF8_DISALLOW_SUPER) {
852 goto disallowed;
853 }
854 }
4190d317
KW
855 else if (UNICODE_IS_NONCHAR(uv)) {
856 if ((flags & (UTF8_WARN_NONCHAR|UTF8_CHECK_ONLY)) == UTF8_WARN_NONCHAR
54f4afef 857 && ckWARN_d(WARN_NONCHAR))
4190d317
KW
858 {
859 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "Unicode non-character U+%04"UVXf" is illegal for open interchange", uv));
54f4afef 860 pack_warn = packWARN(WARN_NONCHAR);
4190d317
KW
861 }
862 if (flags & UTF8_DISALLOW_NONCHAR) {
863 goto disallowed;
864 }
865 }
949cf498 866
eb83ed87 867 if (sv) {
de69f3af
KW
868 outlier_ret = uv; /* Note we don't bother to convert to native,
869 as all the outlier code points are the same
870 in both ASCII and EBCDIC */
eb83ed87
KW
871 goto do_warn;
872 }
873
949cf498
KW
874 /* Here, this is not considered a malformed character, so drop through
875 * to return it */
a0ed51b3 876 }
ba210ebe 877
de69f3af 878 return UNI_TO_NATIVE(uv);
ba210ebe 879
eb83ed87
KW
880 /* There are three cases which get to beyond this point. In all 3 cases:
881 * <sv> if not null points to a string to print as a warning.
882 * <curlen> is what <*retlen> should be set to if UTF8_CHECK_ONLY isn't
883 * set.
884 * <outlier_ret> is what return value to use if UTF8_CHECK_ONLY isn't set.
885 * This is done by initializing it to 0, and changing it only
886 * for case 1).
887 * The 3 cases are:
888 * 1) The input is valid but problematic, and to be warned about. The
889 * return value is the resultant code point; <*retlen> is set to
890 * <curlen>, the number of bytes that comprise the code point.
891 * <pack_warn> contains the result of packWARN() for the warning
892 * types. The entry point for this case is the label <do_warn>;
893 * 2) The input is a valid code point but disallowed by the parameters to
894 * this function. The return value is 0. If UTF8_CHECK_ONLY is set,
895 * <*relen> is -1; otherwise it is <curlen>, the number of bytes that
896 * comprise the code point. <pack_warn> contains the result of
897 * packWARN() for the warning types. The entry point for this case is
898 * the label <disallowed>.
899 * 3) The input is malformed. The return value is 0. If UTF8_CHECK_ONLY
900 * is set, <*relen> is -1; otherwise it is <curlen>, the number of
901 * bytes that comprise the malformation. All such malformations are
902 * assumed to be warning type <utf8>. The entry point for this case
903 * is the label <malformed>.
904 */
949cf498 905
ba210ebe
JH
906malformed:
907
eb83ed87
KW
908 if (sv && ckWARN_d(WARN_UTF8)) {
909 pack_warn = packWARN(WARN_UTF8);
910 }
911
912disallowed:
913
fcc8fcf6 914 if (flags & UTF8_CHECK_ONLY) {
ba210ebe 915 if (retlen)
10edeb5d 916 *retlen = ((STRLEN) -1);
ba210ebe
JH
917 return 0;
918 }
919
eb83ed87 920do_warn:
5b311467 921
eb83ed87
KW
922 if (pack_warn) { /* <pack_warn> was initialized to 0, and changed only
923 if warnings are to be raised. */
f555bc63 924 const char * const string = SvPVX_const(sv);
a0dbb045 925
f555bc63
KW
926 if (PL_op)
927 Perl_warner(aTHX_ pack_warn, "%s in %s", string, OP_DESC(PL_op));
928 else
929 Perl_warner(aTHX_ pack_warn, "%s", string);
a0dbb045
JH
930 }
931
eb83ed87
KW
932 if (retlen) {
933 *retlen = curlen;
934 }
ba210ebe 935
eb83ed87 936 return outlier_ret;
a0ed51b3
LW
937}
938
8e84507e 939/*
ec5f19d0
KW
940=for apidoc utf8_to_uvchr_buf
941
942Returns the native code point of the first character in the string C<s> which
943is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>.
524080c4 944C<*retlen> will be set to the length, in bytes, of that character.
ec5f19d0 945
524080c4
KW
946If C<s> does not point to a well-formed UTF-8 character and UTF8 warnings are
947enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't
173db420
KW
948NULL) to -1. If those warnings are off, the computed value, if well-defined
949(or the Unicode REPLACEMENT CHARACTER if not), is silently returned, and
950C<*retlen> is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is
951the next possible position in C<s> that could begin a non-malformed character.
de69f3af 952See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is
173db420 953returned.
ec5f19d0
KW
954
955=cut
956*/
957
958
959UV
960Perl_utf8_to_uvchr_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
961{
ec5f19d0
KW
962 assert(s < send);
963
964 return utf8n_to_uvchr(s, send - s, retlen,
965 ckWARN_d(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
966}
967
27d6c58a 968/* Like L</utf8_to_uvchr_buf>(), but should only be called when it is known that
3986bb7c 969 * there are no malformations in the input UTF-8 string C<s>. surrogates,
57b0056d 970 * non-character code points, and non-Unicode code points are allowed. */
27d6c58a
KW
971
972UV
973Perl_valid_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen)
974{
010ab96b
KW
975 UV expectlen = UTF8SKIP(s);
976 const U8* send = s + expectlen;
9ff2f0f7 977 UV uv = *s;
3986bb7c 978
27d6c58a
KW
979 PERL_ARGS_ASSERT_VALID_UTF8_TO_UVCHR;
980
010ab96b
KW
981 if (retlen) {
982 *retlen = expectlen;
983 }
984
985 /* An invariant is trivially returned */
986 if (expectlen == 1) {
9ff2f0f7 987 return uv;
010ab96b
KW
988 }
989
9ff2f0f7
KW
990#ifdef EBCDIC
991 uv = NATIVE_UTF8_TO_I8(uv);
992#endif
993
010ab96b
KW
994 /* Remove the leading bits that indicate the number of bytes, leaving just
995 * the bits that are part of the value */
996 uv &= UTF_START_MASK(expectlen);
997
998 /* Now, loop through the remaining bytes, accumulating each into the
999 * working total as we go. (I khw tried unrolling the loop for up to 4
1000 * bytes, but there was no performance improvement) */
1001 for (++s; s < send; s++) {
1002 uv = UTF8_ACCUMULATE(uv, *s);
1003 }
1004
3986bb7c 1005 return UNI_TO_NATIVE(uv);
010ab96b 1006
27d6c58a
KW
1007}
1008
ec5f19d0 1009/*
87cea99e 1010=for apidoc utf8_to_uvchr
9041c2e3 1011
6ee84de2 1012Returns the native code point of the first character in the string C<s>
1e54db1a 1013which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
9041c2e3
NIS
1014length, in bytes, of that character.
1015
4b88fb76 1016Some, but not all, UTF-8 malformations are detected, and in fact, some
977c1d31
KW
1017malformed input could cause reading beyond the end of the input buffer, which
1018is why this function is deprecated. Use L</utf8_to_uvchr_buf> instead.
4b88fb76 1019
524080c4
KW
1020If C<s> points to one of the detected malformations, and UTF8 warnings are
1021enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't
1022NULL) to -1. If those warnings are off, the computed value if well-defined (or
1023the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen>
1024is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the
1025next possible position in C<s> that could begin a non-malformed character.
de69f3af 1026See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is returned.
9041c2e3
NIS
1027
1028=cut
1029*/
1030
1031UV
7fc63493 1032Perl_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen)
9041c2e3 1033{
7918f24d
NC
1034 PERL_ARGS_ASSERT_UTF8_TO_UVCHR;
1035
2ff6c191 1036 return utf8_to_uvchr_buf(s, s + UTF8_MAXBYTES, retlen);
9041c2e3
NIS
1037}
1038
1039/*
ec5f19d0
KW
1040=for apidoc utf8_to_uvuni_buf
1041
de69f3af
KW
1042Only in very rare circumstances should code need to be dealing in Unicode
1043(as opposed to native) code points. In those few cases, use
1044C<L<NATIVE_TO_UNI(utf8_to_uvchr_buf(...))|/utf8_to_uvchr_buf>> instead.
4f83cdcd
KW
1045
1046Returns the Unicode (not-native) code point of the first character in the
1047string C<s> which
ec5f19d0
KW
1048is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>.
1049C<retlen> will be set to the length, in bytes, of that character.
1050
524080c4
KW
1051If C<s> does not point to a well-formed UTF-8 character and UTF8 warnings are
1052enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't
1053NULL) to -1. If those warnings are off, the computed value if well-defined (or
1054the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen>
1055is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the
1056next possible position in C<s> that could begin a non-malformed character.
de69f3af 1057See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is returned.
ec5f19d0
KW
1058
1059=cut
1060*/
1061
1062UV
1063Perl_utf8_to_uvuni_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
1064{
1065 PERL_ARGS_ASSERT_UTF8_TO_UVUNI_BUF;
1066
1067 assert(send > s);
1068
1069 /* Call the low level routine asking for checks */
de69f3af
KW
1070 return NATIVE_TO_UNI(Perl_utf8n_to_uvchr(aTHX_ s, send -s, retlen,
1071 ckWARN_d(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY));
ec5f19d0
KW
1072}
1073
5495102a
KW
1074/* DEPRECATED!
1075 * Like L</utf8_to_uvuni_buf>(), but should only be called when it is known that
2114036c 1076 * there are no malformations in the input UTF-8 string C<s>. Surrogates,
3986bb7c 1077 * non-character code points, and non-Unicode code points are allowed */
27d6c58a
KW
1078
1079UV
1080Perl_valid_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen)
1081{
1082 PERL_ARGS_ASSERT_VALID_UTF8_TO_UVUNI;
1083
010ab96b 1084 return NATIVE_TO_UNI(valid_utf8_to_uvchr(s, retlen));
27d6c58a
KW
1085}
1086
ec5f19d0 1087/*
87cea99e 1088=for apidoc utf8_to_uvuni
9041c2e3
NIS
1089
1090Returns the Unicode code point of the first character in the string C<s>
1e54db1a 1091which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
9041c2e3
NIS
1092length, in bytes, of that character.
1093
4b88fb76 1094Some, but not all, UTF-8 malformations are detected, and in fact, some
977c1d31 1095malformed input could cause reading beyond the end of the input buffer, which
4f83cdcd
KW
1096is one reason why this function is deprecated. The other is that only in
1097extremely limited circumstances should the Unicode versus native code point be
de69f3af 1098of any interest to you. See L</utf8_to_uvuni_buf> for alternatives.
9041c2e3 1099
524080c4
KW
1100If C<s> points to one of the detected malformations, and UTF8 warnings are
1101enabled, zero is returned and C<*retlen> is set (if C<retlen> doesn't point to
1102NULL) to -1. If those warnings are off, the computed value if well-defined (or
1103the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen>
1104is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the
1105next possible position in C<s> that could begin a non-malformed character.
de69f3af 1106See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is returned.
8e84507e
NIS
1107
1108=cut
1109*/
1110
1111UV
7fc63493 1112Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen)
8e84507e 1113{
7918f24d
NC
1114 PERL_ARGS_ASSERT_UTF8_TO_UVUNI;
1115
5495102a 1116 return NATIVE_TO_UNI(valid_utf8_to_uvchr(s, retlen));
8e84507e
NIS
1117}
1118
b76347f2 1119/*
87cea99e 1120=for apidoc utf8_length
b76347f2
JH
1121
1122Return the length of the UTF-8 char encoded string C<s> in characters.
02eb7b47
JH
1123Stops at C<e> (inclusive). If C<e E<lt> s> or if the scan would end
1124up past C<e>, croaks.
b76347f2
JH
1125
1126=cut
1127*/
1128
1129STRLEN
35a4481c 1130Perl_utf8_length(pTHX_ const U8 *s, const U8 *e)
b76347f2 1131{
97aff369 1132 dVAR;
b76347f2
JH
1133 STRLEN len = 0;
1134
7918f24d
NC
1135 PERL_ARGS_ASSERT_UTF8_LENGTH;
1136
8850bf83
JH
1137 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g.
1138 * the bitops (especially ~) can create illegal UTF-8.
1139 * In other words: in Perl UTF-8 is not just for Unicode. */
1140
a3b680e6
AL
1141 if (e < s)
1142 goto warn_and_return;
b76347f2 1143 while (s < e) {
4cbf4130 1144 s += UTF8SKIP(s);
8e91ec7f
AV
1145 len++;
1146 }
1147
1148 if (e != s) {
1149 len--;
1150 warn_and_return:
9b387841
NC
1151 if (PL_op)
1152 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
1153 "%s in %s", unees, OP_DESC(PL_op));
1154 else
61a12c31 1155 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), "%s", unees);
b76347f2
JH
1156 }
1157
1158 return len;
1159}
1160
b06226ff 1161/*
87cea99e 1162=for apidoc utf8_distance
b06226ff 1163
1e54db1a 1164Returns the number of UTF-8 characters between the UTF-8 pointers C<a>
b06226ff
JH
1165and C<b>.
1166
1167WARNING: use only if you *know* that the pointers point inside the
1168same UTF-8 buffer.
1169
37607a96
PK
1170=cut
1171*/
a0ed51b3 1172
02eb7b47 1173IV
35a4481c 1174Perl_utf8_distance(pTHX_ const U8 *a, const U8 *b)
a0ed51b3 1175{
7918f24d
NC
1176 PERL_ARGS_ASSERT_UTF8_DISTANCE;
1177
bf1665bc 1178 return (a < b) ? -1 * (IV) utf8_length(a, b) : (IV) utf8_length(b, a);
a0ed51b3
LW
1179}
1180
b06226ff 1181/*
87cea99e 1182=for apidoc utf8_hop
b06226ff 1183
8850bf83
JH
1184Return the UTF-8 pointer C<s> displaced by C<off> characters, either
1185forward or backward.
b06226ff
JH
1186
1187WARNING: do not use the following unless you *know* C<off> is within
8850bf83
JH
1188the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned
1189on the first byte of character or just after the last byte of a character.
b06226ff 1190
37607a96
PK
1191=cut
1192*/
a0ed51b3
LW
1193
1194U8 *
4373e329 1195Perl_utf8_hop(pTHX_ const U8 *s, I32 off)
a0ed51b3 1196{
7918f24d
NC
1197 PERL_ARGS_ASSERT_UTF8_HOP;
1198
96a5add6 1199 PERL_UNUSED_CONTEXT;
8850bf83
JH
1200 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g
1201 * the bitops (especially ~) can create illegal UTF-8.
1202 * In other words: in Perl UTF-8 is not just for Unicode. */
1203
a0ed51b3
LW
1204 if (off >= 0) {
1205 while (off--)
1206 s += UTF8SKIP(s);
1207 }
1208 else {
1209 while (off++) {
1210 s--;
8850bf83
JH
1211 while (UTF8_IS_CONTINUATION(*s))
1212 s--;
a0ed51b3
LW
1213 }
1214 }
4373e329 1215 return (U8 *)s;
a0ed51b3
LW
1216}
1217
6940069f 1218/*
fed3ba5d
NC
1219=for apidoc bytes_cmp_utf8
1220
a1433954 1221Compares the sequence of characters (stored as octets) in C<b>, C<blen> with the
72d33970
FC
1222sequence of characters (stored as UTF-8)
1223in C<u>, C<ulen>. Returns 0 if they are
fed3ba5d
NC
1224equal, -1 or -2 if the first string is less than the second string, +1 or +2
1225if the first string is greater than the second string.
1226
1227-1 or +1 is returned if the shorter string was identical to the start of the
72d33970
FC
1228longer string. -2 or +2 is returned if
1229there was a difference between characters
fed3ba5d
NC
1230within the strings.
1231
1232=cut
1233*/
1234
1235int
1236Perl_bytes_cmp_utf8(pTHX_ const U8 *b, STRLEN blen, const U8 *u, STRLEN ulen)
1237{
1238 const U8 *const bend = b + blen;
1239 const U8 *const uend = u + ulen;
1240
1241 PERL_ARGS_ASSERT_BYTES_CMP_UTF8;
1242
1243 PERL_UNUSED_CONTEXT;
1244
1245 while (b < bend && u < uend) {
1246 U8 c = *u++;
1247 if (!UTF8_IS_INVARIANT(c)) {
1248 if (UTF8_IS_DOWNGRADEABLE_START(c)) {
1249 if (u < uend) {
1250 U8 c1 = *u++;
1251 if (UTF8_IS_CONTINUATION(c1)) {
94bb8c36 1252 c = TWO_BYTE_UTF8_TO_NATIVE(c, c1);
fed3ba5d
NC
1253 } else {
1254 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
1255 "Malformed UTF-8 character "
1256 "(unexpected non-continuation byte 0x%02x"
1257 ", immediately after start byte 0x%02x)"
1258 /* Dear diag.t, it's in the pod. */
1259 "%s%s", c1, c,
1260 PL_op ? " in " : "",
1261 PL_op ? OP_DESC(PL_op) : "");
1262 return -2;
1263 }
1264 } else {
1265 if (PL_op)
1266 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
1267 "%s in %s", unees, OP_DESC(PL_op));
1268 else
61a12c31 1269 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), "%s", unees);
fed3ba5d
NC
1270 return -2; /* Really want to return undef :-) */
1271 }
1272 } else {
1273 return -2;
1274 }
1275 }
1276 if (*b != c) {
1277 return *b < c ? -2 : +2;
1278 }
1279 ++b;
1280 }
1281
1282 if (b == bend && u == uend)
1283 return 0;
1284
1285 return b < bend ? +1 : -1;
1286}
1287
1288/*
87cea99e 1289=for apidoc utf8_to_bytes
6940069f 1290
2bbc8d55 1291Converts a string C<s> of length C<len> from UTF-8 into native byte encoding.
a1433954
KW
1292Unlike L</bytes_to_utf8>, this over-writes the original string, and
1293updates C<len> to contain the new length.
67e989fb 1294Returns zero on failure, setting C<len> to -1.
6940069f 1295
a1433954 1296If you need a copy of the string, see L</bytes_from_utf8>.
95be277c 1297
6940069f
GS
1298=cut
1299*/
1300
1301U8 *
37607a96 1302Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len)
6940069f 1303{
d4c19fe8
AL
1304 U8 * const save = s;
1305 U8 * const send = s + *len;
6940069f 1306 U8 *d;
246fae53 1307
7918f24d
NC
1308 PERL_ARGS_ASSERT_UTF8_TO_BYTES;
1309
1e54db1a 1310 /* ensure valid UTF-8 and chars < 256 before updating string */
d4c19fe8 1311 while (s < send) {
d59937ca
KW
1312 if (! UTF8_IS_INVARIANT(*s)) {
1313 if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, send)) {
1314 *len = ((STRLEN) -1);
1315 return 0;
1316 }
1317 s++;
dcad2880 1318 }
d59937ca 1319 s++;
246fae53 1320 }
dcad2880
JH
1321
1322 d = s = save;
6940069f 1323 while (s < send) {
80e0b38f
KW
1324 U8 c = *s++;
1325 if (! UTF8_IS_INVARIANT(c)) {
1326 /* Then it is two-byte encoded */
1327 c = TWO_BYTE_UTF8_TO_NATIVE(c, *s);
1328 s++;
1329 }
1330 *d++ = c;
6940069f
GS
1331 }
1332 *d = '\0';
246fae53 1333 *len = d - save;
6940069f
GS
1334 return save;
1335}
1336
1337/*
87cea99e 1338=for apidoc bytes_from_utf8
f9a63242 1339
2bbc8d55 1340Converts a string C<s> of length C<len> from UTF-8 into native byte encoding.
a1433954 1341Unlike L</utf8_to_bytes> but like L</bytes_to_utf8>, returns a pointer to
ef9edfd0
JH
1342the newly-created string, and updates C<len> to contain the new
1343length. Returns the original string if no conversion occurs, C<len>
72d33970 1344is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to
2bbc8d55
SP
13450 if C<s> is converted or consisted entirely of characters that are invariant
1346in utf8 (i.e., US-ASCII on non-EBCDIC machines).
f9a63242 1347
37607a96
PK
1348=cut
1349*/
f9a63242
JH
1350
1351U8 *
e1ec3a88 1352Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8)
f9a63242 1353{
f9a63242 1354 U8 *d;
e1ec3a88
AL
1355 const U8 *start = s;
1356 const U8 *send;
f9a63242
JH
1357 I32 count = 0;
1358
7918f24d
NC
1359 PERL_ARGS_ASSERT_BYTES_FROM_UTF8;
1360
96a5add6 1361 PERL_UNUSED_CONTEXT;
f9a63242 1362 if (!*is_utf8)
73d840c0 1363 return (U8 *)start;
f9a63242 1364
1e54db1a 1365 /* ensure valid UTF-8 and chars < 256 before converting string */
f9a63242 1366 for (send = s + *len; s < send;) {
d59937ca
KW
1367 if (! UTF8_IS_INVARIANT(*s)) {
1368 if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, send)) {
73d840c0 1369 return (U8 *)start;
d59937ca
KW
1370 }
1371 count++;
1372 s++;
db42d148 1373 }
d59937ca 1374 s++;
f9a63242
JH
1375 }
1376
35da51f7 1377 *is_utf8 = FALSE;
f9a63242 1378
212542aa 1379 Newx(d, (*len) - count + 1, U8);
ef9edfd0 1380 s = start; start = d;
f9a63242
JH
1381 while (s < send) {
1382 U8 c = *s++;
1a91c45d 1383 if (! UTF8_IS_INVARIANT(c)) {
c4d5f83a 1384 /* Then it is two-byte encoded */
1a91c45d
KW
1385 c = TWO_BYTE_UTF8_TO_NATIVE(c, *s);
1386 s++;
c4d5f83a
NIS
1387 }
1388 *d++ = c;
f9a63242
JH
1389 }
1390 *d = '\0';
1391 *len = d - start;
73d840c0 1392 return (U8 *)start;
f9a63242
JH
1393}
1394
1395/*
87cea99e 1396=for apidoc bytes_to_utf8
6940069f 1397
ff97e5cf
KW
1398Converts a string C<s> of length C<len> bytes from the native encoding into
1399UTF-8.
6662521e 1400Returns a pointer to the newly-created string, and sets C<len> to
ff97e5cf 1401reflect the new length in bytes.
6940069f 1402
2bbc8d55
SP
1403A NUL character will be written after the end of the string.
1404
1405If you want to convert to UTF-8 from encodings other than
1406the native (Latin1 or EBCDIC),
a1433954 1407see L</sv_recode_to_utf8>().
c9ada85f 1408
497711e7 1409=cut
6940069f
GS
1410*/
1411
c682ebef
FC
1412/* This logic is duplicated in sv_catpvn_flags, so any bug fixes will
1413 likewise need duplication. */
1414
6940069f 1415U8*
35a4481c 1416Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len)
6940069f 1417{
35a4481c 1418 const U8 * const send = s + (*len);
6940069f
GS
1419 U8 *d;
1420 U8 *dst;
7918f24d
NC
1421
1422 PERL_ARGS_ASSERT_BYTES_TO_UTF8;
96a5add6 1423 PERL_UNUSED_CONTEXT;
6940069f 1424
212542aa 1425 Newx(d, (*len) * 2 + 1, U8);
6940069f
GS
1426 dst = d;
1427
1428 while (s < send) {
55d09dc8
KW
1429 append_utf8_from_native_byte(*s, &d);
1430 s++;
6940069f
GS
1431 }
1432 *d = '\0';
6662521e 1433 *len = d-dst;
6940069f
GS
1434 return dst;
1435}
1436
a0ed51b3 1437/*
dea0fc0b 1438 * Convert native (big-endian) or reversed (little-endian) UTF-16 to UTF-8.
a0ed51b3
LW
1439 *
1440 * Destination must be pre-extended to 3/2 source. Do not use in-place.
1441 * We optimize for native, for obvious reasons. */
1442
1443U8*
dea0fc0b 1444Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
a0ed51b3 1445{
dea0fc0b
JH
1446 U8* pend;
1447 U8* dstart = d;
1448
7918f24d
NC
1449 PERL_ARGS_ASSERT_UTF16_TO_UTF8;
1450
dea0fc0b 1451 if (bytelen & 1)
f5992bc4 1452 Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen %"UVuf, (UV)bytelen);
dea0fc0b
JH
1453
1454 pend = p + bytelen;
1455
a0ed51b3 1456 while (p < pend) {
dea0fc0b
JH
1457 UV uv = (p[0] << 8) + p[1]; /* UTF-16BE */
1458 p += 2;
56d37426
KW
1459 if (UNI_IS_INVARIANT(uv)) {
1460 *d++ = LATIN1_TO_NATIVE((U8) uv);
a0ed51b3
LW
1461 continue;
1462 }
56d37426
KW
1463 if (uv <= MAX_UTF8_TWO_BYTE) {
1464 *d++ = UTF8_TWO_BYTE_HI(UNI_TO_NATIVE(uv));
1465 *d++ = UTF8_TWO_BYTE_LO(UNI_TO_NATIVE(uv));
a0ed51b3
LW
1466 continue;
1467 }
46956fad
KW
1468#define FIRST_HIGH_SURROGATE UNICODE_SURROGATE_FIRST
1469#define LAST_HIGH_SURROGATE 0xDBFF
1470#define FIRST_LOW_SURROGATE 0xDC00
1471#define LAST_LOW_SURROGATE UNICODE_SURROGATE_LAST
1472 if (uv >= FIRST_HIGH_SURROGATE && uv <= LAST_HIGH_SURROGATE) {
01ea242b 1473 if (p >= pend) {
dea0fc0b 1474 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
01ea242b
NC
1475 } else {
1476 UV low = (p[0] << 8) + p[1];
1477 p += 2;
46956fad 1478 if (low < FIRST_LOW_SURROGATE || low > LAST_LOW_SURROGATE)
01ea242b 1479 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
46956fad
KW
1480 uv = ((uv - FIRST_HIGH_SURROGATE) << 10)
1481 + (low - FIRST_LOW_SURROGATE) + 0x10000;
01ea242b 1482 }
46956fad 1483 } else if (uv >= FIRST_LOW_SURROGATE && uv <= LAST_LOW_SURROGATE) {
dbde1951 1484 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
a0ed51b3 1485 }
56d37426
KW
1486#ifdef EBCDIC
1487 d = uvoffuni_to_utf8_flags(d, uv, 0);
1488#else
a0ed51b3 1489 if (uv < 0x10000) {
eb160463
GS
1490 *d++ = (U8)(( uv >> 12) | 0xe0);
1491 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
1492 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
1493 continue;
1494 }
1495 else {
eb160463
GS
1496 *d++ = (U8)(( uv >> 18) | 0xf0);
1497 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
1498 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
1499 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
1500 continue;
1501 }
56d37426 1502#endif
a0ed51b3 1503 }
dea0fc0b 1504 *newlen = d - dstart;
a0ed51b3
LW
1505 return d;
1506}
1507
1508/* Note: this one is slightly destructive of the source. */
1509
1510U8*
dea0fc0b 1511Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
a0ed51b3
LW
1512{
1513 U8* s = (U8*)p;
d4c19fe8 1514 U8* const send = s + bytelen;
7918f24d
NC
1515
1516 PERL_ARGS_ASSERT_UTF16_TO_UTF8_REVERSED;
1517
e0ea5e2d
NC
1518 if (bytelen & 1)
1519 Perl_croak(aTHX_ "panic: utf16_to_utf8_reversed: odd bytelen %"UVuf,
1520 (UV)bytelen);
1521
a0ed51b3 1522 while (s < send) {
d4c19fe8 1523 const U8 tmp = s[0];
a0ed51b3
LW
1524 s[0] = s[1];
1525 s[1] = tmp;
1526 s += 2;
1527 }
dea0fc0b 1528 return utf16_to_utf8(p, d, bytelen, newlen);
a0ed51b3
LW
1529}
1530
922e8cb4
KW
1531bool
1532Perl__is_uni_FOO(pTHX_ const U8 classnum, const UV c)
1533{
1534 U8 tmpbuf[UTF8_MAXBYTES+1];
1535 uvchr_to_utf8(tmpbuf, c);
1536 return _is_utf8_FOO(classnum, tmpbuf);
1537}
1538
f9ae8fb6
JD
1539/* Internal function so we can deprecate the external one, and call
1540 this one from other deprecated functions in this file */
1541
1542PERL_STATIC_INLINE bool
61b19385
KW
1543S_is_utf8_idfirst(pTHX_ const U8 *p)
1544{
1545 dVAR;
1546
1547 if (*p == '_')
1548 return TRUE;
1549 /* is_utf8_idstart would be more logical. */
f25ce844 1550 return is_utf8_common(p, &PL_utf8_idstart, "IdStart", NULL);
61b19385
KW
1551}
1552
5092f92a 1553bool
84afefe6 1554Perl_is_uni_idfirst(pTHX_ UV c)
a0ed51b3 1555{
89ebb4a3 1556 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 1557 uvchr_to_utf8(tmpbuf, c);
61b19385 1558 return S_is_utf8_idfirst(aTHX_ tmpbuf);
a0ed51b3
LW
1559}
1560
1561bool
eba68aa0
KW
1562Perl__is_uni_perl_idcont(pTHX_ UV c)
1563{
1564 U8 tmpbuf[UTF8_MAXBYTES+1];
1565 uvchr_to_utf8(tmpbuf, c);
1566 return _is_utf8_perl_idcont(tmpbuf);
1567}
1568
1569bool
f91dcd13
KW
1570Perl__is_uni_perl_idstart(pTHX_ UV c)
1571{
1572 U8 tmpbuf[UTF8_MAXBYTES+1];
1573 uvchr_to_utf8(tmpbuf, c);
1574 return _is_utf8_perl_idstart(tmpbuf);
1575}
1576
3a4c58c9
KW
1577UV
1578Perl__to_upper_title_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp, const char S_or_s)
1579{
1580 /* We have the latin1-range values compiled into the core, so just use
1581 * those, converting the result to utf8. The only difference between upper
1582 * and title case in this range is that LATIN_SMALL_LETTER_SHARP_S is
1583 * either "SS" or "Ss". Which one to use is passed into the routine in
1584 * 'S_or_s' to avoid a test */
1585
1586 UV converted = toUPPER_LATIN1_MOD(c);
1587
1588 PERL_ARGS_ASSERT__TO_UPPER_TITLE_LATIN1;
1589
1590 assert(S_or_s == 'S' || S_or_s == 's');
1591
6f2d5cbc 1592 if (UVCHR_IS_INVARIANT(converted)) { /* No difference between the two for
f4cd282c 1593 characters in this range */
3a4c58c9
KW
1594 *p = (U8) converted;
1595 *lenp = 1;
1596 return converted;
1597 }
1598
1599 /* toUPPER_LATIN1_MOD gives the correct results except for three outliers,
1600 * which it maps to one of them, so as to only have to have one check for
1601 * it in the main case */
1602 if (UNLIKELY(converted == LATIN_SMALL_LETTER_Y_WITH_DIAERESIS)) {
1603 switch (c) {
1604 case LATIN_SMALL_LETTER_Y_WITH_DIAERESIS:
1605 converted = LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS;
1606 break;
1607 case MICRO_SIGN:
1608 converted = GREEK_CAPITAL_LETTER_MU;
1609 break;
1610 case LATIN_SMALL_LETTER_SHARP_S:
1611 *(p)++ = 'S';
1612 *p = S_or_s;
1613 *lenp = 2;
1614 return 'S';
1615 default:
1616 Perl_croak(aTHX_ "panic: to_upper_title_latin1 did not expect '%c' to map to '%c'", c, LATIN_SMALL_LETTER_Y_WITH_DIAERESIS);
118e2215 1617 assert(0); /* NOTREACHED */
3a4c58c9
KW
1618 }
1619 }
1620
1621 *(p)++ = UTF8_TWO_BYTE_HI(converted);
1622 *p = UTF8_TWO_BYTE_LO(converted);
1623 *lenp = 2;
1624
1625 return converted;
1626}
1627
50bda2c3
KW
1628/* Call the function to convert a UTF-8 encoded character to the specified case.
1629 * Note that there may be more than one character in the result.
1630 * INP is a pointer to the first byte of the input character
1631 * OUTP will be set to the first byte of the string of changed characters. It
1632 * needs to have space for UTF8_MAXBYTES_CASE+1 bytes
1633 * LENP will be set to the length in bytes of the string of changed characters
1634 *
1635 * The functions return the ordinal of the first character in the string of OUTP */
4a8240a3
KW
1636#define CALL_UPPER_CASE(INP, OUTP, LENP) Perl_to_utf8_case(aTHX_ INP, OUTP, LENP, &PL_utf8_toupper, "ToUc", "")
1637#define CALL_TITLE_CASE(INP, OUTP, LENP) Perl_to_utf8_case(aTHX_ INP, OUTP, LENP, &PL_utf8_totitle, "ToTc", "")
1638#define CALL_LOWER_CASE(INP, OUTP, LENP) Perl_to_utf8_case(aTHX_ INP, OUTP, LENP, &PL_utf8_tolower, "ToLc", "")
50bda2c3
KW
1639
1640/* This additionally has the input parameter SPECIALS, which if non-zero will
1641 * cause this to use the SPECIALS hash for folding (meaning get full case
1642 * folding); otherwise, when zero, this implies a simple case fold */
4a8240a3 1643#define CALL_FOLD_CASE(INP, OUTP, LENP, SPECIALS) Perl_to_utf8_case(aTHX_ INP, OUTP, LENP, &PL_utf8_tofold, "ToCf", (SPECIALS) ? "" : NULL)
c3fd2246 1644
84afefe6
JH
1645UV
1646Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp)
a0ed51b3 1647{
3a4c58c9
KW
1648 dVAR;
1649
a1433954
KW
1650 /* Convert the Unicode character whose ordinal is <c> to its uppercase
1651 * version and store that in UTF-8 in <p> and its length in bytes in <lenp>.
1652 * Note that the <p> needs to be at least UTF8_MAXBYTES_CASE+1 bytes since
c3fd2246
KW
1653 * the changed version may be longer than the original character.
1654 *
1655 * The ordinal of the first character of the changed version is returned
1656 * (but note, as explained above, that there may be more.) */
1657
7918f24d
NC
1658 PERL_ARGS_ASSERT_TO_UNI_UPPER;
1659
3a4c58c9
KW
1660 if (c < 256) {
1661 return _to_upper_title_latin1((U8) c, p, lenp, 'S');
1662 }
1663
0ebc6274 1664 uvchr_to_utf8(p, c);
3a4c58c9 1665 return CALL_UPPER_CASE(p, p, lenp);
a0ed51b3
LW
1666}
1667
84afefe6
JH
1668UV
1669Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp)
a0ed51b3 1670{
3a4c58c9
KW
1671 dVAR;
1672
7918f24d
NC
1673 PERL_ARGS_ASSERT_TO_UNI_TITLE;
1674
3a4c58c9
KW
1675 if (c < 256) {
1676 return _to_upper_title_latin1((U8) c, p, lenp, 's');
1677 }
1678
0ebc6274 1679 uvchr_to_utf8(p, c);
3a4c58c9 1680 return CALL_TITLE_CASE(p, p, lenp);
a0ed51b3
LW
1681}
1682
afc16117
KW
1683STATIC U8
1684S_to_lower_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp)
1685{
1686 /* We have the latin1-range values compiled into the core, so just use
1687 * those, converting the result to utf8. Since the result is always just
a1433954 1688 * one character, we allow <p> to be NULL */
afc16117
KW
1689
1690 U8 converted = toLOWER_LATIN1(c);
1691
1692 if (p != NULL) {
6f2d5cbc 1693 if (NATIVE_BYTE_IS_INVARIANT(converted)) {
afc16117
KW
1694 *p = converted;
1695 *lenp = 1;
1696 }
1697 else {
1698 *p = UTF8_TWO_BYTE_HI(converted);
1699 *(p+1) = UTF8_TWO_BYTE_LO(converted);
1700 *lenp = 2;
1701 }
1702 }
1703 return converted;
1704}
1705
84afefe6
JH
1706UV
1707Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp)
a0ed51b3 1708{
968c5e6a
KW
1709 dVAR;
1710
7918f24d
NC
1711 PERL_ARGS_ASSERT_TO_UNI_LOWER;
1712
afc16117
KW
1713 if (c < 256) {
1714 return to_lower_latin1((U8) c, p, lenp);
bca00c02
KW
1715 }
1716
afc16117 1717 uvchr_to_utf8(p, c);
968c5e6a 1718 return CALL_LOWER_CASE(p, p, lenp);
a0ed51b3
LW
1719}
1720
84afefe6 1721UV
51910141 1722Perl__to_fold_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp, const unsigned int flags)
a1dde8de 1723{
51910141 1724 /* Corresponds to to_lower_latin1(); <flags> bits meanings:
1ca267a5 1725 * FOLD_FLAGS_NOMIX_ASCII iff non-ASCII to ASCII folds are prohibited
51910141 1726 * FOLD_FLAGS_FULL iff full folding is to be used;
1ca267a5
KW
1727 *
1728 * Not to be used for locale folds
51910141 1729 */
f673fad4 1730
a1dde8de
KW
1731 UV converted;
1732
1733 PERL_ARGS_ASSERT__TO_FOLD_LATIN1;
1734
1ca267a5
KW
1735 assert (! (flags & FOLD_FLAGS_LOCALE));
1736
a1dde8de
KW
1737 if (c == MICRO_SIGN) {
1738 converted = GREEK_SMALL_LETTER_MU;
1739 }
51910141 1740 else if ((flags & FOLD_FLAGS_FULL) && c == LATIN_SMALL_LETTER_SHARP_S) {
1ca267a5
KW
1741
1742 /* If can't cross 127/128 boundary, can't return "ss"; instead return
1743 * two U+017F characters, as fc("\df") should eq fc("\x{17f}\x{17f}")
1744 * under those circumstances. */
1745 if (flags & FOLD_FLAGS_NOMIX_ASCII) {
1746 *lenp = 2 * sizeof(LATIN_SMALL_LETTER_LONG_S_UTF8) - 2;
1747 Copy(LATIN_SMALL_LETTER_LONG_S_UTF8 LATIN_SMALL_LETTER_LONG_S_UTF8,
1748 p, *lenp, U8);
1749 return LATIN_SMALL_LETTER_LONG_S;
1750 }
1751 else {
4f489194
KW
1752 *(p)++ = 's';
1753 *p = 's';
1754 *lenp = 2;
1755 return 's';
1ca267a5 1756 }
a1dde8de
KW
1757 }
1758 else { /* In this range the fold of all other characters is their lower
1759 case */
1760 converted = toLOWER_LATIN1(c);
1761 }
1762
6f2d5cbc 1763 if (UVCHR_IS_INVARIANT(converted)) {
a1dde8de
KW
1764 *p = (U8) converted;
1765 *lenp = 1;
1766 }
1767 else {
1768 *(p)++ = UTF8_TWO_BYTE_HI(converted);
1769 *p = UTF8_TWO_BYTE_LO(converted);
1770 *lenp = 2;
1771 }
1772
1773 return converted;
1774}
1775
1776UV
31f05a37 1777Perl__to_uni_fold_flags(pTHX_ UV c, U8* p, STRLEN *lenp, U8 flags)
84afefe6 1778{
4b593389 1779
a0270393
KW
1780 /* Not currently externally documented, and subject to change
1781 * <flags> bits meanings:
1782 * FOLD_FLAGS_FULL iff full folding is to be used;
31f05a37
KW
1783 * FOLD_FLAGS_LOCALE is set iff the rules from the current underlying
1784 * locale are to be used.
a0270393
KW
1785 * FOLD_FLAGS_NOMIX_ASCII iff non-ASCII to ASCII folds are prohibited
1786 */
4b593389 1787
36bb2ab6 1788 PERL_ARGS_ASSERT__TO_UNI_FOLD_FLAGS;
7918f24d 1789
31f05a37
KW
1790 /* Tread a UTF-8 locale as not being in locale at all */
1791 if (IN_UTF8_CTYPE_LOCALE) {
1792 flags &= ~FOLD_FLAGS_LOCALE;
1793 }
1794
a1dde8de 1795 if (c < 256) {
a0270393 1796 UV result = _to_fold_latin1((U8) c, p, lenp,
31f05a37 1797 flags & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII));
a0270393
KW
1798 /* It is illegal for the fold to cross the 255/256 boundary under
1799 * locale; in this case return the original */
1800 return (result > 256 && flags & FOLD_FLAGS_LOCALE)
1801 ? c
1802 : result;
a1dde8de
KW
1803 }
1804
a0270393
KW
1805 /* If no special needs, just use the macro */
1806 if ( ! (flags & (FOLD_FLAGS_LOCALE|FOLD_FLAGS_NOMIX_ASCII))) {
1807 uvchr_to_utf8(p, c);
1808 return CALL_FOLD_CASE(p, p, lenp, flags & FOLD_FLAGS_FULL);
1809 }
1810 else { /* Otherwise, _to_utf8_fold_flags has the intelligence to deal with
1811 the special flags. */
1812 U8 utf8_c[UTF8_MAXBYTES + 1];
1813 uvchr_to_utf8(utf8_c, c);
445bf929 1814 return _to_utf8_fold_flags(utf8_c, p, lenp, flags);
a0270393 1815 }
84afefe6
JH
1816}
1817
26483009 1818PERL_STATIC_INLINE bool
5141f98e 1819S_is_utf8_common(pTHX_ const U8 *const p, SV **swash,
f25ce844 1820 const char *const swashname, SV* const invlist)
bde6a22d 1821{
ea317ccb
KW
1822 /* returns a boolean giving whether or not the UTF8-encoded character that
1823 * starts at <p> is in the swash indicated by <swashname>. <swash>
1824 * contains a pointer to where the swash indicated by <swashname>
1825 * is to be stored; which this routine will do, so that future calls will
f25ce844
KW
1826 * look at <*swash> and only generate a swash if it is not null. <invlist>
1827 * is NULL or an inversion list that defines the swash. If not null, it
1828 * saves time during initialization of the swash.
ea317ccb
KW
1829 *
1830 * Note that it is assumed that the buffer length of <p> is enough to
1831 * contain all the bytes that comprise the character. Thus, <*p> should
1832 * have been checked before this call for mal-formedness enough to assure
1833 * that. */
1834
97aff369 1835 dVAR;
7918f24d
NC
1836
1837 PERL_ARGS_ASSERT_IS_UTF8_COMMON;
1838
492a624f 1839 /* The API should have included a length for the UTF-8 character in <p>,
28123549 1840 * but it doesn't. We therefore assume that p has been validated at least
492a624f
KW
1841 * as far as there being enough bytes available in it to accommodate the
1842 * character without reading beyond the end, and pass that number on to the
1843 * validating routine */
28123549
KW
1844 if (! is_utf8_char_buf(p, p + UTF8SKIP(p))) {
1845 if (ckWARN_d(WARN_UTF8)) {
1846 Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED,WARN_UTF8),
9816f121 1847 "Passing malformed UTF-8 to \"%s\" is deprecated", swashname);
28123549
KW
1848 if (ckWARN(WARN_UTF8)) { /* This will output details as to the
1849 what the malformation is */
1850 utf8_to_uvchr_buf(p, p + UTF8SKIP(p), NULL);
1851 }
1852 }
1853 return FALSE;
1854 }
87367d5f
KW
1855 if (!*swash) {
1856 U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
f25ce844
KW
1857 *swash = _core_swash_init("utf8",
1858
1859 /* Only use the name if there is no inversion
1860 * list; otherwise will go out to disk */
1861 (invlist) ? "" : swashname,
1862
1863 &PL_sv_undef, 1, 0, invlist, &flags);
87367d5f 1864 }
28123549 1865
bde6a22d
NC
1866 return swash_fetch(*swash, p, TRUE) != 0;
1867}
1868
1869bool
922e8cb4
KW
1870Perl__is_utf8_FOO(pTHX_ const U8 classnum, const U8 *p)
1871{
1872 dVAR;
1873
1874 PERL_ARGS_ASSERT__IS_UTF8_FOO;
1875
1876 assert(classnum < _FIRST_NON_SWASH_CC);
1877
f25ce844
KW
1878 return is_utf8_common(p,
1879 &PL_utf8_swash_ptrs[classnum],
1880 swash_property_names[classnum],
1881 PL_XPosix_ptrs[classnum]);
922e8cb4
KW
1882}
1883
1884bool
7fc63493 1885Perl_is_utf8_idfirst(pTHX_ const U8 *p) /* The naming is historical. */
a0ed51b3 1886{
97aff369 1887 dVAR;
7918f24d
NC
1888
1889 PERL_ARGS_ASSERT_IS_UTF8_IDFIRST;
1890
61b19385 1891 return S_is_utf8_idfirst(aTHX_ p);
82686b01
JH
1892}
1893
1894bool
c11ff943
KW
1895Perl_is_utf8_xidfirst(pTHX_ const U8 *p) /* The naming is historical. */
1896{
1897 dVAR;
1898
1899 PERL_ARGS_ASSERT_IS_UTF8_XIDFIRST;
1900
1901 if (*p == '_')
1902 return TRUE;
1903 /* is_utf8_idstart would be more logical. */
f25ce844 1904 return is_utf8_common(p, &PL_utf8_xidstart, "XIdStart", NULL);
c11ff943
KW
1905}
1906
1907bool
d65654cb 1908Perl__is_utf8_perl_idstart(pTHX_ const U8 *p)
b6912c02
KW
1909{
1910 dVAR;
b24b43f7 1911 SV* invlist = NULL;
b6912c02 1912
d65654cb 1913 PERL_ARGS_ASSERT__IS_UTF8_PERL_IDSTART;
b6912c02 1914
b24b43f7
KW
1915 if (! PL_utf8_perl_idstart) {
1916 invlist = _new_invlist_C_array(_Perl_IDStart_invlist);
1917 }
1918 return is_utf8_common(p, &PL_utf8_perl_idstart, "", invlist);
b6912c02
KW
1919}
1920
1921bool
eba68aa0
KW
1922Perl__is_utf8_perl_idcont(pTHX_ const U8 *p)
1923{
1924 dVAR;
b24b43f7 1925 SV* invlist = NULL;
eba68aa0
KW
1926
1927 PERL_ARGS_ASSERT__IS_UTF8_PERL_IDCONT;
1928
b24b43f7
KW
1929 if (! PL_utf8_perl_idcont) {
1930 invlist = _new_invlist_C_array(_Perl_IDCont_invlist);
1931 }
1932 return is_utf8_common(p, &PL_utf8_perl_idcont, "", invlist);
eba68aa0
KW
1933}
1934
1935
1936bool
7fc63493 1937Perl_is_utf8_idcont(pTHX_ const U8 *p)
82686b01 1938{
97aff369 1939 dVAR;
7918f24d
NC
1940
1941 PERL_ARGS_ASSERT_IS_UTF8_IDCONT;
1942
f25ce844 1943 return is_utf8_common(p, &PL_utf8_idcont, "IdContinue", NULL);
a0ed51b3
LW
1944}
1945
1946bool
c11ff943
KW
1947Perl_is_utf8_xidcont(pTHX_ const U8 *p)
1948{
1949 dVAR;
1950
1951 PERL_ARGS_ASSERT_IS_UTF8_XIDCONT;
1952
f25ce844 1953 return is_utf8_common(p, &PL_utf8_idcont, "XIdContinue", NULL);
c11ff943
KW
1954}
1955
1956bool
7dbf68d2
KW
1957Perl__is_utf8_mark(pTHX_ const U8 *p)
1958{
1959 dVAR;
1960
1961 PERL_ARGS_ASSERT__IS_UTF8_MARK;
1962
f25ce844 1963 return is_utf8_common(p, &PL_utf8_mark, "IsM", NULL);
7dbf68d2
KW
1964}
1965
6b5c0936 1966/*
87cea99e 1967=for apidoc to_utf8_case
6b5c0936 1968
6fae5207 1969C<p> contains the pointer to the UTF-8 string encoding
a1433954
KW
1970the character that is being converted. This routine assumes that the character
1971at C<p> is well-formed.
6b5c0936 1972
6fae5207
KW
1973C<ustrp> is a pointer to the character buffer to put the
1974conversion result to. C<lenp> is a pointer to the length
6b5c0936
JH
1975of the result.
1976
6fae5207 1977C<swashp> is a pointer to the swash to use.
6b5c0936 1978
a1433954 1979Both the special and normal mappings are stored in F<lib/unicore/To/Foo.pl>,
6fae5207 1980and loaded by SWASHNEW, using F<lib/utf8_heavy.pl>. C<special> (usually,
0134edef 1981but not always, a multicharacter mapping), is tried first.
6b5c0936 1982
4a8240a3
KW
1983C<special> is a string, normally C<NULL> or C<"">. C<NULL> means to not use
1984any special mappings; C<""> means to use the special mappings. Values other
1985than these two are treated as the name of the hash containing the special
1986mappings, like C<"utf8::ToSpecLower">.
6b5c0936 1987
6fae5207 1988C<normal> is a string like "ToLower" which means the swash
0134edef
JH
1989%utf8::ToLower.
1990
1991=cut */
6b5c0936 1992
2104c8d9 1993UV
9a957fbc
AL
1994Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp,
1995 SV **swashp, const char *normal, const char *special)
a0ed51b3 1996{
97aff369 1997 dVAR;
0134edef 1998 STRLEN len = 0;
f4cd282c 1999 const UV uv1 = valid_utf8_to_uvchr(p, NULL);
7918f24d
NC
2000
2001 PERL_ARGS_ASSERT_TO_UTF8_CASE;
2002
9ae3ac1a
KW
2003 /* Note that swash_fetch() doesn't output warnings for these because it
2004 * assumes we will */
8457b38f 2005 if (uv1 >= UNICODE_SURROGATE_FIRST) {
9ae3ac1a 2006 if (uv1 <= UNICODE_SURROGATE_LAST) {
8457b38f
KW
2007 if (ckWARN_d(WARN_SURROGATE)) {
2008 const char* desc = (PL_op) ? OP_DESC(PL_op) : normal;
2009 Perl_warner(aTHX_ packWARN(WARN_SURROGATE),
2010 "Operation \"%s\" returns its argument for UTF-16 surrogate U+%04"UVXf"", desc, uv1);
2011 }
9ae3ac1a
KW
2012 }
2013 else if (UNICODE_IS_SUPER(uv1)) {
8457b38f
KW
2014 if (ckWARN_d(WARN_NON_UNICODE)) {
2015 const char* desc = (PL_op) ? OP_DESC(PL_op) : normal;
2016 Perl_warner(aTHX_ packWARN(WARN_NON_UNICODE),
2017 "Operation \"%s\" returns its argument for non-Unicode code point 0x%04"UVXf"", desc, uv1);
2018 }
9ae3ac1a
KW
2019 }
2020
2021 /* Note that non-characters are perfectly legal, so no warning should
2022 * be given */
2023 }
2024
0134edef 2025 if (!*swashp) /* load on-demand */
5ab9d2ef 2026 *swashp = _core_swash_init("utf8", normal, &PL_sv_undef, 4, 0, NULL, NULL);
0134edef 2027
a6f87d8c 2028 if (special) {
0134edef 2029 /* It might be "special" (sometimes, but not always,
2a37f04d 2030 * a multicharacter mapping) */
4a8240a3 2031 HV *hv = NULL;
b08cf34e
JH
2032 SV **svp;
2033
4a8240a3
KW
2034 /* If passed in the specials name, use that; otherwise use any
2035 * given in the swash */
2036 if (*special != '\0') {
2037 hv = get_hv(special, 0);
2038 }
2039 else {
2040 svp = hv_fetchs(MUTABLE_HV(SvRV(*swashp)), "SPECIALS", 0);
2041 if (svp) {
2042 hv = MUTABLE_HV(SvRV(*svp));
2043 }
2044 }
2045
176fe009
KW
2046 if (hv
2047 && (svp = hv_fetch(hv, (const char*)p, UNISKIP(uv1), FALSE))
2048 && (*svp))
2049 {
cfd0369c 2050 const char *s;
47654450 2051
cfd0369c 2052 s = SvPV_const(*svp, len);
47654450 2053 if (len == 1)
f4cd282c 2054 /* EIGHTBIT */
c80e42f3 2055 len = uvchr_to_utf8(ustrp, *(U8*)s) - ustrp;
2a37f04d 2056 else {
d2dcd0fb 2057 Copy(s, ustrp, len, U8);
29e98929 2058 }
983ffd37 2059 }
0134edef
JH
2060 }
2061
2062 if (!len && *swashp) {
f4cd282c 2063 const UV uv2 = swash_fetch(*swashp, p, TRUE /* => is utf8 */);
d4c19fe8 2064
0134edef
JH
2065 if (uv2) {
2066 /* It was "normal" (a single character mapping). */
f4cd282c 2067 len = uvchr_to_utf8(ustrp, uv2) - ustrp;
2a37f04d
JH
2068 }
2069 }
1feea2c7 2070
cbe07460
KW
2071 if (len) {
2072 if (lenp) {
2073 *lenp = len;
2074 }
2075 return valid_utf8_to_uvchr(ustrp, 0);
2076 }
2077
2078 /* Here, there was no mapping defined, which means that the code point maps
2079 * to itself. Return the inputs */
bfdf22ec 2080 len = UTF8SKIP(p);
ca9fab46
KW
2081 if (p != ustrp) { /* Don't copy onto itself */
2082 Copy(p, ustrp, len, U8);
2083 }
0134edef 2084
2a37f04d
JH
2085 if (lenp)
2086 *lenp = len;
2087
f4cd282c 2088 return uv1;
cbe07460 2089
a0ed51b3
LW
2090}
2091
051a06d4
KW
2092STATIC UV
2093S_check_locale_boundary_crossing(pTHX_ const U8* const p, const UV result, U8* const ustrp, STRLEN *lenp)
2094{
2095 /* This is called when changing the case of a utf8-encoded character above
31f05a37
KW
2096 * the Latin1 range, and the operation is in a non-UTF-8 locale. If the
2097 * result contains a character that crosses the 255/256 boundary, disallow
2098 * the change, and return the original code point. See L<perlfunc/lc> for
2099 * why;
051a06d4 2100 *
a1433954
KW
2101 * p points to the original string whose case was changed; assumed
2102 * by this routine to be well-formed
051a06d4
KW
2103 * result the code point of the first character in the changed-case string
2104 * ustrp points to the changed-case string (<result> represents its first char)
2105 * lenp points to the length of <ustrp> */
2106
2107 UV original; /* To store the first code point of <p> */
2108
2109 PERL_ARGS_ASSERT_CHECK_LOCALE_BOUNDARY_CROSSING;
2110
a4f12ed7 2111 assert(UTF8_IS_ABOVE_LATIN1(*p));
051a06d4
KW
2112
2113 /* We know immediately if the first character in the string crosses the
2114 * boundary, so can skip */
2115 if (result > 255) {
2116
2117 /* Look at every character in the result; if any cross the
2118 * boundary, the whole thing is disallowed */
2119 U8* s = ustrp + UTF8SKIP(ustrp);
2120 U8* e = ustrp + *lenp;
2121 while (s < e) {
a4f12ed7 2122 if (! UTF8_IS_ABOVE_LATIN1(*s)) {
051a06d4
KW
2123 goto bad_crossing;
2124 }
2125 s += UTF8SKIP(s);
2126 }
2127
2128 /* Here, no characters crossed, result is ok as-is */
2129 return result;
2130 }
2131
2132bad_crossing:
2133
2134 /* Failed, have to return the original */
4b88fb76 2135 original = valid_utf8_to_uvchr(p, lenp);
051a06d4
KW
2136 Copy(p, ustrp, *lenp, char);
2137 return original;
2138}
2139
d3e79532 2140/*
87cea99e 2141=for apidoc to_utf8_upper
d3e79532 2142
1f607577 2143Instead use L</toUPPER_utf8>.
a1433954 2144
d3e79532
JH
2145=cut */
2146
051a06d4 2147/* Not currently externally documented, and subject to change:
31f05a37
KW
2148 * <flags> is set iff iff the rules from the current underlying locale are to
2149 * be used. */
051a06d4 2150
2104c8d9 2151UV
31f05a37 2152Perl__to_utf8_upper_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, bool flags)
a0ed51b3 2153{
97aff369 2154 dVAR;
7918f24d 2155
051a06d4
KW
2156 UV result;
2157
2158 PERL_ARGS_ASSERT__TO_UTF8_UPPER_FLAGS;
7918f24d 2159
31f05a37
KW
2160 if (flags && IN_UTF8_CTYPE_LOCALE) {
2161 flags = FALSE;
2162 }
2163
3a4c58c9 2164 if (UTF8_IS_INVARIANT(*p)) {
051a06d4
KW
2165 if (flags) {
2166 result = toUPPER_LC(*p);
2167 }
2168 else {
81c6c7ce 2169 return _to_upper_title_latin1(*p, ustrp, lenp, 'S');
051a06d4 2170 }
3a4c58c9
KW
2171 }
2172 else if UTF8_IS_DOWNGRADEABLE_START(*p) {
051a06d4 2173 if (flags) {
a6d8b88b 2174 U8 c = TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1));
68067e4e 2175 result = toUPPER_LC(c);
051a06d4
KW
2176 }
2177 else {
94bb8c36 2178 return _to_upper_title_latin1(TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1)),
81c6c7ce 2179 ustrp, lenp, 'S');
051a06d4
KW
2180 }
2181 }
2182 else { /* utf8, ord above 255 */
2183 result = CALL_UPPER_CASE(p, ustrp, lenp);
2184
2185 if (flags) {
2186 result = check_locale_boundary_crossing(p, result, ustrp, lenp);
2187 }
2188 return result;
2189 }
2190
2191 /* Here, used locale rules. Convert back to utf8 */
2192 if (UTF8_IS_INVARIANT(result)) {
2193 *ustrp = (U8) result;
2194 *lenp = 1;
2195 }
2196 else {
62cb07ea
KW
2197 *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
2198 *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
051a06d4 2199 *lenp = 2;
3a4c58c9 2200 }
baa60164 2201
051a06d4 2202 return result;
983ffd37 2203}
a0ed51b3 2204
d3e79532 2205/*
87cea99e 2206=for apidoc to_utf8_title
d3e79532 2207
1f607577 2208Instead use L</toTITLE_utf8>.
a1433954 2209
d3e79532
JH
2210=cut */
2211
051a06d4 2212/* Not currently externally documented, and subject to change:
31f05a37
KW
2213 * <flags> is set iff the rules from the current underlying locale are to be
2214 * used. Since titlecase is not defined in POSIX, for other than a
2215 * UTF-8 locale, uppercase is used instead for code points < 256.
445bf929 2216 */
051a06d4 2217
983ffd37 2218UV
31f05a37 2219Perl__to_utf8_title_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, bool flags)
983ffd37 2220{
97aff369 2221 dVAR;
7918f24d 2222
051a06d4
KW
2223 UV result;
2224
2225 PERL_ARGS_ASSERT__TO_UTF8_TITLE_FLAGS;
7918f24d 2226
31f05a37
KW
2227 if (flags && IN_UTF8_CTYPE_LOCALE) {
2228 flags = FALSE;
2229 }
2230
3a4c58c9 2231 if (UTF8_IS_INVARIANT(*p)) {
051a06d4
KW
2232 if (flags) {
2233 result = toUPPER_LC(*p);
2234 }
2235 else {
81c6c7ce 2236 return _to_upper_title_latin1(*p, ustrp, lenp, 's');
051a06d4 2237 }
3a4c58c9
KW
2238 }
2239 else if UTF8_IS_DOWNGRADEABLE_START(*p) {
051a06d4 2240 if (flags) {
a6d8b88b 2241 U8 c = TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1));
68067e4e 2242 result = toUPPER_LC(c);
051a06d4
KW
2243 }
2244 else {
94bb8c36 2245 return _to_upper_title_latin1(TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1)),
81c6c7ce 2246 ustrp, lenp, 's');
051a06d4
KW
2247 }
2248 }
2249 else { /* utf8, ord above 255 */
2250 result = CALL_TITLE_CASE(p, ustrp, lenp);
2251
2252 if (flags) {
2253 result = check_locale_boundary_crossing(p, result, ustrp, lenp);
2254 }
2255 return result;
2256 }
2257
2258 /* Here, used locale rules. Convert back to utf8 */
2259 if (UTF8_IS_INVARIANT(result)) {
2260 *ustrp = (U8) result;
2261 *lenp = 1;
2262 }
2263 else {
62cb07ea
KW
2264 *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
2265 *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
051a06d4 2266 *lenp = 2;
3a4c58c9
KW
2267 }
2268
051a06d4 2269 return result;
a0ed51b3
LW
2270}
2271
d3e79532 2272/*
87cea99e 2273=for apidoc to_utf8_lower
d3e79532 2274
1f607577 2275Instead use L</toLOWER_utf8>.
a1433954 2276
d3e79532
JH
2277=cut */
2278
051a06d4 2279/* Not currently externally documented, and subject to change:
31f05a37
KW
2280 * <flags> is set iff iff the rules from the current underlying locale are to
2281 * be used.
2282 */
051a06d4 2283
2104c8d9 2284UV
31f05a37 2285Perl__to_utf8_lower_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, bool flags)
a0ed51b3 2286{
051a06d4
KW
2287 UV result;
2288
97aff369 2289 dVAR;
7918f24d 2290
051a06d4 2291 PERL_ARGS_ASSERT__TO_UTF8_LOWER_FLAGS;
7918f24d 2292
31f05a37
KW
2293 if (flags && IN_UTF8_CTYPE_LOCALE) {
2294 flags = FALSE;
2295 }
2296
968c5e6a 2297 if (UTF8_IS_INVARIANT(*p)) {
051a06d4
KW
2298 if (flags) {
2299 result = toLOWER_LC(*p);
2300 }
2301 else {
81c6c7ce 2302 return to_lower_latin1(*p, ustrp, lenp);
051a06d4 2303 }
968c5e6a
KW
2304 }
2305 else if UTF8_IS_DOWNGRADEABLE_START(*p) {
051a06d4 2306 if (flags) {
a6d8b88b 2307 U8 c = TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1));
68067e4e 2308 result = toLOWER_LC(c);
051a06d4
KW
2309 }
2310 else {
94bb8c36 2311 return to_lower_latin1(TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1)),
81c6c7ce 2312 ustrp, lenp);
051a06d4 2313 }
968c5e6a 2314 }
051a06d4
KW
2315 else { /* utf8, ord above 255 */
2316 result = CALL_LOWER_CASE(p, ustrp, lenp);
2317
2318 if (flags) {
2319 result = check_locale_boundary_crossing(p, result, ustrp, lenp);
2320 }
968c5e6a 2321
051a06d4
KW
2322 return result;
2323 }
2324
2325 /* Here, used locale rules. Convert back to utf8 */
2326 if (UTF8_IS_INVARIANT(result)) {
2327 *ustrp = (U8) result;
2328 *lenp = 1;
2329 }
2330 else {
62cb07ea
KW
2331 *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
2332 *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
051a06d4
KW
2333 *lenp = 2;
2334 }
2335
051a06d4 2336 return result;
b4e400f9
JH
2337}
2338
d3e79532 2339/*
87cea99e 2340=for apidoc to_utf8_fold
d3e79532 2341
1f607577 2342Instead use L</toFOLD_utf8>.
a1433954 2343
d3e79532
JH
2344=cut */
2345
051a06d4
KW
2346/* Not currently externally documented, and subject to change,
2347 * in <flags>
31f05a37
KW
2348 * bit FOLD_FLAGS_LOCALE is set iff the rules from the current underlying
2349 * locale are to be used.
051a06d4
KW
2350 * bit FOLD_FLAGS_FULL is set iff full case folds are to be used;
2351 * otherwise simple folds
a0270393
KW
2352 * bit FOLD_FLAGS_NOMIX_ASCII is set iff folds of non-ASCII to ASCII are
2353 * prohibited
445bf929 2354 */
36bb2ab6 2355
b4e400f9 2356UV
445bf929 2357Perl__to_utf8_fold_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, U8 flags)
b4e400f9 2358{
97aff369 2359 dVAR;
7918f24d 2360
051a06d4
KW
2361 UV result;
2362
36bb2ab6 2363 PERL_ARGS_ASSERT__TO_UTF8_FOLD_FLAGS;
7918f24d 2364
a0270393
KW
2365 /* These are mutually exclusive */
2366 assert (! ((flags & FOLD_FLAGS_LOCALE) && (flags & FOLD_FLAGS_NOMIX_ASCII)));
2367
50ba90ff
KW
2368 assert(p != ustrp); /* Otherwise overwrites */
2369
31f05a37
KW
2370 if (flags & FOLD_FLAGS_LOCALE && IN_UTF8_CTYPE_LOCALE) {
2371 flags &= ~FOLD_FLAGS_LOCALE;
2372 }
2373
a1dde8de 2374 if (UTF8_IS_INVARIANT(*p)) {
051a06d4 2375 if (flags & FOLD_FLAGS_LOCALE) {
d22b930b 2376 result = toFOLD_LC(*p);
051a06d4
KW
2377 }
2378 else {
81c6c7ce 2379 return _to_fold_latin1(*p, ustrp, lenp,
1ca267a5 2380 flags & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII));
051a06d4 2381 }
a1dde8de
KW
2382 }
2383 else if UTF8_IS_DOWNGRADEABLE_START(*p) {
051a06d4 2384 if (flags & FOLD_FLAGS_LOCALE) {
a6d8b88b 2385 U8 c = TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1));
68067e4e 2386 result = toFOLD_LC(c);
051a06d4
KW
2387 }
2388 else {
94bb8c36 2389 return _to_fold_latin1(TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1)),
51910141 2390 ustrp, lenp,
1ca267a5 2391 flags & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII));
051a06d4 2392 }
a1dde8de 2393 }
051a06d4 2394 else { /* utf8, ord above 255 */
a0270393 2395 result = CALL_FOLD_CASE(p, ustrp, lenp, flags & FOLD_FLAGS_FULL);
a1dde8de 2396
1ca267a5
KW
2397 if (flags & FOLD_FLAGS_LOCALE) {
2398
538e84ed
KW
2399 /* Special case these two characters, as what normally gets
2400 * returned under locale doesn't work */
1ca267a5
KW
2401 if (UTF8SKIP(p) == sizeof(LATIN_CAPITAL_LETTER_SHARP_S_UTF8) - 1
2402 && memEQ((char *) p, LATIN_CAPITAL_LETTER_SHARP_S_UTF8,
2403 sizeof(LATIN_CAPITAL_LETTER_SHARP_S_UTF8) - 1))
2404 {
2405 goto return_long_s;
2406 }
9fc2026f
KW
2407 else if (UTF8SKIP(p) == sizeof(LATIN_SMALL_LIGATURE_LONG_S_T) - 1
2408 && memEQ((char *) p, LATIN_SMALL_LIGATURE_LONG_S_T_UTF8,
2409 sizeof(LATIN_SMALL_LIGATURE_LONG_S_T_UTF8) - 1))
2410 {
2411 goto return_ligature_st;
2412 }
a0270393 2413 return check_locale_boundary_crossing(p, result, ustrp, lenp);
051a06d4 2414 }
a0270393
KW
2415 else if (! (flags & FOLD_FLAGS_NOMIX_ASCII)) {
2416 return result;
2417 }
2418 else {
2419 /* This is called when changing the case of a utf8-encoded
9fc2026f
KW
2420 * character above the ASCII range, and the result should not
2421 * contain an ASCII character. */
a0270393
KW
2422
2423 UV original; /* To store the first code point of <p> */
2424
2425 /* Look at every character in the result; if any cross the
2426 * boundary, the whole thing is disallowed */
2427 U8* s = ustrp;
2428 U8* e = ustrp + *lenp;
2429 while (s < e) {
2430 if (isASCII(*s)) {
2431 /* Crossed, have to return the original */
2432 original = valid_utf8_to_uvchr(p, lenp);
1ca267a5 2433
9fc2026f 2434 /* But in these instances, there is an alternative we can
1ca267a5 2435 * return that is valid */
9fc2026f
KW
2436 if (original == LATIN_CAPITAL_LETTER_SHARP_S
2437 || original == LATIN_SMALL_LETTER_SHARP_S)
2438 {
1ca267a5
KW
2439 goto return_long_s;
2440 }
9fc2026f
KW
2441 else if (original == LATIN_SMALL_LIGATURE_LONG_S_T) {
2442 goto return_ligature_st;
2443 }
a0270393
KW
2444 Copy(p, ustrp, *lenp, char);
2445 return original;
2446 }
2447 s += UTF8SKIP(s);
2448 }
051a06d4 2449
a0270393
KW
2450 /* Here, no characters crossed, result is ok as-is */
2451 return result;
2452 }
051a06d4
KW
2453 }
2454
2455 /* Here, used locale rules. Convert back to utf8 */
2456 if (UTF8_IS_INVARIANT(result)) {
2457 *ustrp = (U8) result;
2458 *lenp = 1;
2459 }
2460 else {
62cb07ea
KW
2461 *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
2462 *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
051a06d4
KW
2463 *lenp = 2;
2464 }
2465
051a06d4 2466 return result;
1ca267a5
KW
2467
2468 return_long_s:
2469 /* Certain folds to 'ss' are prohibited by the options, but they do allow
2470 * folds to a string of two of these characters. By returning this
2471 * instead, then, e.g.,
2472 * fc("\x{1E9E}") eq fc("\x{17F}\x{17F}")
2473 * works. */
2474
2475 *lenp = 2 * sizeof(LATIN_SMALL_LETTER_LONG_S_UTF8) - 2;
2476 Copy(LATIN_SMALL_LETTER_LONG_S_UTF8 LATIN_SMALL_LETTER_LONG_S_UTF8,
2477 ustrp, *lenp, U8);
2478 return LATIN_SMALL_LETTER_LONG_S;
9fc2026f
KW
2479
2480 return_ligature_st:
2481 /* Two folds to 'st' are prohibited by the options; instead we pick one and
2482 * have the other one fold to it */
2483
2484 *lenp = sizeof(LATIN_SMALL_LIGATURE_ST_UTF8) - 1;
2485 Copy(LATIN_SMALL_LIGATURE_ST_UTF8, ustrp, *lenp, U8);
2486 return LATIN_SMALL_LIGATURE_ST;
a0ed51b3
LW
2487}
2488
711a919c 2489/* Note:
f90a9a02 2490 * Returns a "swash" which is a hash described in utf8.c:Perl_swash_fetch().
711a919c
TS
2491 * C<pkg> is a pointer to a package name for SWASHNEW, should be "utf8".
2492 * For other parameters, see utf8::SWASHNEW in lib/utf8_heavy.pl.
2493 */
c4a5db0c 2494
a0ed51b3 2495SV*
7fc63493 2496Perl_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none)
a0ed51b3 2497{
c4a5db0c
KW
2498 PERL_ARGS_ASSERT_SWASH_INIT;
2499
2500 /* Returns a copy of a swash initiated by the called function. This is the
2501 * public interface, and returning a copy prevents others from doing
2502 * mischief on the original */
2503
5d3d13d1 2504 return newSVsv(_core_swash_init(pkg, name, listsv, minbits, none, NULL, NULL));
c4a5db0c
KW
2505}
2506
2507SV*
5d3d13d1 2508Perl__core_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none, SV* invlist, U8* const flags_p)
c4a5db0c
KW
2509{
2510 /* Initialize and return a swash, creating it if necessary. It does this
87367d5f
KW
2511 * by calling utf8_heavy.pl in the general case. The returned value may be
2512 * the swash's inversion list instead if the input parameters allow it.
2513 * Which is returned should be immaterial to callers, as the only
923b6d4e
KW
2514 * operations permitted on a swash, swash_fetch(), _get_swash_invlist(),
2515 * and swash_to_invlist() handle both these transparently.
c4a5db0c
KW
2516 *
2517 * This interface should only be used by functions that won't destroy or
2518 * adversely change the swash, as doing so affects all other uses of the
2519 * swash in the program; the general public should use 'Perl_swash_init'
2520 * instead.
2521 *
2522 * pkg is the name of the package that <name> should be in.
2523 * name is the name of the swash to find. Typically it is a Unicode
2524 * property name, including user-defined ones
2525 * listsv is a string to initialize the swash with. It must be of the form
2526 * documented as the subroutine return value in
2527 * L<perlunicode/User-Defined Character Properties>
2528 * minbits is the number of bits required to represent each data element.
2529 * It is '1' for binary properties.
2530 * none I (khw) do not understand this one, but it is used only in tr///.
9a53f6cf 2531 * invlist is an inversion list to initialize the swash with (or NULL)
83199d38
KW
2532 * flags_p if non-NULL is the address of various input and output flag bits
2533 * to the routine, as follows: ('I' means is input to the routine;
2534 * 'O' means output from the routine. Only flags marked O are
2535 * meaningful on return.)
2536 * _CORE_SWASH_INIT_USER_DEFINED_PROPERTY indicates if the swash
2537 * came from a user-defined property. (I O)
5d3d13d1
KW
2538 * _CORE_SWASH_INIT_RETURN_IF_UNDEF indicates that instead of croaking
2539 * when the swash cannot be located, to simply return NULL. (I)
87367d5f
KW
2540 * _CORE_SWASH_INIT_ACCEPT_INVLIST indicates that the caller will accept a
2541 * return of an inversion list instead of a swash hash if this routine
2542 * thinks that would result in faster execution of swash_fetch() later
2543 * on. (I)
9a53f6cf
KW
2544 *
2545 * Thus there are three possible inputs to find the swash: <name>,
2546 * <listsv>, and <invlist>. At least one must be specified. The result
2547 * will be the union of the specified ones, although <listsv>'s various
aabbdbda
KW
2548 * actions can intersect, etc. what <name> gives. To avoid going out to
2549 * disk at all, <invlist> should specify completely what the swash should
2550 * have, and <listsv> should be &PL_sv_undef and <name> should be "".
9a53f6cf
KW
2551 *
2552 * <invlist> is only valid for binary properties */
c4a5db0c 2553
27da23d5 2554 dVAR;
c4a5db0c 2555 SV* retval = &PL_sv_undef;
83199d38 2556 HV* swash_hv = NULL;
87367d5f
KW
2557 const int invlist_swash_boundary =
2558 (flags_p && *flags_p & _CORE_SWASH_INIT_ACCEPT_INVLIST)
2559 ? 512 /* Based on some benchmarking, but not extensive, see commit
2560 message */
2561 : -1; /* Never return just an inversion list */
9a53f6cf
KW
2562
2563 assert(listsv != &PL_sv_undef || strNE(name, "") || invlist);
2564 assert(! invlist || minbits == 1);
2565
2566 /* If data was passed in to go out to utf8_heavy to find the swash of, do
2567 * so */
2568 if (listsv != &PL_sv_undef || strNE(name, "")) {
69794297
KW
2569 dSP;
2570 const size_t pkg_len = strlen(pkg);
2571 const size_t name_len = strlen(name);
2572 HV * const stash = gv_stashpvn(pkg, pkg_len, 0);
2573 SV* errsv_save;
2574 GV *method;
2575
2576 PERL_ARGS_ASSERT__CORE_SWASH_INIT;
2577
2578 PUSHSTACKi(PERLSI_MAGIC);
ce3b816e 2579 ENTER;
69794297
KW
2580 SAVEHINTS();
2581 save_re_context();
650f067c
JL
2582 /* We might get here via a subroutine signature which uses a utf8
2583 * parameter name, at which point PL_subname will have been set
2584 * but not yet used. */
2585 save_item(PL_subname);
69794297
KW
2586 if (PL_parser && PL_parser->error_count)
2587 SAVEI8(PL_parser->error_count), PL_parser->error_count = 0;
2588 method = gv_fetchmeth(stash, "SWASHNEW", 8, -1);
2589 if (!method) { /* demand load utf8 */
2590 ENTER;
db2c6cb3
FC
2591 if ((errsv_save = GvSV(PL_errgv))) SAVEFREESV(errsv_save);
2592 GvSV(PL_errgv) = NULL;
69794297
KW
2593 /* It is assumed that callers of this routine are not passing in
2594 * any user derived data. */
2595 /* Need to do this after save_re_context() as it will set
2596 * PL_tainted to 1 while saving $1 etc (see the code after getrx:
2597 * in Perl_magic_get). Even line to create errsv_save can turn on
2598 * PL_tainted. */
284167a5
S
2599#ifndef NO_TAINT_SUPPORT
2600 SAVEBOOL(TAINT_get);
2601 TAINT_NOT;
2602#endif
69794297
KW
2603 Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, newSVpvn(pkg,pkg_len),
2604 NULL);
eed484f9 2605 {
db2c6cb3
FC
2606 /* Not ERRSV, as there is no need to vivify a scalar we are
2607 about to discard. */
2608 SV * const errsv = GvSV(PL_errgv);
2609 if (!SvTRUE(errsv)) {
2610 GvSV(PL_errgv) = SvREFCNT_inc_simple(errsv_save);
2611 SvREFCNT_dec(errsv);
2612 }
eed484f9 2613 }
69794297
KW
2614 LEAVE;
2615 }
2616 SPAGAIN;
2617 PUSHMARK(SP);
2618 EXTEND(SP,5);
2619 mPUSHp(pkg, pkg_len);
2620 mPUSHp(name, name_len);
2621 PUSHs(listsv);
2622 mPUSHi(minbits);
2623 mPUSHi(none);
2624 PUTBACK;
db2c6cb3
FC
2625 if ((errsv_save = GvSV(PL_errgv))) SAVEFREESV(errsv_save);
2626 GvSV(PL_errgv) = NULL;
69794297
KW
2627 /* If we already have a pointer to the method, no need to use
2628 * call_method() to repeat the lookup. */
c41800a8
KW
2629 if (method
2630 ? call_sv(MUTABLE_SV(method), G_SCALAR)
69794297
KW
2631 : call_sv(newSVpvs_flags("SWASHNEW", SVs_TEMP), G_SCALAR | G_METHOD))
2632 {
2633 retval = *PL_stack_sp--;
2634 SvREFCNT_inc(retval);
2635 }
eed484f9 2636 {
db2c6cb3
FC
2637 /* Not ERRSV. See above. */
2638 SV * const errsv = GvSV(PL_errgv);
2639 if (!SvTRUE(errsv)) {
2640 GvSV(PL_errgv) = SvREFCNT_inc_simple(errsv_save);
2641 SvREFCNT_dec(errsv);
2642 }
eed484f9 2643 }
ce3b816e 2644 LEAVE;
69794297
KW
2645 POPSTACK;
2646 if (IN_PERL_COMPILETIME) {
2647 CopHINTS_set(PL_curcop, PL_hints);
2648 }
2649 if (!SvROK(retval) || SvTYPE(SvRV(retval)) != SVt_PVHV) {
2650 if (SvPOK(retval))
2651
2652 /* If caller wants to handle missing properties, let them */
5d3d13d1 2653 if (flags_p && *flags_p & _CORE_SWASH_INIT_RETURN_IF_UNDEF) {
69794297
KW
2654 return NULL;
2655 }
2656 Perl_croak(aTHX_
2657 "Can't find Unicode property definition \"%"SVf"\"",
2658 SVfARG(retval));
2659 Perl_croak(aTHX_ "SWASHNEW didn't return an HV ref");
2660 }
9a53f6cf 2661 } /* End of calling the module to find the swash */
36eb48b4 2662
83199d38
KW
2663 /* If this operation fetched a swash, and we will need it later, get it */
2664 if (retval != &PL_sv_undef
2665 && (minbits == 1 || (flags_p
2666 && ! (*flags_p
2667 & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY))))
2668 {
2669 swash_hv = MUTABLE_HV(SvRV(retval));
2670
2671 /* If we don't already know that there is a user-defined component to
2672 * this swash, and the user has indicated they wish to know if there is
2673 * one (by passing <flags_p>), find out */
2674 if (flags_p && ! (*flags_p & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY)) {
2675 SV** user_defined = hv_fetchs(swash_hv, "USER_DEFINED", FALSE);
2676 if (user_defined && SvUV(*user_defined)) {
2677 *flags_p |= _CORE_SWASH_INIT_USER_DEFINED_PROPERTY;
2678 }
2679 }
2680 }
2681
36eb48b4
KW
2682 /* Make sure there is an inversion list for binary properties */
2683 if (minbits == 1) {
2684 SV** swash_invlistsvp = NULL;
2685 SV* swash_invlist = NULL;
9a53f6cf 2686 bool invlist_in_swash_is_valid = FALSE;
02c85471
FC
2687 bool swash_invlist_unclaimed = FALSE; /* whether swash_invlist has
2688 an unclaimed reference count */
36eb48b4 2689
9a53f6cf 2690 /* If this operation fetched a swash, get its already existing
83199d38 2691 * inversion list, or create one for it */
36eb48b4 2692
83199d38 2693 if (swash_hv) {
5c9f4bd2 2694 swash_invlistsvp = hv_fetchs(swash_hv, "V", FALSE);
9a53f6cf
KW
2695 if (swash_invlistsvp) {
2696 swash_invlist = *swash_invlistsvp;
2697 invlist_in_swash_is_valid = TRUE;
2698 }
2699 else {
36eb48b4 2700 swash_invlist = _swash_to_invlist(retval);
02c85471 2701 swash_invlist_unclaimed = TRUE;
9a53f6cf
KW
2702 }
2703 }
2704
2705 /* If an inversion list was passed in, have to include it */
2706 if (invlist) {
2707
2708 /* Any fetched swash will by now have an inversion list in it;
2709 * otherwise <swash_invlist> will be NULL, indicating that we
2710 * didn't fetch a swash */
2711 if (swash_invlist) {
2712
2713 /* Add the passed-in inversion list, which invalidates the one
2714 * already stored in the swash */
2715 invlist_in_swash_is_valid = FALSE;
2716 _invlist_union(invlist, swash_invlist, &swash_invlist);
2717 }
2718 else {
2719
87367d5f
KW
2720 /* Here, there is no swash already. Set up a minimal one, if
2721 * we are going to return a swash */
2722 if ((int) _invlist_len(invlist) > invlist_swash_boundary) {
971d486f 2723 swash_hv = newHV();
4aca0fe6 2724 retval = newRV_noinc(MUTABLE_SV(swash_hv));
87367d5f 2725 }
9a53f6cf
KW
2726 swash_invlist = invlist;
2727 }
9a53f6cf
KW
2728 }
2729
2730 /* Here, we have computed the union of all the passed-in data. It may
2731 * be that there was an inversion list in the swash which didn't get
538e84ed 2732 * touched; otherwise save the computed one */
87367d5f
KW
2733 if (! invlist_in_swash_is_valid
2734 && (int) _invlist_len(swash_invlist) > invlist_swash_boundary)
2735 {
5c9f4bd2 2736 if (! hv_stores(MUTABLE_HV(SvRV(retval)), "V", swash_invlist))
69794297
KW
2737 {
2738 Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
2739 }
cc34d8c5
FC
2740 /* We just stole a reference count. */
2741 if (swash_invlist_unclaimed) swash_invlist_unclaimed = FALSE;
2742 else SvREFCNT_inc_simple_void_NN(swash_invlist);
9a53f6cf 2743 }
87367d5f 2744
dbfdbd26
KW
2745 SvREADONLY_on(swash_invlist);
2746
c41800a8 2747 /* Use the inversion list stand-alone if small enough */
87367d5f
KW
2748 if ((int) _invlist_len(swash_invlist) <= invlist_swash_boundary) {
2749 SvREFCNT_dec(retval);
02c85471
FC
2750 if (!swash_invlist_unclaimed)
2751 SvREFCNT_inc_simple_void_NN(swash_invlist);
2752 retval = newRV_noinc(swash_invlist);
87367d5f 2753 }
36eb48b4
KW
2754 }
2755
a0ed51b3
LW
2756 return retval;
2757}
2758
035d37be
JH
2759
2760/* This API is wrong for special case conversions since we may need to
2761 * return several Unicode characters for a single Unicode character
2762 * (see lib/unicore/SpecCase.txt) The SWASHGET in lib/utf8_heavy.pl is
2763 * the lower-level routine, and it is similarly broken for returning
38684baa
KW
2764 * multiple values. --jhi
2765 * For those, you should use to_utf8_case() instead */
b0e3252e 2766/* Now SWASHGET is recasted into S_swatch_get in this file. */
680c470c
TS
2767
2768/* Note:
2769 * Returns the value of property/mapping C<swash> for the first character
2770 * of the string C<ptr>. If C<do_utf8> is true, the string C<ptr> is
3d0f8846
KW
2771 * assumed to be in well-formed utf8. If C<do_utf8> is false, the string C<ptr>
2772 * is assumed to be in native 8-bit encoding. Caches the swatch in C<swash>.
af2af982
KW
2773 *
2774 * A "swash" is a hash which contains initially the keys/values set up by
2775 * SWASHNEW. The purpose is to be able to completely represent a Unicode
2776 * property for all possible code points. Things are stored in a compact form
2777 * (see utf8_heavy.pl) so that calculation is required to find the actual
2778 * property value for a given code point. As code points are looked up, new
2779 * key/value pairs are added to the hash, so that the calculation doesn't have
2780 * to ever be re-done. Further, each calculation is done, not just for the
2781 * desired one, but for a whole block of code points adjacent to that one.
2782 * For binary properties on ASCII machines, the block is usually for 64 code
2783 * points, starting with a code point evenly divisible by 64. Thus if the
2784 * property value for code point 257 is requested, the code goes out and
2785 * calculates the property values for all 64 code points between 256 and 319,
2786 * and stores these as a single 64-bit long bit vector, called a "swatch",
2787 * under the key for code point 256. The key is the UTF-8 encoding for code
2788 * point 256, minus the final byte. Thus, if the length of the UTF-8 encoding
2789 * for a code point is 13 bytes, the key will be 12 bytes long. If the value
2790 * for code point 258 is then requested, this code realizes that it would be
2791 * stored under the key for 256, and would find that value and extract the
2792 * relevant bit, offset from 256.
2793 *
2794 * Non-binary properties are stored in as many bits as necessary to represent
2795 * their values (32 currently, though the code is more general than that), not
2796 * as single bits, but the principal is the same: the value for each key is a
2797 * vector that encompasses the property values for all code points whose UTF-8
2798 * representations are represented by the key. That is, for all code points
2799 * whose UTF-8 representations are length N bytes, and the key is the first N-1
2800 * bytes of that.
680c470c 2801 */
a0ed51b3 2802UV
680c470c 2803Perl_swash_fetch(pTHX_ SV *swash, const U8 *ptr, bool do_utf8)
a0ed51b3 2804{
27da23d5 2805 dVAR;
ef8f7699 2806 HV *const hv = MUTABLE_HV(SvRV(swash));
3568d838
JH
2807 U32 klen;
2808 U32 off;
a0ed51b3 2809 STRLEN slen;
7d85a32c 2810 STRLEN needents;
cfd0369c 2811 const U8 *tmps = NULL;
a0ed51b3 2812 U32 bit;
979f2922 2813 SV *swatch;
08fb1ac5 2814 const U8 c = *ptr;
3568d838 2815
7918f24d
NC
2816 PERL_ARGS_ASSERT_SWASH_FETCH;
2817
87367d5f
KW
2818 /* If it really isn't a hash, it isn't really swash; must be an inversion
2819 * list */
2820 if (SvTYPE(hv) != SVt_PVHV) {
2821 return _invlist_contains_cp((SV*)hv,
2822 (do_utf8)
2823 ? valid_utf8_to_uvchr(ptr, NULL)
2824 : c);
2825 }
2826
08fb1ac5
KW
2827 /* We store the values in a "swatch" which is a vec() value in a swash
2828 * hash. Code points 0-255 are a single vec() stored with key length
2829 * (klen) 0. All other code points have a UTF-8 representation
2830 * 0xAA..0xYY,0xZZ. A vec() is constructed containing all of them which
2831 * share 0xAA..0xYY, which is the key in the hash to that vec. So the key
2832 * length for them is the length of the encoded char - 1. ptr[klen] is the
2833 * final byte in the sequence representing the character */
2834 if (!do_utf8 || UTF8_IS_INVARIANT(c)) {
2835 klen = 0;
2836 needents = 256;
2837 off = c;
3568d838 2838 }
08fb1ac5
KW
2839 else if (UTF8_IS_DOWNGRADEABLE_START(c)) {
2840 klen = 0;
2841 needents = 256;
2842 off = TWO_BYTE_UTF8_TO_NATIVE(c, *(ptr + 1));
979f2922
TS
2843 }
2844 else {
08fb1ac5
KW
2845 klen = UTF8SKIP(ptr) - 1;
2846
2847 /* Each vec() stores 2**UTF_ACCUMULATION_SHIFT values. The offset into
2848 * the vec is the final byte in the sequence. (In EBCDIC this is
2849 * converted to I8 to get consecutive values.) To help you visualize
2850 * all this:
2851 * Straight 1047 After final byte
2852 * UTF-8 UTF-EBCDIC I8 transform
2853 * U+0400: \xD0\x80 \xB8\x41\x41 \xB8\x41\xA0
2854 * U+0401: \xD0\x81 \xB8\x41\x42 \xB8\x41\xA1
2855 * ...
2856 * U+0409: \xD0\x89 \xB8\x41\x4A \xB8\x41\xA9
2857 * U+040A: \xD0\x8A \xB8\x41\x51 \xB8\x41\xAA
2858 * ...
2859 * U+0412: \xD0\x92 \xB8\x41\x59 \xB8\x41\xB2
2860 * U+0413: \xD0\x93 \xB8\x41\x62 \xB8\x41\xB3
2861 * ...
2862 * U+041B: \xD0\x9B \xB8\x41\x6A \xB8\x41\xBB
2863 * U+041C: \xD0\x9C \xB8\x41\x70 \xB8\x41\xBC
2864 * ...
2865 * U+041F: \xD0\x9F \xB8\x41\x73 \xB8\x41\xBF
2866 * U+0420: \xD0\xA0 \xB8\x42\x41 \xB8\x42\x41
2867 *
2868 * (There are no discontinuities in the elided (...) entries.)
2869 * The UTF-8 key for these 33 code points is '\xD0' (which also is the
2870 * key for the next 31, up through U+043F, whose UTF-8 final byte is
2871 * \xBF). Thus in UTF-8, each key is for a vec() for 64 code points.
2872 * The final UTF-8 byte, which ranges between \x80 and \xBF, is an
2873 * index into the vec() swatch (after subtracting 0x80, which we
2874 * actually do with an '&').
2875 * In UTF-EBCDIC, each key is for a 32 code point vec(). The first 32
2876 * code points above have key '\xB8\x41'. The final UTF-EBCDIC byte has
2877 * dicontinuities which go away by transforming it into I8, and we
2878 * effectively subtract 0xA0 to get the index. */
979f2922 2879 needents = (1 << UTF_ACCUMULATION_SHIFT);
bc3632a8 2880 off = NATIVE_UTF8_TO_I8(ptr[klen]) & UTF_CONTINUATION_MASK;
979f2922 2881 }
7d85a32c 2882
a0ed51b3
LW
2883 /*
2884 * This single-entry cache saves about 1/3 of the utf8 overhead in test
2885 * suite. (That is, only 7-8% overall over just a hash cache. Still,
2886 * it's nothing to sniff at.) Pity we usually come through at least
2887 * two function calls to get here...
2888 *
2889 * NB: this code assumes that swatches are never modified, once generated!
2890 */
2891
3568d838 2892 if (hv == PL_last_swash_hv &&
a0ed51b3 2893 klen == PL_last_swash_klen &&
27da23d5 2894 (!klen || memEQ((char *)ptr, (char *)PL_last_swash_key, klen)) )
a0ed51b3
LW
2895 {
2896 tmps = PL_last_swash_tmps;
2897 slen = PL_last_swash_slen;
2898 }
2899 else {
2900 /* Try our second-level swatch cache, kept in a hash. */
e1ec3a88 2901 SV** svp = hv_fetch(hv, (const char*)ptr, klen, FALSE);
a0ed51b3 2902
b0e3252e 2903 /* If not cached, generate it via swatch_get */
979f2922 2904 if (!svp || !SvPOK(*svp)
08fb1ac5
KW
2905 || !(tmps = (const U8*)SvPV_const(*svp, slen)))
2906 {
2907 if (klen) {
2908 const UV code_point = valid_utf8_to_uvchr(ptr, NULL);
2909 swatch = swatch_get(swash,
2910 code_point & ~((UV)needents - 1),
2911 needents);
2912 }
2913 else { /* For the first 256 code points, the swatch has a key of
2914 length 0 */
2915 swatch = swatch_get(swash, 0, needents);
2916 }
979f2922 2917
923e4eb5 2918 if (IN_PERL_COMPILETIME)
623e6609 2919 CopHINTS_set(PL_curcop, PL_hints);
a0ed51b3 2920
979f2922 2921 svp = hv_store(hv, (const char *)ptr, klen, swatch, 0);
a0ed51b3 2922
979f2922
TS
2923 if (!svp || !(tmps = (U8*)SvPV(*svp, slen))
2924 || (slen << 3) < needents)
5637ef5b
NC
2925 Perl_croak(aTHX_ "panic: swash_fetch got improper swatch, "
2926 "svp=%p, tmps=%p, slen=%"UVuf", needents=%"UVuf,
2927 svp, tmps, (UV)slen, (UV)needents);
a0ed51b3
LW
2928 }
2929
2930 PL_last_swash_hv = hv;
16d8f38a 2931 assert(klen <= sizeof(PL_last_swash_key));
eac04b2e 2932 PL_last_swash_klen = (U8)klen;
cfd0369c
NC
2933 /* FIXME change interpvar.h? */
2934 PL_last_swash_tmps = (U8 *) tmps;
a0ed51b3
LW
2935 PL_last_swash_slen = slen;
2936 if (klen)
2937 Copy(ptr, PL_last_swash_key, klen, U8);
2938 }
2939
9faf8d75 2940 switch ((int)((slen << 3) / needents)) {
a0ed51b3
LW
2941 case 1:
2942 bit = 1 << (off & 7);
2943 off >>= 3;
2944 return (tmps[off] & bit) != 0;
2945 case 8:
2946 return tmps[off];
2947 case 16:
2948 off <<= 1;
2949 return (tmps[off] << 8) + tmps[off + 1] ;
2950 case 32:
2951 off <<= 2;
2952 return (tmps[off] << 24) + (tmps[off+1] << 16) + (tmps[off+2] << 8) + tmps[off + 3] ;
2953 }
5637ef5b
NC
2954 Perl_croak(aTHX_ "panic: swash_fetch got swatch of unexpected bit width, "
2955 "slen=%"UVuf", needents=%"UVuf, (UV)slen, (UV)needents);
670f1322 2956 NORETURN_FUNCTION_END;
a0ed51b3 2957}
2b9d42f0 2958
319009ee
KW
2959/* Read a single line of the main body of the swash input text. These are of
2960 * the form:
2961 * 0053 0056 0073
2962 * where each number is hex. The first two numbers form the minimum and
2963 * maximum of a range, and the third is the value associated with the range.
2964 * Not all swashes should have a third number
2965 *
2966 * On input: l points to the beginning of the line to be examined; it points
2967 * to somewhere in the string of the whole input text, and is
2968 * terminated by a \n or the null string terminator.
2969 * lend points to the null terminator of that string
2970 * wants_value is non-zero if the swash expects a third number
2971 * typestr is the name of the swash's mapping, like 'ToLower'
2972 * On output: *min, *max, and *val are set to the values read from the line.
2973 * returns a pointer just beyond the line examined. If there was no
2974 * valid min number on the line, returns lend+1
2975 */
2976
2977STATIC U8*
2978S_swash_scan_list_line(pTHX_ U8* l, U8* const lend, UV* min, UV* max, UV* val,
2979 const bool wants_value, const U8* const typestr)
2980{
2981 const int typeto = typestr[0] == 'T' && typestr[1] == 'o';
2982 STRLEN numlen; /* Length of the number */
02470786
KW
2983 I32 flags = PERL_SCAN_SILENT_ILLDIGIT
2984 | PERL_SCAN_DISALLOW_PREFIX
2985 | PERL_SCAN_SILENT_NON_PORTABLE;
319009ee
KW
2986
2987 /* nl points to the next \n in the scan */
2988 U8* const nl = (U8*)memchr(l, '\n', lend - l);
2989
2990 /* Get the first number on the line: the range minimum */
2991 numlen = lend - l;
2992 *min = grok_hex((char *)l, &numlen, &flags, NULL);
2993 if (numlen) /* If found a hex number, position past it */
2994 l += numlen;
2995 else if (nl) { /* Else, go handle next line, if any */
2996 return nl + 1; /* 1 is length of "\n" */
2997 }
2998 else { /* Else, no next line */
2999 return lend + 1; /* to LIST's end at which \n is not found */
3000 }
3001
3002 /* The max range value follows, separated by a BLANK */
3003 if (isBLANK(*l)) {
3004 ++l;
02470786
KW
3005 flags = PERL_SCAN_SILENT_ILLDIGIT
3006 | PERL_SCAN_DISALLOW_PREFIX
3007 | PERL_SCAN_SILENT_NON_PORTABLE;
319009ee
KW
3008 numlen = lend - l;
3009 *max = grok_hex((char *)l, &numlen, &flags, NULL);
3010 if (numlen)
3011 l += numlen;
3012 else /* If no value here, it is a single element range */
3013 *max = *min;
3014
3015 /* Non-binary tables have a third entry: what the first element of the
24303724 3016 * range maps to. The map for those currently read here is in hex */
319009ee
KW
3017 if (wants_value) {
3018 if (isBLANK(*l)) {
3019 ++l;
f2a7d0fc
KW
3020 flags = PERL_SCAN_SILENT_ILLDIGIT
3021 | PERL_SCAN_DISALLOW_PREFIX
3022 | PERL_SCAN_SILENT_NON_PORTABLE;
3023 numlen = lend - l;
3024 *val = grok_hex((char *)l, &numlen, &flags, NULL);
3025 if (numlen)
3026 l += numlen;
3027 else
3028 *val = 0;
319009ee
KW
3029 }
3030 else {
3031 *val = 0;
3032 if (typeto) {
dcbac5bb 3033 /* diag_listed_as: To%s: illegal mapping '%s' */
319009ee
KW
3034 Perl_croak(aTHX_ "%s: illegal mapping '%s'",
3035 typestr, l);
3036 }
3037 }
3038 }
3039 else
3040 *val = 0; /* bits == 1, then any val should be ignored */
3041 }
3042 else { /* Nothing following range min, should be single element with no
3043 mapping expected */
3044 *max = *min;
3045 if (wants_value) {
3046 *val = 0;
3047 if (typeto) {
dcbac5bb 3048 /* diag_listed_as: To%s: illegal mapping '%s' */
319009ee
KW
3049 Perl_croak(aTHX_ "%s: illegal mapping '%s'", typestr, l);
3050 }
3051 }
3052 else
3053 *val = 0; /* bits == 1, then val should be ignored */
3054 }
3055
3056 /* Position to next line if any, or EOF */
3057 if (nl)
3058 l = nl + 1;
3059 else
3060 l = lend;
3061
3062 return l;
3063}
3064
979f2922
TS
3065/* Note:
3066 * Returns a swatch (a bit vector string) for a code point sequence
3067 * that starts from the value C<start> and comprises the number C<span>.
3068 * A C<swash> must be an object created by SWASHNEW (see lib/utf8_heavy.pl).
3069 * Should be used via swash_fetch, which will cache the swatch in C<swash>.
3070 */
3071STATIC SV*
b0e3252e 3072S_swatch_get(pTHX_ SV* swash, UV start, UV span)
979f2922
TS
3073{
3074 SV *swatch;
77f9f126 3075 U8 *l, *lend, *x, *xend, *s, *send;
979f2922 3076 STRLEN lcur, xcur, scur;
ef8f7699 3077 HV *const hv = MUTABLE_HV(SvRV(swash));
5c9f4bd2 3078 SV** const invlistsvp = hv_fetchs(hv, "V", FALSE);
36eb48b4 3079
88d45d28
KW
3080 SV** listsvp = NULL; /* The string containing the main body of the table */
3081 SV** extssvp = NULL;
3082 SV** invert_it_svp = NULL;
3083 U8* typestr = NULL;
786861f5
KW
3084 STRLEN bits;
3085 STRLEN octets; /* if bits == 1, then octets == 0 */
3086 UV none;
3087 UV end = start + span;
972dd592 3088
36eb48b4 3089 if (invlistsvp == NULL) {
786861f5
KW
3090 SV** const bitssvp = hv_fetchs(hv, "BITS", FALSE);
3091 SV** const nonesvp = hv_fetchs(hv, "NONE", FALSE);
3092 SV** const typesvp = hv_fetchs(hv, "TYPE", FALSE);
3093 extssvp = hv_fetchs(hv, "EXTRAS", FALSE);
3094 listsvp = hv_fetchs(hv, "LIST", FALSE);
3095 invert_it_svp = hv_fetchs(hv, "INVERT_IT", FALSE);
3096
3097 bits = SvUV(*bitssvp);
3098 none = SvUV(*nonesvp);
3099 typestr = (U8*)SvPV_nolen(*typesvp);
3100 }
36eb48b4
KW
3101 else {
3102 bits = 1;
3103 none = 0;
3104 }
786861f5 3105 octets = bits >> 3; /* if bits == 1, then octets == 0 */
979f2922 3106
b0e3252e 3107 PERL_ARGS_ASSERT_SWATCH_GET;
7918f24d 3108
979f2922 3109 if (bits != 1 && bits != 8 && bits != 16 && bits != 32) {
b0e3252e 3110 Perl_croak(aTHX_ "panic: swatch_get doesn't expect bits %"UVuf,
660a4616 3111 (UV)bits);
979f2922
TS
3112 }
3113
84ea5ef6
KW
3114 /* If overflowed, use the max possible */
3115 if (end < start) {
3116 end = UV_MAX;
3117 span = end - start;
3118 }
3119
979f2922 3120 /* create and initialize $swatch */
979f2922 3121 scur = octets ? (span * octets) : (span + 7) / 8;
e524fe40
NC
3122 swatch = newSV(scur);
3123 SvPOK_on(swatch);
979f2922
TS
3124 s = (U8*)SvPVX(swatch);
3125 if (octets && none) {
0bd48802 3126 const U8* const e = s + scur;
979f2922
TS
3127 while (s < e) {
3128 if (bits == 8)
3129 *s++ = (U8)(none & 0xff);
3130 else if (bits == 16) {
3131 *s++ = (U8)((none >> 8) & 0xff);
3132 *s++ = (U8)( none & 0xff);
3133 }
3134 else if (bits == 32) {
3135 *s++ = (U8)((none >> 24) & 0xff);
3136 *s++ = (U8)((none >> 16) & 0xff);
3137 *s++ = (U8)((none >> 8) & 0xff);
3138 *s++ = (U8)( none & 0xff);
3139 }
3140 }
3141 *s = '\0';
3142 }
3143 else {
3144 (void)memzero((U8*)s, scur + 1);
3145 }
3146 SvCUR_set(swatch, scur);
3147 s = (U8*)SvPVX(swatch);
3148
36eb48b4
KW
3149 if (invlistsvp) { /* If has an inversion list set up use that */
3150 _invlist_populate_swatch(*invlistsvp, start, end, s);
3151 return swatch;
3152 }
3153
3154 /* read $swash->{LIST} */
979f2922
TS
3155 l = (U8*)SvPV(*listsvp, lcur);
3156 lend = l + lcur;
3157 while (l < lend) {
8ed25d53 3158 UV min, max, val, upper;
319009ee
KW
3159 l = S_swash_scan_list_line(aTHX_ l, lend, &min, &max, &val,
3160 cBOOL(octets), typestr);
3161 if (l > lend) {
979f2922
TS
3162 break;
3163 }
3164
972dd592 3165 /* If looking for something beyond this range, go try the next one */
979f2922
TS
3166 if (max < start)
3167 continue;
3168
8ed25d53
KW
3169 /* <end> is generally 1 beyond where we want to set things, but at the
3170 * platform's infinity, where we can't go any higher, we want to
3171 * include the code point at <end> */
3172 upper = (max < end)
3173 ? max
3174 : (max != UV_MAX || end != UV_MAX)
3175 ? end - 1
3176 : end;
3177
979f2922 3178 if (octets) {
35da51f7 3179 UV key;
979f2922
TS
3180 if (min < start) {
3181 if (!none || val < none) {
3182 val += start - min;
3183 }
3184 min = start;
3185 }
8ed25d53 3186 for (key = min; key <= upper; key++) {
979f2922 3187 STRLEN offset;
979f2922
TS
3188 /* offset must be non-negative (start <= min <= key < end) */
3189 offset = octets * (key - start);
3190 if (bits == 8)
3191 s[offset] = (U8)(val & 0xff);
3192 else if (bits == 16) {
3193 s[offset ] = (U8)((val >> 8) & 0xff);
3194 s[offset + 1] = (U8)( val & 0xff);
3195 }
3196 else if (bits == 32) {
3197 s[offset ] = (U8)((val >> 24) & 0xff);
3198 s[offset + 1] = (U8)((val >> 16) & 0xff);
3199 s[offset + 2] = (U8)((val >> 8) & 0xff);
3200 s[offset + 3] = (U8)( val & 0xff);
3201 }
3202
3203 if (!none || val < none)
3204 ++val;
3205 }
3206 }
711a919c 3207 else { /* bits == 1, then val should be ignored */
35da51f7 3208 UV key;
979f2922
TS
3209 if (min < start)
3210 min = start;
6cb05c12 3211
8ed25d53 3212 for (key = min; key <= upper; key++) {
0bd48802 3213 const STRLEN offset = (STRLEN)(key - start);
979f2922
TS
3214 s[offset >> 3] |= 1 << (offset & 7);
3215 }
3216 }
3217 } /* while */
979f2922 3218
9479a769 3219 /* Invert if the data says it should be. Assumes that bits == 1 */
77f9f126 3220 if (invert_it_svp && SvUV(*invert_it_svp)) {
0bda3001
KW
3221
3222 /* Unicode properties should come with all bits above PERL_UNICODE_MAX
3223 * be 0, and their inversion should also be 0, as we don't succeed any
3224 * Unicode property matches for non-Unicode code points */
3225 if (start <= PERL_UNICODE_MAX) {
3226
3227 /* The code below assumes that we never cross the
3228 * Unicode/above-Unicode boundary in a range, as otherwise we would
3229 * have to figure out where to stop flipping the bits. Since this
3230 * boundary is divisible by a large power of 2, and swatches comes
3231 * in small powers of 2, this should be a valid assumption */
3232 assert(start + span - 1 <= PERL_UNICODE_MAX);
3233
507a8485
KW
3234 send = s + scur;
3235 while (s < send) {
3236 *s = ~(*s);
3237 s++;
3238 }
0bda3001 3239 }
77f9f126
KW
3240 }
3241
d73c39c5
KW
3242 /* read $swash->{EXTRAS}
3243 * This code also copied to swash_to_invlist() below */
979f2922
TS
3244 x = (U8*)SvPV(*extssvp, xcur);
3245 xend = x + xcur;
3246 while (x < xend) {
3247 STRLEN namelen;
3248 U8 *namestr;
3249 SV** othersvp;
3250 HV* otherhv;
3251 STRLEN otherbits;
3252 SV **otherbitssvp, *other;
711a919c 3253 U8 *s, *o, *nl;
979f2922
TS
3254 STRLEN slen, olen;
3255
35da51f7 3256 const U8 opc = *x++;
979f2922
TS
3257 if (opc == '\n')
3258 continue;
3259
3260 nl = (U8*)memchr(x, '\n', xend - x);
3261
3262 if (opc != '-' && opc != '+' && opc != '!' && opc != '&') {
3263 if (nl) {
3264 x = nl + 1; /* 1 is length of "\n" */
3265 continue;
3266 }
3267 else {
3268 x = xend; /* to EXTRAS' end at which \n is not found */
3269 break;
3270 }
3271 }
3272
3273 namestr = x;
3274 if (nl) {
3275 namelen = nl - namestr;
3276 x = nl + 1;
3277 }
3278 else {
3279 namelen = xend - namestr;
3280 x = xend;
3281 }
3282
3283 othersvp = hv_fetch(hv, (char *)namestr, namelen, FALSE);
ef8f7699 3284 otherhv = MUTABLE_HV(SvRV(*othersvp));
017a3ce5 3285 otherbitssvp = hv_fetchs(otherhv, "BITS", FALSE);
979f2922
TS
3286 otherbits = (STRLEN)SvUV(*otherbitssvp);
3287 if (bits < otherbits)
5637ef5b
NC
3288 Perl_croak(aTHX_ "panic: swatch_get found swatch size mismatch, "
3289 "bits=%"UVuf", otherbits=%"UVuf, (UV)bits, (UV)otherbits);
979f2922
TS
3290
3291 /* The "other" swatch must be destroyed after. */
b0e3252e 3292 other = swatch_get(*othersvp, start, span);
979f2922
TS
3293 o = (U8*)SvPV(other, olen);
3294
3295 if (!olen)
b0e3252e 3296 Perl_croak(aTHX_ "panic: swatch_get got improper swatch");
979f2922
TS
3297
3298 s = (U8*)SvPV(swatch, slen);
3299 if (bits == 1 && otherbits == 1) {
3300 if (slen != olen)
5637ef5b
NC
3301 Perl_croak(aTHX_ "panic: swatch_get found swatch length "
3302 "mismatch, slen=%"UVuf", olen=%"UVuf,
3303 (UV)slen, (UV)olen);
979f2922
TS
3304
3305 switch (opc) {
3306 case '+':
3307 while (slen--)
3308 *s++ |= *o++;
3309 break;
3310 case '!':
3311 while (slen--)
3312 *s++ |= ~*o++;
3313 break;
3314 case '-':
3315 while (slen--)
3316 *s++ &= ~*o++;
3317 break;
3318 case '&':
3319 while (slen--)
3320 *s++ &= *o++;
3321 break;
3322 default:
3323 break;
3324 }
3325 }
711a919c 3326 else {
979f2922
TS
3327 STRLEN otheroctets = otherbits >> 3;
3328 STRLEN offset = 0;
35da51f7 3329 U8* const send = s + slen;
979f2922
TS
3330
3331 while (s < send) {
3332 UV otherval = 0;
3333
3334 if (otherbits == 1) {
3335 otherval = (o[offset >> 3] >> (offset & 7)) & 1;
3336 ++offset;
3337 }
3338 else {
3339 STRLEN vlen = otheroctets;
3340 otherval = *o++;
3341 while (--vlen) {
3342 otherval <<= 8;
3343 otherval |= *o++;
3344 }
3345 }
3346
711a919c 3347 if (opc == '+' && otherval)
6f207bd3 3348 NOOP; /* replace with otherval */
979f2922
TS
3349 else if (opc == '!' && !otherval)
3350 otherval = 1;
3351 else if (opc == '-' && otherval)
3352 otherval = 0;
3353 else if (opc == '&' && !otherval)
3354 otherval = 0;
3355 else {
711a919c 3356 s += octets; /* no replacement */
979f2922
TS
3357 continue;
3358 }
3359
3360 if (bits == 8)
3361 *s++ = (U8)( otherval & 0xff);
3362 else if (bits == 16) {
3363 *s++ = (U8)((otherval >> 8) & 0xff);
3364 *s++ = (U8)( otherval & 0xff);
3365 }
3366 else if (bits == 32) {
3367 *s++ = (U8)((otherval >> 24) & 0xff);
3368 *s++ = (U8)((otherval >> 16) & 0xff);
3369 *s++ = (U8)((otherval >> 8) & 0xff);
3370 *s++ = (U8)( otherval & 0xff);
3371 }
3372 }
3373 }
3374 sv_free(other); /* through with it! */
3375 } /* while */
3376 return swatch;
3377}
3378
064c021d 3379HV*
4c2e1131 3380Perl__swash_inversion_hash(pTHX_ SV* const swash)
064c021d
KW
3381{
3382
79a2a0e8 3383 /* Subject to change or removal. For use only in regcomp.c and regexec.c
5662e334
KW
3384 * Can't be used on a property that is subject to user override, as it
3385 * relies on the value of SPECIALS in the swash which would be set by
3386 * utf8_heavy.pl to the hash in the non-overriden file, and hence is not set
3387 * for overridden properties
064c021d
KW
3388 *
3389 * Returns a hash which is the inversion and closure of a swash mapping.
3390 * For example, consider the input lines:
3391 * 004B 006B
3392 * 004C 006C
3393 * 212A 006B
3394 *
3395 * The returned hash would have two keys, the utf8 for 006B and the utf8 for
3396 * 006C. The value for each key is an array. For 006C, the array would
17d5c697 3397 * have two elements, the utf8 for itself, and for 004C. For 006B, there
064c021d
KW
3398 * would be three elements in its array, the utf8 for 006B, 004B and 212A.
3399 *
538e84ed
KW
3400 * Note that there are no elements in the hash for 004B, 004C, 212A. The
3401 * keys are only code points that are folded-to, so it isn't a full closure.
3402 *
064c021d
KW
3403 * Essentially, for any code point, it gives all the code points that map to
3404 * it, or the list of 'froms' for that point.
3405 *
5662e334
KW
3406 * Currently it ignores any additions or deletions from other swashes,
3407 * looking at just the main body of the swash, and if there are SPECIALS
3408 * in the swash, at that hash
3409 *
3410 * The specials hash can be extra code points, and most likely consists of
3411 * maps from single code points to multiple ones (each expressed as a string
3412 * of utf8 characters). This function currently returns only 1-1 mappings.
3413 * However consider this possible input in the specials hash:
3414 * "\xEF\xAC\x85" => "\x{0073}\x{0074}", # U+FB05 => 0073 0074
3415 * "\xEF\xAC\x86" => "\x{0073}\x{0074}", # U+FB06 => 0073 0074
3416 *
3417 * Both FB05 and FB06 map to the same multi-char sequence, which we don't
3418 * currently handle. But it also means that FB05 and FB06 are equivalent in
3419 * a 1-1 mapping which we should handle, and this relationship may not be in
3420 * the main table. Therefore this function examines all the multi-char
3421 * sequences and adds the 1-1 mappings that come out of that. */
064c021d
KW
3422
3423 U8 *l, *lend;
3424 STRLEN lcur;
3425 HV *const hv = MUTABLE_HV(SvRV(swash));
3426
923b6d4e
KW
3427 /* The string containing the main body of the table. This will have its
3428 * assertion fail if the swash has been converted to its inversion list */
064c021d
KW
3429 SV** const listsvp = hv_fetchs(hv, "LIST", FALSE);
3430
3431 SV** const typesvp = hv_fetchs(hv, "TYPE", FALSE);
3432 SV** const bitssvp = hv_fetchs(hv, "BITS", FALSE);
3433 SV** const nonesvp = hv_fetchs(hv, "NONE", FALSE);
3434 /*SV** const extssvp = hv_fetchs(hv, "EXTRAS", FALSE);*/
3435 const U8* const typestr = (U8*)SvPV_nolen(*typesvp);
3436 const STRLEN bits = SvUV(*bitssvp);
3437 const STRLEN octets = bits >> 3; /* if bits == 1, then octets == 0 */
3438 const UV none = SvUV(*nonesvp);
5662e334 3439 SV **specials_p = hv_fetchs(hv, "SPECIALS", 0);
064c021d
KW
3440
3441 HV* ret = newHV();
3442
3443 PERL_ARGS_ASSERT__SWASH_INVERSION_HASH;
3444
3445 /* Must have at least 8 bits to get the mappings */
3446 if (bits != 8 && bits != 16 && bits != 32) {
3447 Perl_croak(aTHX_ "panic: swash_inversion_hash doesn't expect bits %"UVuf,
3448 (UV)bits);
3449 }
3450
5662e334
KW
3451 if (specials_p) { /* It might be "special" (sometimes, but not always, a
3452 mapping to more than one character */
3453
3454 /* Construct an inverse mapping hash for the specials */
3455 HV * const specials_hv = MUTABLE_HV(SvRV(*specials_p));
3456 HV * specials_inverse = newHV();
3457 char *char_from; /* the lhs of the map */
3458 I32 from_len; /* its byte length */
3459 char *char_to; /* the rhs of the map */
3460 I32 to_len; /* its byte length */
3461 SV *sv_to; /* and in a sv */
3462 AV* from_list; /* list of things that map to each 'to' */
3463
3464 hv_iterinit(specials_hv);
3465
3466 /* The keys are the characters (in utf8) that map to the corresponding
3467 * utf8 string value. Iterate through the list creating the inverse
3468 * list. */
3469 while ((sv_to = hv_iternextsv(specials_hv, &char_from, &from_len))) {
3470 SV** listp;
3471 if (! SvPOK(sv_to)) {
5637ef5b
NC
3472 Perl_croak(aTHX_ "panic: value returned from hv_iternextsv() "
3473 "unexpectedly is not a string, flags=%lu",
3474 (unsigned long)SvFLAGS(sv_to));
5662e334 3475 }
4b88fb76 3476 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "Found mapping from %"UVXf", First char of to is %"UVXf"\n", valid_utf8_to_uvchr((U8*) char_from, 0), valid_utf8_to_uvchr((U8*) SvPVX(sv_to), 0)));*/
5662e334
KW
3477
3478 /* Each key in the inverse list is a mapped-to value, and the key's
3479 * hash value is a list of the strings (each in utf8) that map to
3480 * it. Those strings are all one character long */
3481 if ((listp = hv_fetch(specials_inverse,
3482 SvPVX(sv_to),
3483 SvCUR(sv_to), 0)))
3484 {
3485 from_list = (AV*) *listp;
3486 }
3487 else { /* No entry yet for it: create one */
3488 from_list = newAV();
3489 if (! hv_store(specials_inverse,
3490 SvPVX(sv_to),
3491 SvCUR(sv_to),
3492 (SV*) from_list, 0))
3493 {
3494 Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
3495 }
3496 }
3497
3498 /* Here have the list associated with this 'to' (perhaps newly
3499 * created and empty). Just add to it. Note that we ASSUME that
3500 * the input is guaranteed to not have duplications, so we don't
3501 * check for that. Duplications just slow down execution time. */
3502 av_push(from_list, newSVpvn_utf8(char_from, from_len, TRUE));
3503 }
3504
3505 /* Here, 'specials_inverse' contains the inverse mapping. Go through
3506 * it looking for cases like the FB05/FB06 examples above. There would
3507 * be an entry in the hash like
3508 * 'st' => [ FB05, FB06 ]
3509 * In this example we will create two lists that get stored in the
3510 * returned hash, 'ret':
3511 * FB05 => [ FB05, FB06 ]
3512 * FB06 => [ FB05, FB06 ]
3513 *
3514 * Note that there is nothing to do if the array only has one element.
3515 * (In the normal 1-1 case handled below, we don't have to worry about
3516 * two lists, as everything gets tied to the single list that is
3517 * generated for the single character 'to'. But here, we are omitting
3518 * that list, ('st' in the example), so must have multiple lists.) */
3519 while ((from_list = (AV *) hv_iternextsv(specials_inverse,
3520 &char_to, &to_len)))
3521 {
b9f2b683 3522 if (av_tindex(from_list) > 0) {
c70927a6 3523 SSize_t i;
5662e334
KW
3524
3525 /* We iterate over all combinations of i,j to place each code
3526 * point on each list */
b9f2b683 3527 for (i = 0; i <= av_tindex(from_list); i++) {
c70927a6 3528 SSize_t j;
5662e334
KW
3529 AV* i_list = newAV();
3530 SV** entryp = av_fetch(from_list, i, FALSE);
3531 if (entryp == NULL) {
3532 Perl_croak(aTHX_ "panic: av_fetch() unexpectedly failed");
3533 }
3534 if (hv_fetch(ret, SvPVX(*entryp), SvCUR(*entryp), FALSE)) {
3535 Perl_croak(aTHX_ "panic: unexpected entry for %s", SvPVX(*entryp));
3536 }
3537 if (! hv_store(ret, SvPVX(*entryp), SvCUR(*entryp),
3538 (SV*) i_list, FALSE))
3539 {
3540 Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
3541 }
3542
538e84ed 3543 /* For DEBUG_U: UV u = valid_utf8_to_uvchr((U8*) SvPVX(*entryp), 0);*/
b9f2b683 3544 for (j = 0; j <= av_tindex(from_list); j++) {
5662e334
KW
3545 entryp = av_fetch(from_list, j, FALSE);
3546 if (entryp == NULL) {
3547 Perl_croak(aTHX_ "panic: av_fetch() unexpectedly failed");
3548 }
3549
3550 /* When i==j this adds itself to the list */
4b88fb76
KW
3551 av_push(i_list, newSVuv(utf8_to_uvchr_buf(
3552 (U8*) SvPVX(*entryp),
3553 (U8*) SvPVX(*entryp) + SvCUR(*entryp),
3554 0)));
4637d003 3555 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "%s: %d: Adding %"UVXf" to list for %"UVXf"\n", __FILE__, __LINE__, valid_utf8_to_uvchr((U8*) SvPVX(*entryp), 0), u));*/
5662e334
KW
3556 }
3557 }
3558 }
3559 }
3560 SvREFCNT_dec(specials_inverse); /* done with it */
3561 } /* End of specials */
3562
064c021d
KW
3563 /* read $swash->{LIST} */
3564 l = (U8*)SvPV(*listsvp, lcur);
3565 lend = l + lcur;
3566
3567 /* Go through each input line */
3568 while (l < lend) {
3569 UV min, max, val;
3570 UV inverse;
3571 l = S_swash_scan_list_line(aTHX_ l, lend, &min, &max, &val,
3572 cBOOL(octets), typestr);
3573 if (l > lend) {
3574 break;
3575 }
3576
3577 /* Each element in the range is to be inverted */
3578 for (inverse = min; inverse <= max; inverse++) {
3579 AV* list;
064c021d
KW
3580 SV** listp;
3581 IV i;
3582 bool found_key = FALSE;
5662e334 3583 bool found_inverse = FALSE;
064c021d
KW
3584
3585 /* The key is the inverse mapping */
3586 char key[UTF8_MAXBYTES+1];
c80e42f3 3587 char* key_end = (char *) uvchr_to_utf8((U8*) key, val);
064c021d
KW
3588 STRLEN key_len = key_end - key;
3589
064c021d
KW
3590 /* Get the list for the map */
3591 if ((listp = hv_fetch(ret, key, key_len, FALSE))) {
3592 list = (AV*) *listp;
3593 }
3594 else { /* No entry yet for it: create one */
3595 list = newAV();
3596 if (! hv_store(ret, key, key_len, (SV*) list, FALSE)) {
3597 Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
3598 }
3599 }
3600
5662e334
KW
3601 /* Look through list to see if this inverse mapping already is
3602 * listed, or if there is a mapping to itself already */
b9f2b683 3603 for (i = 0; i <= av_tindex(list); i++) {
064c021d
KW
3604 SV** entryp = av_fetch(list, i, FALSE);
3605 SV* entry;
3606 if (entryp == NULL) {
3607 Perl_croak(aTHX_ "panic: av_fetch() unexpectedly failed");
3608 }
3609 entry = *entryp;
5662e334 3610 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "list for %"UVXf" contains %"UVXf"\n", val, SvUV(entry)));*/
56ca34ca 3611 if (SvUV(entry) == val) {
064c021d 3612 found_key = TRUE;
5662e334
KW
3613 }
3614 if (SvUV(entry) == inverse) {
3615 found_inverse = TRUE;
3616 }
3617
3618 /* No need to continue searching if found everything we are
3619 * looking for */
3620 if (found_key && found_inverse) {
064c021d
KW
3621 break;
3622 }
3623 }
56ca34ca
KW
3624
3625 /* Make sure there is a mapping to itself on the list */
064c021d 3626 if (! found_key) {
d397ff6a 3627 av_push(list, newSVuv(val));
4637d003 3628 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "%s: %d: Adding %"UVXf" to list for %"UVXf"\n", __FILE__, __LINE__, val, val));*/
064c021d
KW
3629 }
3630
3631
3632 /* Simply add the value to the list */
5662e334
KW
3633 if (! found_inverse) {
3634 av_push(list, newSVuv(inverse));
4637d003 3635 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "%s: %d: Adding %"UVXf" to list for %"UVXf"\n", __FILE__, __LINE__, inverse, val));*/
5662e334 3636 }
064c021d 3637
b0e3252e 3638 /* swatch_get() increments the value of val for each element in the
064c021d
KW
3639 * range. That makes more compact tables possible. You can
3640 * express the capitalization, for example, of all consecutive
3641 * letters with a single line: 0061\t007A\t0041 This maps 0061 to
3642 * 0041, 0062 to 0042, etc. I (khw) have never understood 'none',
bd3f2f94 3643 * and it's not documented; it appears to be used only in
b0e3252e 3644 * implementing tr//; I copied the semantics from swatch_get(), just
bd3f2f94 3645 * in case */
064c021d
KW
3646 if (!none || val < none) {
3647 ++val;
3648 }
3649 }
3650 }
3651
3652 return ret;
3653}
3654
a25abddc 3655SV*
d764b54e
KW
3656Perl__swash_to_invlist(pTHX_ SV* const swash)
3657{
3658
ed92f1b3
KW
3659 /* Subject to change or removal. For use only in one place in regcomp.c.
3660 * Ownership is given to one reference count in the returned SV* */
d764b54e
KW
3661
3662 U8 *l, *lend;
3663 char *loc;
3664 STRLEN lcur;
3665 HV *const hv = MUTABLE_HV(SvRV(swash));
3666 UV elements = 0; /* Number of elements in the inversion list */
b443038a 3667 U8 empty[] = "";
923b6d4e
KW
3668 SV** listsvp;
3669 SV** typesvp;
3670 SV** bitssvp;
3671 SV** extssvp;
3672 SV** invert_it_svp;
d764b54e 3673
923b6d4e
KW
3674 U8* typestr;
3675 STRLEN bits;
3676 STRLEN octets; /* if bits == 1, then octets == 0 */
d73c39c5
KW
3677 U8 *x, *xend;
3678 STRLEN xcur;
d764b54e 3679
a25abddc 3680 SV* invlist;
d764b54e 3681
b81740c0
KW
3682 PERL_ARGS_ASSERT__SWASH_TO_INVLIST;
3683
923b6d4e
KW
3684 /* If not a hash, it must be the swash's inversion list instead */
3685 if (SvTYPE(hv) != SVt_PVHV) {
ed92f1b3 3686 return SvREFCNT_inc_simple_NN((SV*) hv);
923b6d4e
KW
3687 }
3688
3689 /* The string containing the main body of the table */
3690 listsvp = hv_fetchs(hv, "LIST", FALSE);
3691 typesvp = hv_fetchs(hv, "TYPE", FALSE);
3692 bitssvp = hv_fetchs(hv, "BITS", FALSE);
3693 extssvp = hv_fetchs(hv, "EXTRAS", FALSE);
3694 invert_it_svp = hv_fetchs(hv, "INVERT_IT", FALSE);
3695
3696 typestr = (U8*)SvPV_nolen(*typesvp);
3697 bits = SvUV(*bitssvp);
3698 octets = bits >> 3; /* if bits == 1, then octets == 0 */
3699
d764b54e 3700 /* read $swash->{LIST} */
b443038a
KW
3701 if (SvPOK(*listsvp)) {
3702 l = (U8*)SvPV(*listsvp, lcur);
3703 }
3704 else {
3705 /* LIST legitimately doesn't contain a string during compilation phases
3706 * of Perl itself, before the Unicode tables are generated. In this
3707 * case, just fake things up by creating an empty list */
3708 l = empty;
3709 lcur = 0;
3710 }
d764b54e
KW
3711 loc = (char *) l;
3712 lend = l + lcur;
3713
31aa6e0b
KW
3714 if (*l == 'V') { /* Inversion list format */
3715 char *after_strtol = (char *) lend;
3716 UV element0;
3717 UV* other_elements_ptr;
3718
3719 /* The first number is a count of the rest */
3720 l++;
3721 elements = Strtoul((char *)l, &after_strtol, 10);
eb092534
KW
3722 if (elements == 0) {
3723 invlist = _new_invlist(0);
3724 }
3725 else {
31aa6e0b 3726 l = (U8 *) after_strtol;
1f9f7d4c
KW
3727
3728 /* Get the 0th element, which is needed to setup the inversion list */
3729 element0 = (UV) Strtoul((char *)l, &after_strtol, 10);
3730 l = (U8 *) after_strtol;
3731 invlist = _setup_canned_invlist(elements, element0, &other_elements_ptr);
3732 elements--;
3733
3734 /* Then just populate the rest of the input */
3735 while (elements-- > 0) {
3736 if (l > lend) {
3737 Perl_croak(aTHX_ "panic: Expecting %"UVuf" more elements than available", elements);
3738 }
3739 *other_elements_ptr++ = (UV) Strtoul((char *)l, &after_strtol, 10);
3740 l = (U8 *) after_strtol;
3741 }
eb092534 3742 }
31aa6e0b
KW
3743 }
3744 else {
3745
1784d2f9
KW
3746 /* Scan the input to count the number of lines to preallocate array
3747 * size based on worst possible case, which is each line in the input
3748 * creates 2 elements in the inversion list: 1) the beginning of a
3749 * range in the list; 2) the beginning of a range not in the list. */
3750 while ((loc = (strchr(loc, '\n'))) != NULL) {
3751 elements += 2;
3752 loc++;
3753 }
d764b54e 3754
1784d2f9
KW
3755 /* If the ending is somehow corrupt and isn't a new line, add another
3756 * element for the final range that isn't in the inversion list */
3757 if (! (*lend == '\n'
3758 || (*lend == '\0' && (lcur == 0 || *(lend - 1) == '\n'))))
3759 {
3760 elements++;
3761 }
d764b54e 3762
1784d2f9 3763 invlist = _new_invlist(elements);
d764b54e 3764
1784d2f9
KW
3765 /* Now go through the input again, adding each range to the list */
3766 while (l < lend) {
3767 UV start, end;
3768 UV val; /* Not used by this function */
d764b54e 3769
1784d2f9
KW
3770 l = S_swash_scan_list_line(aTHX_ l, lend, &start, &end, &val,
3771 cBOOL(octets), typestr);
d764b54e 3772
1784d2f9
KW
3773 if (l > lend) {
3774 break;
3775 }
3776
3777 invlist = _add_range_to_invlist(invlist, start, end);
3778 }
31aa6e0b 3779 }
d764b54e 3780
77f9f126
KW
3781 /* Invert if the data says it should be */
3782 if (invert_it_svp && SvUV(*invert_it_svp)) {
25151030 3783 _invlist_invert(invlist);
77f9f126
KW
3784 }
3785
b0e3252e 3786 /* This code is copied from swatch_get()
d73c39c5
KW
3787 * read $swash->{EXTRAS} */
3788 x = (U8*)SvPV(*extssvp, xcur);
3789 xend = x + xcur;
3790 while (x < xend) {
3791 STRLEN namelen;
3792 U8 *namestr;
3793 SV** othersvp;
3794 HV* otherhv;
3795 STRLEN otherbits;
3796 SV **otherbitssvp, *other;
3797 U8 *nl;
3798
3799 const U8 opc = *x++;
3800 if (opc == '\n')
3801 continue;
3802
3803 nl = (U8*)memchr(x, '\n', xend - x);
3804
3805 if (opc != '-' && opc != '+' && opc != '!' && opc != '&') {
3806 if (nl) {
3807 x = nl + 1; /* 1 is length of "\n" */
3808 continue;
3809 }
3810 else {
3811 x = xend; /* to EXTRAS' end at which \n is not found */
3812 break;
3813 }
3814 }
3815
3816 namestr = x;
3817 if (nl) {
3818 namelen = nl - namestr;
3819 x = nl + 1;
3820 }
3821 else {
3822 namelen = xend - namestr;
3823 x = xend;
3824 }
3825
3826 othersvp = hv_fetch(hv, (char *)namestr, namelen, FALSE);
3827 otherhv = MUTABLE_HV(SvRV(*othersvp));
3828 otherbitssvp = hv_fetchs(otherhv, "BITS", FALSE);
3829 otherbits = (STRLEN)SvUV(*otherbitssvp);
3830
3831 if (bits != otherbits || bits != 1) {
5637ef5b
NC
3832 Perl_croak(aTHX_ "panic: _swash_to_invlist only operates on boolean "
3833 "properties, bits=%"UVuf", otherbits=%"UVuf,
3834 (UV)bits, (UV)otherbits);
d73c39c5
KW
3835 }
3836
3837 /* The "other" swatch must be destroyed after. */
3838 other = _swash_to_invlist((SV *)*othersvp);
3839
b0e3252e 3840 /* End of code copied from swatch_get() */
d73c39c5
KW
3841 switch (opc) {
3842 case '+':
3843 _invlist_union(invlist, other, &invlist);
3844 break;
3845 case '!':
6c46377d 3846 _invlist_union_maybe_complement_2nd(invlist, other, TRUE, &invlist);
d73c39c5
KW
3847 break;
3848 case '-':
3849 _invlist_subtract(invlist, other, &invlist);
3850 break;
3851 case '&':
3852 _invlist_intersection(invlist, other, &invlist);
3853 break;
3854 default:
3855 break;
3856 }
3857 sv_free(other); /* through with it! */
3858 }
3859
dbfdbd26 3860 SvREADONLY_on(invlist);
d764b54e
KW
3861 return invlist;
3862}
3863
3fdfee00
KW
3864SV*
3865Perl__get_swash_invlist(pTHX_ SV* const swash)
3866{
872dd7e0 3867 SV** ptr;
3fdfee00
KW
3868
3869 PERL_ARGS_ASSERT__GET_SWASH_INVLIST;
3870
87367d5f 3871 if (! SvROK(swash)) {
872dd7e0
KW
3872 return NULL;
3873 }
3874
87367d5f
KW
3875 /* If it really isn't a hash, it isn't really swash; must be an inversion
3876 * list */
3877 if (SvTYPE(SvRV(swash)) != SVt_PVHV) {
3878 return SvRV(swash);
3879 }
872dd7e0 3880
87367d5f 3881 ptr = hv_fetchs(MUTABLE_HV(SvRV(swash)), "V", FALSE);
3fdfee00
KW
3882 if (! ptr) {
3883 return NULL;
3884 }
3885
3886 return *ptr;
3887}
3888
0876b9a0 3889bool
5aaab254 3890Perl_check_utf8_print(pTHX_ const U8* s, const STRLEN len)
0876b9a0
KW
3891{
3892 /* May change: warns if surrogates, non-character code points, or
af2af982
KW
3893 * non-Unicode code points are in s which has length len bytes. Returns
3894 * TRUE if none found; FALSE otherwise. The only other validity check is
3895 * to make sure that this won't exceed the string's length */
0876b9a0
KW
3896
3897 const U8* const e = s + len;
3898 bool ok = TRUE;
3899
3900 PERL_ARGS_ASSERT_CHECK_UTF8_PRINT;
3901
3902 while (s < e) {
3903 if (UTF8SKIP(s) > len) {
3904 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
3905 "%s in %s", unees, PL_op ? OP_DESC(PL_op) : "print");
3906 return FALSE;
3907 }
732fbc05 3908 if (UNLIKELY(*s >= UTF8_FIRST_PROBLEMATIC_CODE_POINT_FIRST_BYTE)) {
0876b9a0
KW
3909 STRLEN char_len;
3910 if (UTF8_IS_SUPER(s)) {
8457b38f 3911 if (ckWARN_d(WARN_NON_UNICODE)) {
4b88fb76 3912 UV uv = utf8_to_uvchr_buf(s, e, &char_len);
8457b38f
KW
3913 Perl_warner(aTHX_ packWARN(WARN_NON_UNICODE),
3914 "Code point 0x%04"UVXf" is not Unicode, may not be portable", uv);
3915 ok = FALSE;
3916 }
0876b9a0
KW
3917 }
3918 else if (UTF8_IS_SURROGATE(s)) {
8457b38f 3919 if (ckWARN_d(WARN_SURROGATE)) {
4b88fb76 3920 UV uv = utf8_to_uvchr_buf(s, e, &char_len);
8457b38f
KW
3921 Perl_warner(aTHX_ packWARN(WARN_SURROGATE),
3922 "Unicode surrogate U+%04"UVXf" is illegal in UTF-8", uv);
3923 ok = FALSE;
3924 }
0876b9a0
KW
3925 }
3926 else if
8457b38f
KW
3927 ((UTF8_IS_NONCHAR_GIVEN_THAT_NON_SUPER_AND_GE_PROBLEMATIC(s))
3928 && (ckWARN_d(WARN_NONCHAR)))
0876b9a0 3929 {
4b88fb76 3930 UV uv = utf8_to_uvchr_buf(s, e, &char_len);
8457b38f 3931 Perl_warner(aTHX_ packWARN(WARN_NONCHAR),
0876b9a0
KW
3932 "Unicode non-character U+%04"UVXf" is illegal for open interchange", uv);
3933 ok = FALSE;
3934 }
3935 }
3936 s += UTF8SKIP(s);
3937 }
3938
3939 return ok;
3940}
3941
0f830e0b 3942/*
87cea99e 3943=for apidoc pv_uni_display
d2cc3551 3944
a1433954
KW
3945Build to the scalar C<dsv> a displayable version of the string C<spv>,
3946length C<len>, the displayable version being at most C<pvlim> bytes long
d2cc3551 3947(if longer, the rest is truncated and "..." will be appended).
0a2ef054 3948
a1433954 3949The C<flags> argument can have UNI_DISPLAY_ISPRINT set to display
00e86452 3950isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH
0a2ef054
JH
3951to display the \\[nrfta\\] as the backslashed versions (like '\n')
3952(UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\).
3953UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both
3954UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on.
3955
a1433954 3956The pointer to the PV of the C<dsv> is returned.
d2cc3551
JH
3957
3958=cut */
e6b2e755 3959char *
e1ec3a88 3960Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
e6b2e755
JH
3961{
3962 int truncated = 0;
e1ec3a88 3963 const char *s, *e;
e6b2e755 3964
7918f24d
NC
3965 PERL_ARGS_ASSERT_PV_UNI_DISPLAY;
3966
76f68e9b 3967 sv_setpvs(dsv, "");
7fddd944 3968 SvUTF8_off(dsv);
e1ec3a88 3969 for (s = (const char *)spv, e = s + len; s < e; s += UTF8SKIP(s)) {
e6b2e755 3970 UV u;
a49f32c6
NC
3971 /* This serves double duty as a flag and a character to print after
3972 a \ when flags & UNI_DISPLAY_BACKSLASH is true.
3973 */
3974 char ok = 0;
c728cb41 3975
e6b2e755
JH
3976 if (pvlim && SvCUR(dsv) >= pvlim) {
3977 truncated++;
3978 break;
3979 }
4b88fb76 3980 u = utf8_to_uvchr_buf((U8*)s, (U8*)e, 0);
c728cb41 3981 if (u < 256) {
a3b680e6 3982 const unsigned char c = (unsigned char)u & 0xFF;
0bd48802 3983 if (flags & UNI_DISPLAY_BACKSLASH) {
a49f32c6 3984 switch (c) {
c728cb41 3985 case '\n':
a49f32c6 3986 ok = 'n'; break;
c728cb41 3987 case '\r':
a49f32c6 3988 ok = 'r'; break;
c728cb41 3989 case '\t':
a49f32c6 3990 ok = 't'; break;
c728cb41 3991 case '\f':
a49f32c6 3992 ok = 'f'; break;
c728cb41 3993 case '\a':
a49f32c6 3994 ok = 'a'; break;
c728cb41 3995 case '\\':
a49f32c6 3996 ok = '\\'; break;
c728cb41
JH
3997 default: break;
3998 }
a49f32c6 3999 if (ok) {
88c9ea1e 4000 const char string = ok;
76f68e9b 4001 sv_catpvs(dsv, "\\");
5e7aa789 4002 sv_catpvn(dsv, &string, 1);
a49f32c6 4003 }
c728cb41 4004 }
00e86452 4005 /* isPRINT() is the locale-blind version. */
a49f32c6 4006 if (!ok && (flags & UNI_DISPLAY_ISPRINT) && isPRINT(c)) {
88c9ea1e 4007 const char string = c;
5e7aa789 4008 sv_catpvn(dsv, &string, 1);
a49f32c6 4009 ok = 1;
0a2ef054 4010 }
c728cb41
JH
4011 }
4012 if (!ok)
9e55ce06 4013 Perl_sv_catpvf(aTHX_ dsv, "\\x{%"UVxf"}", u);
e6b2e755
JH
4014 }
4015 if (truncated)
396482e1 4016 sv_catpvs(dsv, "...");
48ef279e 4017
e6b2e755
JH
4018 return SvPVX(dsv);
4019}
2b9d42f0 4020
d2cc3551 4021/*
87cea99e 4022=for apidoc sv_uni_display
d2cc3551 4023
a1433954
KW
4024Build to the scalar C<dsv> a displayable version of the scalar C<sv>,
4025the displayable version being at most C<pvlim> bytes long
d2cc3551 4026(if longer, the rest is truncated and "..." will be appended).
0a2ef054 4027
a1433954 4028The C<flags> argument is as in L</pv_uni_display>().
0a2ef054 4029
a1433954 4030The pointer to the PV of the C<dsv> is returned.
d2cc3551 4031
d4c19fe8
AL
4032=cut
4033*/
e6b2e755
JH
4034char *
4035Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
4036{
8cdde9f8
NC
4037 const char * const ptr =
4038 isREGEXP(ssv) ? RX_WRAPPED((REGEXP*)ssv) : SvPVX_const(ssv);
4039
7918f24d
NC
4040 PERL_ARGS_ASSERT_SV_UNI_DISPLAY;
4041
8cdde9f8 4042 return Perl_pv_uni_display(aTHX_ dsv, (const U8*)ptr,
cfd0369c 4043 SvCUR(ssv), pvlim, flags);
701a277b
JH
4044}
4045
d2cc3551 4046/*
e6226b18 4047=for apidoc foldEQ_utf8
d2cc3551 4048
a1433954 4049Returns true if the leading portions of the strings C<s1> and C<s2> (either or both
e6226b18 4050of which may be in UTF-8) are the same case-insensitively; false otherwise.
d51c1b21 4051How far into the strings to compare is determined by other input parameters.
8b35872c 4052
a1433954
KW
4053If C<u1> is true, the string C<s1> is assumed to be in UTF-8-encoded Unicode;
4054otherwise it is assumed to be in native 8-bit encoding. Correspondingly for C<u2>
4055with respect to C<s2>.
8b35872c 4056
a1433954
KW
4057If the byte length C<l1> is non-zero, it says how far into C<s1> to check for fold
4058equality. In other words, C<s1>+C<l1> will be used as a goal to reach. The
8b35872c 4059scan will not be considered to be a match unless the goal is reached, and
a1433954
KW
4060scanning won't continue past that goal. Correspondingly for C<l2> with respect to
4061C<s2>.
4062
4063If C<pe1> is non-NULL and the pointer it points to is not NULL, that pointer is
03bb5c85
KW
4064considered an end pointer to the position 1 byte past the maximum point
4065in C<s1> beyond which scanning will not continue under any circumstances.
4066(This routine assumes that UTF-8 encoded input strings are not malformed;
4067malformed input can cause it to read past C<pe1>).
4068This means that if both C<l1> and C<pe1> are specified, and C<pe1>
a1433954
KW
4069is less than C<s1>+C<l1>, the match will never be successful because it can
4070never
d51c1b21 4071get as far as its goal (and in fact is asserted against). Correspondingly for
a1433954 4072C<pe2> with respect to C<s2>.
8b35872c 4073
a1433954
KW
4074At least one of C<s1> and C<s2> must have a goal (at least one of C<l1> and
4075C<l2> must be non-zero), and if both do, both have to be
8b35872c
KW
4076reached for a successful match. Also, if the fold of a character is multiple
4077characters, all of them must be matched (see tr21 reference below for
4078'folding').
4079
a1433954
KW
4080Upon a successful match, if C<pe1> is non-NULL,
4081it will be set to point to the beginning of the I<next> character of C<s1>
4082beyond what was matched. Correspondingly for C<pe2> and C<s2>.
d2cc3551
JH
4083
4084For case-insensitiveness, the "casefolding" of Unicode is used
4085instead of upper/lowercasing both the characters, see
a1433954 4086L<http://www.unicode.org/unicode/reports/tr21/> (Case Mappings).
d2cc3551
JH
4087
4088=cut */
a33c29bc
KW
4089
4090/* A flags parameter has been added which may change, and hence isn't
4091 * externally documented. Currently it is:
4092 * 0 for as-documented above
4093 * FOLDEQ_UTF8_NOMIX_ASCII meaning that if a non-ASCII character folds to an
4094 ASCII one, to not match
31f05a37
KW
4095 * FOLDEQ_LOCALE is set iff the rules from the current underlying
4096 * locale are to be used.
4097 * FOLDEQ_S1_ALREADY_FOLDED s1 has already been folded before calling this
4098 * routine. This allows that step to be skipped.
4099 * FOLDEQ_S2_ALREADY_FOLDED Similarly.
a33c29bc 4100 */
701a277b 4101I32
5aaab254 4102Perl_foldEQ_utf8_flags(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2, U32 flags)
332ddc25 4103{
8b35872c 4104 dVAR;
eb578fdb
KW
4105 const U8 *p1 = (const U8*)s1; /* Point to current char */
4106 const U8 *p2 = (const U8*)s2;
4107 const U8 *g1 = NULL; /* goal for s1 */
4108 const U8 *g2 = NULL;
4109 const U8 *e1 = NULL; /* Don't scan s1 past this */
4110 U8 *f1 = NULL; /* Point to current folded */
4111 const U8 *e2 = NULL;
4112 U8 *f2 = NULL;
48ef279e 4113 STRLEN n1 = 0, n2 = 0; /* Number of bytes in current char */
8b35872c
KW
4114 U8 foldbuf1[UTF8_MAXBYTES_CASE+1];
4115 U8 foldbuf2[UTF8_MAXBYTES_CASE+1];
8b35872c 4116
eda9cac1 4117 PERL_ARGS_ASSERT_FOLDEQ_UTF8_FLAGS;
8b35872c 4118
cea315b6 4119 assert( ! ((flags & (FOLDEQ_UTF8_NOMIX_ASCII | FOLDEQ_LOCALE))
b08f1bd5
KW
4120 && (flags & (FOLDEQ_S1_ALREADY_FOLDED | FOLDEQ_S2_ALREADY_FOLDED))));
4121 /* The algorithm is to trial the folds without regard to the flags on
4122 * the first line of the above assert(), and then see if the result
4123 * violates them. This means that the inputs can't be pre-folded to a
4124 * violating result, hence the assert. This could be changed, with the
4125 * addition of extra tests here for the already-folded case, which would
4126 * slow it down. That cost is more than any possible gain for when these
4127 * flags are specified, as the flags indicate /il or /iaa matching which
4128 * is less common than /iu, and I (khw) also believe that real-world /il
4129 * and /iaa matches are most likely to involve code points 0-255, and this
4130 * function only under rare conditions gets called for 0-255. */
18f762c3 4131
31f05a37
KW
4132 if (IN_UTF8_CTYPE_LOCALE) {
4133 flags &= ~FOLDEQ_LOCALE;
4134 }
4135
8b35872c 4136 if (pe1) {
48ef279e 4137 e1 = *(U8**)pe1;
8b35872c
KW
4138 }
4139
4140 if (l1) {
48ef279e 4141 g1 = (const U8*)s1 + l1;
8b35872c
KW
4142 }
4143
4144 if (pe2) {
48ef279e 4145 e2 = *(U8**)pe2;
8b35872c
KW
4146 }
4147
4148 if (l2) {
48ef279e 4149 g2 = (const U8*)s2 + l2;
8b35872c
KW
4150 }
4151
4152 /* Must have at least one goal */
4153 assert(g1 || g2);
4154
4155 if (g1) {
4156
48ef279e
KW
4157 /* Will never match if goal is out-of-bounds */
4158 assert(! e1 || e1 >= g1);
8b35872c 4159
48ef279e
KW
4160 /* Here, there isn't an end pointer, or it is beyond the goal. We
4161 * only go as far as the goal */
4162 e1 = g1;
8b35872c 4163 }
313b38e5
NC
4164 else {
4165 assert(e1); /* Must have an end for looking at s1 */
4166 }
8b35872c
KW
4167
4168 /* Same for goal for s2 */
4169 if (g2) {
48ef279e
KW
4170 assert(! e2 || e2 >= g2);
4171 e2 = g2;
8b35872c 4172 }
313b38e5
NC
4173 else {
4174 assert(e2);
4175 }
8b35872c 4176
18f762c3
KW
4177 /* If both operands are already folded, we could just do a memEQ on the
4178 * whole strings at once, but it would be better if the caller realized
4179 * this and didn't even call us */
4180
8b35872c
KW
4181 /* Look through both strings, a character at a time */
4182 while (p1 < e1 && p2 < e2) {
4183
d51c1b21 4184 /* If at the beginning of a new character in s1, get its fold to use
5e64d0fa
KW
4185 * and the length of the fold. (exception: locale rules just get the
4186 * character to a single byte) */
48ef279e 4187 if (n1 == 0) {
18f762c3
KW
4188 if (flags & FOLDEQ_S1_ALREADY_FOLDED) {
4189 f1 = (U8 *) p1;
4190 n1 = UTF8SKIP(f1);
18f762c3
KW
4191 }
4192 else {
a6d5f321
KW
4193 /* If in locale matching, we use two sets of rules, depending
4194 * on if the code point is above or below 255. Here, we test
4195 * for and handle locale rules */
cea315b6 4196 if ((flags & FOLDEQ_LOCALE)
a4f12ed7 4197 && (! u1 || ! UTF8_IS_ABOVE_LATIN1(*p1)))
5e64d0fa 4198 {
1b4059d5 4199 /* There is no mixing of code points above and below 255. */
a4f12ed7 4200 if (u2 && UTF8_IS_ABOVE_LATIN1(*p2)) {
1b4059d5
KW
4201 return 0;
4202 }
5e64d0fa 4203
1b4059d5
KW
4204 /* We handle locale rules by converting, if necessary, the
4205 * code point to a single byte. */
4206 if (! u1 || UTF8_IS_INVARIANT(*p1)) {
4207 *foldbuf1 = *p1;
4208 }
4209 else {
94bb8c36 4210 *foldbuf1 = TWO_BYTE_UTF8_TO_NATIVE(*p1, *(p1 + 1));
1b4059d5
KW
4211 }
4212 n1 = 1;
5e64d0fa 4213 }
a6d5f321
KW
4214 else if (isASCII(*p1)) { /* Note, that here won't be both
4215 ASCII and using locale rules */
1b4059d5
KW
4216
4217 /* If trying to mix non- with ASCII, and not supposed to,
4218 * fail */
4219 if ((flags & FOLDEQ_UTF8_NOMIX_ASCII) && ! isASCII(*p2)) {
4220 return 0;
4221 }
4222 n1 = 1;
d22b930b 4223 *foldbuf1 = toFOLD(*p1);
5e64d0fa 4224 }
1b4059d5
KW
4225 else if (u1) {
4226 to_utf8_fold(p1, foldbuf1, &n1);
a33c29bc 4227 }
9cef8533 4228 else { /* Not utf8, get utf8 fold */
f4cd282c 4229 to_uni_fold(*p1, foldbuf1, &n1);
1b4059d5
KW
4230 }
4231 f1 = foldbuf1;
18f762c3 4232 }
48ef279e 4233 }
8b35872c 4234
48ef279e 4235 if (n2 == 0) { /* Same for s2 */
18f762c3
KW
4236 if (flags & FOLDEQ_S2_ALREADY_FOLDED) {
4237 f2 = (U8 *) p2;
4238 n2 = UTF8SKIP(f2);
4239 }
4240 else {
cea315b6 4241 if ((flags & FOLDEQ_LOCALE)
a4f12ed7 4242 && (! u2 || ! UTF8_IS_ABOVE_LATIN1(*p2)))
5e64d0fa 4243 {
227968da
KW
4244 /* Here, the next char in s2 is < 256. We've already
4245 * worked on s1, and if it isn't also < 256, can't match */
a4f12ed7 4246 if (u1 && UTF8_IS_ABOVE_LATIN1(*p1)) {
227968da
KW
4247 return 0;
4248 }
4249 if (! u2 || UTF8_IS_INVARIANT(*p2)) {
4250 *foldbuf2 = *p2;
4251 }
4252 else {
94bb8c36 4253 *foldbuf2 = TWO_BYTE_UTF8_TO_NATIVE(*p2, *(p2 + 1));
227968da
KW
4254 }
4255
4256 /* Use another function to handle locale rules. We've made
4257 * sure that both characters to compare are single bytes */
4258 if (! foldEQ_locale((char *) f1, (char *) foldbuf2, 1)) {
4259 return 0;
4260 }
4261 n1 = n2 = 0;
5e64d0fa 4262 }
227968da 4263 else if (isASCII(*p2)) {
ba9114af 4264 if ((flags & FOLDEQ_UTF8_NOMIX_ASCII) && ! isASCII(*p1)) {
227968da
KW
4265 return 0;
4266 }
4267 n2 = 1;
d22b930b 4268 *foldbuf2 = toFOLD(*p2);
5e64d0fa 4269 }
227968da
KW
4270 else if (u2) {
4271 to_utf8_fold(p2, foldbuf2, &n2);
5001101e 4272 }
227968da 4273 else {
f4cd282c 4274 to_uni_fold(*p2, foldbuf2, &n2);
a33c29bc 4275 }
227968da 4276 f2 = foldbuf2;
18f762c3 4277 }
48ef279e 4278 }
8b35872c 4279
5001101e 4280 /* Here f1 and f2 point to the beginning of the strings to compare.
227968da
KW
4281 * These strings are the folds of the next character from each input
4282 * string, stored in utf8. */
5e64d0fa 4283
48ef279e
KW
4284 /* While there is more to look for in both folds, see if they
4285 * continue to match */
4286 while (n1 && n2) {
4287 U8 fold_length = UTF8SKIP(f1);
4288 if (fold_length != UTF8SKIP(f2)
4289 || (fold_length == 1 && *f1 != *f2) /* Short circuit memNE
4290 function call for single
a6d5f321 4291 byte */
48ef279e
KW
4292 || memNE((char*)f1, (char*)f2, fold_length))
4293 {
e6226b18 4294 return 0; /* mismatch */
48ef279e
KW
4295 }
4296
4297 /* Here, they matched, advance past them */
4298 n1 -= fold_length;
4299 f1 += fold_length;
4300 n2 -= fold_length;
4301 f2 += fold_length;
4302 }
8b35872c 4303
48ef279e
KW
4304 /* When reach the end of any fold, advance the input past it */
4305 if (n1 == 0) {
4306 p1 += u1 ? UTF8SKIP(p1) : 1;
4307 }
4308 if (n2 == 0) {
4309 p2 += u2 ? UTF8SKIP(p2) : 1;
4310 }
8b35872c
KW
4311 } /* End of loop through both strings */
4312
4313 /* A match is defined by each scan that specified an explicit length
4314 * reaching its final goal, and the other not having matched a partial
4315 * character (which can happen when the fold of a character is more than one
4316 * character). */
4317 if (! ((g1 == 0 || p1 == g1) && (g2 == 0 || p2 == g2)) || n1 || n2) {
e6226b18 4318 return 0;
8b35872c
KW
4319 }
4320
4321 /* Successful match. Set output pointers */
4322 if (pe1) {
48ef279e 4323 *pe1 = (char*)p1;
8b35872c
KW
4324 }
4325 if (pe2) {
48ef279e 4326 *pe2 = (char*)p2;
8b35872c 4327 }
e6226b18 4328 return 1;
e6b2e755 4329}
701a277b 4330
37e7596b
KW
4331/* XXX The next four functions should likely be moved to mathoms.c once all
4332 * occurrences of them are removed from the core; some cpan-upstream modules
4333 * still use them */
4334
4335U8 *
4336Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
4337{
4338 PERL_ARGS_ASSERT_UVUNI_TO_UTF8;
4339
4340 return Perl_uvoffuni_to_utf8_flags(aTHX_ d, uv, 0);
4341}
4342
4343UV
4344Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
4345{
4346 PERL_ARGS_ASSERT_UTF8N_TO_UVUNI;
4347
4348 return NATIVE_TO_UNI(utf8n_to_uvchr(s, curlen, retlen, flags));
4349}
4350
4351/*
4352=for apidoc uvuni_to_utf8_flags
4353
4354Instead you almost certainly want to use L</uvchr_to_utf8> or
4355L</uvchr_to_utf8_flags>>.
4356
4357This function is a deprecated synonym for L</uvoffuni_to_utf8_flags>,
4358which itself, while not deprecated, should be used only in isolated
4359circumstances. These functions were useful for code that wanted to handle
4360both EBCDIC and ASCII platforms with Unicode properties, but starting in Perl
4361v5.20, the distinctions between the platforms have mostly been made invisible
4362to most code, so this function is quite unlikely to be what you want.
4363
4364=cut
4365*/
4366
4367U8 *
4368Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
4369{
4370 PERL_ARGS_ASSERT_UVUNI_TO_UTF8_FLAGS;
4371
4372 return uvoffuni_to_utf8_flags(d, uv, flags);
4373}
4374
4375/*
4376=for apidoc utf8n_to_uvuni
4377
4378Instead use L</utf8_to_uvchr_buf>, or rarely, L</utf8n_to_uvchr>.
4379
e2660c54 4380This function was useful for code that wanted to handle both EBCDIC and
37e7596b
KW
4381ASCII platforms with Unicode properties, but starting in Perl v5.20, the
4382distinctions between the platforms have mostly been made invisible to most
e2660c54
KW
4383code, so this function is quite unlikely to be what you want. If you do need
4384this precise functionality, use instead
4385C<L<NATIVE_TO_UNI(utf8_to_uvchr_buf(...))|/utf8_to_uvchr_buf>>
4386or C<L<NATIVE_TO_UNI(utf8n_to_uvchr(...))|/utf8n_to_uvchr>>.
37e7596b
KW
4387
4388=cut
4389*/
4390
a49f32c6
NC
4391/*
4392 * Local variables:
4393 * c-indentation-style: bsd
4394 * c-basic-offset: 4
14d04a33 4395 * indent-tabs-mode: nil
a49f32c6
NC
4396 * End:
4397 *
14d04a33 4398 * ex: set ts=8 sts=4 sw=4 et:
37442d52 4399 */