This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Documentation added.
[perl5.git] / utf8.c
CommitLineData
a0ed51b3
LW
1/* utf8.c
2 *
be3c0a43 3 * Copyright (c) 1998-2002, Larry Wall
a0ed51b3
LW
4 *
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.
7 *
8 */
9
10/*
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.'
14 *
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?'
18 *
19 * ...the travellers perceived that the floor was paved with stones of many
20 * hues; branching runes and strange devices intertwined beneath their feet.
21 */
22
23#include "EXTERN.h"
864dbfa3 24#define PERL_IN_UTF8_C
a0ed51b3
LW
25#include "perl.h"
26
901b21bf
JH
27static char unees[] = "Malformed UTF-8 character (unexpected end of string)";
28
ccfc67b7
JH
29/*
30=head1 Unicode Support
a0ed51b3 31
b851fbc1 32=for apidoc A|U8 *|uvuni_to_utf8_flags|U8 *d|UV uv|UV flags
eebe1485
SC
33
34Adds the UTF8 representation of the Unicode codepoint C<uv> to the end
35of the string C<d>; C<d> should be have at least C<UTF8_MAXLEN+1> free
36bytes available. The return value is the pointer to the byte after the
9041c2e3 37end of the new character. In other words,
eebe1485 38
b851fbc1
JH
39 d = uvuni_to_utf8_flags(d, uv, flags);
40
41or, in most cases,
42
9041c2e3 43 d = uvuni_to_utf8(d, uv);
eebe1485 44
b851fbc1
JH
45(which is equivalent to)
46
47 d = uvuni_to_utf8_flags(d, uv, 0);
48
eebe1485
SC
49is the recommended Unicode-aware way of saying
50
51 *(d++) = uv;
52
53=cut
54*/
55
dfe13c55 56U8 *
b851fbc1 57Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
a0ed51b3 58{
62961d2e 59 if (ckWARN(WARN_UTF8)) {
b851fbc1
JH
60 if (UNICODE_IS_SURROGATE(uv) &&
61 !(flags & UNICODE_ALLOW_SURROGATE))
9014280d 62 Perl_warner(aTHX_ packWARN(WARN_UTF8), "UTF-16 surrogate 0x%04"UVxf, uv);
b851fbc1
JH
63 else if (
64 ((uv >= 0xFDD0 && uv <= 0xFDEF &&
65 !(flags & UNICODE_ALLOW_FDD0))
66 ||
c867b360 67 ((uv & 0xFFFE) == 0xFFFE && /* Either FFFE or FFFF. */
b851fbc1
JH
68 !(flags & UNICODE_ALLOW_FFFF))) &&
69 /* UNICODE_ALLOW_SUPER includes
2a20b9da 70 * FFFEs and FFFFs beyond 0x10FFFF. */
b851fbc1
JH
71 ((uv <= PERL_UNICODE_MAX) ||
72 !(flags & UNICODE_ALLOW_SUPER))
73 )
9014280d 74 Perl_warner(aTHX_ packWARN(WARN_UTF8),
507b9800
JH
75 "Unicode character 0x%04"UVxf" is illegal", uv);
76 }
c4d5f83a 77 if (UNI_IS_INVARIANT(uv)) {
eb160463 78 *d++ = (U8)UTF_TO_NATIVE(uv);
a0ed51b3
LW
79 return d;
80 }
2d331972 81#if defined(EBCDIC)
1d72bdf6
NIS
82 else {
83 STRLEN len = UNISKIP(uv);
84 U8 *p = d+len-1;
85 while (p > d) {
eb160463 86 *p-- = (U8)UTF_TO_NATIVE((uv & UTF_CONTINUATION_MASK) | UTF_CONTINUATION_MARK);
1d72bdf6
NIS
87 uv >>= UTF_ACCUMULATION_SHIFT;
88 }
eb160463 89 *p = (U8)UTF_TO_NATIVE((uv & UTF_START_MASK(len)) | UTF_START_MARK(len));
1d72bdf6
NIS
90 return d+len;
91 }
92#else /* Non loop style */
a0ed51b3 93 if (uv < 0x800) {
eb160463
GS
94 *d++ = (U8)(( uv >> 6) | 0xc0);
95 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
96 return d;
97 }
98 if (uv < 0x10000) {
eb160463
GS
99 *d++ = (U8)(( uv >> 12) | 0xe0);
100 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
101 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
102 return d;
103 }
104 if (uv < 0x200000) {
eb160463
GS
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);
a0ed51b3
LW
109 return d;
110 }
111 if (uv < 0x4000000) {
eb160463
GS
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);
a0ed51b3
LW
117 return d;
118 }
119 if (uv < 0x80000000) {
eb160463
GS
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);
a0ed51b3
LW
126 return d;
127 }
6b8eaf93 128#ifdef HAS_QUAD
d7578b48 129 if (uv < UTF8_QUAD_MAX)
a0ed51b3
LW
130#endif
131 {
eb160463
GS
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);
a0ed51b3
LW
139 return d;
140 }
6b8eaf93 141#ifdef HAS_QUAD
a0ed51b3 142 {
eb160463
GS
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);
a0ed51b3
LW
156 return d;
157 }
158#endif
1d72bdf6 159#endif /* Loop style */
a0ed51b3 160}
b851fbc1
JH
161
162U8 *
163Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
164{
165 return Perl_uvuni_to_utf8_flags(aTHX_ d, uv, 0);
166}
9041c2e3
NIS
167
168
169/*
eebe1485
SC
170=for apidoc A|STRLEN|is_utf8_char|U8 *s
171
5da9da9e 172Tests if some arbitrary number of bytes begins in a valid UTF-8
82686b01
JH
173character. Note that an INVARIANT (i.e. ASCII) character is a valid
174UTF-8 character. The actual number of bytes in the UTF-8 character
175will be returned if it is valid, otherwise 0.
9041c2e3 176
82686b01 177=cut */
067a85ef 178STRLEN
386d01d6
GS
179Perl_is_utf8_char(pTHX_ U8 *s)
180{
181 U8 u = *s;
067a85ef
A
182 STRLEN slen, len;
183 UV uv, ouv;
386d01d6 184
1d72bdf6 185 if (UTF8_IS_INVARIANT(u))
386d01d6
GS
186 return 1;
187
60006e79 188 if (!UTF8_IS_START(u))
386d01d6
GS
189 return 0;
190
9f07fdcd 191 len = UTF8SKIP(s);
386d01d6 192
60006e79 193 if (len < 2 || !UTF8_IS_CONTINUATION(s[1]))
067a85ef
A
194 return 0;
195
386d01d6
GS
196 slen = len - 1;
197 s++;
6eb6869e 198 u &= UTF_START_MASK(len);
1d72bdf6 199 uv = u;
067a85ef 200 ouv = uv;
386d01d6 201 while (slen--) {
60006e79 202 if (!UTF8_IS_CONTINUATION(*s))
386d01d6 203 return 0;
8850bf83 204 uv = UTF8_ACCUMULATE(uv, *s);
209a9bc1 205 if (uv < ouv)
067a85ef
A
206 return 0;
207 ouv = uv;
386d01d6
GS
208 s++;
209 }
067a85ef 210
eb160463 211 if ((STRLEN)UNISKIP(uv) < len)
067a85ef
A
212 return 0;
213
386d01d6
GS
214 return len;
215}
216
6662521e 217/*
eebe1485 218=for apidoc A|bool|is_utf8_string|U8 *s|STRLEN len
6662521e 219
5da9da9e
JH
220Returns true if first C<len> bytes of the given string form a valid UTF8
221string, false otherwise. Note that 'a valid UTF8 string' does not mean
222'a string that contains UTF8' because a valid ASCII string is a valid
223UTF8 string.
6662521e
GS
224
225=cut
226*/
227
8e84507e 228bool
6662521e
GS
229Perl_is_utf8_string(pTHX_ U8 *s, STRLEN len)
230{
067a85ef 231 U8* x = s;
1aa99e6b 232 U8* send;
067a85ef
A
233 STRLEN c;
234
1aa99e6b 235 if (!len)
6cd5fe39 236 len = strlen((char *)s);
1aa99e6b
IH
237 send = s + len;
238
6662521e
GS
239 while (x < send) {
240 c = is_utf8_char(x);
067a85ef
A
241 if (!c)
242 return FALSE;
6662521e 243 x += c;
6662521e 244 }
60006e79
JH
245 if (x != send)
246 return FALSE;
067a85ef
A
247
248 return TRUE;
6662521e
GS
249}
250
67e989fb 251/*
9041c2e3 252=for apidoc A|UV|utf8n_to_uvuni|U8 *s|STRLEN curlen|STRLEN *retlen|U32 flags
67e989fb 253
9041c2e3
NIS
254Bottom level UTF-8 decode routine.
255Returns the unicode code point value of the first character in the string C<s>
ba210ebe 256which is assumed to be in UTF8 encoding and no longer than C<curlen>;
7df053ec 257C<retlen> will be set to the length, in bytes, of that character.
67e989fb
JH
258
259If C<s> does not point to a well-formed UTF8 character, the behaviour
dcad2880
JH
260is dependent on the value of C<flags>: if it contains UTF8_CHECK_ONLY,
261it is assumed that the caller will raise a warning, and this function
28d3d195
JH
262will silently just set C<retlen> to C<-1> and return zero. If the
263C<flags> does not contain UTF8_CHECK_ONLY, warnings about
264malformations will be given, C<retlen> will be set to the expected
265length of the UTF-8 character in bytes, and zero will be returned.
266
267The C<flags> can also contain various flags to allow deviations from
268the strict UTF-8 encoding (see F<utf8.h>).
67e989fb 269
9041c2e3
NIS
270Most code should use utf8_to_uvchr() rather than call this directly.
271
37607a96
PK
272=cut
273*/
67e989fb 274
a0ed51b3 275UV
37607a96 276Perl_utf8n_to_uvuni(pTHX_ U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
a0ed51b3 277{
097fb8e2 278 U8 *s0 = s;
9c5ffd7c 279 UV uv = *s, ouv = 0;
ba210ebe
JH
280 STRLEN len = 1;
281 bool dowarn = ckWARN_d(WARN_UTF8);
4f849cb6 282 UV startbyte = *s;
ba210ebe 283 STRLEN expectlen = 0;
a0dbb045
JH
284 U32 warning = 0;
285
286/* This list is a superset of the UTF8_ALLOW_XXX. */
287
288#define UTF8_WARN_EMPTY 1
289#define UTF8_WARN_CONTINUATION 2
290#define UTF8_WARN_NON_CONTINUATION 3
291#define UTF8_WARN_FE_FF 4
292#define UTF8_WARN_SHORT 5
293#define UTF8_WARN_OVERFLOW 6
294#define UTF8_WARN_SURROGATE 7
c867b360
JH
295#define UTF8_WARN_LONG 8
296#define UTF8_WARN_FFFF 9 /* Also FFFE. */
a0dbb045
JH
297
298 if (curlen == 0 &&
299 !(flags & UTF8_ALLOW_EMPTY)) {
300 warning = UTF8_WARN_EMPTY;
0c443dc2
JH
301 goto malformed;
302 }
303
1d72bdf6 304 if (UTF8_IS_INVARIANT(uv)) {
a0ed51b3
LW
305 if (retlen)
306 *retlen = 1;
c4d5f83a 307 return (UV) (NATIVE_TO_UTF(*s));
a0ed51b3 308 }
67e989fb 309
421a8bf2 310 if (UTF8_IS_CONTINUATION(uv) &&
fcc8fcf6 311 !(flags & UTF8_ALLOW_CONTINUATION)) {
a0dbb045 312 warning = UTF8_WARN_CONTINUATION;
ba210ebe
JH
313 goto malformed;
314 }
315
421a8bf2 316 if (UTF8_IS_START(uv) && curlen > 1 && !UTF8_IS_CONTINUATION(s[1]) &&
fcc8fcf6 317 !(flags & UTF8_ALLOW_NON_CONTINUATION)) {
a0dbb045 318 warning = UTF8_WARN_NON_CONTINUATION;
ba210ebe
JH
319 goto malformed;
320 }
9041c2e3 321
1d72bdf6 322#ifdef EBCDIC
75383841 323 uv = NATIVE_TO_UTF(uv);
1d72bdf6 324#else
fcc8fcf6
JH
325 if ((uv == 0xfe || uv == 0xff) &&
326 !(flags & UTF8_ALLOW_FE_FF)) {
a0dbb045 327 warning = UTF8_WARN_FE_FF;
ba210ebe 328 goto malformed;
a0ed51b3 329 }
1d72bdf6
NIS
330#endif
331
ba210ebe
JH
332 if (!(uv & 0x20)) { len = 2; uv &= 0x1f; }
333 else if (!(uv & 0x10)) { len = 3; uv &= 0x0f; }
334 else if (!(uv & 0x08)) { len = 4; uv &= 0x07; }
335 else if (!(uv & 0x04)) { len = 5; uv &= 0x03; }
1d72bdf6
NIS
336#ifdef EBCDIC
337 else if (!(uv & 0x02)) { len = 6; uv &= 0x01; }
338 else { len = 7; uv &= 0x01; }
339#else
ba210ebe
JH
340 else if (!(uv & 0x02)) { len = 6; uv &= 0x01; }
341 else if (!(uv & 0x01)) { len = 7; uv = 0; }
1d72bdf6
NIS
342 else { len = 13; uv = 0; } /* whoa! */
343#endif
344
a0ed51b3
LW
345 if (retlen)
346 *retlen = len;
9041c2e3 347
ba210ebe
JH
348 expectlen = len;
349
fcc8fcf6
JH
350 if ((curlen < expectlen) &&
351 !(flags & UTF8_ALLOW_SHORT)) {
a0dbb045 352 warning = UTF8_WARN_SHORT;
ba210ebe
JH
353 goto malformed;
354 }
355
356 len--;
a0ed51b3 357 s++;
ba210ebe
JH
358 ouv = uv;
359
a0ed51b3 360 while (len--) {
421a8bf2
JH
361 if (!UTF8_IS_CONTINUATION(*s) &&
362 !(flags & UTF8_ALLOW_NON_CONTINUATION)) {
a0dbb045
JH
363 s--;
364 warning = UTF8_WARN_NON_CONTINUATION;
ba210ebe 365 goto malformed;
a0ed51b3
LW
366 }
367 else
8850bf83 368 uv = UTF8_ACCUMULATE(uv, *s);
a0dbb045
JH
369 if (!(uv > ouv)) {
370 /* These cannot be allowed. */
371 if (uv == ouv) {
372 if (!(flags & UTF8_ALLOW_LONG)) {
373 warning = UTF8_WARN_LONG;
374 goto malformed;
375 }
376 }
377 else { /* uv < ouv */
378 /* This cannot be allowed. */
379 warning = UTF8_WARN_OVERFLOW;
380 goto malformed;
381 }
ba210ebe
JH
382 }
383 s++;
384 ouv = uv;
385 }
386
421a8bf2 387 if (UNICODE_IS_SURROGATE(uv) &&
fcc8fcf6 388 !(flags & UTF8_ALLOW_SURROGATE)) {
a0dbb045 389 warning = UTF8_WARN_SURROGATE;
ba210ebe 390 goto malformed;
eb160463 391 } else if ((expectlen > (STRLEN)UNISKIP(uv)) &&
fcc8fcf6 392 !(flags & UTF8_ALLOW_LONG)) {
a0dbb045 393 warning = UTF8_WARN_LONG;
ba210ebe 394 goto malformed;
421a8bf2 395 } else if (UNICODE_IS_ILLEGAL(uv) &&
a9917092 396 !(flags & UTF8_ALLOW_FFFF)) {
a0dbb045 397 warning = UTF8_WARN_FFFF;
a9917092 398 goto malformed;
a0ed51b3 399 }
ba210ebe 400
a0ed51b3 401 return uv;
ba210ebe
JH
402
403malformed:
404
fcc8fcf6 405 if (flags & UTF8_CHECK_ONLY) {
ba210ebe 406 if (retlen)
cc366d4b 407 *retlen = -1;
ba210ebe
JH
408 return 0;
409 }
410
a0dbb045
JH
411 if (dowarn) {
412 SV* sv = sv_2mortal(newSVpv("Malformed UTF-8 character ", 0));
413
414 switch (warning) {
415 case 0: /* Intentionally empty. */ break;
416 case UTF8_WARN_EMPTY:
417 Perl_sv_catpvf(aTHX_ sv, "(empty string)");
418 break;
419 case UTF8_WARN_CONTINUATION:
097fb8e2 420 Perl_sv_catpvf(aTHX_ sv, "(unexpected continuation byte 0x%02"UVxf", with no preceding start byte)", uv);
a0dbb045
JH
421 break;
422 case UTF8_WARN_NON_CONTINUATION:
097fb8e2
JH
423 if (s == s0)
424 Perl_sv_catpvf(aTHX_ sv, "(unexpected non-continuation byte 0x%02"UVxf", immediately after start byte 0x%02"UVxf")",
425 (UV)s[1], startbyte);
426 else
427 Perl_sv_catpvf(aTHX_ sv, "(unexpected non-continuation byte 0x%02"UVxf", %d byte%s after start byte 0x%02"UVxf", expected %d bytes)",
428 (UV)s[1], s - s0, s - s0 > 1 ? "s" : "", startbyte, expectlen);
429
a0dbb045
JH
430 break;
431 case UTF8_WARN_FE_FF:
432 Perl_sv_catpvf(aTHX_ sv, "(byte 0x%02"UVxf")", uv);
433 break;
434 case UTF8_WARN_SHORT:
097fb8e2
JH
435 Perl_sv_catpvf(aTHX_ sv, "(%d byte%s, need %d, after start byte 0x%02"UVxf")",
436 curlen, curlen == 1 ? "" : "s", expectlen, startbyte);
b31f83c2 437 expectlen = curlen; /* distance for caller to skip */
a0dbb045
JH
438 break;
439 case UTF8_WARN_OVERFLOW:
097fb8e2
JH
440 Perl_sv_catpvf(aTHX_ sv, "(overflow at 0x%"UVxf", byte 0x%02x, after start byte 0x%02"UVxf")",
441 ouv, *s, startbyte);
a0dbb045
JH
442 break;
443 case UTF8_WARN_SURROGATE:
444 Perl_sv_catpvf(aTHX_ sv, "(UTF-16 surrogate 0x%04"UVxf")", uv);
445 break;
a0dbb045 446 case UTF8_WARN_LONG:
097fb8e2
JH
447 Perl_sv_catpvf(aTHX_ sv, "(%d byte%s, need %d, after start byte 0x%02"UVxf")",
448 expectlen, expectlen == 1 ? "": "s", UNISKIP(uv), startbyte);
a0dbb045
JH
449 break;
450 case UTF8_WARN_FFFF:
451 Perl_sv_catpvf(aTHX_ sv, "(character 0x%04"UVxf")", uv);
452 break;
453 default:
454 Perl_sv_catpvf(aTHX_ sv, "(unknown reason)");
455 break;
456 }
457
458 if (warning) {
459 char *s = SvPVX(sv);
460
461 if (PL_op)
9014280d 462 Perl_warner(aTHX_ packWARN(WARN_UTF8),
53e06cf0 463 "%s in %s", s, OP_DESC(PL_op));
a0dbb045 464 else
9014280d 465 Perl_warner(aTHX_ packWARN(WARN_UTF8), "%s", s);
a0dbb045
JH
466 }
467 }
468
ba210ebe 469 if (retlen)
28d3d195 470 *retlen = expectlen ? expectlen : len;
ba210ebe 471
28d3d195 472 return 0;
a0ed51b3
LW
473}
474
8e84507e 475/*
37607a96 476=for apidoc A|UV|utf8_to_uvchr|U8 *s|STRLEN *retlen
9041c2e3
NIS
477
478Returns the native character value of the first character in the string C<s>
479which is assumed to be in UTF8 encoding; C<retlen> will be set to the
480length, in bytes, of that character.
481
482If C<s> does not point to a well-formed UTF8 character, zero is
483returned and retlen is set, if possible, to -1.
484
485=cut
486*/
487
488UV
37607a96 489Perl_utf8_to_uvchr(pTHX_ U8 *s, STRLEN *retlen)
9041c2e3 490{
872c91ae
JH
491 return Perl_utf8n_to_uvchr(aTHX_ s, UTF8_MAXLEN, retlen,
492 ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
9041c2e3
NIS
493}
494
495/*
37607a96 496=for apidoc A|UV|utf8_to_uvuni|U8 *s|STRLEN *retlen
9041c2e3
NIS
497
498Returns the Unicode code point of the first character in the string C<s>
499which is assumed to be in UTF8 encoding; C<retlen> will be set to the
500length, in bytes, of that character.
501
502This function should only be used when returned UV is considered
503an index into the Unicode semantic tables (e.g. swashes).
504
ba210ebe
JH
505If C<s> does not point to a well-formed UTF8 character, zero is
506returned and retlen is set, if possible, to -1.
8e84507e
NIS
507
508=cut
509*/
510
511UV
37607a96 512Perl_utf8_to_uvuni(pTHX_ U8 *s, STRLEN *retlen)
8e84507e 513{
9041c2e3 514 /* Call the low level routine asking for checks */
872c91ae
JH
515 return Perl_utf8n_to_uvuni(aTHX_ s, UTF8_MAXLEN, retlen,
516 ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
8e84507e
NIS
517}
518
b76347f2 519/*
37607a96 520=for apidoc A|STRLEN|utf8_length|U8 *s|U8 *e
b76347f2
JH
521
522Return the length of the UTF-8 char encoded string C<s> in characters.
02eb7b47
JH
523Stops at C<e> (inclusive). If C<e E<lt> s> or if the scan would end
524up past C<e>, croaks.
b76347f2
JH
525
526=cut
527*/
528
529STRLEN
37607a96 530Perl_utf8_length(pTHX_ U8 *s, U8 *e)
b76347f2
JH
531{
532 STRLEN len = 0;
533
8850bf83
JH
534 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g.
535 * the bitops (especially ~) can create illegal UTF-8.
536 * In other words: in Perl UTF-8 is not just for Unicode. */
537
901b21bf
JH
538 if (e < s) {
539 if (ckWARN_d(WARN_UTF8)) {
540 if (PL_op)
541 Perl_warner(aTHX_ packWARN(WARN_UTF8),
542 "%s in %s", unees, OP_DESC(PL_op));
543 else
544 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
545 }
546 return 0;
547 }
b76347f2 548 while (s < e) {
02eb7b47 549 U8 t = UTF8SKIP(s);
b76347f2 550
901b21bf
JH
551 if (e - s < t) {
552 if (ckWARN_d(WARN_UTF8)) {
553 if (PL_op)
554 Perl_warner(aTHX_ packWARN(WARN_UTF8),
555 unees, OP_DESC(PL_op));
556 else
557 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
558 }
559 return len;
560 }
b76347f2
JH
561 s += t;
562 len++;
563 }
564
565 return len;
566}
567
b06226ff 568/*
eebe1485 569=for apidoc A|IV|utf8_distance|U8 *a|U8 *b
b06226ff
JH
570
571Returns the number of UTF8 characters between the UTF-8 pointers C<a>
572and C<b>.
573
574WARNING: use only if you *know* that the pointers point inside the
575same UTF-8 buffer.
576
37607a96
PK
577=cut
578*/
a0ed51b3 579
02eb7b47 580IV
864dbfa3 581Perl_utf8_distance(pTHX_ U8 *a, U8 *b)
a0ed51b3 582{
02eb7b47
JH
583 IV off = 0;
584
8850bf83
JH
585 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g.
586 * the bitops (especially ~) can create illegal UTF-8.
587 * In other words: in Perl UTF-8 is not just for Unicode. */
588
a0ed51b3
LW
589 if (a < b) {
590 while (a < b) {
02eb7b47
JH
591 U8 c = UTF8SKIP(a);
592
901b21bf
JH
593 if (b - a < c) {
594 if (ckWARN_d(WARN_UTF8)) {
595 if (PL_op)
596 Perl_warner(aTHX_ packWARN(WARN_UTF8),
597 "%s in %s", unees, OP_DESC(PL_op));
598 else
599 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
600 }
601 return off;
602 }
02eb7b47 603 a += c;
a0ed51b3
LW
604 off--;
605 }
606 }
607 else {
608 while (b < a) {
02eb7b47
JH
609 U8 c = UTF8SKIP(b);
610
901b21bf
JH
611 if (a - b < c) {
612 if (ckWARN_d(WARN_UTF8)) {
613 if (PL_op)
614 Perl_warner(aTHX_ packWARN(WARN_UTF8),
615 "%s in %s", unees, OP_DESC(PL_op));
616 else
617 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
618 }
619 return off;
620 }
02eb7b47 621 b += c;
a0ed51b3
LW
622 off++;
623 }
624 }
02eb7b47 625
a0ed51b3
LW
626 return off;
627}
628
b06226ff 629/*
37607a96 630=for apidoc A|U8 *|utf8_hop|U8 *s|I32 off
b06226ff 631
8850bf83
JH
632Return the UTF-8 pointer C<s> displaced by C<off> characters, either
633forward or backward.
b06226ff
JH
634
635WARNING: do not use the following unless you *know* C<off> is within
8850bf83
JH
636the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned
637on the first byte of character or just after the last byte of a character.
b06226ff 638
37607a96
PK
639=cut
640*/
a0ed51b3
LW
641
642U8 *
864dbfa3 643Perl_utf8_hop(pTHX_ U8 *s, I32 off)
a0ed51b3 644{
8850bf83
JH
645 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g
646 * the bitops (especially ~) can create illegal UTF-8.
647 * In other words: in Perl UTF-8 is not just for Unicode. */
648
a0ed51b3
LW
649 if (off >= 0) {
650 while (off--)
651 s += UTF8SKIP(s);
652 }
653 else {
654 while (off++) {
655 s--;
8850bf83
JH
656 while (UTF8_IS_CONTINUATION(*s))
657 s--;
a0ed51b3
LW
658 }
659 }
660 return s;
661}
662
6940069f 663/*
eebe1485 664=for apidoc A|U8 *|utf8_to_bytes|U8 *s|STRLEN *len
6940069f 665
246fae53
MG
666Converts a string C<s> of length C<len> from UTF8 into byte encoding.
667Unlike C<bytes_to_utf8>, this over-writes the original string, and
668updates len to contain the new length.
67e989fb 669Returns zero on failure, setting C<len> to -1.
6940069f
GS
670
671=cut
672*/
673
674U8 *
37607a96 675Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len)
6940069f 676{
6940069f
GS
677 U8 *send;
678 U8 *d;
dcad2880 679 U8 *save = s;
246fae53
MG
680
681 /* ensure valid UTF8 and chars < 256 before updating string */
dcad2880
JH
682 for (send = s + *len; s < send; ) {
683 U8 c = *s++;
684
1d72bdf6
NIS
685 if (!UTF8_IS_INVARIANT(c) &&
686 (!UTF8_IS_DOWNGRADEABLE_START(c) || (s >= send)
687 || !(c = *s++) || !UTF8_IS_CONTINUATION(c))) {
dcad2880
JH
688 *len = -1;
689 return 0;
690 }
246fae53 691 }
dcad2880
JH
692
693 d = s = save;
6940069f 694 while (s < send) {
ed646e6e 695 STRLEN ulen;
9041c2e3 696 *d++ = (U8)utf8_to_uvchr(s, &ulen);
ed646e6e 697 s += ulen;
6940069f
GS
698 }
699 *d = '\0';
246fae53 700 *len = d - save;
6940069f
GS
701 return save;
702}
703
704/*
f9a63242
JH
705=for apidoc A|U8 *|bytes_from_utf8|U8 *s|STRLEN *len|bool *is_utf8
706
707Converts a string C<s> of length C<len> from UTF8 into byte encoding.
708Unlike <utf8_to_bytes> but like C<bytes_to_utf8>, returns a pointer to
ef9edfd0
JH
709the newly-created string, and updates C<len> to contain the new
710length. Returns the original string if no conversion occurs, C<len>
711is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to
7120 if C<s> is converted or contains all 7bit characters.
f9a63242 713
37607a96
PK
714=cut
715*/
f9a63242
JH
716
717U8 *
37607a96 718Perl_bytes_from_utf8(pTHX_ U8 *s, STRLEN *len, bool *is_utf8)
f9a63242 719{
f9a63242
JH
720 U8 *d;
721 U8 *start = s;
db42d148 722 U8 *send;
f9a63242
JH
723 I32 count = 0;
724
725 if (!*is_utf8)
726 return start;
727
ef9edfd0 728 /* ensure valid UTF8 and chars < 256 before converting string */
f9a63242
JH
729 for (send = s + *len; s < send;) {
730 U8 c = *s++;
1d72bdf6 731 if (!UTF8_IS_INVARIANT(c)) {
db42d148
NIS
732 if (UTF8_IS_DOWNGRADEABLE_START(c) && s < send &&
733 (c = *s++) && UTF8_IS_CONTINUATION(c))
734 count++;
735 else
f9a63242 736 return start;
db42d148 737 }
f9a63242
JH
738 }
739
740 *is_utf8 = 0;
741
f9a63242 742 Newz(801, d, (*len) - count + 1, U8);
ef9edfd0 743 s = start; start = d;
f9a63242
JH
744 while (s < send) {
745 U8 c = *s++;
c4d5f83a
NIS
746 if (!UTF8_IS_INVARIANT(c)) {
747 /* Then it is two-byte encoded */
748 c = UTF8_ACCUMULATE(NATIVE_TO_UTF(c), *s++);
749 c = ASCII_TO_NATIVE(c);
750 }
751 *d++ = c;
f9a63242
JH
752 }
753 *d = '\0';
754 *len = d - start;
755 return start;
756}
757
758/*
eebe1485 759=for apidoc A|U8 *|bytes_to_utf8|U8 *s|STRLEN *len
6940069f
GS
760
761Converts a string C<s> of length C<len> from ASCII into UTF8 encoding.
6662521e
GS
762Returns a pointer to the newly-created string, and sets C<len> to
763reflect the new length.
6940069f 764
497711e7 765=cut
6940069f
GS
766*/
767
768U8*
37607a96 769Perl_bytes_to_utf8(pTHX_ U8 *s, STRLEN *len)
6940069f 770{
6940069f
GS
771 U8 *send;
772 U8 *d;
773 U8 *dst;
6662521e 774 send = s + (*len);
6940069f 775
6662521e 776 Newz(801, d, (*len) * 2 + 1, U8);
6940069f
GS
777 dst = d;
778
779 while (s < send) {
db42d148 780 UV uv = NATIVE_TO_ASCII(*s++);
c4d5f83a 781 if (UNI_IS_INVARIANT(uv))
eb160463 782 *d++ = (U8)UTF_TO_NATIVE(uv);
6940069f 783 else {
eb160463
GS
784 *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
785 *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
6940069f
GS
786 }
787 }
788 *d = '\0';
6662521e 789 *len = d-dst;
6940069f
GS
790 return dst;
791}
792
a0ed51b3 793/*
dea0fc0b 794 * Convert native (big-endian) or reversed (little-endian) UTF-16 to UTF-8.
a0ed51b3
LW
795 *
796 * Destination must be pre-extended to 3/2 source. Do not use in-place.
797 * We optimize for native, for obvious reasons. */
798
799U8*
dea0fc0b 800Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
a0ed51b3 801{
dea0fc0b
JH
802 U8* pend;
803 U8* dstart = d;
804
805 if (bytelen & 1)
a7867d0a 806 Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen");
dea0fc0b
JH
807
808 pend = p + bytelen;
809
a0ed51b3 810 while (p < pend) {
dea0fc0b
JH
811 UV uv = (p[0] << 8) + p[1]; /* UTF-16BE */
812 p += 2;
a0ed51b3 813 if (uv < 0x80) {
eb160463 814 *d++ = (U8)uv;
a0ed51b3
LW
815 continue;
816 }
817 if (uv < 0x800) {
eb160463
GS
818 *d++ = (U8)(( uv >> 6) | 0xc0);
819 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
820 continue;
821 }
822 if (uv >= 0xd800 && uv < 0xdbff) { /* surrogates */
dea0fc0b
JH
823 UV low = *p++;
824 if (low < 0xdc00 || low >= 0xdfff)
825 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
a0ed51b3
LW
826 uv = ((uv - 0xd800) << 10) + (low - 0xdc00) + 0x10000;
827 }
828 if (uv < 0x10000) {
eb160463
GS
829 *d++ = (U8)(( uv >> 12) | 0xe0);
830 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
831 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
832 continue;
833 }
834 else {
eb160463
GS
835 *d++ = (U8)(( uv >> 18) | 0xf0);
836 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
837 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
838 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
839 continue;
840 }
841 }
dea0fc0b 842 *newlen = d - dstart;
a0ed51b3
LW
843 return d;
844}
845
846/* Note: this one is slightly destructive of the source. */
847
848U8*
dea0fc0b 849Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
a0ed51b3
LW
850{
851 U8* s = (U8*)p;
852 U8* send = s + bytelen;
853 while (s < send) {
854 U8 tmp = s[0];
855 s[0] = s[1];
856 s[1] = tmp;
857 s += 2;
858 }
dea0fc0b 859 return utf16_to_utf8(p, d, bytelen, newlen);
a0ed51b3
LW
860}
861
862/* for now these are all defined (inefficiently) in terms of the utf8 versions */
863
864bool
84afefe6 865Perl_is_uni_alnum(pTHX_ UV c)
a0ed51b3 866{
ad391ad9 867 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 868 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
869 return is_utf8_alnum(tmpbuf);
870}
871
872bool
84afefe6 873Perl_is_uni_alnumc(pTHX_ UV c)
b8c5462f 874{
ad391ad9 875 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 876 uvchr_to_utf8(tmpbuf, c);
b8c5462f
JH
877 return is_utf8_alnumc(tmpbuf);
878}
879
880bool
84afefe6 881Perl_is_uni_idfirst(pTHX_ UV c)
a0ed51b3 882{
ad391ad9 883 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 884 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
885 return is_utf8_idfirst(tmpbuf);
886}
887
888bool
84afefe6 889Perl_is_uni_alpha(pTHX_ UV c)
a0ed51b3 890{
ad391ad9 891 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 892 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
893 return is_utf8_alpha(tmpbuf);
894}
895
896bool
84afefe6 897Perl_is_uni_ascii(pTHX_ UV c)
4d61ec05 898{
ad391ad9 899 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 900 uvchr_to_utf8(tmpbuf, c);
4d61ec05
GS
901 return is_utf8_ascii(tmpbuf);
902}
903
904bool
84afefe6 905Perl_is_uni_space(pTHX_ UV c)
a0ed51b3 906{
ad391ad9 907 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 908 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
909 return is_utf8_space(tmpbuf);
910}
911
912bool
84afefe6 913Perl_is_uni_digit(pTHX_ UV c)
a0ed51b3 914{
ad391ad9 915 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 916 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
917 return is_utf8_digit(tmpbuf);
918}
919
920bool
84afefe6 921Perl_is_uni_upper(pTHX_ UV c)
a0ed51b3 922{
ad391ad9 923 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 924 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
925 return is_utf8_upper(tmpbuf);
926}
927
928bool
84afefe6 929Perl_is_uni_lower(pTHX_ UV c)
a0ed51b3 930{
ad391ad9 931 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 932 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
933 return is_utf8_lower(tmpbuf);
934}
935
936bool
84afefe6 937Perl_is_uni_cntrl(pTHX_ UV c)
b8c5462f 938{
ad391ad9 939 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 940 uvchr_to_utf8(tmpbuf, c);
b8c5462f
JH
941 return is_utf8_cntrl(tmpbuf);
942}
943
944bool
84afefe6 945Perl_is_uni_graph(pTHX_ UV c)
b8c5462f 946{
ad391ad9 947 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 948 uvchr_to_utf8(tmpbuf, c);
b8c5462f
JH
949 return is_utf8_graph(tmpbuf);
950}
951
952bool
84afefe6 953Perl_is_uni_print(pTHX_ UV c)
a0ed51b3 954{
ad391ad9 955 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 956 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
957 return is_utf8_print(tmpbuf);
958}
959
b8c5462f 960bool
84afefe6 961Perl_is_uni_punct(pTHX_ UV c)
b8c5462f 962{
ad391ad9 963 U8 tmpbuf[UTF8_MAXLEN+1];
230880c1 964 uvchr_to_utf8(tmpbuf, c);
b8c5462f
JH
965 return is_utf8_punct(tmpbuf);
966}
967
4d61ec05 968bool
84afefe6 969Perl_is_uni_xdigit(pTHX_ UV c)
4d61ec05 970{
e7ae6809 971 U8 tmpbuf[UTF8_MAXLEN_UCLC+1];
230880c1 972 uvchr_to_utf8(tmpbuf, c);
4d61ec05
GS
973 return is_utf8_xdigit(tmpbuf);
974}
975
84afefe6
JH
976UV
977Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp)
a0ed51b3 978{
0ebc6274
JH
979 uvchr_to_utf8(p, c);
980 return to_utf8_upper(p, p, lenp);
a0ed51b3
LW
981}
982
84afefe6
JH
983UV
984Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp)
a0ed51b3 985{
0ebc6274
JH
986 uvchr_to_utf8(p, c);
987 return to_utf8_title(p, p, lenp);
a0ed51b3
LW
988}
989
84afefe6
JH
990UV
991Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp)
a0ed51b3 992{
0ebc6274
JH
993 uvchr_to_utf8(p, c);
994 return to_utf8_lower(p, p, lenp);
a0ed51b3
LW
995}
996
84afefe6
JH
997UV
998Perl_to_uni_fold(pTHX_ UV c, U8* p, STRLEN *lenp)
999{
0ebc6274
JH
1000 uvchr_to_utf8(p, c);
1001 return to_utf8_fold(p, p, lenp);
84afefe6
JH
1002}
1003
a0ed51b3
LW
1004/* for now these all assume no locale info available for Unicode > 255 */
1005
1006bool
84afefe6 1007Perl_is_uni_alnum_lc(pTHX_ UV c)
a0ed51b3
LW
1008{
1009 return is_uni_alnum(c); /* XXX no locale support yet */
1010}
1011
1012bool
84afefe6 1013Perl_is_uni_alnumc_lc(pTHX_ UV c)
b8c5462f
JH
1014{
1015 return is_uni_alnumc(c); /* XXX no locale support yet */
1016}
1017
1018bool
84afefe6 1019Perl_is_uni_idfirst_lc(pTHX_ UV c)
a0ed51b3
LW
1020{
1021 return is_uni_idfirst(c); /* XXX no locale support yet */
1022}
1023
1024bool
84afefe6 1025Perl_is_uni_alpha_lc(pTHX_ UV c)
a0ed51b3
LW
1026{
1027 return is_uni_alpha(c); /* XXX no locale support yet */
1028}
1029
1030bool
84afefe6 1031Perl_is_uni_ascii_lc(pTHX_ UV c)
4d61ec05
GS
1032{
1033 return is_uni_ascii(c); /* XXX no locale support yet */
1034}
1035
1036bool
84afefe6 1037Perl_is_uni_space_lc(pTHX_ UV c)
a0ed51b3
LW
1038{
1039 return is_uni_space(c); /* XXX no locale support yet */
1040}
1041
1042bool
84afefe6 1043Perl_is_uni_digit_lc(pTHX_ UV c)
a0ed51b3
LW
1044{
1045 return is_uni_digit(c); /* XXX no locale support yet */
1046}
1047
1048bool
84afefe6 1049Perl_is_uni_upper_lc(pTHX_ UV c)
a0ed51b3
LW
1050{
1051 return is_uni_upper(c); /* XXX no locale support yet */
1052}
1053
1054bool
84afefe6 1055Perl_is_uni_lower_lc(pTHX_ UV c)
a0ed51b3
LW
1056{
1057 return is_uni_lower(c); /* XXX no locale support yet */
1058}
1059
1060bool
84afefe6 1061Perl_is_uni_cntrl_lc(pTHX_ UV c)
b8c5462f
JH
1062{
1063 return is_uni_cntrl(c); /* XXX no locale support yet */
1064}
1065
1066bool
84afefe6 1067Perl_is_uni_graph_lc(pTHX_ UV c)
b8c5462f
JH
1068{
1069 return is_uni_graph(c); /* XXX no locale support yet */
1070}
1071
1072bool
84afefe6 1073Perl_is_uni_print_lc(pTHX_ UV c)
a0ed51b3
LW
1074{
1075 return is_uni_print(c); /* XXX no locale support yet */
1076}
1077
b8c5462f 1078bool
84afefe6 1079Perl_is_uni_punct_lc(pTHX_ UV c)
b8c5462f
JH
1080{
1081 return is_uni_punct(c); /* XXX no locale support yet */
1082}
1083
4d61ec05 1084bool
84afefe6 1085Perl_is_uni_xdigit_lc(pTHX_ UV c)
4d61ec05
GS
1086{
1087 return is_uni_xdigit(c); /* XXX no locale support yet */
1088}
1089
b7ac61fa
JH
1090U32
1091Perl_to_uni_upper_lc(pTHX_ U32 c)
1092{
ee099d14
JH
1093 /* XXX returns only the first character -- do not use XXX */
1094 /* XXX no locale support yet */
1095 STRLEN len;
1096 U8 tmpbuf[UTF8_MAXLEN_UCLC+1];
1097 return (U32)to_uni_upper(c, tmpbuf, &len);
b7ac61fa
JH
1098}
1099
1100U32
1101Perl_to_uni_title_lc(pTHX_ U32 c)
1102{
ee099d14
JH
1103 /* XXX returns only the first character XXX -- do not use XXX */
1104 /* XXX no locale support yet */
1105 STRLEN len;
1106 U8 tmpbuf[UTF8_MAXLEN_UCLC+1];
1107 return (U32)to_uni_title(c, tmpbuf, &len);
b7ac61fa
JH
1108}
1109
1110U32
1111Perl_to_uni_lower_lc(pTHX_ U32 c)
1112{
ee099d14
JH
1113 /* XXX returns only the first character -- do not use XXX */
1114 /* XXX no locale support yet */
1115 STRLEN len;
1116 U8 tmpbuf[UTF8_MAXLEN_UCLC+1];
1117 return (U32)to_uni_lower(c, tmpbuf, &len);
b7ac61fa
JH
1118}
1119
a0ed51b3 1120bool
864dbfa3 1121Perl_is_utf8_alnum(pTHX_ U8 *p)
a0ed51b3 1122{
386d01d6
GS
1123 if (!is_utf8_char(p))
1124 return FALSE;
a0ed51b3 1125 if (!PL_utf8_alnum)
289d4f09
ML
1126 /* NOTE: "IsWord", not "IsAlnum", since Alnum is a true
1127 * descendant of isalnum(3), in other words, it doesn't
1128 * contain the '_'. --jhi */
1129 PL_utf8_alnum = swash_init("utf8", "IsWord", &PL_sv_undef, 0, 0);
eb160463 1130 return swash_fetch(PL_utf8_alnum, p, TRUE) != 0;
a0ed51b3
LW
1131/* return *p == '_' || is_utf8_alpha(p) || is_utf8_digit(p); */
1132#ifdef SURPRISINGLY_SLOWER /* probably because alpha is usually true */
1133 if (!PL_utf8_alnum)
1134 PL_utf8_alnum = swash_init("utf8", "",
1135 sv_2mortal(newSVpv("+utf8::IsAlpha\n+utf8::IsDigit\n005F\n",0)), 0, 0);
eb160463 1136 return swash_fetch(PL_utf8_alnum, p, TRUE) != 0;
a0ed51b3
LW
1137#endif
1138}
1139
1140bool
b8c5462f
JH
1141Perl_is_utf8_alnumc(pTHX_ U8 *p)
1142{
386d01d6
GS
1143 if (!is_utf8_char(p))
1144 return FALSE;
b8c5462f
JH
1145 if (!PL_utf8_alnum)
1146 PL_utf8_alnum = swash_init("utf8", "IsAlnumC", &PL_sv_undef, 0, 0);
eb160463 1147 return swash_fetch(PL_utf8_alnum, p, TRUE) != 0;
b8c5462f
JH
1148/* return is_utf8_alpha(p) || is_utf8_digit(p); */
1149#ifdef SURPRISINGLY_SLOWER /* probably because alpha is usually true */
1150 if (!PL_utf8_alnum)
1151 PL_utf8_alnum = swash_init("utf8", "",
1152 sv_2mortal(newSVpv("+utf8::IsAlpha\n+utf8::IsDigit\n005F\n",0)), 0, 0);
eb160463 1153 return swash_fetch(PL_utf8_alnum, p, TRUE) != 0;
b8c5462f
JH
1154#endif
1155}
1156
1157bool
82686b01 1158Perl_is_utf8_idfirst(pTHX_ U8 *p) /* The naming is historical. */
a0ed51b3 1159{
82686b01
JH
1160 if (*p == '_')
1161 return TRUE;
1162 if (!is_utf8_char(p))
1163 return FALSE;
1164 if (!PL_utf8_idstart) /* is_utf8_idstart would be more logical. */
1165 PL_utf8_idstart = swash_init("utf8", "IdStart", &PL_sv_undef, 0, 0);
eb160463 1166 return swash_fetch(PL_utf8_idstart, p, TRUE) != 0;
82686b01
JH
1167}
1168
1169bool
1170Perl_is_utf8_idcont(pTHX_ U8 *p)
1171{
1172 if (*p == '_')
1173 return TRUE;
1174 if (!is_utf8_char(p))
1175 return FALSE;
1176 if (!PL_utf8_idcont)
1177 PL_utf8_idcont = swash_init("utf8", "IdContinue", &PL_sv_undef, 0, 0);
eb160463 1178 return swash_fetch(PL_utf8_idcont, p, TRUE) != 0;
a0ed51b3
LW
1179}
1180
1181bool
864dbfa3 1182Perl_is_utf8_alpha(pTHX_ U8 *p)
a0ed51b3 1183{
386d01d6
GS
1184 if (!is_utf8_char(p))
1185 return FALSE;
a0ed51b3 1186 if (!PL_utf8_alpha)
e24b16f9 1187 PL_utf8_alpha = swash_init("utf8", "IsAlpha", &PL_sv_undef, 0, 0);
eb160463 1188 return swash_fetch(PL_utf8_alpha, p, TRUE) != 0;
a0ed51b3
LW
1189}
1190
1191bool
b8c5462f
JH
1192Perl_is_utf8_ascii(pTHX_ U8 *p)
1193{
386d01d6
GS
1194 if (!is_utf8_char(p))
1195 return FALSE;
b8c5462f
JH
1196 if (!PL_utf8_ascii)
1197 PL_utf8_ascii = swash_init("utf8", "IsAscii", &PL_sv_undef, 0, 0);
eb160463 1198 return swash_fetch(PL_utf8_ascii, p, TRUE) != 0;
b8c5462f
JH
1199}
1200
1201bool
864dbfa3 1202Perl_is_utf8_space(pTHX_ U8 *p)
a0ed51b3 1203{
386d01d6
GS
1204 if (!is_utf8_char(p))
1205 return FALSE;
a0ed51b3 1206 if (!PL_utf8_space)
3bec3564 1207 PL_utf8_space = swash_init("utf8", "IsSpacePerl", &PL_sv_undef, 0, 0);
eb160463 1208 return swash_fetch(PL_utf8_space, p, TRUE) != 0;
a0ed51b3
LW
1209}
1210
1211bool
864dbfa3 1212Perl_is_utf8_digit(pTHX_ U8 *p)
a0ed51b3 1213{
386d01d6
GS
1214 if (!is_utf8_char(p))
1215 return FALSE;
a0ed51b3 1216 if (!PL_utf8_digit)
e24b16f9 1217 PL_utf8_digit = swash_init("utf8", "IsDigit", &PL_sv_undef, 0, 0);
eb160463 1218 return swash_fetch(PL_utf8_digit, p, TRUE) != 0;
a0ed51b3
LW
1219}
1220
1221bool
864dbfa3 1222Perl_is_utf8_upper(pTHX_ U8 *p)
a0ed51b3 1223{
386d01d6
GS
1224 if (!is_utf8_char(p))
1225 return FALSE;
a0ed51b3 1226 if (!PL_utf8_upper)
e24b16f9 1227 PL_utf8_upper = swash_init("utf8", "IsUpper", &PL_sv_undef, 0, 0);
eb160463 1228 return swash_fetch(PL_utf8_upper, p, TRUE) != 0;
a0ed51b3
LW
1229}
1230
1231bool
864dbfa3 1232Perl_is_utf8_lower(pTHX_ U8 *p)
a0ed51b3 1233{
386d01d6
GS
1234 if (!is_utf8_char(p))
1235 return FALSE;
a0ed51b3 1236 if (!PL_utf8_lower)
e24b16f9 1237 PL_utf8_lower = swash_init("utf8", "IsLower", &PL_sv_undef, 0, 0);
eb160463 1238 return swash_fetch(PL_utf8_lower, p, TRUE) != 0;
a0ed51b3
LW
1239}
1240
1241bool
b8c5462f
JH
1242Perl_is_utf8_cntrl(pTHX_ U8 *p)
1243{
386d01d6
GS
1244 if (!is_utf8_char(p))
1245 return FALSE;
b8c5462f
JH
1246 if (!PL_utf8_cntrl)
1247 PL_utf8_cntrl = swash_init("utf8", "IsCntrl", &PL_sv_undef, 0, 0);
eb160463 1248 return swash_fetch(PL_utf8_cntrl, p, TRUE) != 0;
b8c5462f
JH
1249}
1250
1251bool
1252Perl_is_utf8_graph(pTHX_ U8 *p)
1253{
386d01d6
GS
1254 if (!is_utf8_char(p))
1255 return FALSE;
b8c5462f
JH
1256 if (!PL_utf8_graph)
1257 PL_utf8_graph = swash_init("utf8", "IsGraph", &PL_sv_undef, 0, 0);
eb160463 1258 return swash_fetch(PL_utf8_graph, p, TRUE) != 0;
b8c5462f
JH
1259}
1260
1261bool
864dbfa3 1262Perl_is_utf8_print(pTHX_ U8 *p)
a0ed51b3 1263{
386d01d6
GS
1264 if (!is_utf8_char(p))
1265 return FALSE;
a0ed51b3 1266 if (!PL_utf8_print)
e24b16f9 1267 PL_utf8_print = swash_init("utf8", "IsPrint", &PL_sv_undef, 0, 0);
eb160463 1268 return swash_fetch(PL_utf8_print, p, TRUE) != 0;
a0ed51b3
LW
1269}
1270
1271bool
b8c5462f
JH
1272Perl_is_utf8_punct(pTHX_ U8 *p)
1273{
386d01d6
GS
1274 if (!is_utf8_char(p))
1275 return FALSE;
b8c5462f
JH
1276 if (!PL_utf8_punct)
1277 PL_utf8_punct = swash_init("utf8", "IsPunct", &PL_sv_undef, 0, 0);
eb160463 1278 return swash_fetch(PL_utf8_punct, p, TRUE) != 0;
b8c5462f
JH
1279}
1280
1281bool
1282Perl_is_utf8_xdigit(pTHX_ U8 *p)
1283{
386d01d6
GS
1284 if (!is_utf8_char(p))
1285 return FALSE;
b8c5462f
JH
1286 if (!PL_utf8_xdigit)
1287 PL_utf8_xdigit = swash_init("utf8", "IsXDigit", &PL_sv_undef, 0, 0);
eb160463 1288 return swash_fetch(PL_utf8_xdigit, p, TRUE) != 0;
b8c5462f
JH
1289}
1290
1291bool
864dbfa3 1292Perl_is_utf8_mark(pTHX_ U8 *p)
a0ed51b3 1293{
386d01d6
GS
1294 if (!is_utf8_char(p))
1295 return FALSE;
a0ed51b3 1296 if (!PL_utf8_mark)
e24b16f9 1297 PL_utf8_mark = swash_init("utf8", "IsM", &PL_sv_undef, 0, 0);
eb160463 1298 return swash_fetch(PL_utf8_mark, p, TRUE) != 0;
a0ed51b3
LW
1299}
1300
6b5c0936
JH
1301/*
1302=for apidoc A|UV|to_utf8_case|U8 *p|U8* ustrp|STRLEN *lenp|SV **swash|char *normal|char *special
1303
1304The "p" contains the pointer to the UTF-8 string encoding
1305the character that is being converted.
1306
1307The "ustrp" is a pointer to the character buffer to put the
1308conversion result to. The "lenp" is a pointer to the length
1309of the result.
1310
0134edef 1311The "swashp" is a pointer to the swash to use.
6b5c0936 1312
0134edef
JH
1313Both the special and normal mappings are stored lib/unicore/To/Foo.pl,
1314and loaded by SWASHGET, using lib/utf8_heavy.pl. The special (usually,
1315but not always, a multicharacter mapping), is tried first.
6b5c0936 1316
0134edef
JH
1317The "special" is a string like "utf8::ToSpecLower", which means the
1318hash %utf8::ToSpecLower. The access to the hash is through
1319Perl_to_utf8_case().
6b5c0936 1320
0134edef
JH
1321The "normal" is a string like "ToLower" which means the swash
1322%utf8::ToLower.
1323
1324=cut */
6b5c0936 1325
2104c8d9 1326UV
a6872d42 1327Perl_to_utf8_case(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, char *normal, char *special)
a0ed51b3 1328{
0134edef 1329 UV uv0, uv1;
2f9475ad 1330 U8 tmpbuf[UTF8_MAXLEN_FOLD+1];
0134edef 1331 STRLEN len = 0;
a0ed51b3 1332
1feea2c7
JH
1333 uv0 = utf8_to_uvchr(p, 0);
1334 /* The NATIVE_TO_UNI() and UNI_TO_NATIVE() mappings
1335 * are necessary in EBCDIC, they are redundant no-ops
1336 * in ASCII-ish platforms, and hopefully optimized away. */
1337 uv1 = NATIVE_TO_UNI(uv0);
1338 uvuni_to_utf8(tmpbuf, uv1);
0134edef
JH
1339
1340 if (!*swashp) /* load on-demand */
1341 *swashp = swash_init("utf8", normal, &PL_sv_undef, 4, 0);
1342
1343 if (special) {
1344 /* It might be "special" (sometimes, but not always,
2a37f04d 1345 * a multicharacter mapping) */
983ffd37
JH
1346 HV *hv;
1347 SV *keysv;
1348 HE *he;
2a37f04d 1349 SV *val;
2f9475ad 1350
42165d27
VK
1351#if defined(UNDER_CE) && defined(MIPS)
1352/*strange: compiler complaints that I redefine macro UVXf and points where
1353 it was first defined. I copied line from there without any changes.
1354 Nothing should change.
1355 But when I do not do this, there is an error on a line with
1356 Perl_newSVpvf(aTHX_ "%04"UVXf, uv1)
1357*/
1358#define UVXf "lX" /**/
1359#endif
983ffd37 1360 if ((hv = get_hv(special, FALSE)) &&
1feea2c7 1361 (keysv = sv_2mortal(Perl_newSVpvf(aTHX_ "%04"UVXf, uv1))) &&
2a37f04d
JH
1362 (he = hv_fetch_ent(hv, keysv, FALSE, 0)) &&
1363 (val = HeVAL(he))) {
47654450 1364 char *s;
47654450 1365
2a37f04d 1366 s = SvPV(val, len);
47654450
JH
1367 if (len == 1)
1368 len = uvuni_to_utf8(ustrp, NATIVE_TO_UNI(*(U8*)s)) - ustrp;
2a37f04d 1369 else {
2f9475ad
JH
1370#ifdef EBCDIC
1371 /* If we have EBCDIC we need to remap the characters
1372 * since any characters in the low 256 are Unicode
1373 * code points, not EBCDIC. */
7cda7a3d 1374 U8 *t = (U8*)s, *tend = t + len, *d;
2f9475ad
JH
1375
1376 d = tmpbuf;
1377 if (SvUTF8(val)) {
1378 STRLEN tlen = 0;
1379
1380 while (t < tend) {
1381 UV c = utf8_to_uvchr(t, &tlen);
1382 if (tlen > 0) {
1383 d = uvchr_to_utf8(d, UNI_TO_NATIVE(c));
1384 t += tlen;
1385 }
1386 else
1387 break;
1388 }
1389 }
1390 else {
36fec512
JH
1391 while (t < tend) {
1392 d = uvchr_to_utf8(d, UNI_TO_NATIVE(*t));
1393 t++;
1394 }
2f9475ad
JH
1395 }
1396 len = d - tmpbuf;
1397 Copy(tmpbuf, ustrp, len, U8);
1398#else
d2dcd0fb 1399 Copy(s, ustrp, len, U8);
2f9475ad 1400#endif
29e98929 1401 }
983ffd37 1402 }
0134edef
JH
1403 }
1404
1405 if (!len && *swashp) {
1406 UV uv2 = swash_fetch(*swashp, tmpbuf, TRUE);
1407
1408 if (uv2) {
1409 /* It was "normal" (a single character mapping). */
1410 UV uv3 = UNI_TO_NATIVE(uv2);
1411
e9101d72 1412 len = uvchr_to_utf8(ustrp, uv3) - ustrp;
2a37f04d
JH
1413 }
1414 }
1feea2c7 1415
0134edef
JH
1416 if (!len) /* Neither: just copy. */
1417 len = uvchr_to_utf8(ustrp, uv0) - ustrp;
1418
2a37f04d
JH
1419 if (lenp)
1420 *lenp = len;
1421
0134edef 1422 return len ? utf8_to_uvchr(ustrp, 0) : 0;
a0ed51b3
LW
1423}
1424
d3e79532
JH
1425/*
1426=for apidoc A|UV|to_utf8_upper|U8 *p|U8 *ustrp|STRLEN *lenp
1427
1428Convert the UTF-8 encoded character at p to its uppercase version and
1429store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1430that the ustrp needs to be at least UTF8_MAXLEN_UCLC+1 bytes since the
1431uppercase version may be longer than the original character (up to two
1432characters).
1433
1434The first character of the uppercased version is returned
1435(but note, as explained above, that there may be more.)
1436
1437=cut */
1438
2104c8d9 1439UV
983ffd37 1440Perl_to_utf8_upper(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp)
a0ed51b3 1441{
983ffd37 1442 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
b4e400f9 1443 &PL_utf8_toupper, "ToUpper", "utf8::ToSpecUpper");
983ffd37 1444}
a0ed51b3 1445
d3e79532
JH
1446/*
1447=for apidoc A|UV|to_utf8_title|U8 *p|U8 *ustrp|STRLEN *lenp
1448
1449Convert the UTF-8 encoded character at p to its titlecase version and
1450store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1451that the ustrp needs to be at least UTF8_MAXLEN_UCLC+1 bytes since the
1452titlecase version may be longer than the original character (up to two
1453characters).
1454
1455The first character of the titlecased version is returned
1456(but note, as explained above, that there may be more.)
1457
1458=cut */
1459
983ffd37
JH
1460UV
1461Perl_to_utf8_title(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp)
1462{
1463 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
b4e400f9 1464 &PL_utf8_totitle, "ToTitle", "utf8::ToSpecTitle");
a0ed51b3
LW
1465}
1466
d3e79532
JH
1467/*
1468=for apidoc A|UV|to_utf8_lower|U8 *p|U8 *ustrp|STRLEN *lenp
1469
1470Convert the UTF-8 encoded character at p to its lowercase version and
1471store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1472that the ustrp needs to be at least UTF8_MAXLEN_UCLC+1 bytes since the
1473lowercase version may be longer than the original character (up to two
1474characters).
1475
1476The first character of the lowercased version is returned
1477(but note, as explained above, that there may be more.)
1478
1479=cut */
1480
2104c8d9 1481UV
a2a2844f 1482Perl_to_utf8_lower(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp)
a0ed51b3 1483{
983ffd37 1484 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
b4e400f9
JH
1485 &PL_utf8_tolower, "ToLower", "utf8::ToSpecLower");
1486}
1487
d3e79532
JH
1488/*
1489=for apidoc A|UV|to_utf8_fold|U8 *p|U8 *ustrp|STRLEN *lenp
1490
1491Convert the UTF-8 encoded character at p to its foldcase version and
1492store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1493that the ustrp needs to be at least UTF8_MAXLEN_FOLD+1 bytes since the
1494foldcase version may be longer than the original character (up to
1495three characters).
1496
1497The first character of the foldcased version is returned
1498(but note, as explained above, that there may be more.)
1499
1500=cut */
1501
b4e400f9
JH
1502UV
1503Perl_to_utf8_fold(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp)
1504{
1505 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1506 &PL_utf8_tofold, "ToFold", "utf8::ToSpecFold");
a0ed51b3
LW
1507}
1508
1509/* a "swash" is a swatch hash */
1510
1511SV*
864dbfa3 1512Perl_swash_init(pTHX_ char* pkg, char* name, SV *listsv, I32 minbits, I32 none)
a0ed51b3
LW
1513{
1514 SV* retval;
bf1fed83 1515 SV* tokenbufsv = sv_2mortal(NEWSV(0,0));
8e84507e 1516 dSP;
1b026014 1517 HV *stash = gv_stashpvn(pkg, strlen(pkg), FALSE);
f8be5cf0 1518 SV* errsv_save;
ce3b816e 1519
1b026014 1520 if (!gv_fetchmeth(stash, "SWASHNEW", 8, -1)) { /* demand load utf8 */
ce3b816e 1521 ENTER;
f8be5cf0 1522 errsv_save = newSVsv(ERRSV);
ce3b816e 1523 Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, newSVpv(pkg,0), Nullsv);
f8be5cf0
JH
1524 if (!SvTRUE(ERRSV))
1525 sv_setsv(ERRSV, errsv_save);
1526 SvREFCNT_dec(errsv_save);
ce3b816e
GS
1527 LEAVE;
1528 }
1529 SPAGAIN;
a0ed51b3
LW
1530 PUSHSTACKi(PERLSI_MAGIC);
1531 PUSHMARK(SP);
1532 EXTEND(SP,5);
1533 PUSHs(sv_2mortal(newSVpvn(pkg, strlen(pkg))));
1534 PUSHs(sv_2mortal(newSVpvn(name, strlen(name))));
1535 PUSHs(listsv);
1536 PUSHs(sv_2mortal(newSViv(minbits)));
1537 PUSHs(sv_2mortal(newSViv(none)));
1538 PUTBACK;
1539 ENTER;
1540 SAVEI32(PL_hints);
1541 PL_hints = 0;
1542 save_re_context();
82686b01 1543 if (PL_curcop == &PL_compiling) {
bf1fed83 1544 /* XXX ought to be handled by lex_start */
82686b01 1545 SAVEI32(PL_in_my);
bf1fed83 1546 sv_setpv(tokenbufsv, PL_tokenbuf);
82686b01 1547 }
f8be5cf0 1548 errsv_save = newSVsv(ERRSV);
864dbfa3 1549 if (call_method("SWASHNEW", G_SCALAR))
8e84507e 1550 retval = newSVsv(*PL_stack_sp--);
a0ed51b3 1551 else
e24b16f9 1552 retval = &PL_sv_undef;
f8be5cf0
JH
1553 if (!SvTRUE(ERRSV))
1554 sv_setsv(ERRSV, errsv_save);
1555 SvREFCNT_dec(errsv_save);
a0ed51b3
LW
1556 LEAVE;
1557 POPSTACK;
e24b16f9 1558 if (PL_curcop == &PL_compiling) {
bf1fed83
JH
1559 STRLEN len;
1560 char* pv = SvPV(tokenbufsv, len);
1561
1562 Copy(pv, PL_tokenbuf, len+1, char);
eb160463 1563 PL_curcop->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
a0ed51b3 1564 }
bc45ce41
JH
1565 if (!SvROK(retval) || SvTYPE(SvRV(retval)) != SVt_PVHV) {
1566 if (SvPOK(retval))
1567 Perl_croak(aTHX_ "Can't find Unicode property definition \"%s\"",
1568 SvPV_nolen(retval));
cea2e8a9 1569 Perl_croak(aTHX_ "SWASHNEW didn't return an HV ref");
bc45ce41 1570 }
a0ed51b3
LW
1571 return retval;
1572}
1573
035d37be
JH
1574
1575/* This API is wrong for special case conversions since we may need to
1576 * return several Unicode characters for a single Unicode character
1577 * (see lib/unicore/SpecCase.txt) The SWASHGET in lib/utf8_heavy.pl is
1578 * the lower-level routine, and it is similarly broken for returning
1579 * multiple values. --jhi */
a0ed51b3 1580UV
3568d838 1581Perl_swash_fetch(pTHX_ SV *sv, U8 *ptr, bool do_utf8)
a0ed51b3
LW
1582{
1583 HV* hv = (HV*)SvRV(sv);
3568d838
JH
1584 U32 klen;
1585 U32 off;
a0ed51b3 1586 STRLEN slen;
7d85a32c 1587 STRLEN needents;
4ea42e7f 1588 U8 *tmps = NULL;
a0ed51b3
LW
1589 U32 bit;
1590 SV *retval;
3568d838
JH
1591 U8 tmputf8[2];
1592 UV c = NATIVE_TO_ASCII(*ptr);
1593
1594 if (!do_utf8 && !UNI_IS_INVARIANT(c)) {
eb160463
GS
1595 tmputf8[0] = (U8)UTF8_EIGHT_BIT_HI(c);
1596 tmputf8[1] = (U8)UTF8_EIGHT_BIT_LO(c);
3568d838
JH
1597 ptr = tmputf8;
1598 }
1599 /* Given a UTF-X encoded char 0xAA..0xYY,0xZZ
1600 * then the "swatch" is a vec() for al the chars which start
1601 * with 0xAA..0xYY
1602 * So the key in the hash (klen) is length of encoded char -1
1603 */
1604 klen = UTF8SKIP(ptr) - 1;
1605 off = ptr[klen];
a0ed51b3 1606
7d85a32c
JH
1607 if (klen == 0)
1608 {
1609 /* If char in invariant then swatch is for all the invariant chars
1610 * In both UTF-8 and UTF8-MOD that happens to be UTF_CONTINUATION_MARK
1611 */
1612 needents = UTF_CONTINUATION_MARK;
1613 off = NATIVE_TO_UTF(ptr[klen]);
1614 }
1615 else
1616 {
1617 /* If char is encoded then swatch is for the prefix */
1618 needents = (1 << UTF_ACCUMULATION_SHIFT);
1619 off = NATIVE_TO_UTF(ptr[klen]) & UTF_CONTINUATION_MASK;
1620 }
1621
a0ed51b3
LW
1622 /*
1623 * This single-entry cache saves about 1/3 of the utf8 overhead in test
1624 * suite. (That is, only 7-8% overall over just a hash cache. Still,
1625 * it's nothing to sniff at.) Pity we usually come through at least
1626 * two function calls to get here...
1627 *
1628 * NB: this code assumes that swatches are never modified, once generated!
1629 */
1630
3568d838 1631 if (hv == PL_last_swash_hv &&
a0ed51b3 1632 klen == PL_last_swash_klen &&
3568d838 1633 (!klen || memEQ((char *)ptr, (char *)PL_last_swash_key, klen)) )
a0ed51b3
LW
1634 {
1635 tmps = PL_last_swash_tmps;
1636 slen = PL_last_swash_slen;
1637 }
1638 else {
1639 /* Try our second-level swatch cache, kept in a hash. */
dfe13c55 1640 SV** svp = hv_fetch(hv, (char*)ptr, klen, FALSE);
a0ed51b3
LW
1641
1642 /* If not cached, generate it via utf8::SWASHGET */
dfe13c55 1643 if (!svp || !SvPOK(*svp) || !(tmps = (U8*)SvPV(*svp, slen))) {
a0ed51b3 1644 dSP;
2b9d42f0
NIS
1645 /* We use utf8n_to_uvuni() as we want an index into
1646 Unicode tables, not a native character number.
1647 */
872c91ae
JH
1648 UV code_point = utf8n_to_uvuni(ptr, UTF8_MAXLEN, 0,
1649 ckWARN(WARN_UTF8) ?
1650 0 : UTF8_ALLOW_ANY);
f8be5cf0 1651 SV *errsv_save;
a0ed51b3
LW
1652 ENTER;
1653 SAVETMPS;
1654 save_re_context();
1655 PUSHSTACKi(PERLSI_MAGIC);
1656 PUSHMARK(SP);
1657 EXTEND(SP,3);
1658 PUSHs((SV*)sv);
ffbc6a93 1659 /* On EBCDIC & ~(0xA0-1) isn't a useful thing to do */
3568d838
JH
1660 PUSHs(sv_2mortal(newSViv((klen) ?
1661 (code_point & ~(needents - 1)) : 0)));
a0ed51b3
LW
1662 PUSHs(sv_2mortal(newSViv(needents)));
1663 PUTBACK;
f8be5cf0 1664 errsv_save = newSVsv(ERRSV);
864dbfa3 1665 if (call_method("SWASHGET", G_SCALAR))
8e84507e 1666 retval = newSVsv(*PL_stack_sp--);
a0ed51b3 1667 else
e24b16f9 1668 retval = &PL_sv_undef;
f8be5cf0
JH
1669 if (!SvTRUE(ERRSV))
1670 sv_setsv(ERRSV, errsv_save);
1671 SvREFCNT_dec(errsv_save);
a0ed51b3
LW
1672 POPSTACK;
1673 FREETMPS;
1674 LEAVE;
e24b16f9 1675 if (PL_curcop == &PL_compiling)
eb160463 1676 PL_curcop->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
a0ed51b3 1677
dfe13c55 1678 svp = hv_store(hv, (char*)ptr, klen, retval, 0);
a0ed51b3 1679
7d85a32c 1680 if (!svp || !(tmps = (U8*)SvPV(*svp, slen)) || (slen << 3) < needents)
cea2e8a9 1681 Perl_croak(aTHX_ "SWASHGET didn't return result of proper length");
a0ed51b3
LW
1682 }
1683
1684 PL_last_swash_hv = hv;
1685 PL_last_swash_klen = klen;
1686 PL_last_swash_tmps = tmps;
1687 PL_last_swash_slen = slen;
1688 if (klen)
1689 Copy(ptr, PL_last_swash_key, klen, U8);
1690 }
1691
9faf8d75 1692 switch ((int)((slen << 3) / needents)) {
a0ed51b3
LW
1693 case 1:
1694 bit = 1 << (off & 7);
1695 off >>= 3;
1696 return (tmps[off] & bit) != 0;
1697 case 8:
1698 return tmps[off];
1699 case 16:
1700 off <<= 1;
1701 return (tmps[off] << 8) + tmps[off + 1] ;
1702 case 32:
1703 off <<= 2;
1704 return (tmps[off] << 24) + (tmps[off+1] << 16) + (tmps[off+2] << 8) + tmps[off + 3] ;
1705 }
cea2e8a9 1706 Perl_croak(aTHX_ "panic: swash_fetch");
a0ed51b3
LW
1707 return 0;
1708}
2b9d42f0
NIS
1709
1710
1711/*
37607a96 1712=for apidoc A|U8 *|uvchr_to_utf8|U8 *d|UV uv
2b9d42f0
NIS
1713
1714Adds the UTF8 representation of the Native codepoint C<uv> to the end
1715of the string C<d>; C<d> should be have at least C<UTF8_MAXLEN+1> free
1716bytes available. The return value is the pointer to the byte after the
1717end of the new character. In other words,
1718
1719 d = uvchr_to_utf8(d, uv);
1720
1721is the recommended wide native character-aware way of saying
1722
1723 *(d++) = uv;
1724
1725=cut
1726*/
1727
1728/* On ASCII machines this is normally a macro but we want a
1729 real function in case XS code wants it
1730*/
1731#undef Perl_uvchr_to_utf8
1732U8 *
1733Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv)
1734{
b851fbc1 1735 return Perl_uvuni_to_utf8_flags(aTHX_ d, NATIVE_TO_UNI(uv), 0);
2b9d42f0
NIS
1736}
1737
b851fbc1
JH
1738U8 *
1739Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
1740{
1741 return Perl_uvuni_to_utf8_flags(aTHX_ d, NATIVE_TO_UNI(uv), flags);
1742}
2b9d42f0
NIS
1743
1744/*
37607a96 1745=for apidoc A|UV|utf8n_to_uvchr|U8 *s|STRLEN curlen|STRLEN *retlen|U32 flags
2b9d42f0
NIS
1746
1747Returns the native character value of the first character in the string C<s>
1748which is assumed to be in UTF8 encoding; C<retlen> will be set to the
1749length, in bytes, of that character.
1750
1751Allows length and flags to be passed to low level routine.
1752
1753=cut
1754*/
0a2ef054
JH
1755/* On ASCII machines this is normally a macro but we want
1756 a real function in case XS code wants it
2b9d42f0
NIS
1757*/
1758#undef Perl_utf8n_to_uvchr
1759UV
37607a96 1760Perl_utf8n_to_uvchr(pTHX_ U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
2b9d42f0
NIS
1761{
1762 UV uv = Perl_utf8n_to_uvuni(aTHX_ s, curlen, retlen, flags);
1763 return UNI_TO_NATIVE(uv);
1764}
1765
d2cc3551
JH
1766/*
1767=for apidoc A|char *|pv_uni_display|SV *dsv|U8 *spv|STRLEN len|STRLEN pvlim|UV flags
1768
1769Build to the scalar dsv a displayable version of the string spv,
1770length len, the displayable version being at most pvlim bytes long
1771(if longer, the rest is truncated and "..." will be appended).
0a2ef054 1772
9e55ce06 1773The flags argument can have UNI_DISPLAY_ISPRINT set to display
00e86452 1774isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH
0a2ef054
JH
1775to display the \\[nrfta\\] as the backslashed versions (like '\n')
1776(UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\).
1777UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both
1778UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on.
1779
d2cc3551
JH
1780The pointer to the PV of the dsv is returned.
1781
1782=cut */
e6b2e755
JH
1783char *
1784Perl_pv_uni_display(pTHX_ SV *dsv, U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
1785{
1786 int truncated = 0;
1787 char *s, *e;
1788
1789 sv_setpvn(dsv, "", 0);
1790 for (s = (char *)spv, e = s + len; s < e; s += UTF8SKIP(s)) {
1791 UV u;
c728cb41
JH
1792 bool ok = FALSE;
1793
e6b2e755
JH
1794 if (pvlim && SvCUR(dsv) >= pvlim) {
1795 truncated++;
1796 break;
1797 }
1798 u = utf8_to_uvchr((U8*)s, 0);
c728cb41 1799 if (u < 256) {
c728cb41
JH
1800 if (!ok && (flags & UNI_DISPLAY_BACKSLASH)) {
1801 switch (u & 0xFF) {
1802 case '\n':
1803 Perl_sv_catpvf(aTHX_ dsv, "\\n"); ok = TRUE; break;
1804 case '\r':
1805 Perl_sv_catpvf(aTHX_ dsv, "\\r"); ok = TRUE; break;
1806 case '\t':
1807 Perl_sv_catpvf(aTHX_ dsv, "\\t"); ok = TRUE; break;
1808 case '\f':
1809 Perl_sv_catpvf(aTHX_ dsv, "\\f"); ok = TRUE; break;
1810 case '\a':
1811 Perl_sv_catpvf(aTHX_ dsv, "\\a"); ok = TRUE; break;
1812 case '\\':
d79a7a3d 1813 Perl_sv_catpvf(aTHX_ dsv, "\\\\" ); ok = TRUE; break;
c728cb41
JH
1814 default: break;
1815 }
1816 }
00e86452
JH
1817 /* isPRINT() is the locale-blind version. */
1818 if (!ok && (flags & UNI_DISPLAY_ISPRINT) && isPRINT(u & 0xFF)) {
2c4547fe 1819 Perl_sv_catpvf(aTHX_ dsv, "%c", (char)(u & 0xFF));
0a2ef054
JH
1820 ok = TRUE;
1821 }
c728cb41
JH
1822 }
1823 if (!ok)
9e55ce06 1824 Perl_sv_catpvf(aTHX_ dsv, "\\x{%"UVxf"}", u);
e6b2e755
JH
1825 }
1826 if (truncated)
1827 sv_catpvn(dsv, "...", 3);
1828
1829 return SvPVX(dsv);
1830}
2b9d42f0 1831
d2cc3551
JH
1832/*
1833=for apidoc A|char *|sv_uni_display|SV *dsv|SV *ssv|STRLEN pvlim|UV flags
1834
1835Build to the scalar dsv a displayable version of the scalar sv,
0a2ef054 1836the displayable version being at most pvlim bytes long
d2cc3551 1837(if longer, the rest is truncated and "..." will be appended).
0a2ef054
JH
1838
1839The flags argument is as in pv_uni_display().
1840
d2cc3551
JH
1841The pointer to the PV of the dsv is returned.
1842
1843=cut */
e6b2e755
JH
1844char *
1845Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
1846{
701a277b
JH
1847 return Perl_pv_uni_display(aTHX_ dsv, (U8*)SvPVX(ssv), SvCUR(ssv),
1848 pvlim, flags);
1849}
1850
d2cc3551 1851/*
d07ddd77 1852=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
d2cc3551
JH
1853
1854Return true if the strings s1 and s2 differ case-insensitively, false
1855if not (if they are equal case-insensitively). If u1 is true, the
1856string s1 is assumed to be in UTF-8-encoded Unicode. If u2 is true,
d07ddd77
JH
1857the string s2 is assumed to be in UTF-8-encoded Unicode. If u1 or u2
1858are false, the respective string is assumed to be in native 8-bit
1859encoding.
1860
1861If the pe1 and pe2 are non-NULL, the scanning pointers will be copied
1862in there (they will point at the beginning of the I<next> character).
1863If the pointers behind pe1 or pe2 are non-NULL, they are the end
1864pointers beyond which scanning will not continue under any
1865circustances. If the byte lengths l1 and l2 are non-zero, s1+l1 and
1866s2+l2 will be used as goal end pointers that will also stop the scan,
1867and which qualify towards defining a successful match: all the scans
1868that define an explicit length must reach their goal pointers for
1869a match to succeed).
d2cc3551
JH
1870
1871For case-insensitiveness, the "casefolding" of Unicode is used
1872instead of upper/lowercasing both the characters, see
1873http://www.unicode.org/unicode/reports/tr21/ (Case Mappings).
1874
1875=cut */
701a277b 1876I32
d07ddd77 1877Perl_ibcmp_utf8(pTHX_ const char *s1, char **pe1, register UV l1, bool u1, const char *s2, char **pe2, register UV l2, bool u2)
332ddc25 1878{
5469e704
JH
1879 register U8 *p1 = (U8*)s1;
1880 register U8 *p2 = (U8*)s2;
d07ddd77
JH
1881 register U8 *e1 = 0, *f1 = 0, *q1 = 0;
1882 register U8 *e2 = 0, *f2 = 0, *q2 = 0;
1883 STRLEN n1 = 0, n2 = 0;
ffce6cc2
JH
1884 U8 foldbuf1[UTF8_MAXLEN_FOLD+1];
1885 U8 foldbuf2[UTF8_MAXLEN_FOLD+1];
d7f013c8
JH
1886 U8 natbuf[1+1];
1887 STRLEN foldlen1, foldlen2;
d07ddd77 1888 bool match;
332ddc25 1889
d07ddd77
JH
1890 if (pe1)
1891 e1 = *(U8**)pe1;
eb160463 1892 if (e1 == 0 || (l1 && l1 < (UV)(e1 - (U8*)s1)))
d07ddd77
JH
1893 f1 = (U8*)s1 + l1;
1894 if (pe2)
1895 e2 = *(U8**)pe2;
eb160463 1896 if (e2 == 0 || (l2 && l2 < (UV)(e2 - (U8*)s2)))
d07ddd77
JH
1897 f2 = (U8*)s2 + l2;
1898
1899 if ((e1 == 0 && f1 == 0) || (e2 == 0 && f2 == 0) || (f1 == 0 && f2 == 0))
1900 return 1; /* mismatch; possible infinite loop or false positive */
1901
a6872d42
JH
1902 if (!u1 || !u2)
1903 natbuf[1] = 0; /* Need to terminate the buffer. */
1904
d07ddd77
JH
1905 while ((e1 == 0 || p1 < e1) &&
1906 (f1 == 0 || p1 < f1) &&
1907 (e2 == 0 || p2 < e2) &&
1908 (f2 == 0 || p2 < f2)) {
1909 if (n1 == 0) {
d7f013c8
JH
1910 if (u1)
1911 to_utf8_fold(p1, foldbuf1, &foldlen1);
1912 else {
f5cee151 1913 natbuf[0] = *p1;
d7f013c8
JH
1914 to_utf8_fold(natbuf, foldbuf1, &foldlen1);
1915 }
1916 q1 = foldbuf1;
d07ddd77 1917 n1 = foldlen1;
332ddc25 1918 }
d07ddd77 1919 if (n2 == 0) {
d7f013c8
JH
1920 if (u2)
1921 to_utf8_fold(p2, foldbuf2, &foldlen2);
1922 else {
f5cee151 1923 natbuf[0] = *p2;
d7f013c8
JH
1924 to_utf8_fold(natbuf, foldbuf2, &foldlen2);
1925 }
1926 q2 = foldbuf2;
d07ddd77 1927 n2 = foldlen2;
332ddc25 1928 }
d07ddd77
JH
1929 while (n1 && n2) {
1930 if ( UTF8SKIP(q1) != UTF8SKIP(q2) ||
1931 (UTF8SKIP(q1) == 1 && *q1 != *q2) ||
1932 memNE((char*)q1, (char*)q2, UTF8SKIP(q1)) )
d7f013c8 1933 return 1; /* mismatch */
d07ddd77 1934 n1 -= UTF8SKIP(q1);
d7f013c8 1935 q1 += UTF8SKIP(q1);
d07ddd77 1936 n2 -= UTF8SKIP(q2);
d7f013c8 1937 q2 += UTF8SKIP(q2);
701a277b 1938 }
d07ddd77 1939 if (n1 == 0)
d7f013c8 1940 p1 += u1 ? UTF8SKIP(p1) : 1;
d07ddd77 1941 if (n2 == 0)
d7f013c8
JH
1942 p2 += u2 ? UTF8SKIP(p2) : 1;
1943
d2cc3551 1944 }
5469e704 1945
d07ddd77
JH
1946 /* A match is defined by all the scans that specified
1947 * an explicit length reaching their final goals. */
1948 match = (f1 == 0 || p1 == f1) && (f2 == 0 || p2 == f2);
5469e704
JH
1949
1950 if (match) {
d07ddd77
JH
1951 if (pe1)
1952 *pe1 = (char*)p1;
1953 if (pe2)
1954 *pe2 = (char*)p2;
5469e704
JH
1955 }
1956
1957 return match ? 0 : 1; /* 0 match, 1 mismatch */
e6b2e755 1958}
701a277b 1959