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