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