3 * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 * by Larry Wall and others
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.
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.'
16 * [p.603 of _The Lord of the Rings_, IV/I: "The Taming of Sméagol"]
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,
20 * as is the custom in the West, if you wish to be answered?'
21 * --Gandalf, addressing Théoden's door wardens
23 * [p.508 of _The Lord of the Rings_, III/vi: "The King of the Golden Hall"]
25 * ...the travellers perceived that the floor was paved with stones of many
26 * hues; branching runes and strange devices intertwined beneath their feet.
28 * [p.512 of _The Lord of the Rings_, III/vi: "The King of the Golden Hall"]
32 #define PERL_IN_UTF8_C
36 /* Separate prototypes needed because in ASCII systems these are
37 * usually macros but they still are compiled as code, too. */
38 PERL_CALLCONV UV Perl_utf8n_to_uvchr(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags);
39 PERL_CALLCONV U8* Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv);
42 static const char unees[] =
43 "Malformed UTF-8 character (unexpected end of string)";
46 =head1 Unicode Support
48 This file contains various utility functions for manipulating UTF8-encoded
49 strings. For the uninitiated, this is a method of representing arbitrary
50 Unicode characters as a variable number of bytes, in such a way that
51 characters in the ASCII range are unmodified, and a zero byte never appears
52 within non-zero characters.
58 =for apidoc is_ascii_string
60 Returns true if the first C<len> bytes of the given string are the same whether
61 or not the string is encoded in UTF-8 (or UTF-EBCDIC on EBCDIC machines). That
62 is, if they are invariant. On ASCII-ish machines, only ASCII characters
63 fit this definition, hence the function's name.
65 If C<len> is 0, it will be calculated using C<strlen(s)>.
67 See also is_utf8_string(), is_utf8_string_loclen(), and is_utf8_string_loc().
73 Perl_is_ascii_string(const U8 *s, STRLEN len)
75 const U8* const send = s + (len ? len : strlen((const char *)s));
78 PERL_ARGS_ASSERT_IS_ASCII_STRING;
80 for (; x < send; ++x) {
81 if (!UTF8_IS_INVARIANT(*x))
89 =for apidoc uvuni_to_utf8_flags
91 Adds the UTF-8 representation of the Unicode codepoint C<uv> to the end
92 of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
93 bytes available. The return value is the pointer to the byte after the
94 end of the new character. In other words,
96 d = uvuni_to_utf8_flags(d, uv, flags);
100 d = uvuni_to_utf8(d, uv);
102 (which is equivalent to)
104 d = uvuni_to_utf8_flags(d, uv, 0);
106 is the recommended Unicode-aware way of saying
114 Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
116 PERL_ARGS_ASSERT_UVUNI_TO_UTF8_FLAGS;
118 if (ckWARN(WARN_UTF8)) {
119 if (UNICODE_IS_SURROGATE(uv) &&
120 !(flags & UNICODE_ALLOW_SURROGATE))
121 Perl_warner(aTHX_ packWARN(WARN_UTF8), "UTF-16 surrogate 0x%04"UVxf, uv);
123 ((uv >= 0xFDD0 && uv <= 0xFDEF &&
124 !(flags & UNICODE_ALLOW_FDD0))
126 ((uv & 0xFFFE) == 0xFFFE && /* Either FFFE or FFFF. */
127 !(flags & UNICODE_ALLOW_FFFF))) &&
128 /* UNICODE_ALLOW_SUPER includes
129 * FFFEs and FFFFs beyond 0x10FFFF. */
130 ((uv <= PERL_UNICODE_MAX) ||
131 !(flags & UNICODE_ALLOW_SUPER))
133 Perl_warner(aTHX_ packWARN(WARN_UTF8),
134 "Unicode non-character 0x%04"UVxf" is illegal for interchange", uv);
136 if (UNI_IS_INVARIANT(uv)) {
137 *d++ = (U8)UTF_TO_NATIVE(uv);
142 STRLEN len = UNISKIP(uv);
145 *p-- = (U8)UTF_TO_NATIVE((uv & UTF_CONTINUATION_MASK) | UTF_CONTINUATION_MARK);
146 uv >>= UTF_ACCUMULATION_SHIFT;
148 *p = (U8)UTF_TO_NATIVE((uv & UTF_START_MASK(len)) | UTF_START_MARK(len));
151 #else /* Non loop style */
153 *d++ = (U8)(( uv >> 6) | 0xc0);
154 *d++ = (U8)(( uv & 0x3f) | 0x80);
158 *d++ = (U8)(( uv >> 12) | 0xe0);
159 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
160 *d++ = (U8)(( uv & 0x3f) | 0x80);
164 *d++ = (U8)(( uv >> 18) | 0xf0);
165 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
166 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
167 *d++ = (U8)(( uv & 0x3f) | 0x80);
170 if (uv < 0x4000000) {
171 *d++ = (U8)(( uv >> 24) | 0xf8);
172 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
173 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
174 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
175 *d++ = (U8)(( uv & 0x3f) | 0x80);
178 if (uv < 0x80000000) {
179 *d++ = (U8)(( uv >> 30) | 0xfc);
180 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
181 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
182 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
183 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
184 *d++ = (U8)(( uv & 0x3f) | 0x80);
188 if (uv < UTF8_QUAD_MAX)
191 *d++ = 0xfe; /* Can't match U+FEFF! */
192 *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80);
193 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
194 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
195 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
196 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
197 *d++ = (U8)(( uv & 0x3f) | 0x80);
202 *d++ = 0xff; /* Can't match U+FFFE! */
203 *d++ = 0x80; /* 6 Reserved bits */
204 *d++ = (U8)(((uv >> 60) & 0x0f) | 0x80); /* 2 Reserved bits */
205 *d++ = (U8)(((uv >> 54) & 0x3f) | 0x80);
206 *d++ = (U8)(((uv >> 48) & 0x3f) | 0x80);
207 *d++ = (U8)(((uv >> 42) & 0x3f) | 0x80);
208 *d++ = (U8)(((uv >> 36) & 0x3f) | 0x80);
209 *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80);
210 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
211 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
212 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
213 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
214 *d++ = (U8)(( uv & 0x3f) | 0x80);
218 #endif /* Loop style */
223 Tests if some arbitrary number of bytes begins in a valid UTF-8
224 character. Note that an INVARIANT (i.e. ASCII) character is a valid
225 UTF-8 character. The actual number of bytes in the UTF-8 character
226 will be returned if it is valid, otherwise 0.
228 This is the "slow" version as opposed to the "fast" version which is
229 the "unrolled" IS_UTF8_CHAR(). E.g. for t/uni/class.t the speed
230 difference is a factor of 2 to 3. For lengths (UTF8SKIP(s)) of four
231 or less you should use the IS_UTF8_CHAR(), for lengths of five or more
232 you should use the _slow(). In practice this means that the _slow()
233 will be used very rarely, since the maximum Unicode code point (as of
234 Unicode 4.1) is U+10FFFF, which encodes in UTF-8 to four bytes. Only
235 the "Perl extended UTF-8" (the infamous 'v-strings') will encode into
240 S_is_utf8_char_slow(const U8 *s, const STRLEN len)
246 PERL_ARGS_ASSERT_IS_UTF8_CHAR_SLOW;
248 if (UTF8_IS_INVARIANT(u))
251 if (!UTF8_IS_START(u))
254 if (len < 2 || !UTF8_IS_CONTINUATION(s[1]))
260 u = NATIVE_TO_UTF(u);
262 u &= UTF_START_MASK(len);
266 if (!UTF8_IS_CONTINUATION(*s))
268 uv = UTF8_ACCUMULATE(uv, *s);
275 if ((STRLEN)UNISKIP(uv) < len)
282 =for apidoc is_utf8_char
284 Tests if some arbitrary number of bytes begins in a valid UTF-8
285 character. Note that an INVARIANT (i.e. ASCII on non-EBCDIC machines)
286 character is a valid UTF-8 character. The actual number of bytes in the UTF-8
287 character will be returned if it is valid, otherwise 0.
291 Perl_is_utf8_char(const U8 *s)
293 const STRLEN len = UTF8SKIP(s);
295 PERL_ARGS_ASSERT_IS_UTF8_CHAR;
297 if (IS_UTF8_CHAR_FAST(len))
298 return IS_UTF8_CHAR(s, len) ? len : 0;
299 #endif /* #ifdef IS_UTF8_CHAR */
300 return is_utf8_char_slow(s, len);
305 =for apidoc is_utf8_string
307 Returns true if first C<len> bytes of the given string form a valid
308 UTF-8 string, false otherwise. If C<len> is 0, it will be calculated
309 using C<strlen(s)>. Note that 'a valid UTF-8 string' does not mean 'a
310 string that contains code points above 0x7F encoded in UTF-8' because a
311 valid ASCII string is a valid UTF-8 string.
313 See also is_ascii_string(), is_utf8_string_loclen(), and is_utf8_string_loc().
319 Perl_is_utf8_string(const U8 *s, STRLEN len)
321 const U8* const send = s + (len ? len : strlen((const char *)s));
324 PERL_ARGS_ASSERT_IS_UTF8_STRING;
328 /* Inline the easy bits of is_utf8_char() here for speed... */
329 if (UTF8_IS_INVARIANT(*x))
331 else if (!UTF8_IS_START(*x))
334 /* ... and call is_utf8_char() only if really needed. */
337 if (IS_UTF8_CHAR_FAST(c)) {
338 if (!IS_UTF8_CHAR(x, c))
342 c = is_utf8_char_slow(x, c);
345 #endif /* #ifdef IS_UTF8_CHAR */
360 Implemented as a macro in utf8.h
362 =for apidoc is_utf8_string_loc
364 Like is_utf8_string() but stores the location of the failure (in the
365 case of "utf8ness failure") or the location s+len (in the case of
366 "utf8ness success") in the C<ep>.
368 See also is_utf8_string_loclen() and is_utf8_string().
370 =for apidoc is_utf8_string_loclen
372 Like is_utf8_string() but stores the location of the failure (in the
373 case of "utf8ness failure") or the location s+len (in the case of
374 "utf8ness success") in the C<ep>, and the number of UTF-8
375 encoded characters in the C<el>.
377 See also is_utf8_string_loc() and is_utf8_string().
383 Perl_is_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el)
385 const U8* const send = s + (len ? len : strlen((const char *)s));
390 PERL_ARGS_ASSERT_IS_UTF8_STRING_LOCLEN;
393 /* Inline the easy bits of is_utf8_char() here for speed... */
394 if (UTF8_IS_INVARIANT(*x))
396 else if (!UTF8_IS_START(*x))
399 /* ... and call is_utf8_char() only if really needed. */
402 if (IS_UTF8_CHAR_FAST(c)) {
403 if (!IS_UTF8_CHAR(x, c))
406 c = is_utf8_char_slow(x, c);
409 #endif /* #ifdef IS_UTF8_CHAR */
428 =for apidoc utf8n_to_uvuni
430 Bottom level UTF-8 decode routine.
431 Returns the Unicode code point value of the first character in the string C<s>
432 which is assumed to be in UTF-8 encoding and no longer than C<curlen>;
433 C<retlen> will be set to the length, in bytes, of that character.
435 If C<s> does not point to a well-formed UTF-8 character, the behaviour
436 is dependent on the value of C<flags>: if it contains UTF8_CHECK_ONLY,
437 it is assumed that the caller will raise a warning, and this function
438 will silently just set C<retlen> to C<-1> and return zero. If the
439 C<flags> does not contain UTF8_CHECK_ONLY, warnings about
440 malformations will be given, C<retlen> will be set to the expected
441 length of the UTF-8 character in bytes, and zero will be returned.
443 The C<flags> can also contain various flags to allow deviations from
444 the strict UTF-8 encoding (see F<utf8.h>).
446 Most code should use utf8_to_uvchr() rather than call this directly.
452 Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
455 const U8 * const s0 = s;
458 const bool dowarn = ckWARN_d(WARN_UTF8);
459 const UV startbyte = *s;
460 STRLEN expectlen = 0;
464 PERL_ARGS_ASSERT_UTF8N_TO_UVUNI;
466 /* This list is a superset of the UTF8_ALLOW_XXX. BUT it isn't, eg SUPER missing XXX */
468 #define UTF8_WARN_EMPTY 1
469 #define UTF8_WARN_CONTINUATION 2
470 #define UTF8_WARN_NON_CONTINUATION 3
471 #define UTF8_WARN_FE_FF 4
472 #define UTF8_WARN_SHORT 5
473 #define UTF8_WARN_OVERFLOW 6
474 #define UTF8_WARN_SURROGATE 7
475 #define UTF8_WARN_LONG 8
476 #define UTF8_WARN_FFFF 9 /* Also FFFE. */
479 !(flags & UTF8_ALLOW_EMPTY)) {
480 warning = UTF8_WARN_EMPTY;
484 if (UTF8_IS_INVARIANT(uv)) {
487 return (UV) (NATIVE_TO_UTF(*s));
490 if (UTF8_IS_CONTINUATION(uv) &&
491 !(flags & UTF8_ALLOW_CONTINUATION)) {
492 warning = UTF8_WARN_CONTINUATION;
496 if (UTF8_IS_START(uv) && curlen > 1 && !UTF8_IS_CONTINUATION(s[1]) &&
497 !(flags & UTF8_ALLOW_NON_CONTINUATION)) {
498 warning = UTF8_WARN_NON_CONTINUATION;
503 uv = NATIVE_TO_UTF(uv);
505 if ((uv == 0xfe || uv == 0xff) &&
506 !(flags & UTF8_ALLOW_FE_FF)) {
507 warning = UTF8_WARN_FE_FF;
512 if (!(uv & 0x20)) { len = 2; uv &= 0x1f; }
513 else if (!(uv & 0x10)) { len = 3; uv &= 0x0f; }
514 else if (!(uv & 0x08)) { len = 4; uv &= 0x07; }
515 else if (!(uv & 0x04)) { len = 5; uv &= 0x03; }
517 else if (!(uv & 0x02)) { len = 6; uv &= 0x01; }
518 else { len = 7; uv &= 0x01; }
520 else if (!(uv & 0x02)) { len = 6; uv &= 0x01; }
521 else if (!(uv & 0x01)) { len = 7; uv = 0; }
522 else { len = 13; uv = 0; } /* whoa! */
530 if ((curlen < expectlen) &&
531 !(flags & UTF8_ALLOW_SHORT)) {
532 warning = UTF8_WARN_SHORT;
541 if (!UTF8_IS_CONTINUATION(*s) &&
542 !(flags & UTF8_ALLOW_NON_CONTINUATION)) {
544 warning = UTF8_WARN_NON_CONTINUATION;
548 uv = UTF8_ACCUMULATE(uv, *s);
550 /* These cannot be allowed. */
552 if (expectlen != 13 && !(flags & UTF8_ALLOW_LONG)) {
553 warning = UTF8_WARN_LONG;
557 else { /* uv < ouv */
558 /* This cannot be allowed. */
559 warning = UTF8_WARN_OVERFLOW;
567 if (UNICODE_IS_SURROGATE(uv) &&
568 !(flags & UTF8_ALLOW_SURROGATE)) {
569 warning = UTF8_WARN_SURROGATE;
571 } else if ((expectlen > (STRLEN)UNISKIP(uv)) &&
572 !(flags & UTF8_ALLOW_LONG)) {
573 warning = UTF8_WARN_LONG;
575 } else if (UNICODE_IS_ILLEGAL(uv) &&
576 !(flags & UTF8_ALLOW_FFFF)) {
577 warning = UTF8_WARN_FFFF;
585 if (flags & UTF8_CHECK_ONLY) {
587 *retlen = ((STRLEN) -1);
592 if (warning == UTF8_WARN_FFFF) {
593 sv = newSVpvs_flags("Unicode non-character ", SVs_TEMP);
594 Perl_sv_catpvf(aTHX_ sv, "0x%04"UVxf" is illegal for interchange", uv);
597 sv = newSVpvs_flags("Malformed UTF-8 character ", SVs_TEMP);
600 case 0: /* Intentionally empty. */ break;
601 case UTF8_WARN_EMPTY:
602 sv_catpvs(sv, "(empty string)");
604 case UTF8_WARN_CONTINUATION:
605 Perl_sv_catpvf(aTHX_ sv, "(unexpected continuation byte 0x%02"UVxf", with no preceding start byte)", uv);
607 case UTF8_WARN_NON_CONTINUATION:
609 Perl_sv_catpvf(aTHX_ sv, "(unexpected non-continuation byte 0x%02"UVxf", immediately after start byte 0x%02"UVxf")",
610 (UV)s[1], startbyte);
612 const int len = (int)(s-s0);
613 Perl_sv_catpvf(aTHX_ sv, "(unexpected non-continuation byte 0x%02"UVxf", %d byte%s after start byte 0x%02"UVxf", expected %d bytes)",
614 (UV)s[1], len, len > 1 ? "s" : "", startbyte, (int)expectlen);
618 case UTF8_WARN_FE_FF:
619 Perl_sv_catpvf(aTHX_ sv, "(byte 0x%02"UVxf")", uv);
621 case UTF8_WARN_SHORT:
622 Perl_sv_catpvf(aTHX_ sv, "(%d byte%s, need %d, after start byte 0x%02"UVxf")",
623 (int)curlen, curlen == 1 ? "" : "s", (int)expectlen, startbyte);
624 expectlen = curlen; /* distance for caller to skip */
626 case UTF8_WARN_OVERFLOW:
627 Perl_sv_catpvf(aTHX_ sv, "(overflow at 0x%"UVxf", byte 0x%02x, after start byte 0x%02"UVxf")",
630 case UTF8_WARN_SURROGATE:
631 Perl_sv_catpvf(aTHX_ sv, "(UTF-16 surrogate 0x%04"UVxf")", uv);
634 Perl_sv_catpvf(aTHX_ sv, "(%d byte%s, need %d, after start byte 0x%02"UVxf")",
635 (int)expectlen, expectlen == 1 ? "": "s", UNISKIP(uv), startbyte);
638 sv_catpvs(sv, "(unknown reason)");
644 const char * const s = SvPVX_const(sv);
647 Perl_warner(aTHX_ packWARN(WARN_UTF8),
648 "%s in %s", s, OP_DESC(PL_op));
650 Perl_warner(aTHX_ packWARN(WARN_UTF8), "%s", s);
655 *retlen = expectlen ? expectlen : len;
661 =for apidoc utf8_to_uvchr
663 Returns the native character value of the first character in the string C<s>
664 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
665 length, in bytes, of that character.
667 If C<s> does not point to a well-formed UTF-8 character, zero is
668 returned and retlen is set, if possible, to -1.
674 Perl_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen)
676 PERL_ARGS_ASSERT_UTF8_TO_UVCHR;
678 return utf8n_to_uvchr(s, UTF8_MAXBYTES, retlen,
679 ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
683 =for apidoc utf8_to_uvuni
685 Returns the Unicode code point of the first character in the string C<s>
686 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
687 length, in bytes, of that character.
689 This function should only be used when the returned UV is considered
690 an index into the Unicode semantic tables (e.g. swashes).
692 If C<s> does not point to a well-formed UTF-8 character, zero is
693 returned and retlen is set, if possible, to -1.
699 Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen)
701 PERL_ARGS_ASSERT_UTF8_TO_UVUNI;
703 /* Call the low level routine asking for checks */
704 return Perl_utf8n_to_uvuni(aTHX_ s, UTF8_MAXBYTES, retlen,
705 ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
709 =for apidoc utf8_length
711 Return the length of the UTF-8 char encoded string C<s> in characters.
712 Stops at C<e> (inclusive). If C<e E<lt> s> or if the scan would end
713 up past C<e>, croaks.
719 Perl_utf8_length(pTHX_ const U8 *s, const U8 *e)
724 PERL_ARGS_ASSERT_UTF8_LENGTH;
726 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g.
727 * the bitops (especially ~) can create illegal UTF-8.
728 * In other words: in Perl UTF-8 is not just for Unicode. */
731 goto warn_and_return;
733 if (!UTF8_IS_INVARIANT(*s))
744 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
745 "%s in %s", unees, OP_DESC(PL_op));
747 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), unees);
754 =for apidoc utf8_distance
756 Returns the number of UTF-8 characters between the UTF-8 pointers C<a>
759 WARNING: use only if you *know* that the pointers point inside the
766 Perl_utf8_distance(pTHX_ const U8 *a, const U8 *b)
768 PERL_ARGS_ASSERT_UTF8_DISTANCE;
770 return (a < b) ? -1 * (IV) utf8_length(a, b) : (IV) utf8_length(b, a);
776 Return the UTF-8 pointer C<s> displaced by C<off> characters, either
779 WARNING: do not use the following unless you *know* C<off> is within
780 the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned
781 on the first byte of character or just after the last byte of a character.
787 Perl_utf8_hop(pTHX_ const U8 *s, I32 off)
789 PERL_ARGS_ASSERT_UTF8_HOP;
792 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g
793 * the bitops (especially ~) can create illegal UTF-8.
794 * In other words: in Perl UTF-8 is not just for Unicode. */
803 while (UTF8_IS_CONTINUATION(*s))
811 =for apidoc bytes_cmp_utf8
813 Compares the sequence of characters (stored as octets) in b, blen with the
814 sequence of characters (stored as UTF-8) in u, ulen. Returns 0 if they are
815 equal, -1 or -2 if the first string is less than the second string, +1 or +2
816 if the first string is greater than the second string.
818 -1 or +1 is returned if the shorter string was identical to the start of the
819 longer string. -2 or +2 is returned if the was a difference between characters
826 Perl_bytes_cmp_utf8(pTHX_ const U8 *b, STRLEN blen, const U8 *u, STRLEN ulen)
828 const U8 *const bend = b + blen;
829 const U8 *const uend = u + ulen;
831 PERL_ARGS_ASSERT_BYTES_CMP_UTF8;
835 while (b < bend && u < uend) {
837 if (!UTF8_IS_INVARIANT(c)) {
838 if (UTF8_IS_DOWNGRADEABLE_START(c)) {
841 if (UTF8_IS_CONTINUATION(c1)) {
842 c = UNI_TO_NATIVE(TWO_BYTE_UTF8_TO_UNI(c, c1));
844 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
845 "Malformed UTF-8 character "
846 "(unexpected non-continuation byte 0x%02x"
847 ", immediately after start byte 0x%02x)"
848 /* Dear diag.t, it's in the pod. */
851 PL_op ? OP_DESC(PL_op) : "");
856 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
857 "%s in %s", unees, OP_DESC(PL_op));
859 Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), unees);
860 return -2; /* Really want to return undef :-) */
867 return *b < c ? -2 : +2;
872 if (b == bend && u == uend)
875 return b < bend ? +1 : -1;
879 =for apidoc utf8_to_bytes
881 Converts a string C<s> of length C<len> from UTF-8 into native byte encoding.
882 Unlike C<bytes_to_utf8>, this over-writes the original string, and
883 updates len to contain the new length.
884 Returns zero on failure, setting C<len> to -1.
886 If you need a copy of the string, see C<bytes_from_utf8>.
892 Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len)
895 U8 * const send = s + *len;
898 PERL_ARGS_ASSERT_UTF8_TO_BYTES;
900 /* ensure valid UTF-8 and chars < 256 before updating string */
904 if (!UTF8_IS_INVARIANT(c) &&
905 (!UTF8_IS_DOWNGRADEABLE_START(c) || (s >= send)
906 || !(c = *s++) || !UTF8_IS_CONTINUATION(c))) {
907 *len = ((STRLEN) -1);
915 *d++ = (U8)utf8_to_uvchr(s, &ulen);
924 =for apidoc bytes_from_utf8
926 Converts a string C<s> of length C<len> from UTF-8 into native byte encoding.
927 Unlike C<utf8_to_bytes> but like C<bytes_to_utf8>, returns a pointer to
928 the newly-created string, and updates C<len> to contain the new
929 length. Returns the original string if no conversion occurs, C<len>
930 is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to
931 0 if C<s> is converted or consisted entirely of characters that are invariant
932 in utf8 (i.e., US-ASCII on non-EBCDIC machines).
938 Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8)
945 PERL_ARGS_ASSERT_BYTES_FROM_UTF8;
951 /* ensure valid UTF-8 and chars < 256 before converting string */
952 for (send = s + *len; s < send;) {
954 if (!UTF8_IS_INVARIANT(c)) {
955 if (UTF8_IS_DOWNGRADEABLE_START(c) && s < send &&
956 (c = *s++) && UTF8_IS_CONTINUATION(c))
965 Newx(d, (*len) - count + 1, U8);
966 s = start; start = d;
969 if (!UTF8_IS_INVARIANT(c)) {
970 /* Then it is two-byte encoded */
971 c = UNI_TO_NATIVE(TWO_BYTE_UTF8_TO_UNI(c, *s++));
981 =for apidoc bytes_to_utf8
983 Converts a string C<s> of length C<len> bytes from the native encoding into
985 Returns a pointer to the newly-created string, and sets C<len> to
986 reflect the new length in bytes.
988 A NUL character will be written after the end of the string.
990 If you want to convert to UTF-8 from encodings other than
991 the native (Latin1 or EBCDIC),
992 see sv_recode_to_utf8().
998 Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len)
1000 const U8 * const send = s + (*len);
1004 PERL_ARGS_ASSERT_BYTES_TO_UTF8;
1005 PERL_UNUSED_CONTEXT;
1007 Newx(d, (*len) * 2 + 1, U8);
1011 const UV uv = NATIVE_TO_ASCII(*s++);
1012 if (UNI_IS_INVARIANT(uv))
1013 *d++ = (U8)UTF_TO_NATIVE(uv);
1015 *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
1016 *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
1025 * Convert native (big-endian) or reversed (little-endian) UTF-16 to UTF-8.
1027 * Destination must be pre-extended to 3/2 source. Do not use in-place.
1028 * We optimize for native, for obvious reasons. */
1031 Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
1036 PERL_ARGS_ASSERT_UTF16_TO_UTF8;
1039 Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen %"UVuf, (UV)bytelen);
1044 UV uv = (p[0] << 8) + p[1]; /* UTF-16BE */
1048 *d++ = UNI_TO_NATIVE(uv);
1055 *d++ = (U8)(( uv >> 6) | 0xc0);
1056 *d++ = (U8)(( uv & 0x3f) | 0x80);
1059 if (uv >= 0xd800 && uv <= 0xdbff) { /* surrogates */
1061 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
1063 UV low = (p[0] << 8) + p[1];
1065 if (low < 0xdc00 || low > 0xdfff)
1066 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
1067 uv = ((uv - 0xd800) << 10) + (low - 0xdc00) + 0x10000;
1069 } else if (uv >= 0xdc00 && uv <= 0xdfff) {
1070 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
1073 *d++ = (U8)(( uv >> 12) | 0xe0);
1074 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
1075 *d++ = (U8)(( uv & 0x3f) | 0x80);
1079 *d++ = (U8)(( uv >> 18) | 0xf0);
1080 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
1081 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
1082 *d++ = (U8)(( uv & 0x3f) | 0x80);
1086 *newlen = d - dstart;
1090 /* Note: this one is slightly destructive of the source. */
1093 Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
1096 U8* const send = s + bytelen;
1098 PERL_ARGS_ASSERT_UTF16_TO_UTF8_REVERSED;
1101 Perl_croak(aTHX_ "panic: utf16_to_utf8_reversed: odd bytelen %"UVuf,
1105 const U8 tmp = s[0];
1110 return utf16_to_utf8(p, d, bytelen, newlen);
1113 /* for now these are all defined (inefficiently) in terms of the utf8 versions */
1116 Perl_is_uni_alnum(pTHX_ UV c)
1118 U8 tmpbuf[UTF8_MAXBYTES+1];
1119 uvchr_to_utf8(tmpbuf, c);
1120 return is_utf8_alnum(tmpbuf);
1124 Perl_is_uni_idfirst(pTHX_ UV c)
1126 U8 tmpbuf[UTF8_MAXBYTES+1];
1127 uvchr_to_utf8(tmpbuf, c);
1128 return is_utf8_idfirst(tmpbuf);
1132 Perl_is_uni_alpha(pTHX_ UV c)
1134 U8 tmpbuf[UTF8_MAXBYTES+1];
1135 uvchr_to_utf8(tmpbuf, c);
1136 return is_utf8_alpha(tmpbuf);
1140 Perl_is_uni_ascii(pTHX_ UV c)
1142 U8 tmpbuf[UTF8_MAXBYTES+1];
1143 uvchr_to_utf8(tmpbuf, c);
1144 return is_utf8_ascii(tmpbuf);
1148 Perl_is_uni_space(pTHX_ UV c)
1150 U8 tmpbuf[UTF8_MAXBYTES+1];
1151 uvchr_to_utf8(tmpbuf, c);
1152 return is_utf8_space(tmpbuf);
1156 Perl_is_uni_digit(pTHX_ UV c)
1158 U8 tmpbuf[UTF8_MAXBYTES+1];
1159 uvchr_to_utf8(tmpbuf, c);
1160 return is_utf8_digit(tmpbuf);
1164 Perl_is_uni_upper(pTHX_ UV c)
1166 U8 tmpbuf[UTF8_MAXBYTES+1];
1167 uvchr_to_utf8(tmpbuf, c);
1168 return is_utf8_upper(tmpbuf);
1172 Perl_is_uni_lower(pTHX_ UV c)
1174 U8 tmpbuf[UTF8_MAXBYTES+1];
1175 uvchr_to_utf8(tmpbuf, c);
1176 return is_utf8_lower(tmpbuf);
1180 Perl_is_uni_cntrl(pTHX_ UV c)
1182 U8 tmpbuf[UTF8_MAXBYTES+1];
1183 uvchr_to_utf8(tmpbuf, c);
1184 return is_utf8_cntrl(tmpbuf);
1188 Perl_is_uni_graph(pTHX_ UV c)
1190 U8 tmpbuf[UTF8_MAXBYTES+1];
1191 uvchr_to_utf8(tmpbuf, c);
1192 return is_utf8_graph(tmpbuf);
1196 Perl_is_uni_print(pTHX_ UV c)
1198 U8 tmpbuf[UTF8_MAXBYTES+1];
1199 uvchr_to_utf8(tmpbuf, c);
1200 return is_utf8_print(tmpbuf);
1204 Perl_is_uni_punct(pTHX_ UV c)
1206 U8 tmpbuf[UTF8_MAXBYTES+1];
1207 uvchr_to_utf8(tmpbuf, c);
1208 return is_utf8_punct(tmpbuf);
1212 Perl_is_uni_xdigit(pTHX_ UV c)
1214 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1215 uvchr_to_utf8(tmpbuf, c);
1216 return is_utf8_xdigit(tmpbuf);
1220 Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp)
1222 PERL_ARGS_ASSERT_TO_UNI_UPPER;
1224 uvchr_to_utf8(p, c);
1225 return to_utf8_upper(p, p, lenp);
1229 Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp)
1231 PERL_ARGS_ASSERT_TO_UNI_TITLE;
1233 uvchr_to_utf8(p, c);
1234 return to_utf8_title(p, p, lenp);
1238 Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp)
1240 PERL_ARGS_ASSERT_TO_UNI_LOWER;
1242 uvchr_to_utf8(p, c);
1243 return to_utf8_lower(p, p, lenp);
1247 Perl_to_uni_fold(pTHX_ UV c, U8* p, STRLEN *lenp)
1249 PERL_ARGS_ASSERT_TO_UNI_FOLD;
1251 uvchr_to_utf8(p, c);
1252 return to_utf8_fold(p, p, lenp);
1255 /* for now these all assume no locale info available for Unicode > 255 */
1258 Perl_is_uni_alnum_lc(pTHX_ UV c)
1260 return is_uni_alnum(c); /* XXX no locale support yet */
1264 Perl_is_uni_idfirst_lc(pTHX_ UV c)
1266 return is_uni_idfirst(c); /* XXX no locale support yet */
1270 Perl_is_uni_alpha_lc(pTHX_ UV c)
1272 return is_uni_alpha(c); /* XXX no locale support yet */
1276 Perl_is_uni_ascii_lc(pTHX_ UV c)
1278 return is_uni_ascii(c); /* XXX no locale support yet */
1282 Perl_is_uni_space_lc(pTHX_ UV c)
1284 return is_uni_space(c); /* XXX no locale support yet */
1288 Perl_is_uni_digit_lc(pTHX_ UV c)
1290 return is_uni_digit(c); /* XXX no locale support yet */
1294 Perl_is_uni_upper_lc(pTHX_ UV c)
1296 return is_uni_upper(c); /* XXX no locale support yet */
1300 Perl_is_uni_lower_lc(pTHX_ UV c)
1302 return is_uni_lower(c); /* XXX no locale support yet */
1306 Perl_is_uni_cntrl_lc(pTHX_ UV c)
1308 return is_uni_cntrl(c); /* XXX no locale support yet */
1312 Perl_is_uni_graph_lc(pTHX_ UV c)
1314 return is_uni_graph(c); /* XXX no locale support yet */
1318 Perl_is_uni_print_lc(pTHX_ UV c)
1320 return is_uni_print(c); /* XXX no locale support yet */
1324 Perl_is_uni_punct_lc(pTHX_ UV c)
1326 return is_uni_punct(c); /* XXX no locale support yet */
1330 Perl_is_uni_xdigit_lc(pTHX_ UV c)
1332 return is_uni_xdigit(c); /* XXX no locale support yet */
1336 Perl_to_uni_upper_lc(pTHX_ U32 c)
1338 /* XXX returns only the first character -- do not use XXX */
1339 /* XXX no locale support yet */
1341 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1342 return (U32)to_uni_upper(c, tmpbuf, &len);
1346 Perl_to_uni_title_lc(pTHX_ U32 c)
1348 /* XXX returns only the first character XXX -- do not use XXX */
1349 /* XXX no locale support yet */
1351 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1352 return (U32)to_uni_title(c, tmpbuf, &len);
1356 Perl_to_uni_lower_lc(pTHX_ U32 c)
1358 /* XXX returns only the first character -- do not use XXX */
1359 /* XXX no locale support yet */
1361 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1362 return (U32)to_uni_lower(c, tmpbuf, &len);
1366 S_is_utf8_common(pTHX_ const U8 *const p, SV **swash,
1367 const char *const swashname)
1371 PERL_ARGS_ASSERT_IS_UTF8_COMMON;
1373 if (!is_utf8_char(p))
1376 *swash = swash_init("utf8", swashname, &PL_sv_undef, 1, 0);
1377 return swash_fetch(*swash, p, TRUE) != 0;
1381 Perl_is_utf8_alnum(pTHX_ const U8 *p)
1385 PERL_ARGS_ASSERT_IS_UTF8_ALNUM;
1387 /* NOTE: "IsWord", not "IsAlnum", since Alnum is a true
1388 * descendant of isalnum(3), in other words, it doesn't
1389 * contain the '_'. --jhi */
1390 return is_utf8_common(p, &PL_utf8_alnum, "IsWord");
1394 Perl_is_utf8_idfirst(pTHX_ const U8 *p) /* The naming is historical. */
1398 PERL_ARGS_ASSERT_IS_UTF8_IDFIRST;
1402 /* is_utf8_idstart would be more logical. */
1403 return is_utf8_common(p, &PL_utf8_idstart, "IdStart");
1407 Perl_is_utf8_idcont(pTHX_ const U8 *p)
1411 PERL_ARGS_ASSERT_IS_UTF8_IDCONT;
1415 return is_utf8_common(p, &PL_utf8_idcont, "IdContinue");
1419 Perl_is_utf8_alpha(pTHX_ const U8 *p)
1423 PERL_ARGS_ASSERT_IS_UTF8_ALPHA;
1425 return is_utf8_common(p, &PL_utf8_alpha, "IsAlpha");
1429 Perl_is_utf8_ascii(pTHX_ const U8 *p)
1433 PERL_ARGS_ASSERT_IS_UTF8_ASCII;
1435 return is_utf8_common(p, &PL_utf8_ascii, "IsAscii");
1439 Perl_is_utf8_space(pTHX_ const U8 *p)
1443 PERL_ARGS_ASSERT_IS_UTF8_SPACE;
1445 return is_utf8_common(p, &PL_utf8_space, "IsSpacePerl");
1449 Perl_is_utf8_perl_space(pTHX_ const U8 *p)
1453 PERL_ARGS_ASSERT_IS_UTF8_PERL_SPACE;
1455 return is_utf8_common(p, &PL_utf8_perl_space, "IsPerlSpace");
1459 Perl_is_utf8_perl_word(pTHX_ const U8 *p)
1463 PERL_ARGS_ASSERT_IS_UTF8_PERL_WORD;
1465 return is_utf8_common(p, &PL_utf8_perl_word, "IsPerlWord");
1469 Perl_is_utf8_digit(pTHX_ const U8 *p)
1473 PERL_ARGS_ASSERT_IS_UTF8_DIGIT;
1475 return is_utf8_common(p, &PL_utf8_digit, "IsDigit");
1479 Perl_is_utf8_posix_digit(pTHX_ const U8 *p)
1483 PERL_ARGS_ASSERT_IS_UTF8_POSIX_DIGIT;
1485 return is_utf8_common(p, &PL_utf8_posix_digit, "IsPosixDigit");
1489 Perl_is_utf8_upper(pTHX_ const U8 *p)
1493 PERL_ARGS_ASSERT_IS_UTF8_UPPER;
1495 return is_utf8_common(p, &PL_utf8_upper, "IsUppercase");
1499 Perl_is_utf8_lower(pTHX_ const U8 *p)
1503 PERL_ARGS_ASSERT_IS_UTF8_LOWER;
1505 return is_utf8_common(p, &PL_utf8_lower, "IsLowercase");
1509 Perl_is_utf8_cntrl(pTHX_ const U8 *p)
1513 PERL_ARGS_ASSERT_IS_UTF8_CNTRL;
1515 return is_utf8_common(p, &PL_utf8_cntrl, "IsCntrl");
1519 Perl_is_utf8_graph(pTHX_ const U8 *p)
1523 PERL_ARGS_ASSERT_IS_UTF8_GRAPH;
1525 return is_utf8_common(p, &PL_utf8_graph, "IsGraph");
1529 Perl_is_utf8_print(pTHX_ const U8 *p)
1533 PERL_ARGS_ASSERT_IS_UTF8_PRINT;
1535 return is_utf8_common(p, &PL_utf8_print, "IsPrint");
1539 Perl_is_utf8_punct(pTHX_ const U8 *p)
1543 PERL_ARGS_ASSERT_IS_UTF8_PUNCT;
1545 return is_utf8_common(p, &PL_utf8_punct, "IsPunct");
1549 Perl_is_utf8_xdigit(pTHX_ const U8 *p)
1553 PERL_ARGS_ASSERT_IS_UTF8_XDIGIT;
1555 return is_utf8_common(p, &PL_utf8_xdigit, "IsXDigit");
1559 Perl_is_utf8_mark(pTHX_ const U8 *p)
1563 PERL_ARGS_ASSERT_IS_UTF8_MARK;
1565 return is_utf8_common(p, &PL_utf8_mark, "IsM");
1569 Perl_is_utf8_X_begin(pTHX_ const U8 *p)
1573 PERL_ARGS_ASSERT_IS_UTF8_X_BEGIN;
1575 return is_utf8_common(p, &PL_utf8_X_begin, "_X_Begin");
1579 Perl_is_utf8_X_extend(pTHX_ const U8 *p)
1583 PERL_ARGS_ASSERT_IS_UTF8_X_EXTEND;
1585 return is_utf8_common(p, &PL_utf8_X_extend, "_X_Extend");
1589 Perl_is_utf8_X_prepend(pTHX_ const U8 *p)
1593 PERL_ARGS_ASSERT_IS_UTF8_X_PREPEND;
1595 return is_utf8_common(p, &PL_utf8_X_prepend, "GCB=Prepend");
1599 Perl_is_utf8_X_non_hangul(pTHX_ const U8 *p)
1603 PERL_ARGS_ASSERT_IS_UTF8_X_NON_HANGUL;
1605 return is_utf8_common(p, &PL_utf8_X_non_hangul, "HST=Not_Applicable");
1609 Perl_is_utf8_X_L(pTHX_ const U8 *p)
1613 PERL_ARGS_ASSERT_IS_UTF8_X_L;
1615 return is_utf8_common(p, &PL_utf8_X_L, "GCB=L");
1619 Perl_is_utf8_X_LV(pTHX_ const U8 *p)
1623 PERL_ARGS_ASSERT_IS_UTF8_X_LV;
1625 return is_utf8_common(p, &PL_utf8_X_LV, "GCB=LV");
1629 Perl_is_utf8_X_LVT(pTHX_ const U8 *p)
1633 PERL_ARGS_ASSERT_IS_UTF8_X_LVT;
1635 return is_utf8_common(p, &PL_utf8_X_LVT, "GCB=LVT");
1639 Perl_is_utf8_X_T(pTHX_ const U8 *p)
1643 PERL_ARGS_ASSERT_IS_UTF8_X_T;
1645 return is_utf8_common(p, &PL_utf8_X_T, "GCB=T");
1649 Perl_is_utf8_X_V(pTHX_ const U8 *p)
1653 PERL_ARGS_ASSERT_IS_UTF8_X_V;
1655 return is_utf8_common(p, &PL_utf8_X_V, "GCB=V");
1659 Perl_is_utf8_X_LV_LVT_V(pTHX_ const U8 *p)
1663 PERL_ARGS_ASSERT_IS_UTF8_X_LV_LVT_V;
1665 return is_utf8_common(p, &PL_utf8_X_LV_LVT_V, "_X_LV_LVT_V");
1669 =for apidoc to_utf8_case
1671 The "p" contains the pointer to the UTF-8 string encoding
1672 the character that is being converted.
1674 The "ustrp" is a pointer to the character buffer to put the
1675 conversion result to. The "lenp" is a pointer to the length
1678 The "swashp" is a pointer to the swash to use.
1680 Both the special and normal mappings are stored lib/unicore/To/Foo.pl,
1681 and loaded by SWASHNEW, using lib/utf8_heavy.pl. The special (usually,
1682 but not always, a multicharacter mapping), is tried first.
1684 The "special" is a string like "utf8::ToSpecLower", which means the
1685 hash %utf8::ToSpecLower. The access to the hash is through
1686 Perl_to_utf8_case().
1688 The "normal" is a string like "ToLower" which means the swash
1694 Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp,
1695 SV **swashp, const char *normal, const char *special)
1698 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1700 const UV uv0 = utf8_to_uvchr(p, NULL);
1701 /* The NATIVE_TO_UNI() and UNI_TO_NATIVE() mappings
1702 * are necessary in EBCDIC, they are redundant no-ops
1703 * in ASCII-ish platforms, and hopefully optimized away. */
1704 const UV uv1 = NATIVE_TO_UNI(uv0);
1706 PERL_ARGS_ASSERT_TO_UTF8_CASE;
1708 uvuni_to_utf8(tmpbuf, uv1);
1710 if (!*swashp) /* load on-demand */
1711 *swashp = swash_init("utf8", normal, &PL_sv_undef, 4, 0);
1712 /* This is the beginnings of a skeleton of code to read the info section
1713 * that is in all the swashes in case we ever want to do that, so one can
1714 * read things whose maps aren't code points, and whose default if missing
1715 * is not to the code point itself. This was just to see if it actually
1716 * worked. Details on what the possibilities are are in perluniprops.pod
1717 HV * const hv = get_hv("utf8::SwashInfo", 0);
1720 svp = hv_fetch(hv, (const char*)normal, strlen(normal), FALSE);
1723 HV * const this_hash = SvRV(*svp);
1724 svp = hv_fetch(this_hash, "type", strlen("type"), FALSE);
1725 s = SvPV_const(*svp, len);
1730 /* It might be "special" (sometimes, but not always,
1731 * a multicharacter mapping) */
1732 HV * const hv = get_hv(special, 0);
1736 (svp = hv_fetch(hv, (const char*)tmpbuf, UNISKIP(uv1), FALSE)) &&
1740 s = SvPV_const(*svp, len);
1742 len = uvuni_to_utf8(ustrp, NATIVE_TO_UNI(*(U8*)s)) - ustrp;
1745 /* If we have EBCDIC we need to remap the characters
1746 * since any characters in the low 256 are Unicode
1747 * code points, not EBCDIC. */
1748 U8 *t = (U8*)s, *tend = t + len, *d;
1755 const UV c = utf8_to_uvchr(t, &tlen);
1757 d = uvchr_to_utf8(d, UNI_TO_NATIVE(c));
1766 d = uvchr_to_utf8(d, UNI_TO_NATIVE(*t));
1771 Copy(tmpbuf, ustrp, len, U8);
1773 Copy(s, ustrp, len, U8);
1779 if (!len && *swashp) {
1780 const UV uv2 = swash_fetch(*swashp, tmpbuf, TRUE);
1783 /* It was "normal" (a single character mapping). */
1784 const UV uv3 = UNI_TO_NATIVE(uv2);
1785 len = uvchr_to_utf8(ustrp, uv3) - ustrp;
1789 if (!len) /* Neither: just copy. In other words, there was no mapping
1790 defined, which means that the code point maps to itself */
1791 len = uvchr_to_utf8(ustrp, uv0) - ustrp;
1796 return len ? utf8_to_uvchr(ustrp, 0) : 0;
1800 =for apidoc to_utf8_upper
1802 Convert the UTF-8 encoded character at p to its uppercase version and
1803 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1804 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since
1805 the uppercase version may be longer than the original character.
1807 The first character of the uppercased version is returned
1808 (but note, as explained above, that there may be more.)
1813 Perl_to_utf8_upper(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1817 PERL_ARGS_ASSERT_TO_UTF8_UPPER;
1819 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1820 &PL_utf8_toupper, "ToUpper", "utf8::ToSpecUpper");
1824 =for apidoc to_utf8_title
1826 Convert the UTF-8 encoded character at p to its titlecase version and
1827 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1828 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
1829 titlecase version may be longer than the original character.
1831 The first character of the titlecased version is returned
1832 (but note, as explained above, that there may be more.)
1837 Perl_to_utf8_title(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1841 PERL_ARGS_ASSERT_TO_UTF8_TITLE;
1843 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1844 &PL_utf8_totitle, "ToTitle", "utf8::ToSpecTitle");
1848 =for apidoc to_utf8_lower
1850 Convert the UTF-8 encoded character at p to its lowercase version and
1851 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1852 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
1853 lowercase version may be longer than the original character.
1855 The first character of the lowercased version is returned
1856 (but note, as explained above, that there may be more.)
1861 Perl_to_utf8_lower(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1865 PERL_ARGS_ASSERT_TO_UTF8_LOWER;
1867 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1868 &PL_utf8_tolower, "ToLower", "utf8::ToSpecLower");
1872 =for apidoc to_utf8_fold
1874 Convert the UTF-8 encoded character at p to its foldcase version and
1875 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1876 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
1877 foldcase version may be longer than the original character (up to
1880 The first character of the foldcased version is returned
1881 (but note, as explained above, that there may be more.)
1886 Perl_to_utf8_fold(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1890 PERL_ARGS_ASSERT_TO_UTF8_FOLD;
1892 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1893 &PL_utf8_tofold, "ToFold", "utf8::ToSpecFold");
1897 * A "swash" is a swatch hash.
1898 * A "swatch" is a bit vector generated by utf8.c:S_swash_get().
1899 * C<pkg> is a pointer to a package name for SWASHNEW, should be "utf8".
1900 * For other parameters, see utf8::SWASHNEW in lib/utf8_heavy.pl.
1903 Perl_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none)
1908 const size_t pkg_len = strlen(pkg);
1909 const size_t name_len = strlen(name);
1910 HV * const stash = gv_stashpvn(pkg, pkg_len, 0);
1913 PERL_ARGS_ASSERT_SWASH_INIT;
1915 PUSHSTACKi(PERLSI_MAGIC);
1919 if (!gv_fetchmeth(stash, "SWASHNEW", 8, -1)) { /* demand load utf8 */
1921 errsv_save = newSVsv(ERRSV);
1922 /* It is assumed that callers of this routine are not passing in any
1923 user derived data. */
1924 /* Need to do this after save_re_context() as it will set PL_tainted to
1925 1 while saving $1 etc (see the code after getrx: in Perl_magic_get).
1926 Even line to create errsv_save can turn on PL_tainted. */
1927 SAVEBOOL(PL_tainted);
1929 Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, newSVpvn(pkg,pkg_len),
1932 sv_setsv(ERRSV, errsv_save);
1933 SvREFCNT_dec(errsv_save);
1939 mPUSHp(pkg, pkg_len);
1940 mPUSHp(name, name_len);
1945 errsv_save = newSVsv(ERRSV);
1946 if (call_method("SWASHNEW", G_SCALAR))
1947 retval = newSVsv(*PL_stack_sp--);
1949 retval = &PL_sv_undef;
1951 sv_setsv(ERRSV, errsv_save);
1952 SvREFCNT_dec(errsv_save);
1955 if (IN_PERL_COMPILETIME) {
1956 CopHINTS_set(PL_curcop, PL_hints);
1958 if (!SvROK(retval) || SvTYPE(SvRV(retval)) != SVt_PVHV) {
1960 Perl_croak(aTHX_ "Can't find Unicode property definition \"%"SVf"\"",
1962 Perl_croak(aTHX_ "SWASHNEW didn't return an HV ref");
1968 /* This API is wrong for special case conversions since we may need to
1969 * return several Unicode characters for a single Unicode character
1970 * (see lib/unicore/SpecCase.txt) The SWASHGET in lib/utf8_heavy.pl is
1971 * the lower-level routine, and it is similarly broken for returning
1972 * multiple values. --jhi */
1973 /* Now SWASHGET is recasted into S_swash_get in this file. */
1976 * Returns the value of property/mapping C<swash> for the first character
1977 * of the string C<ptr>. If C<do_utf8> is true, the string C<ptr> is
1978 * assumed to be in utf8. If C<do_utf8> is false, the string C<ptr> is
1979 * assumed to be in native 8-bit encoding. Caches the swatch in C<swash>.
1982 Perl_swash_fetch(pTHX_ SV *swash, const U8 *ptr, bool do_utf8)
1985 HV *const hv = MUTABLE_HV(SvRV(swash));
1990 const U8 *tmps = NULL;
1994 const UV c = NATIVE_TO_ASCII(*ptr);
1996 PERL_ARGS_ASSERT_SWASH_FETCH;
1998 if (!do_utf8 && !UNI_IS_INVARIANT(c)) {
1999 tmputf8[0] = (U8)UTF8_EIGHT_BIT_HI(c);
2000 tmputf8[1] = (U8)UTF8_EIGHT_BIT_LO(c);
2003 /* Given a UTF-X encoded char 0xAA..0xYY,0xZZ
2004 * then the "swatch" is a vec() for all the chars which start
2006 * So the key in the hash (klen) is length of encoded char -1
2008 klen = UTF8SKIP(ptr) - 1;
2012 /* If char is invariant then swatch is for all the invariant chars
2013 * In both UTF-8 and UTF-8-MOD that happens to be UTF_CONTINUATION_MARK
2015 needents = UTF_CONTINUATION_MARK;
2016 off = NATIVE_TO_UTF(ptr[klen]);
2019 /* If char is encoded then swatch is for the prefix */
2020 needents = (1 << UTF_ACCUMULATION_SHIFT);
2021 off = NATIVE_TO_UTF(ptr[klen]) & UTF_CONTINUATION_MASK;
2025 * This single-entry cache saves about 1/3 of the utf8 overhead in test
2026 * suite. (That is, only 7-8% overall over just a hash cache. Still,
2027 * it's nothing to sniff at.) Pity we usually come through at least
2028 * two function calls to get here...
2030 * NB: this code assumes that swatches are never modified, once generated!
2033 if (hv == PL_last_swash_hv &&
2034 klen == PL_last_swash_klen &&
2035 (!klen || memEQ((char *)ptr, (char *)PL_last_swash_key, klen)) )
2037 tmps = PL_last_swash_tmps;
2038 slen = PL_last_swash_slen;
2041 /* Try our second-level swatch cache, kept in a hash. */
2042 SV** svp = hv_fetch(hv, (const char*)ptr, klen, FALSE);
2044 /* If not cached, generate it via swash_get */
2045 if (!svp || !SvPOK(*svp)
2046 || !(tmps = (const U8*)SvPV_const(*svp, slen))) {
2047 /* We use utf8n_to_uvuni() as we want an index into
2048 Unicode tables, not a native character number.
2050 const UV code_point = utf8n_to_uvuni(ptr, UTF8_MAXBYTES, 0,
2052 0 : UTF8_ALLOW_ANY);
2053 swatch = swash_get(swash,
2054 /* On EBCDIC & ~(0xA0-1) isn't a useful thing to do */
2055 (klen) ? (code_point & ~(needents - 1)) : 0,
2058 if (IN_PERL_COMPILETIME)
2059 CopHINTS_set(PL_curcop, PL_hints);
2061 svp = hv_store(hv, (const char *)ptr, klen, swatch, 0);
2063 if (!svp || !(tmps = (U8*)SvPV(*svp, slen))
2064 || (slen << 3) < needents)
2065 Perl_croak(aTHX_ "panic: swash_fetch got improper swatch");
2068 PL_last_swash_hv = hv;
2069 assert(klen <= sizeof(PL_last_swash_key));
2070 PL_last_swash_klen = (U8)klen;
2071 /* FIXME change interpvar.h? */
2072 PL_last_swash_tmps = (U8 *) tmps;
2073 PL_last_swash_slen = slen;
2075 Copy(ptr, PL_last_swash_key, klen, U8);
2078 switch ((int)((slen << 3) / needents)) {
2080 bit = 1 << (off & 7);
2082 return (tmps[off] & bit) != 0;
2087 return (tmps[off] << 8) + tmps[off + 1] ;
2090 return (tmps[off] << 24) + (tmps[off+1] << 16) + (tmps[off+2] << 8) + tmps[off + 3] ;
2092 Perl_croak(aTHX_ "panic: swash_fetch got swatch of unexpected bit width");
2093 NORETURN_FUNCTION_END;
2096 /* Read a single line of the main body of the swash input text. These are of
2099 * where each number is hex. The first two numbers form the minimum and
2100 * maximum of a range, and the third is the value associated with the range.
2101 * Not all swashes should have a third number
2103 * On input: l points to the beginning of the line to be examined; it points
2104 * to somewhere in the string of the whole input text, and is
2105 * terminated by a \n or the null string terminator.
2106 * lend points to the null terminator of that string
2107 * wants_value is non-zero if the swash expects a third number
2108 * typestr is the name of the swash's mapping, like 'ToLower'
2109 * On output: *min, *max, and *val are set to the values read from the line.
2110 * returns a pointer just beyond the line examined. If there was no
2111 * valid min number on the line, returns lend+1
2115 S_swash_scan_list_line(pTHX_ U8* l, U8* const lend, UV* min, UV* max, UV* val,
2116 const bool wants_value, const U8* const typestr)
2118 const int typeto = typestr[0] == 'T' && typestr[1] == 'o';
2119 STRLEN numlen; /* Length of the number */
2120 I32 flags = PERL_SCAN_SILENT_ILLDIGIT | PERL_SCAN_DISALLOW_PREFIX;
2122 /* nl points to the next \n in the scan */
2123 U8* const nl = (U8*)memchr(l, '\n', lend - l);
2125 /* Get the first number on the line: the range minimum */
2127 *min = grok_hex((char *)l, &numlen, &flags, NULL);
2128 if (numlen) /* If found a hex number, position past it */
2130 else if (nl) { /* Else, go handle next line, if any */
2131 return nl + 1; /* 1 is length of "\n" */
2133 else { /* Else, no next line */
2134 return lend + 1; /* to LIST's end at which \n is not found */
2137 /* The max range value follows, separated by a BLANK */
2140 flags = PERL_SCAN_SILENT_ILLDIGIT | PERL_SCAN_DISALLOW_PREFIX;
2142 *max = grok_hex((char *)l, &numlen, &flags, NULL);
2145 else /* If no value here, it is a single element range */
2148 /* Non-binary tables have a third entry: what the first element of the
2153 flags = PERL_SCAN_SILENT_ILLDIGIT |
2154 PERL_SCAN_DISALLOW_PREFIX;
2156 *val = grok_hex((char *)l, &numlen, &flags, NULL);
2165 Perl_croak(aTHX_ "%s: illegal mapping '%s'",
2171 *val = 0; /* bits == 1, then any val should be ignored */
2173 else { /* Nothing following range min, should be single element with no
2179 Perl_croak(aTHX_ "%s: illegal mapping '%s'", typestr, l);
2183 *val = 0; /* bits == 1, then val should be ignored */
2186 /* Position to next line if any, or EOF */
2196 * Returns a swatch (a bit vector string) for a code point sequence
2197 * that starts from the value C<start> and comprises the number C<span>.
2198 * A C<swash> must be an object created by SWASHNEW (see lib/utf8_heavy.pl).
2199 * Should be used via swash_fetch, which will cache the swatch in C<swash>.
2202 S_swash_get(pTHX_ SV* swash, UV start, UV span)
2205 U8 *l, *lend, *x, *xend, *s;
2206 STRLEN lcur, xcur, scur;
2207 HV *const hv = MUTABLE_HV(SvRV(swash));
2209 /* The string containing the main body of the table */
2210 SV** const listsvp = hv_fetchs(hv, "LIST", FALSE);
2212 SV** const typesvp = hv_fetchs(hv, "TYPE", FALSE);
2213 SV** const bitssvp = hv_fetchs(hv, "BITS", FALSE);
2214 SV** const nonesvp = hv_fetchs(hv, "NONE", FALSE);
2215 SV** const extssvp = hv_fetchs(hv, "EXTRAS", FALSE);
2216 const U8* const typestr = (U8*)SvPV_nolen(*typesvp);
2217 const STRLEN bits = SvUV(*bitssvp);
2218 const STRLEN octets = bits >> 3; /* if bits == 1, then octets == 0 */
2219 const UV none = SvUV(*nonesvp);
2220 const UV end = start + span;
2222 PERL_ARGS_ASSERT_SWASH_GET;
2224 if (bits != 1 && bits != 8 && bits != 16 && bits != 32) {
2225 Perl_croak(aTHX_ "panic: swash_get doesn't expect bits %"UVuf,
2229 /* create and initialize $swatch */
2230 scur = octets ? (span * octets) : (span + 7) / 8;
2231 swatch = newSV(scur);
2233 s = (U8*)SvPVX(swatch);
2234 if (octets && none) {
2235 const U8* const e = s + scur;
2238 *s++ = (U8)(none & 0xff);
2239 else if (bits == 16) {
2240 *s++ = (U8)((none >> 8) & 0xff);
2241 *s++ = (U8)( none & 0xff);
2243 else if (bits == 32) {
2244 *s++ = (U8)((none >> 24) & 0xff);
2245 *s++ = (U8)((none >> 16) & 0xff);
2246 *s++ = (U8)((none >> 8) & 0xff);
2247 *s++ = (U8)( none & 0xff);
2253 (void)memzero((U8*)s, scur + 1);
2255 SvCUR_set(swatch, scur);
2256 s = (U8*)SvPVX(swatch);
2258 /* read $swash->{LIST} */
2259 l = (U8*)SvPV(*listsvp, lcur);
2263 l = S_swash_scan_list_line(aTHX_ l, lend, &min, &max, &val,
2264 cBOOL(octets), typestr);
2269 /* If looking for something beyond this range, go try the next one */
2276 if (!none || val < none) {
2281 for (key = min; key <= max; key++) {
2285 /* offset must be non-negative (start <= min <= key < end) */
2286 offset = octets * (key - start);
2288 s[offset] = (U8)(val & 0xff);
2289 else if (bits == 16) {
2290 s[offset ] = (U8)((val >> 8) & 0xff);
2291 s[offset + 1] = (U8)( val & 0xff);
2293 else if (bits == 32) {
2294 s[offset ] = (U8)((val >> 24) & 0xff);
2295 s[offset + 1] = (U8)((val >> 16) & 0xff);
2296 s[offset + 2] = (U8)((val >> 8) & 0xff);
2297 s[offset + 3] = (U8)( val & 0xff);
2300 if (!none || val < none)
2304 else { /* bits == 1, then val should be ignored */
2308 for (key = min; key <= max; key++) {
2309 const STRLEN offset = (STRLEN)(key - start);
2312 s[offset >> 3] |= 1 << (offset & 7);
2318 /* read $swash->{EXTRAS} */
2319 x = (U8*)SvPV(*extssvp, xcur);
2327 SV **otherbitssvp, *other;
2331 const U8 opc = *x++;
2335 nl = (U8*)memchr(x, '\n', xend - x);
2337 if (opc != '-' && opc != '+' && opc != '!' && opc != '&') {
2339 x = nl + 1; /* 1 is length of "\n" */
2343 x = xend; /* to EXTRAS' end at which \n is not found */
2350 namelen = nl - namestr;
2354 namelen = xend - namestr;
2358 othersvp = hv_fetch(hv, (char *)namestr, namelen, FALSE);
2359 otherhv = MUTABLE_HV(SvRV(*othersvp));
2360 otherbitssvp = hv_fetchs(otherhv, "BITS", FALSE);
2361 otherbits = (STRLEN)SvUV(*otherbitssvp);
2362 if (bits < otherbits)
2363 Perl_croak(aTHX_ "panic: swash_get found swatch size mismatch");
2365 /* The "other" swatch must be destroyed after. */
2366 other = swash_get(*othersvp, start, span);
2367 o = (U8*)SvPV(other, olen);
2370 Perl_croak(aTHX_ "panic: swash_get got improper swatch");
2372 s = (U8*)SvPV(swatch, slen);
2373 if (bits == 1 && otherbits == 1) {
2375 Perl_croak(aTHX_ "panic: swash_get found swatch length mismatch");
2399 STRLEN otheroctets = otherbits >> 3;
2401 U8* const send = s + slen;
2406 if (otherbits == 1) {
2407 otherval = (o[offset >> 3] >> (offset & 7)) & 1;
2411 STRLEN vlen = otheroctets;
2419 if (opc == '+' && otherval)
2420 NOOP; /* replace with otherval */
2421 else if (opc == '!' && !otherval)
2423 else if (opc == '-' && otherval)
2425 else if (opc == '&' && !otherval)
2428 s += octets; /* no replacement */
2433 *s++ = (U8)( otherval & 0xff);
2434 else if (bits == 16) {
2435 *s++ = (U8)((otherval >> 8) & 0xff);
2436 *s++ = (U8)( otherval & 0xff);
2438 else if (bits == 32) {
2439 *s++ = (U8)((otherval >> 24) & 0xff);
2440 *s++ = (U8)((otherval >> 16) & 0xff);
2441 *s++ = (U8)((otherval >> 8) & 0xff);
2442 *s++ = (U8)( otherval & 0xff);
2446 sv_free(other); /* through with it! */
2452 Perl__swash_inversion_hash(pTHX_ SV* swash)
2455 /* Subject to change or removal. For use only in one place in regexec.c
2457 * Returns a hash which is the inversion and closure of a swash mapping.
2458 * For example, consider the input lines:
2463 * The returned hash would have two keys, the utf8 for 006B and the utf8 for
2464 * 006C. The value for each key is an array. For 006C, the array would
2465 * have a two elements, the utf8 for itself, and for 004C. For 006B, there
2466 * would be three elements in its array, the utf8 for 006B, 004B and 212A.
2468 * Essentially, for any code point, it gives all the code points that map to
2469 * it, or the list of 'froms' for that point.
2471 * Currently it only looks at the main body of the swash, and ignores any
2472 * additions or deletions from other swashes */
2476 HV *const hv = MUTABLE_HV(SvRV(swash));
2478 /* The string containing the main body of the table */
2479 SV** const listsvp = hv_fetchs(hv, "LIST", FALSE);
2481 SV** const typesvp = hv_fetchs(hv, "TYPE", FALSE);
2482 SV** const bitssvp = hv_fetchs(hv, "BITS", FALSE);
2483 SV** const nonesvp = hv_fetchs(hv, "NONE", FALSE);
2484 /*SV** const extssvp = hv_fetchs(hv, "EXTRAS", FALSE);*/
2485 const U8* const typestr = (U8*)SvPV_nolen(*typesvp);
2486 const STRLEN bits = SvUV(*bitssvp);
2487 const STRLEN octets = bits >> 3; /* if bits == 1, then octets == 0 */
2488 const UV none = SvUV(*nonesvp);
2492 PERL_ARGS_ASSERT__SWASH_INVERSION_HASH;
2494 /* Must have at least 8 bits to get the mappings */
2495 if (bits != 8 && bits != 16 && bits != 32) {
2496 Perl_croak(aTHX_ "panic: swash_inversion_hash doesn't expect bits %"UVuf,
2500 /* read $swash->{LIST} */
2501 l = (U8*)SvPV(*listsvp, lcur);
2504 /* Go through each input line */
2508 l = S_swash_scan_list_line(aTHX_ l, lend, &min, &max, &val,
2509 cBOOL(octets), typestr);
2514 /* Each element in the range is to be inverted */
2515 for (inverse = min; inverse <= max; inverse++) {
2520 bool found_key = FALSE;
2522 /* The key is the inverse mapping */
2523 char key[UTF8_MAXBYTES+1];
2524 char* key_end = (char *) uvuni_to_utf8((U8*) key, val);
2525 STRLEN key_len = key_end - key;
2527 /* And the value is what the forward mapping is from. */
2528 char utf8_inverse[UTF8_MAXBYTES+1];
2529 char *utf8_inverse_end = (char *) uvuni_to_utf8((U8*) utf8_inverse, inverse);
2531 /* Get the list for the map */
2532 if ((listp = hv_fetch(ret, key, key_len, FALSE))) {
2533 list = (AV*) *listp;
2535 else { /* No entry yet for it: create one */
2537 if (! hv_store(ret, key, key_len, (SV*) list, FALSE)) {
2538 Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
2542 for (i = 0; i < av_len(list); i++) {
2543 SV** entryp = av_fetch(list, i, FALSE);
2545 if (entryp == NULL) {
2546 Perl_croak(aTHX_ "panic: av_fetch() unexpectedly failed");
2549 if (SvCUR(entry) != key_len) {
2552 if (memEQ(key, SvPVX(entry), key_len)) {
2558 element = newSVpvn_flags(key, key_len, SVf_UTF8);
2559 av_push(list, element);
2563 /* Simply add the value to the list */
2564 element = newSVpvn_flags(utf8_inverse, utf8_inverse_end - utf8_inverse, SVf_UTF8);
2565 av_push(list, element);
2567 /* swash_get() increments the value of val for each element in the
2568 * range. That makes more compact tables possible. You can
2569 * express the capitalization, for example, of all consecutive
2570 * letters with a single line: 0061\t007A\t0041 This maps 0061 to
2571 * 0041, 0062 to 0042, etc. I (khw) have never understood 'none',
2572 * and it's not documented, and perhaps not even currently used,
2573 * but I copied the semantics from swash_get(), just in case */
2574 if (!none || val < none) {
2584 =for apidoc uvchr_to_utf8
2586 Adds the UTF-8 representation of the Native codepoint C<uv> to the end
2587 of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
2588 bytes available. The return value is the pointer to the byte after the
2589 end of the new character. In other words,
2591 d = uvchr_to_utf8(d, uv);
2593 is the recommended wide native character-aware way of saying
2600 /* On ASCII machines this is normally a macro but we want a
2601 real function in case XS code wants it
2604 Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv)
2606 PERL_ARGS_ASSERT_UVCHR_TO_UTF8;
2608 return Perl_uvuni_to_utf8_flags(aTHX_ d, NATIVE_TO_UNI(uv), 0);
2612 Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
2614 PERL_ARGS_ASSERT_UVCHR_TO_UTF8_FLAGS;
2616 return Perl_uvuni_to_utf8_flags(aTHX_ d, NATIVE_TO_UNI(uv), flags);
2620 =for apidoc utf8n_to_uvchr
2623 Returns the native character value of the first character in the string
2625 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
2626 length, in bytes, of that character.
2628 Allows length and flags to be passed to low level routine.
2632 /* On ASCII machines this is normally a macro but we want
2633 a real function in case XS code wants it
2636 Perl_utf8n_to_uvchr(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen,
2639 const UV uv = Perl_utf8n_to_uvuni(aTHX_ s, curlen, retlen, flags);
2641 PERL_ARGS_ASSERT_UTF8N_TO_UVCHR;
2643 return UNI_TO_NATIVE(uv);
2647 =for apidoc pv_uni_display
2649 Build to the scalar dsv a displayable version of the string spv,
2650 length len, the displayable version being at most pvlim bytes long
2651 (if longer, the rest is truncated and "..." will be appended).
2653 The flags argument can have UNI_DISPLAY_ISPRINT set to display
2654 isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH
2655 to display the \\[nrfta\\] as the backslashed versions (like '\n')
2656 (UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\).
2657 UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both
2658 UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on.
2660 The pointer to the PV of the dsv is returned.
2664 Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
2669 PERL_ARGS_ASSERT_PV_UNI_DISPLAY;
2673 for (s = (const char *)spv, e = s + len; s < e; s += UTF8SKIP(s)) {
2675 /* This serves double duty as a flag and a character to print after
2676 a \ when flags & UNI_DISPLAY_BACKSLASH is true.
2680 if (pvlim && SvCUR(dsv) >= pvlim) {
2684 u = utf8_to_uvchr((U8*)s, 0);
2686 const unsigned char c = (unsigned char)u & 0xFF;
2687 if (flags & UNI_DISPLAY_BACKSLASH) {
2704 const char string = ok;
2705 sv_catpvs(dsv, "\\");
2706 sv_catpvn(dsv, &string, 1);
2709 /* isPRINT() is the locale-blind version. */
2710 if (!ok && (flags & UNI_DISPLAY_ISPRINT) && isPRINT(c)) {
2711 const char string = c;
2712 sv_catpvn(dsv, &string, 1);
2717 Perl_sv_catpvf(aTHX_ dsv, "\\x{%"UVxf"}", u);
2720 sv_catpvs(dsv, "...");
2726 =for apidoc sv_uni_display
2728 Build to the scalar dsv a displayable version of the scalar sv,
2729 the displayable version being at most pvlim bytes long
2730 (if longer, the rest is truncated and "..." will be appended).
2732 The flags argument is as in pv_uni_display().
2734 The pointer to the PV of the dsv is returned.
2739 Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
2741 PERL_ARGS_ASSERT_SV_UNI_DISPLAY;
2743 return Perl_pv_uni_display(aTHX_ dsv, (const U8*)SvPVX_const(ssv),
2744 SvCUR(ssv), pvlim, flags);
2748 =for apidoc foldEQ_utf8
2750 Returns true if the leading portions of the strings s1 and s2 (either or both
2751 of which may be in UTF-8) are the same case-insensitively; false otherwise.
2752 How far into the strings to compare is determined by other input parameters.
2754 If u1 is true, the string s1 is assumed to be in UTF-8-encoded Unicode;
2755 otherwise it is assumed to be in native 8-bit encoding. Correspondingly for u2
2758 If the byte length l1 is non-zero, it says how far into s1 to check for fold
2759 equality. In other words, s1+l1 will be used as a goal to reach. The
2760 scan will not be considered to be a match unless the goal is reached, and
2761 scanning won't continue past that goal. Correspondingly for l2 with respect to
2764 If pe1 is non-NULL and the pointer it points to is not NULL, that pointer is
2765 considered an end pointer beyond which scanning of s1 will not continue under
2766 any circumstances. This means that if both l1 and pe1 are specified, and pe1
2767 is less than s1+l1, the match will never be successful because it can never
2768 get as far as its goal (and in fact is asserted against). Correspondingly for
2769 pe2 with respect to s2.
2771 At least one of s1 and s2 must have a goal (at least one of l1 and l2 must be
2772 non-zero), and if both do, both have to be
2773 reached for a successful match. Also, if the fold of a character is multiple
2774 characters, all of them must be matched (see tr21 reference below for
2777 Upon a successful match, if pe1 is non-NULL,
2778 it will be set to point to the beginning of the I<next> character of s1 beyond
2779 what was matched. Correspondingly for pe2 and s2.
2781 For case-insensitiveness, the "casefolding" of Unicode is used
2782 instead of upper/lowercasing both the characters, see
2783 http://www.unicode.org/unicode/reports/tr21/ (Case Mappings).
2787 Perl_foldEQ_utf8(pTHX_ const char *s1, char **pe1, register UV l1, bool u1, const char *s2, char **pe2, register UV l2, bool u2)
2790 register const U8 *p1 = (const U8*)s1; /* Point to current char */
2791 register const U8 *p2 = (const U8*)s2;
2792 register const U8 *g1 = NULL; /* goal for s1 */
2793 register const U8 *g2 = NULL;
2794 register const U8 *e1 = NULL; /* Don't scan s1 past this */
2795 register U8 *f1 = NULL; /* Point to current folded */
2796 register const U8 *e2 = NULL;
2797 register U8 *f2 = NULL;
2798 STRLEN n1 = 0, n2 = 0; /* Number of bytes in current char */
2799 U8 foldbuf1[UTF8_MAXBYTES_CASE+1];
2800 U8 foldbuf2[UTF8_MAXBYTES_CASE+1];
2801 U8 natbuf[2]; /* Holds native 8-bit char converted to utf8;
2802 these always fit in 2 bytes */
2804 PERL_ARGS_ASSERT_FOLDEQ_UTF8;
2811 g1 = (const U8*)s1 + l1;
2819 g2 = (const U8*)s2 + l2;
2822 /* Must have at least one goal */
2827 /* Will never match if goal is out-of-bounds */
2828 assert(! e1 || e1 >= g1);
2830 /* Here, there isn't an end pointer, or it is beyond the goal. We
2831 * only go as far as the goal */
2835 assert(e1); /* Must have an end for looking at s1 */
2838 /* Same for goal for s2 */
2840 assert(! e2 || e2 >= g2);
2847 /* Look through both strings, a character at a time */
2848 while (p1 < e1 && p2 < e2) {
2850 /* If at the beginning of a new character in s1, get its fold to use
2851 * and the length of the fold */
2854 to_utf8_fold(p1, foldbuf1, &n1);
2856 else { /* Not utf8, convert to it first and then get fold */
2857 uvuni_to_utf8(natbuf, (UV) NATIVE_TO_UNI(((UV)*p1)));
2858 to_utf8_fold(natbuf, foldbuf1, &n1);
2863 if (n2 == 0) { /* Same for s2 */
2865 to_utf8_fold(p2, foldbuf2, &n2);
2868 uvuni_to_utf8(natbuf, (UV) NATIVE_TO_UNI(((UV)*p2)));
2869 to_utf8_fold(natbuf, foldbuf2, &n2);
2874 /* While there is more to look for in both folds, see if they
2875 * continue to match */
2877 U8 fold_length = UTF8SKIP(f1);
2878 if (fold_length != UTF8SKIP(f2)
2879 || (fold_length == 1 && *f1 != *f2) /* Short circuit memNE
2880 function call for single
2882 || memNE((char*)f1, (char*)f2, fold_length))
2884 return 0; /* mismatch */
2887 /* Here, they matched, advance past them */
2894 /* When reach the end of any fold, advance the input past it */
2896 p1 += u1 ? UTF8SKIP(p1) : 1;
2899 p2 += u2 ? UTF8SKIP(p2) : 1;
2901 } /* End of loop through both strings */
2903 /* A match is defined by each scan that specified an explicit length
2904 * reaching its final goal, and the other not having matched a partial
2905 * character (which can happen when the fold of a character is more than one
2907 if (! ((g1 == 0 || p1 == g1) && (g2 == 0 || p2 == g2)) || n1 || n2) {
2911 /* Successful match. Set output pointers */
2923 * c-indentation-style: bsd
2925 * indent-tabs-mode: t
2928 * ex: set ts=8 sts=4 sw=4 noet: