3 * Copyright (C) 2000, 2001, 2002, 2003, by Larry Wall and others
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
11 * 'What a fix!' said Sam. 'That's the one place in all the lands we've ever
12 * heard of that we don't want to see any closer; and that's the one place
13 * we're trying to get to! And that's just where we can't get, nohow.'
15 * 'Well do I understand your speech,' he answered in the same language;
16 * 'yet few strangers do so. Why then do you not speak in the Common Tongue,
17 * as is the custom in the West, if you wish to be answered?'
19 * ...the travellers perceived that the floor was paved with stones of many
20 * hues; branching runes and strange devices intertwined beneath their feet.
24 #define PERL_IN_UTF8_C
27 static char unees[] = "Malformed UTF-8 character (unexpected end of string)";
30 =head1 Unicode Support
32 =for apidoc A|U8 *|uvuni_to_utf8_flags|U8 *d|UV uv|UV flags
34 Adds the UTF-8 representation of the Unicode codepoint C<uv> to the end
35 of the string C<d>; C<d> should be have at least C<UTF8_MAXLEN+1> free
36 bytes available. The return value is the pointer to the byte after the
37 end of the new character. In other words,
39 d = uvuni_to_utf8_flags(d, uv, flags);
43 d = uvuni_to_utf8(d, uv);
45 (which is equivalent to)
47 d = uvuni_to_utf8_flags(d, uv, 0);
49 is the recommended Unicode-aware way of saying
57 Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
59 if (ckWARN(WARN_UTF8)) {
60 if (UNICODE_IS_SURROGATE(uv) &&
61 !(flags & UNICODE_ALLOW_SURROGATE))
62 Perl_warner(aTHX_ packWARN(WARN_UTF8), "UTF-16 surrogate 0x%04"UVxf, uv);
64 ((uv >= 0xFDD0 && uv <= 0xFDEF &&
65 !(flags & UNICODE_ALLOW_FDD0))
67 ((uv & 0xFFFE) == 0xFFFE && /* Either FFFE or FFFF. */
68 !(flags & UNICODE_ALLOW_FFFF))) &&
69 /* UNICODE_ALLOW_SUPER includes
70 * FFFEs and FFFFs beyond 0x10FFFF. */
71 ((uv <= PERL_UNICODE_MAX) ||
72 !(flags & UNICODE_ALLOW_SUPER))
74 Perl_warner(aTHX_ packWARN(WARN_UTF8),
75 "Unicode character 0x%04"UVxf" is illegal", uv);
77 if (UNI_IS_INVARIANT(uv)) {
78 *d++ = (U8)UTF_TO_NATIVE(uv);
83 STRLEN len = UNISKIP(uv);
86 *p-- = (U8)UTF_TO_NATIVE((uv & UTF_CONTINUATION_MASK) | UTF_CONTINUATION_MARK);
87 uv >>= UTF_ACCUMULATION_SHIFT;
89 *p = (U8)UTF_TO_NATIVE((uv & UTF_START_MASK(len)) | UTF_START_MARK(len));
92 #else /* Non loop style */
94 *d++ = (U8)(( uv >> 6) | 0xc0);
95 *d++ = (U8)(( uv & 0x3f) | 0x80);
99 *d++ = (U8)(( uv >> 12) | 0xe0);
100 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
101 *d++ = (U8)(( uv & 0x3f) | 0x80);
105 *d++ = (U8)(( uv >> 18) | 0xf0);
106 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
107 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
108 *d++ = (U8)(( uv & 0x3f) | 0x80);
111 if (uv < 0x4000000) {
112 *d++ = (U8)(( uv >> 24) | 0xf8);
113 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
114 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
115 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
116 *d++ = (U8)(( uv & 0x3f) | 0x80);
119 if (uv < 0x80000000) {
120 *d++ = (U8)(( uv >> 30) | 0xfc);
121 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
122 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
123 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
124 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
125 *d++ = (U8)(( uv & 0x3f) | 0x80);
129 if (uv < UTF8_QUAD_MAX)
132 *d++ = 0xfe; /* Can't match U+FEFF! */
133 *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80);
134 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
135 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
136 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
137 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
138 *d++ = (U8)(( uv & 0x3f) | 0x80);
143 *d++ = 0xff; /* Can't match U+FFFE! */
144 *d++ = 0x80; /* 6 Reserved bits */
145 *d++ = (U8)(((uv >> 60) & 0x0f) | 0x80); /* 2 Reserved bits */
146 *d++ = (U8)(((uv >> 54) & 0x3f) | 0x80);
147 *d++ = (U8)(((uv >> 48) & 0x3f) | 0x80);
148 *d++ = (U8)(((uv >> 42) & 0x3f) | 0x80);
149 *d++ = (U8)(((uv >> 36) & 0x3f) | 0x80);
150 *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80);
151 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
152 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
153 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
154 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
155 *d++ = (U8)(( uv & 0x3f) | 0x80);
159 #endif /* Loop style */
163 Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
165 return Perl_uvuni_to_utf8_flags(aTHX_ d, uv, 0);
170 =for apidoc A|STRLEN|is_utf8_char|U8 *s
172 Tests if some arbitrary number of bytes begins in a valid UTF-8
173 character. Note that an INVARIANT (i.e. ASCII) character is a valid
174 UTF-8 character. The actual number of bytes in the UTF-8 character
175 will be returned if it is valid, otherwise 0.
179 Perl_is_utf8_char(pTHX_ U8 *s)
185 if (UTF8_IS_INVARIANT(u))
188 if (!UTF8_IS_START(u))
193 if (len < 2 || !UTF8_IS_CONTINUATION(s[1]))
198 u &= UTF_START_MASK(len);
202 if (!UTF8_IS_CONTINUATION(*s))
204 uv = UTF8_ACCUMULATE(uv, *s);
211 if ((STRLEN)UNISKIP(uv) < len)
218 =for apidoc A|bool|is_utf8_string|U8 *s|STRLEN len
220 Returns true if first C<len> bytes of the given string form a valid
221 UTF-8 string, false otherwise. Note that 'a valid UTF-8 string' does
222 not mean 'a string that contains code points above 0x7F encoded in UTF-8'
223 because a valid ASCII string is a valid UTF-8 string.
229 Perl_is_utf8_string(pTHX_ U8 *s, STRLEN len)
236 len = strlen((char *)s);
240 /* Inline the easy bits of is_utf8_char() here for speed... */
241 if (UTF8_IS_INVARIANT(*x))
243 else if (!UTF8_IS_START(*x))
246 /* ... and call is_utf8_char() only if really needed. */
260 =for apidoc A|bool|is_utf8_string_loc|U8 *s|STRLEN len|U8 **p
262 Like is_ut8_string but store the location of the failure in
269 Perl_is_utf8_string_loc(pTHX_ U8 *s, STRLEN len, U8 **p)
276 len = strlen((char *)s);
280 /* Inline the easy bits of is_utf8_char() here for speed... */
281 if (UTF8_IS_INVARIANT(*x))
283 else if (!UTF8_IS_START(*x)) {
289 /* ... and call is_utf8_char() only if really needed. */
309 =for apidoc A|UV|utf8n_to_uvuni|U8 *s|STRLEN curlen|STRLEN *retlen|U32 flags
311 Bottom level UTF-8 decode routine.
312 Returns the unicode code point value of the first character in the string C<s>
313 which is assumed to be in UTF-8 encoding and no longer than C<curlen>;
314 C<retlen> will be set to the length, in bytes, of that character.
316 If C<s> does not point to a well-formed UTF-8 character, the behaviour
317 is dependent on the value of C<flags>: if it contains UTF8_CHECK_ONLY,
318 it is assumed that the caller will raise a warning, and this function
319 will silently just set C<retlen> to C<-1> and return zero. If the
320 C<flags> does not contain UTF8_CHECK_ONLY, warnings about
321 malformations will be given, C<retlen> will be set to the expected
322 length of the UTF-8 character in bytes, and zero will be returned.
324 The C<flags> can also contain various flags to allow deviations from
325 the strict UTF-8 encoding (see F<utf8.h>).
327 Most code should use utf8_to_uvchr() rather than call this directly.
333 Perl_utf8n_to_uvuni(pTHX_ U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
338 bool dowarn = ckWARN_d(WARN_UTF8);
340 STRLEN expectlen = 0;
343 /* This list is a superset of the UTF8_ALLOW_XXX. */
345 #define UTF8_WARN_EMPTY 1
346 #define UTF8_WARN_CONTINUATION 2
347 #define UTF8_WARN_NON_CONTINUATION 3
348 #define UTF8_WARN_FE_FF 4
349 #define UTF8_WARN_SHORT 5
350 #define UTF8_WARN_OVERFLOW 6
351 #define UTF8_WARN_SURROGATE 7
352 #define UTF8_WARN_LONG 8
353 #define UTF8_WARN_FFFF 9 /* Also FFFE. */
356 !(flags & UTF8_ALLOW_EMPTY)) {
357 warning = UTF8_WARN_EMPTY;
361 if (UTF8_IS_INVARIANT(uv)) {
364 return (UV) (NATIVE_TO_UTF(*s));
367 if (UTF8_IS_CONTINUATION(uv) &&
368 !(flags & UTF8_ALLOW_CONTINUATION)) {
369 warning = UTF8_WARN_CONTINUATION;
373 if (UTF8_IS_START(uv) && curlen > 1 && !UTF8_IS_CONTINUATION(s[1]) &&
374 !(flags & UTF8_ALLOW_NON_CONTINUATION)) {
375 warning = UTF8_WARN_NON_CONTINUATION;
380 uv = NATIVE_TO_UTF(uv);
382 if ((uv == 0xfe || uv == 0xff) &&
383 !(flags & UTF8_ALLOW_FE_FF)) {
384 warning = UTF8_WARN_FE_FF;
389 if (!(uv & 0x20)) { len = 2; uv &= 0x1f; }
390 else if (!(uv & 0x10)) { len = 3; uv &= 0x0f; }
391 else if (!(uv & 0x08)) { len = 4; uv &= 0x07; }
392 else if (!(uv & 0x04)) { len = 5; uv &= 0x03; }
394 else if (!(uv & 0x02)) { len = 6; uv &= 0x01; }
395 else { len = 7; uv &= 0x01; }
397 else if (!(uv & 0x02)) { len = 6; uv &= 0x01; }
398 else if (!(uv & 0x01)) { len = 7; uv = 0; }
399 else { len = 13; uv = 0; } /* whoa! */
407 if ((curlen < expectlen) &&
408 !(flags & UTF8_ALLOW_SHORT)) {
409 warning = UTF8_WARN_SHORT;
418 if (!UTF8_IS_CONTINUATION(*s) &&
419 !(flags & UTF8_ALLOW_NON_CONTINUATION)) {
421 warning = UTF8_WARN_NON_CONTINUATION;
425 uv = UTF8_ACCUMULATE(uv, *s);
427 /* These cannot be allowed. */
429 if (!(flags & UTF8_ALLOW_LONG)) {
430 warning = UTF8_WARN_LONG;
434 else { /* uv < ouv */
435 /* This cannot be allowed. */
436 warning = UTF8_WARN_OVERFLOW;
444 if (UNICODE_IS_SURROGATE(uv) &&
445 !(flags & UTF8_ALLOW_SURROGATE)) {
446 warning = UTF8_WARN_SURROGATE;
448 } else if ((expectlen > (STRLEN)UNISKIP(uv)) &&
449 !(flags & UTF8_ALLOW_LONG)) {
450 warning = UTF8_WARN_LONG;
452 } else if (UNICODE_IS_ILLEGAL(uv) &&
453 !(flags & UTF8_ALLOW_FFFF)) {
454 warning = UTF8_WARN_FFFF;
462 if (flags & UTF8_CHECK_ONLY) {
469 SV* sv = sv_2mortal(newSVpv("Malformed UTF-8 character ", 0));
472 case 0: /* Intentionally empty. */ break;
473 case UTF8_WARN_EMPTY:
474 Perl_sv_catpvf(aTHX_ sv, "(empty string)");
476 case UTF8_WARN_CONTINUATION:
477 Perl_sv_catpvf(aTHX_ sv, "(unexpected continuation byte 0x%02"UVxf", with no preceding start byte)", uv);
479 case UTF8_WARN_NON_CONTINUATION:
481 Perl_sv_catpvf(aTHX_ sv, "(unexpected non-continuation byte 0x%02"UVxf", immediately after start byte 0x%02"UVxf")",
482 (UV)s[1], startbyte);
484 Perl_sv_catpvf(aTHX_ sv, "(unexpected non-continuation byte 0x%02"UVxf", %d byte%s after start byte 0x%02"UVxf", expected %d bytes)",
485 (UV)s[1], s - s0, s - s0 > 1 ? "s" : "", startbyte, expectlen);
488 case UTF8_WARN_FE_FF:
489 Perl_sv_catpvf(aTHX_ sv, "(byte 0x%02"UVxf")", uv);
491 case UTF8_WARN_SHORT:
492 Perl_sv_catpvf(aTHX_ sv, "(%d byte%s, need %d, after start byte 0x%02"UVxf")",
493 curlen, curlen == 1 ? "" : "s", expectlen, startbyte);
494 expectlen = curlen; /* distance for caller to skip */
496 case UTF8_WARN_OVERFLOW:
497 Perl_sv_catpvf(aTHX_ sv, "(overflow at 0x%"UVxf", byte 0x%02x, after start byte 0x%02"UVxf")",
500 case UTF8_WARN_SURROGATE:
501 Perl_sv_catpvf(aTHX_ sv, "(UTF-16 surrogate 0x%04"UVxf")", uv);
504 Perl_sv_catpvf(aTHX_ sv, "(%d byte%s, need %d, after start byte 0x%02"UVxf")",
505 expectlen, expectlen == 1 ? "": "s", UNISKIP(uv), startbyte);
508 Perl_sv_catpvf(aTHX_ sv, "(character 0x%04"UVxf")", uv);
511 Perl_sv_catpvf(aTHX_ sv, "(unknown reason)");
519 Perl_warner(aTHX_ packWARN(WARN_UTF8),
520 "%s in %s", s, OP_DESC(PL_op));
522 Perl_warner(aTHX_ packWARN(WARN_UTF8), "%s", s);
527 *retlen = expectlen ? expectlen : len;
533 =for apidoc A|UV|utf8_to_uvchr|U8 *s|STRLEN *retlen
535 Returns the native character value of the first character in the string C<s>
536 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
537 length, in bytes, of that character.
539 If C<s> does not point to a well-formed UTF-8 character, zero is
540 returned and retlen is set, if possible, to -1.
546 Perl_utf8_to_uvchr(pTHX_ U8 *s, STRLEN *retlen)
548 return Perl_utf8n_to_uvchr(aTHX_ s, UTF8_MAXLEN, retlen,
549 ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
553 =for apidoc A|UV|utf8_to_uvuni|U8 *s|STRLEN *retlen
555 Returns the Unicode code point of the first character in the string C<s>
556 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
557 length, in bytes, of that character.
559 This function should only be used when returned UV is considered
560 an index into the Unicode semantic tables (e.g. swashes).
562 If C<s> does not point to a well-formed UTF-8 character, zero is
563 returned and retlen is set, if possible, to -1.
569 Perl_utf8_to_uvuni(pTHX_ U8 *s, STRLEN *retlen)
571 /* Call the low level routine asking for checks */
572 return Perl_utf8n_to_uvuni(aTHX_ s, UTF8_MAXLEN, retlen,
573 ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
577 =for apidoc A|STRLEN|utf8_length|U8 *s|U8 *e
579 Return the length of the UTF-8 char encoded string C<s> in characters.
580 Stops at C<e> (inclusive). If C<e E<lt> s> or if the scan would end
581 up past C<e>, croaks.
587 Perl_utf8_length(pTHX_ U8 *s, U8 *e)
591 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g.
592 * the bitops (especially ~) can create illegal UTF-8.
593 * In other words: in Perl UTF-8 is not just for Unicode. */
596 if (ckWARN_d(WARN_UTF8)) {
598 Perl_warner(aTHX_ packWARN(WARN_UTF8),
599 "%s in %s", unees, OP_DESC(PL_op));
601 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
609 if (ckWARN_d(WARN_UTF8)) {
611 Perl_warner(aTHX_ packWARN(WARN_UTF8),
612 unees, OP_DESC(PL_op));
614 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
626 =for apidoc A|IV|utf8_distance|U8 *a|U8 *b
628 Returns the number of UTF-8 characters between the UTF-8 pointers C<a>
631 WARNING: use only if you *know* that the pointers point inside the
638 Perl_utf8_distance(pTHX_ U8 *a, U8 *b)
642 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g.
643 * the bitops (especially ~) can create illegal UTF-8.
644 * In other words: in Perl UTF-8 is not just for Unicode. */
651 if (ckWARN_d(WARN_UTF8)) {
653 Perl_warner(aTHX_ packWARN(WARN_UTF8),
654 "%s in %s", unees, OP_DESC(PL_op));
656 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
669 if (ckWARN_d(WARN_UTF8)) {
671 Perl_warner(aTHX_ packWARN(WARN_UTF8),
672 "%s in %s", unees, OP_DESC(PL_op));
674 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
687 =for apidoc A|U8 *|utf8_hop|U8 *s|I32 off
689 Return the UTF-8 pointer C<s> displaced by C<off> characters, either
692 WARNING: do not use the following unless you *know* C<off> is within
693 the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned
694 on the first byte of character or just after the last byte of a character.
700 Perl_utf8_hop(pTHX_ U8 *s, I32 off)
702 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g
703 * the bitops (especially ~) can create illegal UTF-8.
704 * In other words: in Perl UTF-8 is not just for Unicode. */
713 while (UTF8_IS_CONTINUATION(*s))
721 =for apidoc A|U8 *|utf8_to_bytes|U8 *s|STRLEN *len
723 Converts a string C<s> of length C<len> from UTF-8 into byte encoding.
724 Unlike C<bytes_to_utf8>, this over-writes the original string, and
725 updates len to contain the new length.
726 Returns zero on failure, setting C<len> to -1.
732 Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len)
738 /* ensure valid UTF-8 and chars < 256 before updating string */
739 for (send = s + *len; s < send; ) {
742 if (!UTF8_IS_INVARIANT(c) &&
743 (!UTF8_IS_DOWNGRADEABLE_START(c) || (s >= send)
744 || !(c = *s++) || !UTF8_IS_CONTINUATION(c))) {
753 *d++ = (U8)utf8_to_uvchr(s, &ulen);
762 =for apidoc A|U8 *|bytes_from_utf8|U8 *s|STRLEN *len|bool *is_utf8
764 Converts a string C<s> of length C<len> from UTF-8 into byte encoding.
765 Unlike <utf8_to_bytes> but like C<bytes_to_utf8>, returns a pointer to
766 the newly-created string, and updates C<len> to contain the new
767 length. Returns the original string if no conversion occurs, C<len>
768 is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to
769 0 if C<s> is converted or contains all 7bit characters.
775 Perl_bytes_from_utf8(pTHX_ U8 *s, STRLEN *len, bool *is_utf8)
785 /* ensure valid UTF-8 and chars < 256 before converting string */
786 for (send = s + *len; s < send;) {
788 if (!UTF8_IS_INVARIANT(c)) {
789 if (UTF8_IS_DOWNGRADEABLE_START(c) && s < send &&
790 (c = *s++) && UTF8_IS_CONTINUATION(c))
799 Newz(801, d, (*len) - count + 1, U8);
800 s = start; start = d;
803 if (!UTF8_IS_INVARIANT(c)) {
804 /* Then it is two-byte encoded */
805 c = UTF8_ACCUMULATE(NATIVE_TO_UTF(c), *s++);
806 c = ASCII_TO_NATIVE(c);
816 =for apidoc A|U8 *|bytes_to_utf8|U8 *s|STRLEN *len
818 Converts a string C<s> of length C<len> from ASCII into UTF-8 encoding.
819 Returns a pointer to the newly-created string, and sets C<len> to
820 reflect the new length.
822 If you want to convert to UTF-8 from other encodings than ASCII,
823 see sv_recode_to_utf8().
829 Perl_bytes_to_utf8(pTHX_ U8 *s, STRLEN *len)
836 Newz(801, d, (*len) * 2 + 1, U8);
840 UV uv = NATIVE_TO_ASCII(*s++);
841 if (UNI_IS_INVARIANT(uv))
842 *d++ = (U8)UTF_TO_NATIVE(uv);
844 *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
845 *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
854 * Convert native (big-endian) or reversed (little-endian) UTF-16 to UTF-8.
856 * Destination must be pre-extended to 3/2 source. Do not use in-place.
857 * We optimize for native, for obvious reasons. */
860 Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
866 Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen");
871 UV uv = (p[0] << 8) + p[1]; /* UTF-16BE */
878 *d++ = (U8)(( uv >> 6) | 0xc0);
879 *d++ = (U8)(( uv & 0x3f) | 0x80);
882 if (uv >= 0xd800 && uv < 0xdbff) { /* surrogates */
883 UV low = (p[0] << 8) + p[1];
885 if (low < 0xdc00 || low >= 0xdfff)
886 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
887 uv = ((uv - 0xd800) << 10) + (low - 0xdc00) + 0x10000;
890 *d++ = (U8)(( uv >> 12) | 0xe0);
891 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
892 *d++ = (U8)(( uv & 0x3f) | 0x80);
896 *d++ = (U8)(( uv >> 18) | 0xf0);
897 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
898 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
899 *d++ = (U8)(( uv & 0x3f) | 0x80);
903 *newlen = d - dstart;
907 /* Note: this one is slightly destructive of the source. */
910 Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
913 U8* send = s + bytelen;
920 return utf16_to_utf8(p, d, bytelen, newlen);
923 /* for now these are all defined (inefficiently) in terms of the utf8 versions */
926 Perl_is_uni_alnum(pTHX_ UV c)
928 U8 tmpbuf[UTF8_MAXLEN+1];
929 uvchr_to_utf8(tmpbuf, c);
930 return is_utf8_alnum(tmpbuf);
934 Perl_is_uni_alnumc(pTHX_ UV c)
936 U8 tmpbuf[UTF8_MAXLEN+1];
937 uvchr_to_utf8(tmpbuf, c);
938 return is_utf8_alnumc(tmpbuf);
942 Perl_is_uni_idfirst(pTHX_ UV c)
944 U8 tmpbuf[UTF8_MAXLEN+1];
945 uvchr_to_utf8(tmpbuf, c);
946 return is_utf8_idfirst(tmpbuf);
950 Perl_is_uni_alpha(pTHX_ UV c)
952 U8 tmpbuf[UTF8_MAXLEN+1];
953 uvchr_to_utf8(tmpbuf, c);
954 return is_utf8_alpha(tmpbuf);
958 Perl_is_uni_ascii(pTHX_ UV c)
960 U8 tmpbuf[UTF8_MAXLEN+1];
961 uvchr_to_utf8(tmpbuf, c);
962 return is_utf8_ascii(tmpbuf);
966 Perl_is_uni_space(pTHX_ UV c)
968 U8 tmpbuf[UTF8_MAXLEN+1];
969 uvchr_to_utf8(tmpbuf, c);
970 return is_utf8_space(tmpbuf);
974 Perl_is_uni_digit(pTHX_ UV c)
976 U8 tmpbuf[UTF8_MAXLEN+1];
977 uvchr_to_utf8(tmpbuf, c);
978 return is_utf8_digit(tmpbuf);
982 Perl_is_uni_upper(pTHX_ UV c)
984 U8 tmpbuf[UTF8_MAXLEN+1];
985 uvchr_to_utf8(tmpbuf, c);
986 return is_utf8_upper(tmpbuf);
990 Perl_is_uni_lower(pTHX_ UV c)
992 U8 tmpbuf[UTF8_MAXLEN+1];
993 uvchr_to_utf8(tmpbuf, c);
994 return is_utf8_lower(tmpbuf);
998 Perl_is_uni_cntrl(pTHX_ UV c)
1000 U8 tmpbuf[UTF8_MAXLEN+1];
1001 uvchr_to_utf8(tmpbuf, c);
1002 return is_utf8_cntrl(tmpbuf);
1006 Perl_is_uni_graph(pTHX_ UV c)
1008 U8 tmpbuf[UTF8_MAXLEN+1];
1009 uvchr_to_utf8(tmpbuf, c);
1010 return is_utf8_graph(tmpbuf);
1014 Perl_is_uni_print(pTHX_ UV c)
1016 U8 tmpbuf[UTF8_MAXLEN+1];
1017 uvchr_to_utf8(tmpbuf, c);
1018 return is_utf8_print(tmpbuf);
1022 Perl_is_uni_punct(pTHX_ UV c)
1024 U8 tmpbuf[UTF8_MAXLEN+1];
1025 uvchr_to_utf8(tmpbuf, c);
1026 return is_utf8_punct(tmpbuf);
1030 Perl_is_uni_xdigit(pTHX_ UV c)
1032 U8 tmpbuf[UTF8_MAXLEN_UCLC+1];
1033 uvchr_to_utf8(tmpbuf, c);
1034 return is_utf8_xdigit(tmpbuf);
1038 Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp)
1040 uvchr_to_utf8(p, c);
1041 return to_utf8_upper(p, p, lenp);
1045 Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp)
1047 uvchr_to_utf8(p, c);
1048 return to_utf8_title(p, p, lenp);
1052 Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp)
1054 uvchr_to_utf8(p, c);
1055 return to_utf8_lower(p, p, lenp);
1059 Perl_to_uni_fold(pTHX_ UV c, U8* p, STRLEN *lenp)
1061 uvchr_to_utf8(p, c);
1062 return to_utf8_fold(p, p, lenp);
1065 /* for now these all assume no locale info available for Unicode > 255 */
1068 Perl_is_uni_alnum_lc(pTHX_ UV c)
1070 return is_uni_alnum(c); /* XXX no locale support yet */
1074 Perl_is_uni_alnumc_lc(pTHX_ UV c)
1076 return is_uni_alnumc(c); /* XXX no locale support yet */
1080 Perl_is_uni_idfirst_lc(pTHX_ UV c)
1082 return is_uni_idfirst(c); /* XXX no locale support yet */
1086 Perl_is_uni_alpha_lc(pTHX_ UV c)
1088 return is_uni_alpha(c); /* XXX no locale support yet */
1092 Perl_is_uni_ascii_lc(pTHX_ UV c)
1094 return is_uni_ascii(c); /* XXX no locale support yet */
1098 Perl_is_uni_space_lc(pTHX_ UV c)
1100 return is_uni_space(c); /* XXX no locale support yet */
1104 Perl_is_uni_digit_lc(pTHX_ UV c)
1106 return is_uni_digit(c); /* XXX no locale support yet */
1110 Perl_is_uni_upper_lc(pTHX_ UV c)
1112 return is_uni_upper(c); /* XXX no locale support yet */
1116 Perl_is_uni_lower_lc(pTHX_ UV c)
1118 return is_uni_lower(c); /* XXX no locale support yet */
1122 Perl_is_uni_cntrl_lc(pTHX_ UV c)
1124 return is_uni_cntrl(c); /* XXX no locale support yet */
1128 Perl_is_uni_graph_lc(pTHX_ UV c)
1130 return is_uni_graph(c); /* XXX no locale support yet */
1134 Perl_is_uni_print_lc(pTHX_ UV c)
1136 return is_uni_print(c); /* XXX no locale support yet */
1140 Perl_is_uni_punct_lc(pTHX_ UV c)
1142 return is_uni_punct(c); /* XXX no locale support yet */
1146 Perl_is_uni_xdigit_lc(pTHX_ UV c)
1148 return is_uni_xdigit(c); /* XXX no locale support yet */
1152 Perl_to_uni_upper_lc(pTHX_ U32 c)
1154 /* XXX returns only the first character -- do not use XXX */
1155 /* XXX no locale support yet */
1157 U8 tmpbuf[UTF8_MAXLEN_UCLC+1];
1158 return (U32)to_uni_upper(c, tmpbuf, &len);
1162 Perl_to_uni_title_lc(pTHX_ U32 c)
1164 /* XXX returns only the first character XXX -- do not use XXX */
1165 /* XXX no locale support yet */
1167 U8 tmpbuf[UTF8_MAXLEN_UCLC+1];
1168 return (U32)to_uni_title(c, tmpbuf, &len);
1172 Perl_to_uni_lower_lc(pTHX_ U32 c)
1174 /* XXX returns only the first character -- do not use XXX */
1175 /* XXX no locale support yet */
1177 U8 tmpbuf[UTF8_MAXLEN_UCLC+1];
1178 return (U32)to_uni_lower(c, tmpbuf, &len);
1182 Perl_is_utf8_alnum(pTHX_ U8 *p)
1184 if (!is_utf8_char(p))
1187 /* NOTE: "IsWord", not "IsAlnum", since Alnum is a true
1188 * descendant of isalnum(3), in other words, it doesn't
1189 * contain the '_'. --jhi */
1190 PL_utf8_alnum = swash_init("utf8", "IsWord", &PL_sv_undef, 0, 0);
1191 return swash_fetch(PL_utf8_alnum, p, TRUE) != 0;
1192 /* return *p == '_' || is_utf8_alpha(p) || is_utf8_digit(p); */
1193 #ifdef SURPRISINGLY_SLOWER /* probably because alpha is usually true */
1195 PL_utf8_alnum = swash_init("utf8", "",
1196 sv_2mortal(newSVpv("+utf8::IsAlpha\n+utf8::IsDigit\n005F\n",0)), 0, 0);
1197 return swash_fetch(PL_utf8_alnum, p, TRUE) != 0;
1202 Perl_is_utf8_alnumc(pTHX_ U8 *p)
1204 if (!is_utf8_char(p))
1207 PL_utf8_alnum = swash_init("utf8", "IsAlnumC", &PL_sv_undef, 0, 0);
1208 return swash_fetch(PL_utf8_alnum, p, TRUE) != 0;
1209 /* return is_utf8_alpha(p) || is_utf8_digit(p); */
1210 #ifdef SURPRISINGLY_SLOWER /* probably because alpha is usually true */
1212 PL_utf8_alnum = swash_init("utf8", "",
1213 sv_2mortal(newSVpv("+utf8::IsAlpha\n+utf8::IsDigit\n005F\n",0)), 0, 0);
1214 return swash_fetch(PL_utf8_alnum, p, TRUE) != 0;
1219 Perl_is_utf8_idfirst(pTHX_ U8 *p) /* The naming is historical. */
1223 if (!is_utf8_char(p))
1225 if (!PL_utf8_idstart) /* is_utf8_idstart would be more logical. */
1226 PL_utf8_idstart = swash_init("utf8", "IdStart", &PL_sv_undef, 0, 0);
1227 return swash_fetch(PL_utf8_idstart, p, TRUE) != 0;
1231 Perl_is_utf8_idcont(pTHX_ U8 *p)
1235 if (!is_utf8_char(p))
1237 if (!PL_utf8_idcont)
1238 PL_utf8_idcont = swash_init("utf8", "IdContinue", &PL_sv_undef, 0, 0);
1239 return swash_fetch(PL_utf8_idcont, p, TRUE) != 0;
1243 Perl_is_utf8_alpha(pTHX_ U8 *p)
1245 if (!is_utf8_char(p))
1248 PL_utf8_alpha = swash_init("utf8", "IsAlpha", &PL_sv_undef, 0, 0);
1249 return swash_fetch(PL_utf8_alpha, p, TRUE) != 0;
1253 Perl_is_utf8_ascii(pTHX_ U8 *p)
1255 if (!is_utf8_char(p))
1258 PL_utf8_ascii = swash_init("utf8", "IsAscii", &PL_sv_undef, 0, 0);
1259 return swash_fetch(PL_utf8_ascii, p, TRUE) != 0;
1263 Perl_is_utf8_space(pTHX_ U8 *p)
1265 if (!is_utf8_char(p))
1268 PL_utf8_space = swash_init("utf8", "IsSpacePerl", &PL_sv_undef, 0, 0);
1269 return swash_fetch(PL_utf8_space, p, TRUE) != 0;
1273 Perl_is_utf8_digit(pTHX_ U8 *p)
1275 if (!is_utf8_char(p))
1278 PL_utf8_digit = swash_init("utf8", "IsDigit", &PL_sv_undef, 0, 0);
1279 return swash_fetch(PL_utf8_digit, p, TRUE) != 0;
1283 Perl_is_utf8_upper(pTHX_ U8 *p)
1285 if (!is_utf8_char(p))
1288 PL_utf8_upper = swash_init("utf8", "IsUppercase", &PL_sv_undef, 0, 0);
1289 return swash_fetch(PL_utf8_upper, p, TRUE) != 0;
1293 Perl_is_utf8_lower(pTHX_ U8 *p)
1295 if (!is_utf8_char(p))
1298 PL_utf8_lower = swash_init("utf8", "IsLowercase", &PL_sv_undef, 0, 0);
1299 return swash_fetch(PL_utf8_lower, p, TRUE) != 0;
1303 Perl_is_utf8_cntrl(pTHX_ U8 *p)
1305 if (!is_utf8_char(p))
1308 PL_utf8_cntrl = swash_init("utf8", "IsCntrl", &PL_sv_undef, 0, 0);
1309 return swash_fetch(PL_utf8_cntrl, p, TRUE) != 0;
1313 Perl_is_utf8_graph(pTHX_ U8 *p)
1315 if (!is_utf8_char(p))
1318 PL_utf8_graph = swash_init("utf8", "IsGraph", &PL_sv_undef, 0, 0);
1319 return swash_fetch(PL_utf8_graph, p, TRUE) != 0;
1323 Perl_is_utf8_print(pTHX_ U8 *p)
1325 if (!is_utf8_char(p))
1328 PL_utf8_print = swash_init("utf8", "IsPrint", &PL_sv_undef, 0, 0);
1329 return swash_fetch(PL_utf8_print, p, TRUE) != 0;
1333 Perl_is_utf8_punct(pTHX_ U8 *p)
1335 if (!is_utf8_char(p))
1338 PL_utf8_punct = swash_init("utf8", "IsPunct", &PL_sv_undef, 0, 0);
1339 return swash_fetch(PL_utf8_punct, p, TRUE) != 0;
1343 Perl_is_utf8_xdigit(pTHX_ U8 *p)
1345 if (!is_utf8_char(p))
1347 if (!PL_utf8_xdigit)
1348 PL_utf8_xdigit = swash_init("utf8", "IsXDigit", &PL_sv_undef, 0, 0);
1349 return swash_fetch(PL_utf8_xdigit, p, TRUE) != 0;
1353 Perl_is_utf8_mark(pTHX_ U8 *p)
1355 if (!is_utf8_char(p))
1358 PL_utf8_mark = swash_init("utf8", "IsM", &PL_sv_undef, 0, 0);
1359 return swash_fetch(PL_utf8_mark, p, TRUE) != 0;
1363 =for apidoc A|UV|to_utf8_case|U8 *p|U8* ustrp|STRLEN *lenp|SV **swash|char *normal|char *special
1365 The "p" contains the pointer to the UTF-8 string encoding
1366 the character that is being converted.
1368 The "ustrp" is a pointer to the character buffer to put the
1369 conversion result to. The "lenp" is a pointer to the length
1372 The "swashp" is a pointer to the swash to use.
1374 Both the special and normal mappings are stored lib/unicore/To/Foo.pl,
1375 and loaded by SWASHGET, using lib/utf8_heavy.pl. The special (usually,
1376 but not always, a multicharacter mapping), is tried first.
1378 The "special" is a string like "utf8::ToSpecLower", which means the
1379 hash %utf8::ToSpecLower. The access to the hash is through
1380 Perl_to_utf8_case().
1382 The "normal" is a string like "ToLower" which means the swash
1388 Perl_to_utf8_case(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, char *normal, char *special)
1391 U8 tmpbuf[UTF8_MAXLEN_FOLD+1];
1394 uv0 = utf8_to_uvchr(p, 0);
1395 /* The NATIVE_TO_UNI() and UNI_TO_NATIVE() mappings
1396 * are necessary in EBCDIC, they are redundant no-ops
1397 * in ASCII-ish platforms, and hopefully optimized away. */
1398 uv1 = NATIVE_TO_UNI(uv0);
1399 uvuni_to_utf8(tmpbuf, uv1);
1401 if (!*swashp) /* load on-demand */
1402 *swashp = swash_init("utf8", normal, &PL_sv_undef, 4, 0);
1404 /* The 0xDF is the only special casing Unicode code point below 0x100. */
1405 if (special && (uv1 == 0xDF || uv1 > 0xFF)) {
1406 /* It might be "special" (sometimes, but not always,
1407 * a multicharacter mapping) */
1411 if ((hv = get_hv(special, FALSE)) &&
1412 (svp = hv_fetch(hv, (const char*)tmpbuf, UNISKIP(uv1), FALSE)) &&
1416 s = SvPV(*svp, len);
1418 len = uvuni_to_utf8(ustrp, NATIVE_TO_UNI(*(U8*)s)) - ustrp;
1421 /* If we have EBCDIC we need to remap the characters
1422 * since any characters in the low 256 are Unicode
1423 * code points, not EBCDIC. */
1424 U8 *t = (U8*)s, *tend = t + len, *d;
1431 UV c = utf8_to_uvchr(t, &tlen);
1433 d = uvchr_to_utf8(d, UNI_TO_NATIVE(c));
1442 d = uvchr_to_utf8(d, UNI_TO_NATIVE(*t));
1447 Copy(tmpbuf, ustrp, len, U8);
1449 Copy(s, ustrp, len, U8);
1455 if (!len && *swashp) {
1456 UV uv2 = swash_fetch(*swashp, tmpbuf, TRUE);
1459 /* It was "normal" (a single character mapping). */
1460 UV uv3 = UNI_TO_NATIVE(uv2);
1462 len = uvchr_to_utf8(ustrp, uv3) - ustrp;
1466 if (!len) /* Neither: just copy. */
1467 len = uvchr_to_utf8(ustrp, uv0) - ustrp;
1472 return len ? utf8_to_uvchr(ustrp, 0) : 0;
1476 =for apidoc A|UV|to_utf8_upper|U8 *p|U8 *ustrp|STRLEN *lenp
1478 Convert the UTF-8 encoded character at p to its uppercase version and
1479 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1480 that the ustrp needs to be at least UTF8_MAXLEN_UCLC+1 bytes since the
1481 uppercase version may be longer than the original character (up to two
1484 The first character of the uppercased version is returned
1485 (but note, as explained above, that there may be more.)
1490 Perl_to_utf8_upper(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp)
1492 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1493 &PL_utf8_toupper, "ToUpper", "utf8::ToSpecUpper");
1497 =for apidoc A|UV|to_utf8_title|U8 *p|U8 *ustrp|STRLEN *lenp
1499 Convert the UTF-8 encoded character at p to its titlecase version and
1500 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1501 that the ustrp needs to be at least UTF8_MAXLEN_UCLC+1 bytes since the
1502 titlecase version may be longer than the original character (up to two
1505 The first character of the titlecased version is returned
1506 (but note, as explained above, that there may be more.)
1511 Perl_to_utf8_title(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp)
1513 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1514 &PL_utf8_totitle, "ToTitle", "utf8::ToSpecTitle");
1518 =for apidoc A|UV|to_utf8_lower|U8 *p|U8 *ustrp|STRLEN *lenp
1520 Convert the UTF-8 encoded character at p to its lowercase version and
1521 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1522 that the ustrp needs to be at least UTF8_MAXLEN_UCLC+1 bytes since the
1523 lowercase version may be longer than the original character (up to two
1526 The first character of the lowercased version is returned
1527 (but note, as explained above, that there may be more.)
1532 Perl_to_utf8_lower(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp)
1534 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1535 &PL_utf8_tolower, "ToLower", "utf8::ToSpecLower");
1539 =for apidoc A|UV|to_utf8_fold|U8 *p|U8 *ustrp|STRLEN *lenp
1541 Convert the UTF-8 encoded character at p to its foldcase version and
1542 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1543 that the ustrp needs to be at least UTF8_MAXLEN_FOLD+1 bytes since the
1544 foldcase version may be longer than the original character (up to
1547 The first character of the foldcased version is returned
1548 (but note, as explained above, that there may be more.)
1553 Perl_to_utf8_fold(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp)
1555 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1556 &PL_utf8_tofold, "ToFold", "utf8::ToSpecFold");
1559 /* a "swash" is a swatch hash */
1562 Perl_swash_init(pTHX_ char* pkg, char* name, SV *listsv, I32 minbits, I32 none)
1565 SV* tokenbufsv = sv_2mortal(NEWSV(0,0));
1567 HV *stash = gv_stashpvn(pkg, strlen(pkg), FALSE);
1570 if (!gv_fetchmeth(stash, "SWASHNEW", 8, -1)) { /* demand load utf8 */
1572 errsv_save = newSVsv(ERRSV);
1573 Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, newSVpv(pkg,0), Nullsv);
1575 sv_setsv(ERRSV, errsv_save);
1576 SvREFCNT_dec(errsv_save);
1580 PUSHSTACKi(PERLSI_MAGIC);
1583 PUSHs(sv_2mortal(newSVpvn(pkg, strlen(pkg))));
1584 PUSHs(sv_2mortal(newSVpvn(name, strlen(name))));
1586 PUSHs(sv_2mortal(newSViv(minbits)));
1587 PUSHs(sv_2mortal(newSViv(none)));
1593 if (IN_PERL_COMPILETIME) {
1594 /* XXX ought to be handled by lex_start */
1597 sv_setpv(tokenbufsv, PL_tokenbuf);
1599 errsv_save = newSVsv(ERRSV);
1600 if (call_method("SWASHNEW", G_SCALAR))
1601 retval = newSVsv(*PL_stack_sp--);
1603 retval = &PL_sv_undef;
1605 sv_setsv(ERRSV, errsv_save);
1606 SvREFCNT_dec(errsv_save);
1609 if (IN_PERL_COMPILETIME) {
1611 char* pv = SvPV(tokenbufsv, len);
1613 Copy(pv, PL_tokenbuf, len+1, char);
1614 PL_curcop->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
1616 if (!SvROK(retval) || SvTYPE(SvRV(retval)) != SVt_PVHV) {
1618 Perl_croak(aTHX_ "Can't find Unicode property definition \"%"SVf"\"",
1620 Perl_croak(aTHX_ "SWASHNEW didn't return an HV ref");
1626 /* This API is wrong for special case conversions since we may need to
1627 * return several Unicode characters for a single Unicode character
1628 * (see lib/unicore/SpecCase.txt) The SWASHGET in lib/utf8_heavy.pl is
1629 * the lower-level routine, and it is similarly broken for returning
1630 * multiple values. --jhi */
1632 Perl_swash_fetch(pTHX_ SV *sv, U8 *ptr, bool do_utf8)
1634 HV* hv = (HV*)SvRV(sv);
1643 UV c = NATIVE_TO_ASCII(*ptr);
1645 if (!do_utf8 && !UNI_IS_INVARIANT(c)) {
1646 tmputf8[0] = (U8)UTF8_EIGHT_BIT_HI(c);
1647 tmputf8[1] = (U8)UTF8_EIGHT_BIT_LO(c);
1650 /* Given a UTF-X encoded char 0xAA..0xYY,0xZZ
1651 * then the "swatch" is a vec() for al the chars which start
1653 * So the key in the hash (klen) is length of encoded char -1
1655 klen = UTF8SKIP(ptr) - 1;
1660 /* If char in invariant then swatch is for all the invariant chars
1661 * In both UTF-8 and UTF-8-MOD that happens to be UTF_CONTINUATION_MARK
1663 needents = UTF_CONTINUATION_MARK;
1664 off = NATIVE_TO_UTF(ptr[klen]);
1668 /* If char is encoded then swatch is for the prefix */
1669 needents = (1 << UTF_ACCUMULATION_SHIFT);
1670 off = NATIVE_TO_UTF(ptr[klen]) & UTF_CONTINUATION_MASK;
1674 * This single-entry cache saves about 1/3 of the utf8 overhead in test
1675 * suite. (That is, only 7-8% overall over just a hash cache. Still,
1676 * it's nothing to sniff at.) Pity we usually come through at least
1677 * two function calls to get here...
1679 * NB: this code assumes that swatches are never modified, once generated!
1682 if (hv == PL_last_swash_hv &&
1683 klen == PL_last_swash_klen &&
1684 (!klen || memEQ((char *)ptr, (char *)PL_last_swash_key, klen)) )
1686 tmps = PL_last_swash_tmps;
1687 slen = PL_last_swash_slen;
1690 /* Try our second-level swatch cache, kept in a hash. */
1691 SV** svp = hv_fetch(hv, (char*)ptr, klen, FALSE);
1693 /* If not cached, generate it via utf8::SWASHGET */
1694 if (!svp || !SvPOK(*svp) || !(tmps = (U8*)SvPV(*svp, slen))) {
1696 /* We use utf8n_to_uvuni() as we want an index into
1697 Unicode tables, not a native character number.
1699 UV code_point = utf8n_to_uvuni(ptr, UTF8_MAXLEN, 0,
1701 0 : UTF8_ALLOW_ANY);
1706 PUSHSTACKi(PERLSI_MAGIC);
1710 /* On EBCDIC & ~(0xA0-1) isn't a useful thing to do */
1711 PUSHs(sv_2mortal(newSViv((klen) ?
1712 (code_point & ~(needents - 1)) : 0)));
1713 PUSHs(sv_2mortal(newSViv(needents)));
1715 errsv_save = newSVsv(ERRSV);
1716 if (call_method("SWASHGET", G_SCALAR))
1717 retval = newSVsv(*PL_stack_sp--);
1719 retval = &PL_sv_undef;
1721 sv_setsv(ERRSV, errsv_save);
1722 SvREFCNT_dec(errsv_save);
1726 if (IN_PERL_COMPILETIME)
1727 PL_curcop->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
1729 svp = hv_store(hv, (char*)ptr, klen, retval, 0);
1731 if (!svp || !(tmps = (U8*)SvPV(*svp, slen)) || (slen << 3) < needents)
1732 Perl_croak(aTHX_ "SWASHGET didn't return result of proper length");
1735 PL_last_swash_hv = hv;
1736 PL_last_swash_klen = klen;
1737 PL_last_swash_tmps = tmps;
1738 PL_last_swash_slen = slen;
1740 Copy(ptr, PL_last_swash_key, klen, U8);
1743 switch ((int)((slen << 3) / needents)) {
1745 bit = 1 << (off & 7);
1747 return (tmps[off] & bit) != 0;
1752 return (tmps[off] << 8) + tmps[off + 1] ;
1755 return (tmps[off] << 24) + (tmps[off+1] << 16) + (tmps[off+2] << 8) + tmps[off + 3] ;
1757 Perl_croak(aTHX_ "panic: swash_fetch");
1763 =for apidoc A|U8 *|uvchr_to_utf8|U8 *d|UV uv
1765 Adds the UTF-8 representation of the Native codepoint C<uv> to the end
1766 of the string C<d>; C<d> should be have at least C<UTF8_MAXLEN+1> free
1767 bytes available. The return value is the pointer to the byte after the
1768 end of the new character. In other words,
1770 d = uvchr_to_utf8(d, uv);
1772 is the recommended wide native character-aware way of saying
1779 /* On ASCII machines this is normally a macro but we want a
1780 real function in case XS code wants it
1782 #undef Perl_uvchr_to_utf8
1784 Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv)
1786 return Perl_uvuni_to_utf8_flags(aTHX_ d, NATIVE_TO_UNI(uv), 0);
1790 Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
1792 return Perl_uvuni_to_utf8_flags(aTHX_ d, NATIVE_TO_UNI(uv), flags);
1796 =for apidoc A|UV|utf8n_to_uvchr|U8 *s|STRLEN curlen|STRLEN *retlen|U32 flags
1798 Returns the native character value of the first character in the string C<s>
1799 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
1800 length, in bytes, of that character.
1802 Allows length and flags to be passed to low level routine.
1806 /* On ASCII machines this is normally a macro but we want
1807 a real function in case XS code wants it
1809 #undef Perl_utf8n_to_uvchr
1811 Perl_utf8n_to_uvchr(pTHX_ U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
1813 UV uv = Perl_utf8n_to_uvuni(aTHX_ s, curlen, retlen, flags);
1814 return UNI_TO_NATIVE(uv);
1818 =for apidoc A|char *|pv_uni_display|SV *dsv|U8 *spv|STRLEN len|STRLEN pvlim|UV flags
1820 Build to the scalar dsv a displayable version of the string spv,
1821 length len, the displayable version being at most pvlim bytes long
1822 (if longer, the rest is truncated and "..." will be appended).
1824 The flags argument can have UNI_DISPLAY_ISPRINT set to display
1825 isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH
1826 to display the \\[nrfta\\] as the backslashed versions (like '\n')
1827 (UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\).
1828 UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both
1829 UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on.
1831 The pointer to the PV of the dsv is returned.
1835 Perl_pv_uni_display(pTHX_ SV *dsv, U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
1840 sv_setpvn(dsv, "", 0);
1841 for (s = (char *)spv, e = s + len; s < e; s += UTF8SKIP(s)) {
1845 if (pvlim && SvCUR(dsv) >= pvlim) {
1849 u = utf8_to_uvchr((U8*)s, 0);
1851 if (!ok && (flags & UNI_DISPLAY_BACKSLASH)) {
1854 Perl_sv_catpvf(aTHX_ dsv, "\\n"); ok = TRUE; break;
1856 Perl_sv_catpvf(aTHX_ dsv, "\\r"); ok = TRUE; break;
1858 Perl_sv_catpvf(aTHX_ dsv, "\\t"); ok = TRUE; break;
1860 Perl_sv_catpvf(aTHX_ dsv, "\\f"); ok = TRUE; break;
1862 Perl_sv_catpvf(aTHX_ dsv, "\\a"); ok = TRUE; break;
1864 Perl_sv_catpvf(aTHX_ dsv, "\\\\" ); ok = TRUE; break;
1868 /* isPRINT() is the locale-blind version. */
1869 if (!ok && (flags & UNI_DISPLAY_ISPRINT) && isPRINT(u & 0xFF)) {
1870 Perl_sv_catpvf(aTHX_ dsv, "%c", (char)(u & 0xFF));
1875 Perl_sv_catpvf(aTHX_ dsv, "\\x{%"UVxf"}", u);
1878 sv_catpvn(dsv, "...", 3);
1884 =for apidoc A|char *|sv_uni_display|SV *dsv|SV *ssv|STRLEN pvlim|UV flags
1886 Build to the scalar dsv a displayable version of the scalar sv,
1887 the displayable version being at most pvlim bytes long
1888 (if longer, the rest is truncated and "..." will be appended).
1890 The flags argument is as in pv_uni_display().
1892 The pointer to the PV of the dsv is returned.
1896 Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
1898 return Perl_pv_uni_display(aTHX_ dsv, (U8*)SvPVX(ssv), SvCUR(ssv),
1903 =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
1905 Return true if the strings s1 and s2 differ case-insensitively, false
1906 if not (if they are equal case-insensitively). If u1 is true, the
1907 string s1 is assumed to be in UTF-8-encoded Unicode. If u2 is true,
1908 the string s2 is assumed to be in UTF-8-encoded Unicode. If u1 or u2
1909 are false, the respective string is assumed to be in native 8-bit
1912 If the pe1 and pe2 are non-NULL, the scanning pointers will be copied
1913 in there (they will point at the beginning of the I<next> character).
1914 If the pointers behind pe1 or pe2 are non-NULL, they are the end
1915 pointers beyond which scanning will not continue under any
1916 circustances. If the byte lengths l1 and l2 are non-zero, s1+l1 and
1917 s2+l2 will be used as goal end pointers that will also stop the scan,
1918 and which qualify towards defining a successful match: all the scans
1919 that define an explicit length must reach their goal pointers for
1920 a match to succeed).
1922 For case-insensitiveness, the "casefolding" of Unicode is used
1923 instead of upper/lowercasing both the characters, see
1924 http://www.unicode.org/unicode/reports/tr21/ (Case Mappings).
1928 Perl_ibcmp_utf8(pTHX_ const char *s1, char **pe1, register UV l1, bool u1, const char *s2, char **pe2, register UV l2, bool u2)
1930 register U8 *p1 = (U8*)s1;
1931 register U8 *p2 = (U8*)s2;
1932 register U8 *e1 = 0, *f1 = 0, *q1 = 0;
1933 register U8 *e2 = 0, *f2 = 0, *q2 = 0;
1934 STRLEN n1 = 0, n2 = 0;
1935 U8 foldbuf1[UTF8_MAXLEN_FOLD+1];
1936 U8 foldbuf2[UTF8_MAXLEN_FOLD+1];
1938 STRLEN foldlen1, foldlen2;
1943 if (e1 == 0 || (l1 && l1 < (UV)(e1 - (U8*)s1)))
1947 if (e2 == 0 || (l2 && l2 < (UV)(e2 - (U8*)s2)))
1950 if ((e1 == 0 && f1 == 0) || (e2 == 0 && f2 == 0) || (f1 == 0 && f2 == 0))
1951 return 1; /* mismatch; possible infinite loop or false positive */
1954 natbuf[1] = 0; /* Need to terminate the buffer. */
1956 while ((e1 == 0 || p1 < e1) &&
1957 (f1 == 0 || p1 < f1) &&
1958 (e2 == 0 || p2 < e2) &&
1959 (f2 == 0 || p2 < f2)) {
1962 to_utf8_fold(p1, foldbuf1, &foldlen1);
1965 to_utf8_fold(natbuf, foldbuf1, &foldlen1);
1972 to_utf8_fold(p2, foldbuf2, &foldlen2);
1975 to_utf8_fold(natbuf, foldbuf2, &foldlen2);
1981 if ( UTF8SKIP(q1) != UTF8SKIP(q2) ||
1982 (UTF8SKIP(q1) == 1 && *q1 != *q2) ||
1983 memNE((char*)q1, (char*)q2, UTF8SKIP(q1)) )
1984 return 1; /* mismatch */
1991 p1 += u1 ? UTF8SKIP(p1) : 1;
1993 p2 += u2 ? UTF8SKIP(p2) : 1;
1997 /* A match is defined by all the scans that specified
1998 * an explicit length reaching their final goals. */
1999 match = (f1 == 0 || p1 == f1) && (f2 == 0 || p2 == f2);
2008 return match ? 0 : 1; /* 0 match, 1 mismatch */