3 * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 by Larry Wall and
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 * 'Well do I understand your speech,' he answered in the same language;
17 * 'yet few strangers do so. Why then do you not speak in the Common Tongue,
18 * as is the custom in the West, if you wish to be answered?'
20 * ...the travellers perceived that the floor was paved with stones of many
21 * hues; branching runes and strange devices intertwined beneath their feet.
25 #define PERL_IN_UTF8_C
28 static const char unees[] =
29 "Malformed UTF-8 character (unexpected end of string)";
32 =head1 Unicode Support
34 This file contains various utility functions for manipulating UTF8-encoded
35 strings. For the uninitiated, this is a method of representing arbitrary
36 Unicode characters as a variable number of bytes, in such a way that
37 characters in the ASCII range are unmodified, and a zero byte never appears
38 within non-zero characters.
40 =for apidoc A|U8 *|uvuni_to_utf8_flags|U8 *d|UV uv|UV flags
42 Adds the UTF-8 representation of the Unicode codepoint C<uv> to the end
43 of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
44 bytes available. The return value is the pointer to the byte after the
45 end of the new character. In other words,
47 d = uvuni_to_utf8_flags(d, uv, flags);
51 d = uvuni_to_utf8(d, uv);
53 (which is equivalent to)
55 d = uvuni_to_utf8_flags(d, uv, 0);
57 is the recommended Unicode-aware way of saying
65 Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
67 if (ckWARN(WARN_UTF8)) {
68 if (UNICODE_IS_SURROGATE(uv) &&
69 !(flags & UNICODE_ALLOW_SURROGATE))
70 Perl_warner(aTHX_ packWARN(WARN_UTF8), "UTF-16 surrogate 0x%04"UVxf, uv);
72 ((uv >= 0xFDD0 && uv <= 0xFDEF &&
73 !(flags & UNICODE_ALLOW_FDD0))
75 ((uv & 0xFFFE) == 0xFFFE && /* Either FFFE or FFFF. */
76 !(flags & UNICODE_ALLOW_FFFF))) &&
77 /* UNICODE_ALLOW_SUPER includes
78 * FFFEs and FFFFs beyond 0x10FFFF. */
79 ((uv <= PERL_UNICODE_MAX) ||
80 !(flags & UNICODE_ALLOW_SUPER))
82 Perl_warner(aTHX_ packWARN(WARN_UTF8),
83 "Unicode character 0x%04"UVxf" is illegal", uv);
85 if (UNI_IS_INVARIANT(uv)) {
86 *d++ = (U8)UTF_TO_NATIVE(uv);
91 STRLEN len = UNISKIP(uv);
94 *p-- = (U8)UTF_TO_NATIVE((uv & UTF_CONTINUATION_MASK) | UTF_CONTINUATION_MARK);
95 uv >>= UTF_ACCUMULATION_SHIFT;
97 *p = (U8)UTF_TO_NATIVE((uv & UTF_START_MASK(len)) | UTF_START_MARK(len));
100 #else /* Non loop style */
102 *d++ = (U8)(( uv >> 6) | 0xc0);
103 *d++ = (U8)(( uv & 0x3f) | 0x80);
107 *d++ = (U8)(( uv >> 12) | 0xe0);
108 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
109 *d++ = (U8)(( uv & 0x3f) | 0x80);
113 *d++ = (U8)(( uv >> 18) | 0xf0);
114 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
115 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
116 *d++ = (U8)(( uv & 0x3f) | 0x80);
119 if (uv < 0x4000000) {
120 *d++ = (U8)(( uv >> 24) | 0xf8);
121 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
122 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
123 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
124 *d++ = (U8)(( uv & 0x3f) | 0x80);
127 if (uv < 0x80000000) {
128 *d++ = (U8)(( uv >> 30) | 0xfc);
129 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
130 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
131 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
132 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
133 *d++ = (U8)(( uv & 0x3f) | 0x80);
137 if (uv < UTF8_QUAD_MAX)
140 *d++ = 0xfe; /* Can't match U+FEFF! */
141 *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80);
142 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
143 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
144 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
145 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
146 *d++ = (U8)(( uv & 0x3f) | 0x80);
151 *d++ = 0xff; /* Can't match U+FFFE! */
152 *d++ = 0x80; /* 6 Reserved bits */
153 *d++ = (U8)(((uv >> 60) & 0x0f) | 0x80); /* 2 Reserved bits */
154 *d++ = (U8)(((uv >> 54) & 0x3f) | 0x80);
155 *d++ = (U8)(((uv >> 48) & 0x3f) | 0x80);
156 *d++ = (U8)(((uv >> 42) & 0x3f) | 0x80);
157 *d++ = (U8)(((uv >> 36) & 0x3f) | 0x80);
158 *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80);
159 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
160 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
161 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
162 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
163 *d++ = (U8)(( uv & 0x3f) | 0x80);
167 #endif /* Loop style */
171 Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
173 return Perl_uvuni_to_utf8_flags(aTHX_ d, uv, 0);
178 =for apidoc A|STRLEN|is_utf8_char|const U8 *s
180 Tests if some arbitrary number of bytes begins in a valid UTF-8
181 character. Note that an INVARIANT (i.e. ASCII) character is a valid
182 UTF-8 character. The actual number of bytes in the UTF-8 character
183 will be returned if it is valid, otherwise 0.
187 Perl_is_utf8_char(pTHX_ const U8 *s)
193 if (UTF8_IS_INVARIANT(u))
196 if (!UTF8_IS_START(u))
201 if (len < 2 || !UTF8_IS_CONTINUATION(s[1]))
206 u &= UTF_START_MASK(len);
210 if (!UTF8_IS_CONTINUATION(*s))
212 uv = UTF8_ACCUMULATE(uv, *s);
219 if ((STRLEN)UNISKIP(uv) < len)
226 =for apidoc A|bool|is_utf8_string|const U8 *s|STRLEN len
228 Returns true if first C<len> bytes of the given string form a valid
229 UTF-8 string, false otherwise. Note that 'a valid UTF-8 string' does
230 not mean 'a string that contains code points above 0x7F encoded in UTF-8'
231 because a valid ASCII string is a valid UTF-8 string.
237 Perl_is_utf8_string(pTHX_ const U8 *s, STRLEN len)
244 len = strlen((const char *)s);
248 /* Inline the easy bits of is_utf8_char() here for speed... */
249 if (UTF8_IS_INVARIANT(*x))
251 else if (!UTF8_IS_START(*x))
254 /* ... and call is_utf8_char() only if really needed. */
268 =for apidoc A|bool|is_utf8_string_loc|const U8 *s|STRLEN len|const U8 **p
270 Like is_ut8_string but store the location of the failure in
277 Perl_is_utf8_string_loc(pTHX_ const U8 *s, STRLEN len, const U8 **p)
284 len = strlen((const char *)s);
288 /* Inline the easy bits of is_utf8_char() here for speed... */
289 if (UTF8_IS_INVARIANT(*x))
291 else if (!UTF8_IS_START(*x)) {
297 /* ... and call is_utf8_char() only if really needed. */
317 =for apidoc A|UV|utf8n_to_uvuni|const U8 *s|STRLEN curlen|STRLEN *retlen|U32 flags
319 Bottom level UTF-8 decode routine.
320 Returns the unicode code point value of the first character in the string C<s>
321 which is assumed to be in UTF-8 encoding and no longer than C<curlen>;
322 C<retlen> will be set to the length, in bytes, of that character.
324 If C<s> does not point to a well-formed UTF-8 character, the behaviour
325 is dependent on the value of C<flags>: if it contains UTF8_CHECK_ONLY,
326 it is assumed that the caller will raise a warning, and this function
327 will silently just set C<retlen> to C<-1> and return zero. If the
328 C<flags> does not contain UTF8_CHECK_ONLY, warnings about
329 malformations will be given, C<retlen> will be set to the expected
330 length of the UTF-8 character in bytes, and zero will be returned.
332 The C<flags> can also contain various flags to allow deviations from
333 the strict UTF-8 encoding (see F<utf8.h>).
335 Most code should use utf8_to_uvchr() rather than call this directly.
341 Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
346 const bool dowarn = ckWARN_d(WARN_UTF8);
347 const UV startbyte = *s;
348 STRLEN expectlen = 0;
351 /* This list is a superset of the UTF8_ALLOW_XXX. */
353 #define UTF8_WARN_EMPTY 1
354 #define UTF8_WARN_CONTINUATION 2
355 #define UTF8_WARN_NON_CONTINUATION 3
356 #define UTF8_WARN_FE_FF 4
357 #define UTF8_WARN_SHORT 5
358 #define UTF8_WARN_OVERFLOW 6
359 #define UTF8_WARN_SURROGATE 7
360 #define UTF8_WARN_LONG 8
361 #define UTF8_WARN_FFFF 9 /* Also FFFE. */
364 !(flags & UTF8_ALLOW_EMPTY)) {
365 warning = UTF8_WARN_EMPTY;
369 if (UTF8_IS_INVARIANT(uv)) {
372 return (UV) (NATIVE_TO_UTF(*s));
375 if (UTF8_IS_CONTINUATION(uv) &&
376 !(flags & UTF8_ALLOW_CONTINUATION)) {
377 warning = UTF8_WARN_CONTINUATION;
381 if (UTF8_IS_START(uv) && curlen > 1 && !UTF8_IS_CONTINUATION(s[1]) &&
382 !(flags & UTF8_ALLOW_NON_CONTINUATION)) {
383 warning = UTF8_WARN_NON_CONTINUATION;
388 uv = NATIVE_TO_UTF(uv);
390 if ((uv == 0xfe || uv == 0xff) &&
391 !(flags & UTF8_ALLOW_FE_FF)) {
392 warning = UTF8_WARN_FE_FF;
397 if (!(uv & 0x20)) { len = 2; uv &= 0x1f; }
398 else if (!(uv & 0x10)) { len = 3; uv &= 0x0f; }
399 else if (!(uv & 0x08)) { len = 4; uv &= 0x07; }
400 else if (!(uv & 0x04)) { len = 5; uv &= 0x03; }
402 else if (!(uv & 0x02)) { len = 6; uv &= 0x01; }
403 else { len = 7; uv &= 0x01; }
405 else if (!(uv & 0x02)) { len = 6; uv &= 0x01; }
406 else if (!(uv & 0x01)) { len = 7; uv = 0; }
407 else { len = 13; uv = 0; } /* whoa! */
415 if ((curlen < expectlen) &&
416 !(flags & UTF8_ALLOW_SHORT)) {
417 warning = UTF8_WARN_SHORT;
426 if (!UTF8_IS_CONTINUATION(*s) &&
427 !(flags & UTF8_ALLOW_NON_CONTINUATION)) {
429 warning = UTF8_WARN_NON_CONTINUATION;
433 uv = UTF8_ACCUMULATE(uv, *s);
435 /* These cannot be allowed. */
437 if (expectlen != 13 && !(flags & UTF8_ALLOW_LONG)) {
438 warning = UTF8_WARN_LONG;
442 else { /* uv < ouv */
443 /* This cannot be allowed. */
444 warning = UTF8_WARN_OVERFLOW;
452 if (UNICODE_IS_SURROGATE(uv) &&
453 !(flags & UTF8_ALLOW_SURROGATE)) {
454 warning = UTF8_WARN_SURROGATE;
456 } else if ((expectlen > (STRLEN)UNISKIP(uv)) &&
457 !(flags & UTF8_ALLOW_LONG)) {
458 warning = UTF8_WARN_LONG;
460 } else if (UNICODE_IS_ILLEGAL(uv) &&
461 !(flags & UTF8_ALLOW_FFFF)) {
462 warning = UTF8_WARN_FFFF;
470 if (flags & UTF8_CHECK_ONLY) {
477 SV* sv = sv_2mortal(newSVpv("Malformed UTF-8 character ", 0));
480 case 0: /* Intentionally empty. */ break;
481 case UTF8_WARN_EMPTY:
482 Perl_sv_catpv(aTHX_ sv, "(empty string)");
484 case UTF8_WARN_CONTINUATION:
485 Perl_sv_catpvf(aTHX_ sv, "(unexpected continuation byte 0x%02"UVxf", with no preceding start byte)", uv);
487 case UTF8_WARN_NON_CONTINUATION:
489 Perl_sv_catpvf(aTHX_ sv, "(unexpected non-continuation byte 0x%02"UVxf", immediately after start byte 0x%02"UVxf")",
490 (UV)s[1], startbyte);
492 Perl_sv_catpvf(aTHX_ sv, "(unexpected non-continuation byte 0x%02"UVxf", %d byte%s after start byte 0x%02"UVxf", expected %d bytes)",
493 (UV)s[1], s - s0, s - s0 > 1 ? "s" : "", startbyte, expectlen);
496 case UTF8_WARN_FE_FF:
497 Perl_sv_catpvf(aTHX_ sv, "(byte 0x%02"UVxf")", uv);
499 case UTF8_WARN_SHORT:
500 Perl_sv_catpvf(aTHX_ sv, "(%d byte%s, need %d, after start byte 0x%02"UVxf")",
501 curlen, curlen == 1 ? "" : "s", expectlen, startbyte);
502 expectlen = curlen; /* distance for caller to skip */
504 case UTF8_WARN_OVERFLOW:
505 Perl_sv_catpvf(aTHX_ sv, "(overflow at 0x%"UVxf", byte 0x%02x, after start byte 0x%02"UVxf")",
508 case UTF8_WARN_SURROGATE:
509 Perl_sv_catpvf(aTHX_ sv, "(UTF-16 surrogate 0x%04"UVxf")", uv);
512 Perl_sv_catpvf(aTHX_ sv, "(%d byte%s, need %d, after start byte 0x%02"UVxf")",
513 expectlen, expectlen == 1 ? "": "s", UNISKIP(uv), startbyte);
516 Perl_sv_catpvf(aTHX_ sv, "(character 0x%04"UVxf")", uv);
519 Perl_sv_catpv(aTHX_ sv, "(unknown reason)");
527 Perl_warner(aTHX_ packWARN(WARN_UTF8),
528 "%s in %s", s, OP_DESC(PL_op));
530 Perl_warner(aTHX_ packWARN(WARN_UTF8), "%s", s);
535 *retlen = expectlen ? expectlen : len;
541 =for apidoc A|UV|utf8_to_uvchr|const U8 *s|STRLEN *retlen
543 Returns the native character value of the first character in the string C<s>
544 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
545 length, in bytes, of that character.
547 If C<s> does not point to a well-formed UTF-8 character, zero is
548 returned and retlen is set, if possible, to -1.
554 Perl_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen)
556 return Perl_utf8n_to_uvchr(aTHX_ s, UTF8_MAXBYTES, retlen,
557 ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
561 =for apidoc A|UV|utf8_to_uvuni|const U8 *s|STRLEN *retlen
563 Returns the Unicode code point of the first character in the string C<s>
564 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
565 length, in bytes, of that character.
567 This function should only be used when returned UV is considered
568 an index into the Unicode semantic tables (e.g. swashes).
570 If C<s> does not point to a well-formed UTF-8 character, zero is
571 returned and retlen is set, if possible, to -1.
577 Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen)
579 /* Call the low level routine asking for checks */
580 return Perl_utf8n_to_uvuni(aTHX_ s, UTF8_MAXBYTES, retlen,
581 ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
585 =for apidoc A|STRLEN|utf8_length|const U8 *s|const U8 *e
587 Return the length of the UTF-8 char encoded string C<s> in characters.
588 Stops at C<e> (inclusive). If C<e E<lt> s> or if the scan would end
589 up past C<e>, croaks.
595 Perl_utf8_length(pTHX_ const U8 *s, const U8 *e)
599 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g.
600 * the bitops (especially ~) can create illegal UTF-8.
601 * In other words: in Perl UTF-8 is not just for Unicode. */
604 if (ckWARN_d(WARN_UTF8)) {
606 Perl_warner(aTHX_ packWARN(WARN_UTF8),
607 "%s in %s", unees, OP_DESC(PL_op));
609 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
614 const U8 t = UTF8SKIP(s);
617 if (ckWARN_d(WARN_UTF8)) {
619 Perl_warner(aTHX_ packWARN(WARN_UTF8),
620 unees, OP_DESC(PL_op));
622 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
634 =for apidoc A|IV|utf8_distance|const U8 *a|const U8 *b
636 Returns the number of UTF-8 characters between the UTF-8 pointers C<a>
639 WARNING: use only if you *know* that the pointers point inside the
646 Perl_utf8_distance(pTHX_ const U8 *a, const U8 *b)
650 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g.
651 * the bitops (especially ~) can create illegal UTF-8.
652 * In other words: in Perl UTF-8 is not just for Unicode. */
656 const U8 c = UTF8SKIP(a);
659 if (ckWARN_d(WARN_UTF8)) {
661 Perl_warner(aTHX_ packWARN(WARN_UTF8),
662 "%s in %s", unees, OP_DESC(PL_op));
664 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
674 const U8 c = UTF8SKIP(b);
677 if (ckWARN_d(WARN_UTF8)) {
679 Perl_warner(aTHX_ packWARN(WARN_UTF8),
680 "%s in %s", unees, OP_DESC(PL_op));
682 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
695 =for apidoc A|U8 *|utf8_hop|U8 *s|I32 off
697 Return the UTF-8 pointer C<s> displaced by C<off> characters, either
700 WARNING: do not use the following unless you *know* C<off> is within
701 the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned
702 on the first byte of character or just after the last byte of a character.
708 Perl_utf8_hop(pTHX_ const U8 *s, I32 off)
710 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g
711 * the bitops (especially ~) can create illegal UTF-8.
712 * In other words: in Perl UTF-8 is not just for Unicode. */
721 while (UTF8_IS_CONTINUATION(*s))
729 =for apidoc A|U8 *|utf8_to_bytes|U8 *s|STRLEN *len
731 Converts a string C<s> of length C<len> from UTF-8 into byte encoding.
732 Unlike C<bytes_to_utf8>, this over-writes the original string, and
733 updates len to contain the new length.
734 Returns zero on failure, setting C<len> to -1.
740 Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len)
746 /* ensure valid UTF-8 and chars < 256 before updating string */
747 for (send = s + *len; s < send; ) {
750 if (!UTF8_IS_INVARIANT(c) &&
751 (!UTF8_IS_DOWNGRADEABLE_START(c) || (s >= send)
752 || !(c = *s++) || !UTF8_IS_CONTINUATION(c))) {
761 *d++ = (U8)utf8_to_uvchr(s, &ulen);
770 =for apidoc A|U8 *|bytes_from_utf8|const U8 *s|STRLEN *len|bool *is_utf8
772 Converts a string C<s> of length C<len> from UTF-8 into byte encoding.
773 Unlike C<utf8_to_bytes> but like C<bytes_to_utf8>, returns a pointer to
774 the newly-created string, and updates C<len> to contain the new
775 length. Returns the original string if no conversion occurs, C<len>
776 is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to
777 0 if C<s> is converted or contains all 7bit characters.
783 Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8)
793 /* ensure valid UTF-8 and chars < 256 before converting string */
794 for (send = s + *len; s < send;) {
796 if (!UTF8_IS_INVARIANT(c)) {
797 if (UTF8_IS_DOWNGRADEABLE_START(c) && s < send &&
798 (c = *s++) && UTF8_IS_CONTINUATION(c))
807 Newz(801, d, (*len) - count + 1, U8);
808 s = start; start = d;
811 if (!UTF8_IS_INVARIANT(c)) {
812 /* Then it is two-byte encoded */
813 c = UTF8_ACCUMULATE(NATIVE_TO_UTF(c), *s++);
814 c = ASCII_TO_NATIVE(c);
824 =for apidoc A|U8 *|bytes_to_utf8|const U8 *s|STRLEN *len
826 Converts a string C<s> of length C<len> from ASCII into UTF-8 encoding.
827 Returns a pointer to the newly-created string, and sets C<len> to
828 reflect the new length.
830 If you want to convert to UTF-8 from other encodings than ASCII,
831 see sv_recode_to_utf8().
837 Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len)
839 const U8 * const send = s + (*len);
843 Newz(801, d, (*len) * 2 + 1, U8);
847 const UV uv = NATIVE_TO_ASCII(*s++);
848 if (UNI_IS_INVARIANT(uv))
849 *d++ = (U8)UTF_TO_NATIVE(uv);
851 *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
852 *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
861 * Convert native (big-endian) or reversed (little-endian) UTF-16 to UTF-8.
863 * Destination must be pre-extended to 3/2 source. Do not use in-place.
864 * We optimize for native, for obvious reasons. */
867 Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
872 if (bytelen == 1 && p[0] == 0) { /* Be understanding. */
879 Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen %"UVf, (UV)bytelen);
884 UV uv = (p[0] << 8) + p[1]; /* UTF-16BE */
891 *d++ = (U8)(( uv >> 6) | 0xc0);
892 *d++ = (U8)(( uv & 0x3f) | 0x80);
895 if (uv >= 0xd800 && uv < 0xdbff) { /* surrogates */
896 UV low = (p[0] << 8) + p[1];
898 if (low < 0xdc00 || low >= 0xdfff)
899 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
900 uv = ((uv - 0xd800) << 10) + (low - 0xdc00) + 0x10000;
903 *d++ = (U8)(( uv >> 12) | 0xe0);
904 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
905 *d++ = (U8)(( uv & 0x3f) | 0x80);
909 *d++ = (U8)(( uv >> 18) | 0xf0);
910 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
911 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
912 *d++ = (U8)(( uv & 0x3f) | 0x80);
916 *newlen = d - dstart;
920 /* Note: this one is slightly destructive of the source. */
923 Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
926 U8* send = s + bytelen;
933 return utf16_to_utf8(p, d, bytelen, newlen);
936 /* for now these are all defined (inefficiently) in terms of the utf8 versions */
939 Perl_is_uni_alnum(pTHX_ UV c)
941 U8 tmpbuf[UTF8_MAXBYTES+1];
942 uvchr_to_utf8(tmpbuf, c);
943 return is_utf8_alnum(tmpbuf);
947 Perl_is_uni_alnumc(pTHX_ UV c)
949 U8 tmpbuf[UTF8_MAXBYTES+1];
950 uvchr_to_utf8(tmpbuf, c);
951 return is_utf8_alnumc(tmpbuf);
955 Perl_is_uni_idfirst(pTHX_ UV c)
957 U8 tmpbuf[UTF8_MAXBYTES+1];
958 uvchr_to_utf8(tmpbuf, c);
959 return is_utf8_idfirst(tmpbuf);
963 Perl_is_uni_alpha(pTHX_ UV c)
965 U8 tmpbuf[UTF8_MAXBYTES+1];
966 uvchr_to_utf8(tmpbuf, c);
967 return is_utf8_alpha(tmpbuf);
971 Perl_is_uni_ascii(pTHX_ UV c)
973 U8 tmpbuf[UTF8_MAXBYTES+1];
974 uvchr_to_utf8(tmpbuf, c);
975 return is_utf8_ascii(tmpbuf);
979 Perl_is_uni_space(pTHX_ UV c)
981 U8 tmpbuf[UTF8_MAXBYTES+1];
982 uvchr_to_utf8(tmpbuf, c);
983 return is_utf8_space(tmpbuf);
987 Perl_is_uni_digit(pTHX_ UV c)
989 U8 tmpbuf[UTF8_MAXBYTES+1];
990 uvchr_to_utf8(tmpbuf, c);
991 return is_utf8_digit(tmpbuf);
995 Perl_is_uni_upper(pTHX_ UV c)
997 U8 tmpbuf[UTF8_MAXBYTES+1];
998 uvchr_to_utf8(tmpbuf, c);
999 return is_utf8_upper(tmpbuf);
1003 Perl_is_uni_lower(pTHX_ UV c)
1005 U8 tmpbuf[UTF8_MAXBYTES+1];
1006 uvchr_to_utf8(tmpbuf, c);
1007 return is_utf8_lower(tmpbuf);
1011 Perl_is_uni_cntrl(pTHX_ UV c)
1013 U8 tmpbuf[UTF8_MAXBYTES+1];
1014 uvchr_to_utf8(tmpbuf, c);
1015 return is_utf8_cntrl(tmpbuf);
1019 Perl_is_uni_graph(pTHX_ UV c)
1021 U8 tmpbuf[UTF8_MAXBYTES+1];
1022 uvchr_to_utf8(tmpbuf, c);
1023 return is_utf8_graph(tmpbuf);
1027 Perl_is_uni_print(pTHX_ UV c)
1029 U8 tmpbuf[UTF8_MAXBYTES+1];
1030 uvchr_to_utf8(tmpbuf, c);
1031 return is_utf8_print(tmpbuf);
1035 Perl_is_uni_punct(pTHX_ UV c)
1037 U8 tmpbuf[UTF8_MAXBYTES+1];
1038 uvchr_to_utf8(tmpbuf, c);
1039 return is_utf8_punct(tmpbuf);
1043 Perl_is_uni_xdigit(pTHX_ UV c)
1045 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1046 uvchr_to_utf8(tmpbuf, c);
1047 return is_utf8_xdigit(tmpbuf);
1051 Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp)
1053 uvchr_to_utf8(p, c);
1054 return to_utf8_upper(p, p, lenp);
1058 Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp)
1060 uvchr_to_utf8(p, c);
1061 return to_utf8_title(p, p, lenp);
1065 Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp)
1067 uvchr_to_utf8(p, c);
1068 return to_utf8_lower(p, p, lenp);
1072 Perl_to_uni_fold(pTHX_ UV c, U8* p, STRLEN *lenp)
1074 uvchr_to_utf8(p, c);
1075 return to_utf8_fold(p, p, lenp);
1078 /* for now these all assume no locale info available for Unicode > 255 */
1081 Perl_is_uni_alnum_lc(pTHX_ UV c)
1083 return is_uni_alnum(c); /* XXX no locale support yet */
1087 Perl_is_uni_alnumc_lc(pTHX_ UV c)
1089 return is_uni_alnumc(c); /* XXX no locale support yet */
1093 Perl_is_uni_idfirst_lc(pTHX_ UV c)
1095 return is_uni_idfirst(c); /* XXX no locale support yet */
1099 Perl_is_uni_alpha_lc(pTHX_ UV c)
1101 return is_uni_alpha(c); /* XXX no locale support yet */
1105 Perl_is_uni_ascii_lc(pTHX_ UV c)
1107 return is_uni_ascii(c); /* XXX no locale support yet */
1111 Perl_is_uni_space_lc(pTHX_ UV c)
1113 return is_uni_space(c); /* XXX no locale support yet */
1117 Perl_is_uni_digit_lc(pTHX_ UV c)
1119 return is_uni_digit(c); /* XXX no locale support yet */
1123 Perl_is_uni_upper_lc(pTHX_ UV c)
1125 return is_uni_upper(c); /* XXX no locale support yet */
1129 Perl_is_uni_lower_lc(pTHX_ UV c)
1131 return is_uni_lower(c); /* XXX no locale support yet */
1135 Perl_is_uni_cntrl_lc(pTHX_ UV c)
1137 return is_uni_cntrl(c); /* XXX no locale support yet */
1141 Perl_is_uni_graph_lc(pTHX_ UV c)
1143 return is_uni_graph(c); /* XXX no locale support yet */
1147 Perl_is_uni_print_lc(pTHX_ UV c)
1149 return is_uni_print(c); /* XXX no locale support yet */
1153 Perl_is_uni_punct_lc(pTHX_ UV c)
1155 return is_uni_punct(c); /* XXX no locale support yet */
1159 Perl_is_uni_xdigit_lc(pTHX_ UV c)
1161 return is_uni_xdigit(c); /* XXX no locale support yet */
1165 Perl_to_uni_upper_lc(pTHX_ U32 c)
1167 /* XXX returns only the first character -- do not use XXX */
1168 /* XXX no locale support yet */
1170 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1171 return (U32)to_uni_upper(c, tmpbuf, &len);
1175 Perl_to_uni_title_lc(pTHX_ U32 c)
1177 /* XXX returns only the first character XXX -- do not use XXX */
1178 /* XXX no locale support yet */
1180 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1181 return (U32)to_uni_title(c, tmpbuf, &len);
1185 Perl_to_uni_lower_lc(pTHX_ U32 c)
1187 /* XXX returns only the first character -- do not use XXX */
1188 /* XXX no locale support yet */
1190 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1191 return (U32)to_uni_lower(c, tmpbuf, &len);
1195 Perl_is_utf8_alnum(pTHX_ const U8 *p)
1197 if (!is_utf8_char(p))
1200 /* NOTE: "IsWord", not "IsAlnum", since Alnum is a true
1201 * descendant of isalnum(3), in other words, it doesn't
1202 * contain the '_'. --jhi */
1203 PL_utf8_alnum = swash_init("utf8", "IsWord", &PL_sv_undef, 0, 0);
1204 return swash_fetch(PL_utf8_alnum, p, TRUE) != 0;
1205 /* return *p == '_' || is_utf8_alpha(p) || is_utf8_digit(p); */
1206 #ifdef SURPRISINGLY_SLOWER /* probably because alpha is usually true */
1208 PL_utf8_alnum = swash_init("utf8", "",
1209 sv_2mortal(newSVpv("+utf8::IsAlpha\n+utf8::IsDigit\n005F\n",0)), 0, 0);
1210 return swash_fetch(PL_utf8_alnum, p, TRUE) != 0;
1215 Perl_is_utf8_alnumc(pTHX_ const U8 *p)
1217 if (!is_utf8_char(p))
1220 PL_utf8_alnum = swash_init("utf8", "IsAlnumC", &PL_sv_undef, 0, 0);
1221 return swash_fetch(PL_utf8_alnum, p, TRUE) != 0;
1222 /* return is_utf8_alpha(p) || is_utf8_digit(p); */
1223 #ifdef SURPRISINGLY_SLOWER /* probably because alpha is usually true */
1225 PL_utf8_alnum = swash_init("utf8", "",
1226 sv_2mortal(newSVpv("+utf8::IsAlpha\n+utf8::IsDigit\n005F\n",0)), 0, 0);
1227 return swash_fetch(PL_utf8_alnum, p, TRUE) != 0;
1232 Perl_is_utf8_idfirst(pTHX_ const U8 *p) /* The naming is historical. */
1236 if (!is_utf8_char(p))
1238 if (!PL_utf8_idstart) /* is_utf8_idstart would be more logical. */
1239 PL_utf8_idstart = swash_init("utf8", "IdStart", &PL_sv_undef, 0, 0);
1240 return swash_fetch(PL_utf8_idstart, p, TRUE) != 0;
1244 Perl_is_utf8_idcont(pTHX_ const U8 *p)
1248 if (!is_utf8_char(p))
1250 if (!PL_utf8_idcont)
1251 PL_utf8_idcont = swash_init("utf8", "IdContinue", &PL_sv_undef, 0, 0);
1252 return swash_fetch(PL_utf8_idcont, p, TRUE) != 0;
1256 Perl_is_utf8_alpha(pTHX_ const U8 *p)
1258 if (!is_utf8_char(p))
1261 PL_utf8_alpha = swash_init("utf8", "IsAlpha", &PL_sv_undef, 0, 0);
1262 return swash_fetch(PL_utf8_alpha, p, TRUE) != 0;
1266 Perl_is_utf8_ascii(pTHX_ const U8 *p)
1268 if (!is_utf8_char(p))
1271 PL_utf8_ascii = swash_init("utf8", "IsAscii", &PL_sv_undef, 0, 0);
1272 return swash_fetch(PL_utf8_ascii, p, TRUE) != 0;
1276 Perl_is_utf8_space(pTHX_ const U8 *p)
1278 if (!is_utf8_char(p))
1281 PL_utf8_space = swash_init("utf8", "IsSpacePerl", &PL_sv_undef, 0, 0);
1282 return swash_fetch(PL_utf8_space, p, TRUE) != 0;
1286 Perl_is_utf8_digit(pTHX_ const U8 *p)
1288 if (!is_utf8_char(p))
1291 PL_utf8_digit = swash_init("utf8", "IsDigit", &PL_sv_undef, 0, 0);
1292 return swash_fetch(PL_utf8_digit, p, TRUE) != 0;
1296 Perl_is_utf8_upper(pTHX_ const U8 *p)
1298 if (!is_utf8_char(p))
1301 PL_utf8_upper = swash_init("utf8", "IsUppercase", &PL_sv_undef, 0, 0);
1302 return swash_fetch(PL_utf8_upper, p, TRUE) != 0;
1306 Perl_is_utf8_lower(pTHX_ const U8 *p)
1308 if (!is_utf8_char(p))
1311 PL_utf8_lower = swash_init("utf8", "IsLowercase", &PL_sv_undef, 0, 0);
1312 return swash_fetch(PL_utf8_lower, p, TRUE) != 0;
1316 Perl_is_utf8_cntrl(pTHX_ const U8 *p)
1318 if (!is_utf8_char(p))
1321 PL_utf8_cntrl = swash_init("utf8", "IsCntrl", &PL_sv_undef, 0, 0);
1322 return swash_fetch(PL_utf8_cntrl, p, TRUE) != 0;
1326 Perl_is_utf8_graph(pTHX_ const U8 *p)
1328 if (!is_utf8_char(p))
1331 PL_utf8_graph = swash_init("utf8", "IsGraph", &PL_sv_undef, 0, 0);
1332 return swash_fetch(PL_utf8_graph, p, TRUE) != 0;
1336 Perl_is_utf8_print(pTHX_ const U8 *p)
1338 if (!is_utf8_char(p))
1341 PL_utf8_print = swash_init("utf8", "IsPrint", &PL_sv_undef, 0, 0);
1342 return swash_fetch(PL_utf8_print, p, TRUE) != 0;
1346 Perl_is_utf8_punct(pTHX_ const U8 *p)
1348 if (!is_utf8_char(p))
1351 PL_utf8_punct = swash_init("utf8", "IsPunct", &PL_sv_undef, 0, 0);
1352 return swash_fetch(PL_utf8_punct, p, TRUE) != 0;
1356 Perl_is_utf8_xdigit(pTHX_ const U8 *p)
1358 if (!is_utf8_char(p))
1360 if (!PL_utf8_xdigit)
1361 PL_utf8_xdigit = swash_init("utf8", "IsXDigit", &PL_sv_undef, 0, 0);
1362 return swash_fetch(PL_utf8_xdigit, p, TRUE) != 0;
1366 Perl_is_utf8_mark(pTHX_ const U8 *p)
1368 if (!is_utf8_char(p))
1371 PL_utf8_mark = swash_init("utf8", "IsM", &PL_sv_undef, 0, 0);
1372 return swash_fetch(PL_utf8_mark, p, TRUE) != 0;
1376 =for apidoc A|UV|to_utf8_case|U8 *p|U8* ustrp|STRLEN *lenp|SV **swash|char *normal|char *special
1378 The "p" contains the pointer to the UTF-8 string encoding
1379 the character that is being converted.
1381 The "ustrp" is a pointer to the character buffer to put the
1382 conversion result to. The "lenp" is a pointer to the length
1385 The "swashp" is a pointer to the swash to use.
1387 Both the special and normal mappings are stored lib/unicore/To/Foo.pl,
1388 and loaded by SWASHGET, using lib/utf8_heavy.pl. The special (usually,
1389 but not always, a multicharacter mapping), is tried first.
1391 The "special" is a string like "utf8::ToSpecLower", which means the
1392 hash %utf8::ToSpecLower. The access to the hash is through
1393 Perl_to_utf8_case().
1395 The "normal" is a string like "ToLower" which means the swash
1401 Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, const char *normal, const char *special)
1403 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1406 const UV uv0 = utf8_to_uvchr(p, 0);
1407 /* The NATIVE_TO_UNI() and UNI_TO_NATIVE() mappings
1408 * are necessary in EBCDIC, they are redundant no-ops
1409 * in ASCII-ish platforms, and hopefully optimized away. */
1410 const UV uv1 = NATIVE_TO_UNI(uv0);
1411 uvuni_to_utf8(tmpbuf, uv1);
1413 if (!*swashp) /* load on-demand */
1414 *swashp = swash_init("utf8", normal, &PL_sv_undef, 4, 0);
1416 /* The 0xDF is the only special casing Unicode code point below 0x100. */
1417 if (special && (uv1 == 0xDF || uv1 > 0xFF)) {
1418 /* It might be "special" (sometimes, but not always,
1419 * a multicharacter mapping) */
1423 if ((hv = get_hv(special, FALSE)) &&
1424 (svp = hv_fetch(hv, (const char*)tmpbuf, UNISKIP(uv1), FALSE)) &&
1428 s = SvPV(*svp, len);
1430 len = uvuni_to_utf8(ustrp, NATIVE_TO_UNI(*(U8*)s)) - ustrp;
1433 /* If we have EBCDIC we need to remap the characters
1434 * since any characters in the low 256 are Unicode
1435 * code points, not EBCDIC. */
1436 U8 *t = (U8*)s, *tend = t + len, *d;
1443 UV c = utf8_to_uvchr(t, &tlen);
1445 d = uvchr_to_utf8(d, UNI_TO_NATIVE(c));
1454 d = uvchr_to_utf8(d, UNI_TO_NATIVE(*t));
1459 Copy(tmpbuf, ustrp, len, U8);
1461 Copy(s, ustrp, len, U8);
1467 if (!len && *swashp) {
1468 UV uv2 = swash_fetch(*swashp, tmpbuf, TRUE);
1471 /* It was "normal" (a single character mapping). */
1472 UV uv3 = UNI_TO_NATIVE(uv2);
1474 len = uvchr_to_utf8(ustrp, uv3) - ustrp;
1478 if (!len) /* Neither: just copy. */
1479 len = uvchr_to_utf8(ustrp, uv0) - ustrp;
1484 return len ? utf8_to_uvchr(ustrp, 0) : 0;
1488 =for apidoc A|UV|to_utf8_upper|const U8 *p|U8 *ustrp|STRLEN *lenp
1490 Convert the UTF-8 encoded character at p to its uppercase version and
1491 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1492 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since
1493 the uppercase version may be longer than the original character.
1495 The first character of the uppercased version is returned
1496 (but note, as explained above, that there may be more.)
1501 Perl_to_utf8_upper(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1503 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1504 &PL_utf8_toupper, "ToUpper", "utf8::ToSpecUpper");
1508 =for apidoc A|UV|to_utf8_title|const U8 *p|U8 *ustrp|STRLEN *lenp
1510 Convert the UTF-8 encoded character at p to its titlecase version and
1511 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1512 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
1513 titlecase version may be longer than the original character.
1515 The first character of the titlecased version is returned
1516 (but note, as explained above, that there may be more.)
1521 Perl_to_utf8_title(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1523 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1524 &PL_utf8_totitle, "ToTitle", "utf8::ToSpecTitle");
1528 =for apidoc A|UV|to_utf8_lower|const U8 *p|U8 *ustrp|STRLEN *lenp
1530 Convert the UTF-8 encoded character at p to its lowercase version and
1531 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1532 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
1533 lowercase version may be longer than the original character.
1535 The first character of the lowercased version is returned
1536 (but note, as explained above, that there may be more.)
1541 Perl_to_utf8_lower(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1543 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1544 &PL_utf8_tolower, "ToLower", "utf8::ToSpecLower");
1548 =for apidoc A|UV|to_utf8_fold|const U8 *p|U8 *ustrp|STRLEN *lenp
1550 Convert the UTF-8 encoded character at p to its foldcase version and
1551 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1552 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
1553 foldcase version may be longer than the original character (up to
1556 The first character of the foldcased version is returned
1557 (but note, as explained above, that there may be more.)
1562 Perl_to_utf8_fold(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1564 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1565 &PL_utf8_tofold, "ToFold", "utf8::ToSpecFold");
1568 /* a "swash" is a swatch hash */
1571 Perl_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none)
1575 SV* tokenbufsv = sv_newmortal();
1577 const size_t pkg_len = strlen(pkg);
1578 const size_t name_len = strlen(name);
1579 HV *stash = gv_stashpvn(pkg, pkg_len, FALSE);
1582 PUSHSTACKi(PERLSI_MAGIC);
1587 if (!gv_fetchmeth(stash, "SWASHNEW", 8, -1)) { /* demand load utf8 */
1589 errsv_save = newSVsv(ERRSV);
1590 Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, newSVpvn(pkg,pkg_len),
1593 sv_setsv(ERRSV, errsv_save);
1594 SvREFCNT_dec(errsv_save);
1600 PUSHs(sv_2mortal(newSVpvn(pkg, pkg_len)));
1601 PUSHs(sv_2mortal(newSVpvn(name, name_len)));
1603 PUSHs(sv_2mortal(newSViv(minbits)));
1604 PUSHs(sv_2mortal(newSViv(none)));
1606 if (IN_PERL_COMPILETIME) {
1607 /* XXX ought to be handled by lex_start */
1610 sv_setpv(tokenbufsv, PL_tokenbuf);
1612 errsv_save = newSVsv(ERRSV);
1613 if (call_method("SWASHNEW", G_SCALAR))
1614 retval = newSVsv(*PL_stack_sp--);
1616 retval = &PL_sv_undef;
1618 sv_setsv(ERRSV, errsv_save);
1619 SvREFCNT_dec(errsv_save);
1622 if (IN_PERL_COMPILETIME) {
1624 const char* pv = SvPV(tokenbufsv, len);
1626 Copy(pv, PL_tokenbuf, len+1, char);
1627 PL_curcop->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
1629 if (!SvROK(retval) || SvTYPE(SvRV(retval)) != SVt_PVHV) {
1631 Perl_croak(aTHX_ "Can't find Unicode property definition \"%"SVf"\"",
1633 Perl_croak(aTHX_ "SWASHNEW didn't return an HV ref");
1639 /* This API is wrong for special case conversions since we may need to
1640 * return several Unicode characters for a single Unicode character
1641 * (see lib/unicore/SpecCase.txt) The SWASHGET in lib/utf8_heavy.pl is
1642 * the lower-level routine, and it is similarly broken for returning
1643 * multiple values. --jhi */
1645 Perl_swash_fetch(pTHX_ SV *sv, const U8 *ptr, bool do_utf8)
1648 HV* hv = (HV*)SvRV(sv);
1657 UV c = NATIVE_TO_ASCII(*ptr);
1659 if (!do_utf8 && !UNI_IS_INVARIANT(c)) {
1660 tmputf8[0] = (U8)UTF8_EIGHT_BIT_HI(c);
1661 tmputf8[1] = (U8)UTF8_EIGHT_BIT_LO(c);
1664 /* Given a UTF-X encoded char 0xAA..0xYY,0xZZ
1665 * then the "swatch" is a vec() for al the chars which start
1667 * So the key in the hash (klen) is length of encoded char -1
1669 klen = UTF8SKIP(ptr) - 1;
1674 /* If char in invariant then swatch is for all the invariant chars
1675 * In both UTF-8 and UTF-8-MOD that happens to be UTF_CONTINUATION_MARK
1677 needents = UTF_CONTINUATION_MARK;
1678 off = NATIVE_TO_UTF(ptr[klen]);
1682 /* If char is encoded then swatch is for the prefix */
1683 needents = (1 << UTF_ACCUMULATION_SHIFT);
1684 off = NATIVE_TO_UTF(ptr[klen]) & UTF_CONTINUATION_MASK;
1688 * This single-entry cache saves about 1/3 of the utf8 overhead in test
1689 * suite. (That is, only 7-8% overall over just a hash cache. Still,
1690 * it's nothing to sniff at.) Pity we usually come through at least
1691 * two function calls to get here...
1693 * NB: this code assumes that swatches are never modified, once generated!
1696 if (hv == PL_last_swash_hv &&
1697 klen == PL_last_swash_klen &&
1698 (!klen || memEQ((char *)ptr, (char *)PL_last_swash_key, klen)) )
1700 tmps = PL_last_swash_tmps;
1701 slen = PL_last_swash_slen;
1704 /* Try our second-level swatch cache, kept in a hash. */
1705 SV** svp = hv_fetch(hv, (const char*)ptr, klen, FALSE);
1707 /* If not cached, generate it via utf8::SWASHGET */
1708 if (!svp || !SvPOK(*svp) || !(tmps = (U8*)SvPV(*svp, slen))) {
1710 /* We use utf8n_to_uvuni() as we want an index into
1711 Unicode tables, not a native character number.
1713 UV code_point = utf8n_to_uvuni(ptr, UTF8_MAXBYTES, 0,
1715 0 : UTF8_ALLOW_ANY);
1720 PUSHSTACKi(PERLSI_MAGIC);
1724 /* On EBCDIC & ~(0xA0-1) isn't a useful thing to do */
1725 PUSHs(sv_2mortal(newSViv((klen) ?
1726 (code_point & ~(needents - 1)) : 0)));
1727 PUSHs(sv_2mortal(newSViv(needents)));
1729 errsv_save = newSVsv(ERRSV);
1730 if (call_method("SWASHGET", G_SCALAR))
1731 retval = newSVsv(*PL_stack_sp--);
1733 retval = &PL_sv_undef;
1735 sv_setsv(ERRSV, errsv_save);
1736 SvREFCNT_dec(errsv_save);
1740 if (IN_PERL_COMPILETIME)
1741 PL_curcop->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
1743 svp = hv_store(hv, (const char *)ptr, klen, retval, 0);
1745 if (!svp || !(tmps = (U8*)SvPV(*svp, slen)) || (slen << 3) < needents)
1746 Perl_croak(aTHX_ "SWASHGET didn't return result of proper length");
1749 PL_last_swash_hv = hv;
1750 PL_last_swash_klen = klen;
1751 PL_last_swash_tmps = tmps;
1752 PL_last_swash_slen = slen;
1754 Copy(ptr, PL_last_swash_key, klen, U8);
1757 switch ((int)((slen << 3) / needents)) {
1759 bit = 1 << (off & 7);
1761 return (tmps[off] & bit) != 0;
1766 return (tmps[off] << 8) + tmps[off + 1] ;
1769 return (tmps[off] << 24) + (tmps[off+1] << 16) + (tmps[off+2] << 8) + tmps[off + 3] ;
1771 Perl_croak(aTHX_ "panic: swash_fetch");
1777 =for apidoc A|U8 *|uvchr_to_utf8|U8 *d|UV uv
1779 Adds the UTF-8 representation of the Native codepoint C<uv> to the end
1780 of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
1781 bytes available. The return value is the pointer to the byte after the
1782 end of the new character. In other words,
1784 d = uvchr_to_utf8(d, uv);
1786 is the recommended wide native character-aware way of saying
1793 /* On ASCII machines this is normally a macro but we want a
1794 real function in case XS code wants it
1796 #undef Perl_uvchr_to_utf8
1798 Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv)
1800 return Perl_uvuni_to_utf8_flags(aTHX_ d, NATIVE_TO_UNI(uv), 0);
1804 Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
1806 return Perl_uvuni_to_utf8_flags(aTHX_ d, NATIVE_TO_UNI(uv), flags);
1810 =for apidoc A|UV|utf8n_to_uvchr|U8 *s|STRLEN curlen|STRLEN *retlen|U32 flags
1812 Returns the native character value of the first character in the string C<s>
1813 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
1814 length, in bytes, of that character.
1816 Allows length and flags to be passed to low level routine.
1820 /* On ASCII machines this is normally a macro but we want
1821 a real function in case XS code wants it
1823 #undef Perl_utf8n_to_uvchr
1825 Perl_utf8n_to_uvchr(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
1827 UV uv = Perl_utf8n_to_uvuni(aTHX_ s, curlen, retlen, flags);
1828 return UNI_TO_NATIVE(uv);
1832 =for apidoc A|char *|pv_uni_display|SV *dsv|U8 *spv|STRLEN len|STRLEN pvlim|UV flags
1834 Build to the scalar dsv a displayable version of the string spv,
1835 length len, the displayable version being at most pvlim bytes long
1836 (if longer, the rest is truncated and "..." will be appended).
1838 The flags argument can have UNI_DISPLAY_ISPRINT set to display
1839 isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH
1840 to display the \\[nrfta\\] as the backslashed versions (like '\n')
1841 (UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\).
1842 UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both
1843 UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on.
1845 The pointer to the PV of the dsv is returned.
1849 Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
1854 sv_setpvn(dsv, "", 0);
1855 for (s = (const char *)spv, e = s + len; s < e; s += UTF8SKIP(s)) {
1857 /* This serves double duty as a flag and a character to print after
1858 a \ when flags & UNI_DISPLAY_BACKSLASH is true.
1862 if (pvlim && SvCUR(dsv) >= pvlim) {
1866 u = utf8_to_uvchr((U8*)s, 0);
1868 unsigned char c = (unsigned char)u & 0xFF;
1869 if (!ok && (flags & UNI_DISPLAY_BACKSLASH)) {
1886 Perl_sv_catpvf(aTHX_ dsv, "\\%c", ok);
1889 /* isPRINT() is the locale-blind version. */
1890 if (!ok && (flags & UNI_DISPLAY_ISPRINT) && isPRINT(c)) {
1891 Perl_sv_catpvf(aTHX_ dsv, "%c", c);
1896 Perl_sv_catpvf(aTHX_ dsv, "\\x{%"UVxf"}", u);
1899 sv_catpvn(dsv, "...", 3);
1905 =for apidoc A|char *|sv_uni_display|SV *dsv|SV *ssv|STRLEN pvlim|UV flags
1907 Build to the scalar dsv a displayable version of the scalar sv,
1908 the displayable version being at most pvlim bytes long
1909 (if longer, the rest is truncated and "..." will be appended).
1911 The flags argument is as in pv_uni_display().
1913 The pointer to the PV of the dsv is returned.
1917 Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
1919 return Perl_pv_uni_display(aTHX_ dsv, (U8*)SvPVX(ssv), SvCUR(ssv),
1924 =for apidoc A|I32|ibcmp_utf8|const char *s1|char **pe1|register UV l1|bool u1|const char *s2|char **pe2|register UV l2|bool u2
1926 Return true if the strings s1 and s2 differ case-insensitively, false
1927 if not (if they are equal case-insensitively). If u1 is true, the
1928 string s1 is assumed to be in UTF-8-encoded Unicode. If u2 is true,
1929 the string s2 is assumed to be in UTF-8-encoded Unicode. If u1 or u2
1930 are false, the respective string is assumed to be in native 8-bit
1933 If the pe1 and pe2 are non-NULL, the scanning pointers will be copied
1934 in there (they will point at the beginning of the I<next> character).
1935 If the pointers behind pe1 or pe2 are non-NULL, they are the end
1936 pointers beyond which scanning will not continue under any
1937 circumstances. If the byte lengths l1 and l2 are non-zero, s1+l1 and
1938 s2+l2 will be used as goal end pointers that will also stop the scan,
1939 and which qualify towards defining a successful match: all the scans
1940 that define an explicit length must reach their goal pointers for
1941 a match to succeed).
1943 For case-insensitiveness, the "casefolding" of Unicode is used
1944 instead of upper/lowercasing both the characters, see
1945 http://www.unicode.org/unicode/reports/tr21/ (Case Mappings).
1949 Perl_ibcmp_utf8(pTHX_ const char *s1, char **pe1, register UV l1, bool u1, const char *s2, char **pe2, register UV l2, bool u2)
1951 register const U8 *p1 = (const U8*)s1;
1952 register const U8 *p2 = (const U8*)s2;
1953 register const U8 *f1 = 0, *f2 = 0;
1954 register U8 *e1 = 0, *q1 = 0;
1955 register U8 *e2 = 0, *q2 = 0;
1956 STRLEN n1 = 0, n2 = 0;
1957 U8 foldbuf1[UTF8_MAXBYTES_CASE+1];
1958 U8 foldbuf2[UTF8_MAXBYTES_CASE+1];
1960 STRLEN foldlen1, foldlen2;
1965 if (e1 == 0 || (l1 && l1 < (UV)(e1 - (const U8*)s1)))
1966 f1 = (const U8*)s1 + l1;
1969 if (e2 == 0 || (l2 && l2 < (UV)(e2 - (const U8*)s2)))
1970 f2 = (const U8*)s2 + l2;
1972 if ((e1 == 0 && f1 == 0) || (e2 == 0 && f2 == 0) || (f1 == 0 && f2 == 0))
1973 return 1; /* mismatch; possible infinite loop or false positive */
1976 natbuf[1] = 0; /* Need to terminate the buffer. */
1978 while ((e1 == 0 || p1 < e1) &&
1979 (f1 == 0 || p1 < f1) &&
1980 (e2 == 0 || p2 < e2) &&
1981 (f2 == 0 || p2 < f2)) {
1984 to_utf8_fold(p1, foldbuf1, &foldlen1);
1987 to_utf8_fold(natbuf, foldbuf1, &foldlen1);
1994 to_utf8_fold(p2, foldbuf2, &foldlen2);
1997 to_utf8_fold(natbuf, foldbuf2, &foldlen2);
2003 if ( UTF8SKIP(q1) != UTF8SKIP(q2) ||
2004 (UTF8SKIP(q1) == 1 && *q1 != *q2) ||
2005 memNE((char*)q1, (char*)q2, UTF8SKIP(q1)) )
2006 return 1; /* mismatch */
2013 p1 += u1 ? UTF8SKIP(p1) : 1;
2015 p2 += u2 ? UTF8SKIP(p2) : 1;
2019 /* A match is defined by all the scans that specified
2020 * an explicit length reaching their final goals. */
2021 match = (f1 == 0 || p1 == f1) && (f2 == 0 || p2 == f2);
2030 return match ? 0 : 1; /* 0 match, 1 mismatch */
2035 * c-indentation-style: bsd
2037 * indent-tabs-mode: t
2040 * vim: ts=8 sts=4 sw=4 noet: