This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
I can't spell.
[perl5.git] / utf8.c
CommitLineData
a0ed51b3
LW
1/* utf8.c
2 *
b94e2f88
RGS
3 * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006,
4 * by Larry Wall and others
a0ed51b3
LW
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
9 */
10
11/*
12 * 'What a fix!' said Sam. 'That's the one place in all the lands we've ever
13 * heard of that we don't want to see any closer; and that's the one place
14 * we're trying to get to! And that's just where we can't get, nohow.'
15 *
16 * 'Well do I understand your speech,' he answered in the same language;
17 * 'yet few strangers do so. Why then do you not speak in the Common Tongue,
18 * as is the custom in the West, if you wish to be answered?'
19 *
20 * ...the travellers perceived that the floor was paved with stones of many
21 * hues; branching runes and strange devices intertwined beneath their feet.
22 */
23
24#include "EXTERN.h"
864dbfa3 25#define PERL_IN_UTF8_C
a0ed51b3
LW
26#include "perl.h"
27
27da23d5
JH
28static const char unees[] =
29 "Malformed UTF-8 character (unexpected end of string)";
901b21bf 30
ccfc67b7
JH
31/*
32=head1 Unicode Support
a0ed51b3 33
166f8a29
DM
34This file contains various utility functions for manipulating UTF8-encoded
35strings. For the uninitiated, this is a method of representing arbitrary
61296642 36Unicode characters as a variable number of bytes, in such a way that
56da48f7
DM
37characters in the ASCII range are unmodified, and a zero byte never appears
38within non-zero characters.
166f8a29 39
b851fbc1 40=for apidoc A|U8 *|uvuni_to_utf8_flags|U8 *d|UV uv|UV flags
eebe1485 41
1e54db1a 42Adds the UTF-8 representation of the Unicode codepoint C<uv> to the end
89ebb4a3 43of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
eebe1485 44bytes available. The return value is the pointer to the byte after the
9041c2e3 45end of the new character. In other words,
eebe1485 46
b851fbc1
JH
47 d = uvuni_to_utf8_flags(d, uv, flags);
48
49or, in most cases,
50
9041c2e3 51 d = uvuni_to_utf8(d, uv);
eebe1485 52
b851fbc1
JH
53(which is equivalent to)
54
55 d = uvuni_to_utf8_flags(d, uv, 0);
56
eebe1485
SC
57is the recommended Unicode-aware way of saying
58
59 *(d++) = uv;
60
61=cut
62*/
63
dfe13c55 64U8 *
b851fbc1 65Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
a0ed51b3 66{
62961d2e 67 if (ckWARN(WARN_UTF8)) {
b851fbc1
JH
68 if (UNICODE_IS_SURROGATE(uv) &&
69 !(flags & UNICODE_ALLOW_SURROGATE))
9014280d 70 Perl_warner(aTHX_ packWARN(WARN_UTF8), "UTF-16 surrogate 0x%04"UVxf, uv);
b851fbc1
JH
71 else if (
72 ((uv >= 0xFDD0 && uv <= 0xFDEF &&
73 !(flags & UNICODE_ALLOW_FDD0))
74 ||
c867b360 75 ((uv & 0xFFFE) == 0xFFFE && /* Either FFFE or FFFF. */
b851fbc1
JH
76 !(flags & UNICODE_ALLOW_FFFF))) &&
77 /* UNICODE_ALLOW_SUPER includes
2a20b9da 78 * FFFEs and FFFFs beyond 0x10FFFF. */
b851fbc1
JH
79 ((uv <= PERL_UNICODE_MAX) ||
80 !(flags & UNICODE_ALLOW_SUPER))
81 )
9014280d 82 Perl_warner(aTHX_ packWARN(WARN_UTF8),
507b9800
JH
83 "Unicode character 0x%04"UVxf" is illegal", uv);
84 }
c4d5f83a 85 if (UNI_IS_INVARIANT(uv)) {
eb160463 86 *d++ = (U8)UTF_TO_NATIVE(uv);
a0ed51b3
LW
87 return d;
88 }
2d331972 89#if defined(EBCDIC)
1d72bdf6
NIS
90 else {
91 STRLEN len = UNISKIP(uv);
92 U8 *p = d+len-1;
93 while (p > d) {
eb160463 94 *p-- = (U8)UTF_TO_NATIVE((uv & UTF_CONTINUATION_MASK) | UTF_CONTINUATION_MARK);
1d72bdf6
NIS
95 uv >>= UTF_ACCUMULATION_SHIFT;
96 }
eb160463 97 *p = (U8)UTF_TO_NATIVE((uv & UTF_START_MASK(len)) | UTF_START_MARK(len));
1d72bdf6
NIS
98 return d+len;
99 }
100#else /* Non loop style */
a0ed51b3 101 if (uv < 0x800) {
eb160463
GS
102 *d++ = (U8)(( uv >> 6) | 0xc0);
103 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
104 return d;
105 }
106 if (uv < 0x10000) {
eb160463
GS
107 *d++ = (U8)(( uv >> 12) | 0xe0);
108 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
109 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
110 return d;
111 }
112 if (uv < 0x200000) {
eb160463
GS
113 *d++ = (U8)(( uv >> 18) | 0xf0);
114 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
115 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
116 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
117 return d;
118 }
119 if (uv < 0x4000000) {
eb160463
GS
120 *d++ = (U8)(( uv >> 24) | 0xf8);
121 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
122 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
123 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
124 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
125 return d;
126 }
127 if (uv < 0x80000000) {
eb160463
GS
128 *d++ = (U8)(( uv >> 30) | 0xfc);
129 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
130 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
131 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
132 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
133 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
134 return d;
135 }
6b8eaf93 136#ifdef HAS_QUAD
d7578b48 137 if (uv < UTF8_QUAD_MAX)
a0ed51b3
LW
138#endif
139 {
eb160463
GS
140 *d++ = 0xfe; /* Can't match U+FEFF! */
141 *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80);
142 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
143 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
144 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
145 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
146 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
147 return d;
148 }
6b8eaf93 149#ifdef HAS_QUAD
a0ed51b3 150 {
eb160463
GS
151 *d++ = 0xff; /* Can't match U+FFFE! */
152 *d++ = 0x80; /* 6 Reserved bits */
153 *d++ = (U8)(((uv >> 60) & 0x0f) | 0x80); /* 2 Reserved bits */
154 *d++ = (U8)(((uv >> 54) & 0x3f) | 0x80);
155 *d++ = (U8)(((uv >> 48) & 0x3f) | 0x80);
156 *d++ = (U8)(((uv >> 42) & 0x3f) | 0x80);
157 *d++ = (U8)(((uv >> 36) & 0x3f) | 0x80);
158 *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80);
159 *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
160 *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
161 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
162 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
163 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
164 return d;
165 }
166#endif
1d72bdf6 167#endif /* Loop style */
a0ed51b3 168}
9041c2e3 169
646ca15d
JH
170/*
171
172Tests if some arbitrary number of bytes begins in a valid UTF-8
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.
176
177This is the "slow" version as opposed to the "fast" version which is
178the "unrolled" IS_UTF8_CHAR(). E.g. for t/uni/class.t the speed
179difference is a factor of 2 to 3. For lengths (UTF8SKIP(s)) of four
180or less you should use the IS_UTF8_CHAR(), for lengths of five or more
181you should use the _slow(). In practice this means that the _slow()
182will be used very rarely, since the maximum Unicode code point (as of
183Unicode 4.1) is U+10FFFF, which encodes in UTF-8 to four bytes. Only
184the "Perl extended UTF-8" (the infamous 'v-strings') will encode into
185five bytes or more.
186
187=cut */
c053b435 188STATIC STRLEN
5f66b61c 189S_is_utf8_char_slow(const U8 *s, const STRLEN len)
646ca15d
JH
190{
191 U8 u = *s;
192 STRLEN slen;
193 UV uv, ouv;
194
195 if (UTF8_IS_INVARIANT(u))
196 return 1;
197
198 if (!UTF8_IS_START(u))
199 return 0;
200
201 if (len < 2 || !UTF8_IS_CONTINUATION(s[1]))
202 return 0;
203
204 slen = len - 1;
205 s++;
77263263
TS
206#ifdef EBCDIC
207 u = NATIVE_TO_UTF(u);
208#endif
646ca15d
JH
209 u &= UTF_START_MASK(len);
210 uv = u;
211 ouv = uv;
212 while (slen--) {
213 if (!UTF8_IS_CONTINUATION(*s))
214 return 0;
215 uv = UTF8_ACCUMULATE(uv, *s);
216 if (uv < ouv)
217 return 0;
218 ouv = uv;
219 s++;
220 }
221
222 if ((STRLEN)UNISKIP(uv) < len)
223 return 0;
224
225 return len;
226}
9041c2e3
NIS
227
228/*
7fc63493 229=for apidoc A|STRLEN|is_utf8_char|const U8 *s
eebe1485 230
5da9da9e 231Tests if some arbitrary number of bytes begins in a valid UTF-8
82686b01
JH
232character. Note that an INVARIANT (i.e. ASCII) character is a valid
233UTF-8 character. The actual number of bytes in the UTF-8 character
234will be returned if it is valid, otherwise 0.
9041c2e3 235
82686b01 236=cut */
067a85ef 237STRLEN
7fc63493 238Perl_is_utf8_char(pTHX_ const U8 *s)
386d01d6 239{
44f8325f 240 const STRLEN len = UTF8SKIP(s);
96a5add6 241 PERL_UNUSED_CONTEXT;
3b0fc154 242#ifdef IS_UTF8_CHAR
768c67ee 243 if (IS_UTF8_CHAR_FAST(len))
3b0fc154
JH
244 return IS_UTF8_CHAR(s, len) ? len : 0;
245#endif /* #ifdef IS_UTF8_CHAR */
2c0c5f92 246 return is_utf8_char_slow(s, len);
386d01d6
GS
247}
248
6662521e 249/*
7fc63493 250=for apidoc A|bool|is_utf8_string|const U8 *s|STRLEN len
6662521e 251
c9ada85f 252Returns true if first C<len> bytes of the given string form a valid
1e54db1a
JH
253UTF-8 string, false otherwise. Note that 'a valid UTF-8 string' does
254not mean 'a string that contains code points above 0x7F encoded in UTF-8'
255because a valid ASCII string is a valid UTF-8 string.
6662521e 256
768c67ee
JH
257See also is_utf8_string_loclen() and is_utf8_string_loc().
258
6662521e
GS
259=cut
260*/
261
8e84507e 262bool
7fc63493 263Perl_is_utf8_string(pTHX_ const U8 *s, STRLEN len)
6662521e 264{
7fc63493
AL
265 const U8* x = s;
266 const U8* send;
067a85ef 267
96a5add6 268 PERL_UNUSED_CONTEXT;
44f8325f 269 if (!len)
e1ec3a88 270 len = strlen((const char *)s);
1aa99e6b
IH
271 send = s + len;
272
6662521e 273 while (x < send) {
a3b680e6 274 STRLEN c;
1acdb0da
JH
275 /* Inline the easy bits of is_utf8_char() here for speed... */
276 if (UTF8_IS_INVARIANT(*x))
277 c = 1;
278 else if (!UTF8_IS_START(*x))
768c67ee 279 goto out;
1acdb0da
JH
280 else {
281 /* ... and call is_utf8_char() only if really needed. */
646ca15d
JH
282#ifdef IS_UTF8_CHAR
283 c = UTF8SKIP(x);
768c67ee
JH
284 if (IS_UTF8_CHAR_FAST(c)) {
285 if (!IS_UTF8_CHAR(x, c))
286 goto out;
287 } else if (!is_utf8_char_slow(x, c))
288 goto out;
646ca15d
JH
289#else
290 c = is_utf8_char(x);
291#endif /* #ifdef IS_UTF8_CHAR */
1acdb0da 292 if (!c)
768c67ee 293 goto out;
1acdb0da 294 }
6662521e 295 x += c;
6662521e 296 }
768c67ee
JH
297
298 out:
60006e79
JH
299 if (x != send)
300 return FALSE;
067a85ef
A
301
302 return TRUE;
6662521e
GS
303}
304
67e989fb 305/*
814fafa7
NC
306Implemented as a macro in utf8.h
307
308=for apidoc A|bool|is_utf8_string_loc|const U8 *s|STRLEN len|const U8 **ep
309
310Like is_utf8_string() but stores the location of the failure (in the
311case of "utf8ness failure") or the location s+len (in the case of
312"utf8ness success") in the C<ep>.
313
314See also is_utf8_string_loclen() and is_utf8_string().
315
768c67ee 316=for apidoc A|bool|is_utf8_string_loclen|const U8 *s|STRLEN len|const U8 **ep|const STRLEN *el
81cd54e3 317
e3e4599f 318Like is_utf8_string() but stores the location of the failure (in the
768c67ee
JH
319case of "utf8ness failure") or the location s+len (in the case of
320"utf8ness success") in the C<ep>, and the number of UTF-8
321encoded characters in the C<el>.
322
323See also is_utf8_string_loc() and is_utf8_string().
81cd54e3
JH
324
325=cut
326*/
327
328bool
768c67ee 329Perl_is_utf8_string_loclen(pTHX_ const U8 *s, STRLEN len, const U8 **ep, STRLEN *el)
81cd54e3 330{
7fc63493
AL
331 const U8* x = s;
332 const U8* send;
81cd54e3 333 STRLEN c;
96a5add6 334 PERL_UNUSED_CONTEXT;
81cd54e3 335
44f8325f 336 if (!len)
e1ec3a88 337 len = strlen((const char *)s);
81cd54e3 338 send = s + len;
768c67ee
JH
339 if (el)
340 *el = 0;
81cd54e3
JH
341
342 while (x < send) {
343 /* Inline the easy bits of is_utf8_char() here for speed... */
344 if (UTF8_IS_INVARIANT(*x))
768c67ee
JH
345 c = 1;
346 else if (!UTF8_IS_START(*x))
347 goto out;
81cd54e3 348 else {
768c67ee
JH
349 /* ... and call is_utf8_char() only if really needed. */
350#ifdef IS_UTF8_CHAR
351 c = UTF8SKIP(x);
352 if (IS_UTF8_CHAR_FAST(c)) {
353 if (!IS_UTF8_CHAR(x, c))
354 c = 0;
355 } else
356 c = is_utf8_char_slow(x, c);
357#else
358 c = is_utf8_char(x);
359#endif /* #ifdef IS_UTF8_CHAR */
360 if (!c)
361 goto out;
81cd54e3 362 }
768c67ee
JH
363 x += c;
364 if (el)
365 (*el)++;
81cd54e3 366 }
768c67ee
JH
367
368 out:
369 if (ep)
370 *ep = x;
371 if (x != send)
81cd54e3 372 return FALSE;
81cd54e3
JH
373
374 return TRUE;
375}
376
377/*
768c67ee 378
7fc63493 379=for apidoc A|UV|utf8n_to_uvuni|const U8 *s|STRLEN curlen|STRLEN *retlen|U32 flags
67e989fb 380
9041c2e3
NIS
381Bottom level UTF-8 decode routine.
382Returns the unicode code point value of the first character in the string C<s>
1e54db1a 383which is assumed to be in UTF-8 encoding and no longer than C<curlen>;
7df053ec 384C<retlen> will be set to the length, in bytes, of that character.
67e989fb 385
1e54db1a 386If C<s> does not point to a well-formed UTF-8 character, the behaviour
dcad2880
JH
387is dependent on the value of C<flags>: if it contains UTF8_CHECK_ONLY,
388it is assumed that the caller will raise a warning, and this function
28d3d195
JH
389will silently just set C<retlen> to C<-1> and return zero. If the
390C<flags> does not contain UTF8_CHECK_ONLY, warnings about
391malformations will be given, C<retlen> will be set to the expected
392length of the UTF-8 character in bytes, and zero will be returned.
393
394The C<flags> can also contain various flags to allow deviations from
395the strict UTF-8 encoding (see F<utf8.h>).
67e989fb 396
9041c2e3
NIS
397Most code should use utf8_to_uvchr() rather than call this directly.
398
37607a96
PK
399=cut
400*/
67e989fb 401
a0ed51b3 402UV
7fc63493 403Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
a0ed51b3 404{
97aff369 405 dVAR;
d4c19fe8 406 const U8 * const s0 = s;
9c5ffd7c 407 UV uv = *s, ouv = 0;
ba210ebe 408 STRLEN len = 1;
7fc63493
AL
409 const bool dowarn = ckWARN_d(WARN_UTF8);
410 const UV startbyte = *s;
ba210ebe 411 STRLEN expectlen = 0;
a0dbb045
JH
412 U32 warning = 0;
413
414/* This list is a superset of the UTF8_ALLOW_XXX. */
415
416#define UTF8_WARN_EMPTY 1
417#define UTF8_WARN_CONTINUATION 2
418#define UTF8_WARN_NON_CONTINUATION 3
419#define UTF8_WARN_FE_FF 4
420#define UTF8_WARN_SHORT 5
421#define UTF8_WARN_OVERFLOW 6
422#define UTF8_WARN_SURROGATE 7
c867b360
JH
423#define UTF8_WARN_LONG 8
424#define UTF8_WARN_FFFF 9 /* Also FFFE. */
a0dbb045
JH
425
426 if (curlen == 0 &&
427 !(flags & UTF8_ALLOW_EMPTY)) {
428 warning = UTF8_WARN_EMPTY;
0c443dc2
JH
429 goto malformed;
430 }
431
1d72bdf6 432 if (UTF8_IS_INVARIANT(uv)) {
a0ed51b3
LW
433 if (retlen)
434 *retlen = 1;
c4d5f83a 435 return (UV) (NATIVE_TO_UTF(*s));
a0ed51b3 436 }
67e989fb 437
421a8bf2 438 if (UTF8_IS_CONTINUATION(uv) &&
fcc8fcf6 439 !(flags & UTF8_ALLOW_CONTINUATION)) {
a0dbb045 440 warning = UTF8_WARN_CONTINUATION;
ba210ebe
JH
441 goto malformed;
442 }
443
421a8bf2 444 if (UTF8_IS_START(uv) && curlen > 1 && !UTF8_IS_CONTINUATION(s[1]) &&
fcc8fcf6 445 !(flags & UTF8_ALLOW_NON_CONTINUATION)) {
a0dbb045 446 warning = UTF8_WARN_NON_CONTINUATION;
ba210ebe
JH
447 goto malformed;
448 }
9041c2e3 449
1d72bdf6 450#ifdef EBCDIC
75383841 451 uv = NATIVE_TO_UTF(uv);
1d72bdf6 452#else
fcc8fcf6
JH
453 if ((uv == 0xfe || uv == 0xff) &&
454 !(flags & UTF8_ALLOW_FE_FF)) {
a0dbb045 455 warning = UTF8_WARN_FE_FF;
ba210ebe 456 goto malformed;
a0ed51b3 457 }
1d72bdf6
NIS
458#endif
459
ba210ebe
JH
460 if (!(uv & 0x20)) { len = 2; uv &= 0x1f; }
461 else if (!(uv & 0x10)) { len = 3; uv &= 0x0f; }
462 else if (!(uv & 0x08)) { len = 4; uv &= 0x07; }
463 else if (!(uv & 0x04)) { len = 5; uv &= 0x03; }
1d72bdf6
NIS
464#ifdef EBCDIC
465 else if (!(uv & 0x02)) { len = 6; uv &= 0x01; }
466 else { len = 7; uv &= 0x01; }
467#else
ba210ebe
JH
468 else if (!(uv & 0x02)) { len = 6; uv &= 0x01; }
469 else if (!(uv & 0x01)) { len = 7; uv = 0; }
1d72bdf6
NIS
470 else { len = 13; uv = 0; } /* whoa! */
471#endif
472
a0ed51b3
LW
473 if (retlen)
474 *retlen = len;
9041c2e3 475
ba210ebe
JH
476 expectlen = len;
477
fcc8fcf6
JH
478 if ((curlen < expectlen) &&
479 !(flags & UTF8_ALLOW_SHORT)) {
a0dbb045 480 warning = UTF8_WARN_SHORT;
ba210ebe
JH
481 goto malformed;
482 }
483
484 len--;
a0ed51b3 485 s++;
ba210ebe
JH
486 ouv = uv;
487
a0ed51b3 488 while (len--) {
421a8bf2
JH
489 if (!UTF8_IS_CONTINUATION(*s) &&
490 !(flags & UTF8_ALLOW_NON_CONTINUATION)) {
a0dbb045
JH
491 s--;
492 warning = UTF8_WARN_NON_CONTINUATION;
ba210ebe 493 goto malformed;
a0ed51b3
LW
494 }
495 else
8850bf83 496 uv = UTF8_ACCUMULATE(uv, *s);
a0dbb045
JH
497 if (!(uv > ouv)) {
498 /* These cannot be allowed. */
499 if (uv == ouv) {
75dbc644 500 if (expectlen != 13 && !(flags & UTF8_ALLOW_LONG)) {
a0dbb045
JH
501 warning = UTF8_WARN_LONG;
502 goto malformed;
503 }
504 }
505 else { /* uv < ouv */
506 /* This cannot be allowed. */
507 warning = UTF8_WARN_OVERFLOW;
508 goto malformed;
509 }
ba210ebe
JH
510 }
511 s++;
512 ouv = uv;
513 }
514
421a8bf2 515 if (UNICODE_IS_SURROGATE(uv) &&
fcc8fcf6 516 !(flags & UTF8_ALLOW_SURROGATE)) {
a0dbb045 517 warning = UTF8_WARN_SURROGATE;
ba210ebe 518 goto malformed;
eb160463 519 } else if ((expectlen > (STRLEN)UNISKIP(uv)) &&
fcc8fcf6 520 !(flags & UTF8_ALLOW_LONG)) {
a0dbb045 521 warning = UTF8_WARN_LONG;
ba210ebe 522 goto malformed;
421a8bf2 523 } else if (UNICODE_IS_ILLEGAL(uv) &&
a9917092 524 !(flags & UTF8_ALLOW_FFFF)) {
a0dbb045 525 warning = UTF8_WARN_FFFF;
a9917092 526 goto malformed;
a0ed51b3 527 }
ba210ebe 528
a0ed51b3 529 return uv;
ba210ebe
JH
530
531malformed:
532
fcc8fcf6 533 if (flags & UTF8_CHECK_ONLY) {
ba210ebe 534 if (retlen)
cc366d4b 535 *retlen = -1;
ba210ebe
JH
536 return 0;
537 }
538
a0dbb045 539 if (dowarn) {
396482e1 540 SV* const sv = sv_2mortal(newSVpvs("Malformed UTF-8 character "));
a0dbb045
JH
541
542 switch (warning) {
543 case 0: /* Intentionally empty. */ break;
544 case UTF8_WARN_EMPTY:
396482e1 545 sv_catpvs(sv, "(empty string)");
a0dbb045
JH
546 break;
547 case UTF8_WARN_CONTINUATION:
097fb8e2 548 Perl_sv_catpvf(aTHX_ sv, "(unexpected continuation byte 0x%02"UVxf", with no preceding start byte)", uv);
a0dbb045
JH
549 break;
550 case UTF8_WARN_NON_CONTINUATION:
097fb8e2
JH
551 if (s == s0)
552 Perl_sv_catpvf(aTHX_ sv, "(unexpected non-continuation byte 0x%02"UVxf", immediately after start byte 0x%02"UVxf")",
553 (UV)s[1], startbyte);
551405c4
AL
554 else {
555 const int len = (int)(s-s0);
097fb8e2 556 Perl_sv_catpvf(aTHX_ sv, "(unexpected non-continuation byte 0x%02"UVxf", %d byte%s after start byte 0x%02"UVxf", expected %d bytes)",
551405c4
AL
557 (UV)s[1], len, len > 1 ? "s" : "", startbyte, (int)expectlen);
558 }
559
a0dbb045
JH
560 break;
561 case UTF8_WARN_FE_FF:
562 Perl_sv_catpvf(aTHX_ sv, "(byte 0x%02"UVxf")", uv);
563 break;
564 case UTF8_WARN_SHORT:
097fb8e2 565 Perl_sv_catpvf(aTHX_ sv, "(%d byte%s, need %d, after start byte 0x%02"UVxf")",
5d7488b2 566 (int)curlen, curlen == 1 ? "" : "s", (int)expectlen, startbyte);
b31f83c2 567 expectlen = curlen; /* distance for caller to skip */
a0dbb045
JH
568 break;
569 case UTF8_WARN_OVERFLOW:
097fb8e2
JH
570 Perl_sv_catpvf(aTHX_ sv, "(overflow at 0x%"UVxf", byte 0x%02x, after start byte 0x%02"UVxf")",
571 ouv, *s, startbyte);
a0dbb045
JH
572 break;
573 case UTF8_WARN_SURROGATE:
574 Perl_sv_catpvf(aTHX_ sv, "(UTF-16 surrogate 0x%04"UVxf")", uv);
575 break;
a0dbb045 576 case UTF8_WARN_LONG:
097fb8e2 577 Perl_sv_catpvf(aTHX_ sv, "(%d byte%s, need %d, after start byte 0x%02"UVxf")",
5d7488b2 578 (int)expectlen, expectlen == 1 ? "": "s", UNISKIP(uv), startbyte);
a0dbb045
JH
579 break;
580 case UTF8_WARN_FFFF:
581 Perl_sv_catpvf(aTHX_ sv, "(character 0x%04"UVxf")", uv);
582 break;
583 default:
396482e1 584 sv_catpvs(sv, "(unknown reason)");
a0dbb045
JH
585 break;
586 }
587
588 if (warning) {
44f8325f 589 const char * const s = SvPVX_const(sv);
a0dbb045
JH
590
591 if (PL_op)
9014280d 592 Perl_warner(aTHX_ packWARN(WARN_UTF8),
53e06cf0 593 "%s in %s", s, OP_DESC(PL_op));
a0dbb045 594 else
9014280d 595 Perl_warner(aTHX_ packWARN(WARN_UTF8), "%s", s);
a0dbb045
JH
596 }
597 }
598
ba210ebe 599 if (retlen)
28d3d195 600 *retlen = expectlen ? expectlen : len;
ba210ebe 601
28d3d195 602 return 0;
a0ed51b3
LW
603}
604
8e84507e 605/*
7fc63493 606=for apidoc A|UV|utf8_to_uvchr|const U8 *s|STRLEN *retlen
9041c2e3
NIS
607
608Returns the native character value of the first character in the string C<s>
1e54db1a 609which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
9041c2e3
NIS
610length, in bytes, of that character.
611
1e54db1a 612If C<s> does not point to a well-formed UTF-8 character, zero is
9041c2e3
NIS
613returned and retlen is set, if possible, to -1.
614
615=cut
616*/
617
618UV
7fc63493 619Perl_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen)
9041c2e3 620{
1754c1a1
NC
621 return utf8n_to_uvchr(s, UTF8_MAXBYTES, retlen,
622 ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
9041c2e3
NIS
623}
624
625/*
7fc63493 626=for apidoc A|UV|utf8_to_uvuni|const U8 *s|STRLEN *retlen
9041c2e3
NIS
627
628Returns the Unicode code point of the first character in the string C<s>
1e54db1a 629which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
9041c2e3
NIS
630length, in bytes, of that character.
631
632This function should only be used when returned UV is considered
633an index into the Unicode semantic tables (e.g. swashes).
634
1e54db1a 635If C<s> does not point to a well-formed UTF-8 character, zero is
ba210ebe 636returned and retlen is set, if possible, to -1.
8e84507e
NIS
637
638=cut
639*/
640
641UV
7fc63493 642Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen)
8e84507e 643{
9041c2e3 644 /* Call the low level routine asking for checks */
89ebb4a3 645 return Perl_utf8n_to_uvuni(aTHX_ s, UTF8_MAXBYTES, retlen,
872c91ae 646 ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
8e84507e
NIS
647}
648
b76347f2 649/*
35a4481c 650=for apidoc A|STRLEN|utf8_length|const U8 *s|const U8 *e
b76347f2
JH
651
652Return the length of the UTF-8 char encoded string C<s> in characters.
02eb7b47
JH
653Stops at C<e> (inclusive). If C<e E<lt> s> or if the scan would end
654up past C<e>, croaks.
b76347f2
JH
655
656=cut
657*/
658
659STRLEN
35a4481c 660Perl_utf8_length(pTHX_ const U8 *s, const U8 *e)
b76347f2 661{
97aff369 662 dVAR;
b76347f2
JH
663 STRLEN len = 0;
664
8850bf83
JH
665 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g.
666 * the bitops (especially ~) can create illegal UTF-8.
667 * In other words: in Perl UTF-8 is not just for Unicode. */
668
a3b680e6
AL
669 if (e < s)
670 goto warn_and_return;
b76347f2 671 while (s < e) {
4373e329 672 const U8 t = UTF8SKIP(s);
901b21bf 673 if (e - s < t) {
a3b680e6 674 warn_and_return:
901b21bf
JH
675 if (ckWARN_d(WARN_UTF8)) {
676 if (PL_op)
677 Perl_warner(aTHX_ packWARN(WARN_UTF8),
a3b680e6 678 "%s in %s", unees, OP_DESC(PL_op));
901b21bf
JH
679 else
680 Perl_warner(aTHX_ packWARN(WARN_UTF8), unees);
681 }
682 return len;
683 }
b76347f2
JH
684 s += t;
685 len++;
686 }
687
688 return len;
689}
690
b06226ff 691/*
35a4481c 692=for apidoc A|IV|utf8_distance|const U8 *a|const U8 *b
b06226ff 693
1e54db1a 694Returns the number of UTF-8 characters between the UTF-8 pointers C<a>
b06226ff
JH
695and C<b>.
696
697WARNING: use only if you *know* that the pointers point inside the
698same UTF-8 buffer.
699
37607a96
PK
700=cut
701*/
a0ed51b3 702
02eb7b47 703IV
35a4481c 704Perl_utf8_distance(pTHX_ const U8 *a, const U8 *b)
a0ed51b3 705{
bf1665bc 706 return (a < b) ? -1 * (IV) utf8_length(a, b) : (IV) utf8_length(b, a);
a0ed51b3
LW
707}
708
b06226ff 709/*
37607a96 710=for apidoc A|U8 *|utf8_hop|U8 *s|I32 off
b06226ff 711
8850bf83
JH
712Return the UTF-8 pointer C<s> displaced by C<off> characters, either
713forward or backward.
b06226ff
JH
714
715WARNING: do not use the following unless you *know* C<off> is within
8850bf83
JH
716the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned
717on the first byte of character or just after the last byte of a character.
b06226ff 718
37607a96
PK
719=cut
720*/
a0ed51b3
LW
721
722U8 *
4373e329 723Perl_utf8_hop(pTHX_ const U8 *s, I32 off)
a0ed51b3 724{
96a5add6 725 PERL_UNUSED_CONTEXT;
8850bf83
JH
726 /* Note: cannot use UTF8_IS_...() too eagerly here since e.g
727 * the bitops (especially ~) can create illegal UTF-8.
728 * In other words: in Perl UTF-8 is not just for Unicode. */
729
a0ed51b3
LW
730 if (off >= 0) {
731 while (off--)
732 s += UTF8SKIP(s);
733 }
734 else {
735 while (off++) {
736 s--;
8850bf83
JH
737 while (UTF8_IS_CONTINUATION(*s))
738 s--;
a0ed51b3
LW
739 }
740 }
4373e329 741 return (U8 *)s;
a0ed51b3
LW
742}
743
6940069f 744/*
eebe1485 745=for apidoc A|U8 *|utf8_to_bytes|U8 *s|STRLEN *len
6940069f 746
1e54db1a 747Converts a string C<s> of length C<len> from UTF-8 into byte encoding.
246fae53
MG
748Unlike C<bytes_to_utf8>, this over-writes the original string, and
749updates len to contain the new length.
67e989fb 750Returns zero on failure, setting C<len> to -1.
6940069f
GS
751
752=cut
753*/
754
755U8 *
37607a96 756Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len)
6940069f 757{
d4c19fe8
AL
758 U8 * const save = s;
759 U8 * const send = s + *len;
6940069f 760 U8 *d;
246fae53 761
1e54db1a 762 /* ensure valid UTF-8 and chars < 256 before updating string */
d4c19fe8 763 while (s < send) {
dcad2880
JH
764 U8 c = *s++;
765
1d72bdf6
NIS
766 if (!UTF8_IS_INVARIANT(c) &&
767 (!UTF8_IS_DOWNGRADEABLE_START(c) || (s >= send)
768 || !(c = *s++) || !UTF8_IS_CONTINUATION(c))) {
dcad2880
JH
769 *len = -1;
770 return 0;
771 }
246fae53 772 }
dcad2880
JH
773
774 d = s = save;
6940069f 775 while (s < send) {
ed646e6e 776 STRLEN ulen;
9041c2e3 777 *d++ = (U8)utf8_to_uvchr(s, &ulen);
ed646e6e 778 s += ulen;
6940069f
GS
779 }
780 *d = '\0';
246fae53 781 *len = d - save;
6940069f
GS
782 return save;
783}
784
785/*
e1ec3a88 786=for apidoc A|U8 *|bytes_from_utf8|const U8 *s|STRLEN *len|bool *is_utf8
f9a63242 787
1e54db1a 788Converts a string C<s> of length C<len> from UTF-8 into byte encoding.
35a4481c 789Unlike C<utf8_to_bytes> but like C<bytes_to_utf8>, returns a pointer to
ef9edfd0
JH
790the newly-created string, and updates C<len> to contain the new
791length. Returns the original string if no conversion occurs, C<len>
792is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to
7930 if C<s> is converted or contains all 7bit characters.
f9a63242 794
37607a96
PK
795=cut
796*/
f9a63242
JH
797
798U8 *
e1ec3a88 799Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8)
f9a63242 800{
f9a63242 801 U8 *d;
e1ec3a88
AL
802 const U8 *start = s;
803 const U8 *send;
f9a63242
JH
804 I32 count = 0;
805
96a5add6 806 PERL_UNUSED_CONTEXT;
f9a63242 807 if (!*is_utf8)
73d840c0 808 return (U8 *)start;
f9a63242 809
1e54db1a 810 /* ensure valid UTF-8 and chars < 256 before converting string */
f9a63242 811 for (send = s + *len; s < send;) {
e1ec3a88 812 U8 c = *s++;
1d72bdf6 813 if (!UTF8_IS_INVARIANT(c)) {
db42d148
NIS
814 if (UTF8_IS_DOWNGRADEABLE_START(c) && s < send &&
815 (c = *s++) && UTF8_IS_CONTINUATION(c))
816 count++;
817 else
73d840c0 818 return (U8 *)start;
db42d148 819 }
f9a63242
JH
820 }
821
822 *is_utf8 = 0;
823
212542aa 824 Newx(d, (*len) - count + 1, U8);
ef9edfd0 825 s = start; start = d;
f9a63242
JH
826 while (s < send) {
827 U8 c = *s++;
c4d5f83a
NIS
828 if (!UTF8_IS_INVARIANT(c)) {
829 /* Then it is two-byte encoded */
830 c = UTF8_ACCUMULATE(NATIVE_TO_UTF(c), *s++);
831 c = ASCII_TO_NATIVE(c);
832 }
833 *d++ = c;
f9a63242
JH
834 }
835 *d = '\0';
836 *len = d - start;
73d840c0 837 return (U8 *)start;
f9a63242
JH
838}
839
840/*
35a4481c 841=for apidoc A|U8 *|bytes_to_utf8|const U8 *s|STRLEN *len
6940069f 842
1e54db1a 843Converts a string C<s> of length C<len> from ASCII into UTF-8 encoding.
6662521e
GS
844Returns a pointer to the newly-created string, and sets C<len> to
845reflect the new length.
6940069f 846
1e54db1a 847If you want to convert to UTF-8 from other encodings than ASCII,
c9ada85f
JH
848see sv_recode_to_utf8().
849
497711e7 850=cut
6940069f
GS
851*/
852
853U8*
35a4481c 854Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len)
6940069f 855{
35a4481c 856 const U8 * const send = s + (*len);
6940069f
GS
857 U8 *d;
858 U8 *dst;
96a5add6 859 PERL_UNUSED_CONTEXT;
6940069f 860
212542aa 861 Newx(d, (*len) * 2 + 1, U8);
6940069f
GS
862 dst = d;
863
864 while (s < send) {
35a4481c 865 const UV uv = NATIVE_TO_ASCII(*s++);
c4d5f83a 866 if (UNI_IS_INVARIANT(uv))
eb160463 867 *d++ = (U8)UTF_TO_NATIVE(uv);
6940069f 868 else {
eb160463
GS
869 *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
870 *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
6940069f
GS
871 }
872 }
873 *d = '\0';
6662521e 874 *len = d-dst;
6940069f
GS
875 return dst;
876}
877
a0ed51b3 878/*
dea0fc0b 879 * Convert native (big-endian) or reversed (little-endian) UTF-16 to UTF-8.
a0ed51b3
LW
880 *
881 * Destination must be pre-extended to 3/2 source. Do not use in-place.
882 * We optimize for native, for obvious reasons. */
883
884U8*
dea0fc0b 885Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
a0ed51b3 886{
dea0fc0b
JH
887 U8* pend;
888 U8* dstart = d;
889
1de9afcd
RGS
890 if (bytelen == 1 && p[0] == 0) { /* Be understanding. */
891 d[0] = 0;
892 *newlen = 1;
893 return d;
894 }
895
dea0fc0b 896 if (bytelen & 1)
014ead4b 897 Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen %"UVf, (UV)bytelen);
dea0fc0b
JH
898
899 pend = p + bytelen;
900
a0ed51b3 901 while (p < pend) {
dea0fc0b
JH
902 UV uv = (p[0] << 8) + p[1]; /* UTF-16BE */
903 p += 2;
a0ed51b3 904 if (uv < 0x80) {
eb160463 905 *d++ = (U8)uv;
a0ed51b3
LW
906 continue;
907 }
908 if (uv < 0x800) {
eb160463
GS
909 *d++ = (U8)(( uv >> 6) | 0xc0);
910 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
911 continue;
912 }
913 if (uv >= 0xd800 && uv < 0xdbff) { /* surrogates */
30f84f9e
TD
914 UV low = (p[0] << 8) + p[1];
915 p += 2;
dea0fc0b
JH
916 if (low < 0xdc00 || low >= 0xdfff)
917 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
a0ed51b3
LW
918 uv = ((uv - 0xd800) << 10) + (low - 0xdc00) + 0x10000;
919 }
920 if (uv < 0x10000) {
eb160463
GS
921 *d++ = (U8)(( uv >> 12) | 0xe0);
922 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
923 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
924 continue;
925 }
926 else {
eb160463
GS
927 *d++ = (U8)(( uv >> 18) | 0xf0);
928 *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
929 *d++ = (U8)(((uv >> 6) & 0x3f) | 0x80);
930 *d++ = (U8)(( uv & 0x3f) | 0x80);
a0ed51b3
LW
931 continue;
932 }
933 }
dea0fc0b 934 *newlen = d - dstart;
a0ed51b3
LW
935 return d;
936}
937
938/* Note: this one is slightly destructive of the source. */
939
940U8*
dea0fc0b 941Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
a0ed51b3
LW
942{
943 U8* s = (U8*)p;
d4c19fe8 944 U8* const send = s + bytelen;
a0ed51b3 945 while (s < send) {
d4c19fe8 946 const U8 tmp = s[0];
a0ed51b3
LW
947 s[0] = s[1];
948 s[1] = tmp;
949 s += 2;
950 }
dea0fc0b 951 return utf16_to_utf8(p, d, bytelen, newlen);
a0ed51b3
LW
952}
953
954/* for now these are all defined (inefficiently) in terms of the utf8 versions */
955
956bool
84afefe6 957Perl_is_uni_alnum(pTHX_ UV c)
a0ed51b3 958{
89ebb4a3 959 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 960 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
961 return is_utf8_alnum(tmpbuf);
962}
963
964bool
84afefe6 965Perl_is_uni_alnumc(pTHX_ UV c)
b8c5462f 966{
89ebb4a3 967 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 968 uvchr_to_utf8(tmpbuf, c);
b8c5462f
JH
969 return is_utf8_alnumc(tmpbuf);
970}
971
972bool
84afefe6 973Perl_is_uni_idfirst(pTHX_ UV c)
a0ed51b3 974{
89ebb4a3 975 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 976 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
977 return is_utf8_idfirst(tmpbuf);
978}
979
980bool
84afefe6 981Perl_is_uni_alpha(pTHX_ UV c)
a0ed51b3 982{
89ebb4a3 983 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 984 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
985 return is_utf8_alpha(tmpbuf);
986}
987
988bool
84afefe6 989Perl_is_uni_ascii(pTHX_ UV c)
4d61ec05 990{
89ebb4a3 991 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 992 uvchr_to_utf8(tmpbuf, c);
4d61ec05
GS
993 return is_utf8_ascii(tmpbuf);
994}
995
996bool
84afefe6 997Perl_is_uni_space(pTHX_ UV c)
a0ed51b3 998{
89ebb4a3 999 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 1000 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
1001 return is_utf8_space(tmpbuf);
1002}
1003
1004bool
84afefe6 1005Perl_is_uni_digit(pTHX_ UV c)
a0ed51b3 1006{
89ebb4a3 1007 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 1008 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
1009 return is_utf8_digit(tmpbuf);
1010}
1011
1012bool
84afefe6 1013Perl_is_uni_upper(pTHX_ UV c)
a0ed51b3 1014{
89ebb4a3 1015 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 1016 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
1017 return is_utf8_upper(tmpbuf);
1018}
1019
1020bool
84afefe6 1021Perl_is_uni_lower(pTHX_ UV c)
a0ed51b3 1022{
89ebb4a3 1023 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 1024 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
1025 return is_utf8_lower(tmpbuf);
1026}
1027
1028bool
84afefe6 1029Perl_is_uni_cntrl(pTHX_ UV c)
b8c5462f 1030{
89ebb4a3 1031 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 1032 uvchr_to_utf8(tmpbuf, c);
b8c5462f
JH
1033 return is_utf8_cntrl(tmpbuf);
1034}
1035
1036bool
84afefe6 1037Perl_is_uni_graph(pTHX_ UV c)
b8c5462f 1038{
89ebb4a3 1039 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 1040 uvchr_to_utf8(tmpbuf, c);
b8c5462f
JH
1041 return is_utf8_graph(tmpbuf);
1042}
1043
1044bool
84afefe6 1045Perl_is_uni_print(pTHX_ UV c)
a0ed51b3 1046{
89ebb4a3 1047 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 1048 uvchr_to_utf8(tmpbuf, c);
a0ed51b3
LW
1049 return is_utf8_print(tmpbuf);
1050}
1051
b8c5462f 1052bool
84afefe6 1053Perl_is_uni_punct(pTHX_ UV c)
b8c5462f 1054{
89ebb4a3 1055 U8 tmpbuf[UTF8_MAXBYTES+1];
230880c1 1056 uvchr_to_utf8(tmpbuf, c);
b8c5462f
JH
1057 return is_utf8_punct(tmpbuf);
1058}
1059
4d61ec05 1060bool
84afefe6 1061Perl_is_uni_xdigit(pTHX_ UV c)
4d61ec05 1062{
89ebb4a3 1063 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
230880c1 1064 uvchr_to_utf8(tmpbuf, c);
4d61ec05
GS
1065 return is_utf8_xdigit(tmpbuf);
1066}
1067
84afefe6
JH
1068UV
1069Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp)
a0ed51b3 1070{
0ebc6274
JH
1071 uvchr_to_utf8(p, c);
1072 return to_utf8_upper(p, p, lenp);
a0ed51b3
LW
1073}
1074
84afefe6
JH
1075UV
1076Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp)
a0ed51b3 1077{
0ebc6274
JH
1078 uvchr_to_utf8(p, c);
1079 return to_utf8_title(p, p, lenp);
a0ed51b3
LW
1080}
1081
84afefe6
JH
1082UV
1083Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp)
a0ed51b3 1084{
0ebc6274
JH
1085 uvchr_to_utf8(p, c);
1086 return to_utf8_lower(p, p, lenp);
a0ed51b3
LW
1087}
1088
84afefe6
JH
1089UV
1090Perl_to_uni_fold(pTHX_ UV c, U8* p, STRLEN *lenp)
1091{
0ebc6274
JH
1092 uvchr_to_utf8(p, c);
1093 return to_utf8_fold(p, p, lenp);
84afefe6
JH
1094}
1095
a0ed51b3
LW
1096/* for now these all assume no locale info available for Unicode > 255 */
1097
1098bool
84afefe6 1099Perl_is_uni_alnum_lc(pTHX_ UV c)
a0ed51b3
LW
1100{
1101 return is_uni_alnum(c); /* XXX no locale support yet */
1102}
1103
1104bool
84afefe6 1105Perl_is_uni_alnumc_lc(pTHX_ UV c)
b8c5462f
JH
1106{
1107 return is_uni_alnumc(c); /* XXX no locale support yet */
1108}
1109
1110bool
84afefe6 1111Perl_is_uni_idfirst_lc(pTHX_ UV c)
a0ed51b3
LW
1112{
1113 return is_uni_idfirst(c); /* XXX no locale support yet */
1114}
1115
1116bool
84afefe6 1117Perl_is_uni_alpha_lc(pTHX_ UV c)
a0ed51b3
LW
1118{
1119 return is_uni_alpha(c); /* XXX no locale support yet */
1120}
1121
1122bool
84afefe6 1123Perl_is_uni_ascii_lc(pTHX_ UV c)
4d61ec05
GS
1124{
1125 return is_uni_ascii(c); /* XXX no locale support yet */
1126}
1127
1128bool
84afefe6 1129Perl_is_uni_space_lc(pTHX_ UV c)
a0ed51b3
LW
1130{
1131 return is_uni_space(c); /* XXX no locale support yet */
1132}
1133
1134bool
84afefe6 1135Perl_is_uni_digit_lc(pTHX_ UV c)
a0ed51b3
LW
1136{
1137 return is_uni_digit(c); /* XXX no locale support yet */
1138}
1139
1140bool
84afefe6 1141Perl_is_uni_upper_lc(pTHX_ UV c)
a0ed51b3
LW
1142{
1143 return is_uni_upper(c); /* XXX no locale support yet */
1144}
1145
1146bool
84afefe6 1147Perl_is_uni_lower_lc(pTHX_ UV c)
a0ed51b3
LW
1148{
1149 return is_uni_lower(c); /* XXX no locale support yet */
1150}
1151
1152bool
84afefe6 1153Perl_is_uni_cntrl_lc(pTHX_ UV c)
b8c5462f
JH
1154{
1155 return is_uni_cntrl(c); /* XXX no locale support yet */
1156}
1157
1158bool
84afefe6 1159Perl_is_uni_graph_lc(pTHX_ UV c)
b8c5462f
JH
1160{
1161 return is_uni_graph(c); /* XXX no locale support yet */
1162}
1163
1164bool
84afefe6 1165Perl_is_uni_print_lc(pTHX_ UV c)
a0ed51b3
LW
1166{
1167 return is_uni_print(c); /* XXX no locale support yet */
1168}
1169
b8c5462f 1170bool
84afefe6 1171Perl_is_uni_punct_lc(pTHX_ UV c)
b8c5462f
JH
1172{
1173 return is_uni_punct(c); /* XXX no locale support yet */
1174}
1175
4d61ec05 1176bool
84afefe6 1177Perl_is_uni_xdigit_lc(pTHX_ UV c)
4d61ec05
GS
1178{
1179 return is_uni_xdigit(c); /* XXX no locale support yet */
1180}
1181
b7ac61fa
JH
1182U32
1183Perl_to_uni_upper_lc(pTHX_ U32 c)
1184{
ee099d14
JH
1185 /* XXX returns only the first character -- do not use XXX */
1186 /* XXX no locale support yet */
1187 STRLEN len;
89ebb4a3 1188 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
ee099d14 1189 return (U32)to_uni_upper(c, tmpbuf, &len);
b7ac61fa
JH
1190}
1191
1192U32
1193Perl_to_uni_title_lc(pTHX_ U32 c)
1194{
ee099d14
JH
1195 /* XXX returns only the first character XXX -- do not use XXX */
1196 /* XXX no locale support yet */
1197 STRLEN len;
89ebb4a3 1198 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
ee099d14 1199 return (U32)to_uni_title(c, tmpbuf, &len);
b7ac61fa
JH
1200}
1201
1202U32
1203Perl_to_uni_lower_lc(pTHX_ U32 c)
1204{
ee099d14
JH
1205 /* XXX returns only the first character -- do not use XXX */
1206 /* XXX no locale support yet */
1207 STRLEN len;
89ebb4a3 1208 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
ee099d14 1209 return (U32)to_uni_lower(c, tmpbuf, &len);
b7ac61fa
JH
1210}
1211
7452cf6a 1212static bool
5141f98e 1213S_is_utf8_common(pTHX_ const U8 *const p, SV **swash,
bde6a22d
NC
1214 const char *const swashname)
1215{
97aff369 1216 dVAR;
bde6a22d
NC
1217 if (!is_utf8_char(p))
1218 return FALSE;
1219 if (!*swash)
711a919c 1220 *swash = swash_init("utf8", swashname, &PL_sv_undef, 1, 0);
bde6a22d
NC
1221 return swash_fetch(*swash, p, TRUE) != 0;
1222}
1223
1224bool
7fc63493 1225Perl_is_utf8_alnum(pTHX_ const U8 *p)
a0ed51b3 1226{
97aff369 1227 dVAR;
671c33bf
NC
1228 /* NOTE: "IsWord", not "IsAlnum", since Alnum is a true
1229 * descendant of isalnum(3), in other words, it doesn't
1230 * contain the '_'. --jhi */
d4c19fe8 1231 return is_utf8_common(p, &PL_utf8_alnum, "IsWord");
a0ed51b3
LW
1232}
1233
1234bool
7fc63493 1235Perl_is_utf8_alnumc(pTHX_ const U8 *p)
b8c5462f 1236{
97aff369 1237 dVAR;
d4c19fe8 1238 return is_utf8_common(p, &PL_utf8_alnumc, "IsAlnumC");
b8c5462f
JH
1239}
1240
1241bool
7fc63493 1242Perl_is_utf8_idfirst(pTHX_ const U8 *p) /* The naming is historical. */
a0ed51b3 1243{
97aff369 1244 dVAR;
82686b01
JH
1245 if (*p == '_')
1246 return TRUE;
bde6a22d 1247 /* is_utf8_idstart would be more logical. */
d4c19fe8 1248 return is_utf8_common(p, &PL_utf8_idstart, "IdStart");
82686b01
JH
1249}
1250
1251bool
7fc63493 1252Perl_is_utf8_idcont(pTHX_ const U8 *p)
82686b01 1253{
97aff369 1254 dVAR;
82686b01
JH
1255 if (*p == '_')
1256 return TRUE;
d4c19fe8 1257 return is_utf8_common(p, &PL_utf8_idcont, "IdContinue");
a0ed51b3
LW
1258}
1259
1260bool
7fc63493 1261Perl_is_utf8_alpha(pTHX_ const U8 *p)
a0ed51b3 1262{
97aff369 1263 dVAR;
d4c19fe8 1264 return is_utf8_common(p, &PL_utf8_alpha, "IsAlpha");
a0ed51b3
LW
1265}
1266
1267bool
7fc63493 1268Perl_is_utf8_ascii(pTHX_ const U8 *p)
b8c5462f 1269{
97aff369 1270 dVAR;
d4c19fe8 1271 return is_utf8_common(p, &PL_utf8_ascii, "IsAscii");
b8c5462f
JH
1272}
1273
1274bool
7fc63493 1275Perl_is_utf8_space(pTHX_ const U8 *p)
a0ed51b3 1276{
97aff369 1277 dVAR;
d4c19fe8 1278 return is_utf8_common(p, &PL_utf8_space, "IsSpacePerl");
a0ed51b3
LW
1279}
1280
1281bool
7fc63493 1282Perl_is_utf8_digit(pTHX_ const U8 *p)
a0ed51b3 1283{
97aff369 1284 dVAR;
d4c19fe8 1285 return is_utf8_common(p, &PL_utf8_digit, "IsDigit");
a0ed51b3
LW
1286}
1287
1288bool
7fc63493 1289Perl_is_utf8_upper(pTHX_ const U8 *p)
a0ed51b3 1290{
97aff369 1291 dVAR;
d4c19fe8 1292 return is_utf8_common(p, &PL_utf8_upper, "IsUppercase");
a0ed51b3
LW
1293}
1294
1295bool
7fc63493 1296Perl_is_utf8_lower(pTHX_ const U8 *p)
a0ed51b3 1297{
97aff369 1298 dVAR;
d4c19fe8 1299 return is_utf8_common(p, &PL_utf8_lower, "IsLowercase");
a0ed51b3
LW
1300}
1301
1302bool
7fc63493 1303Perl_is_utf8_cntrl(pTHX_ const U8 *p)
b8c5462f 1304{
97aff369 1305 dVAR;
d4c19fe8 1306 return is_utf8_common(p, &PL_utf8_cntrl, "IsCntrl");
b8c5462f
JH
1307}
1308
1309bool
7fc63493 1310Perl_is_utf8_graph(pTHX_ const U8 *p)
b8c5462f 1311{
97aff369 1312 dVAR;
d4c19fe8 1313 return is_utf8_common(p, &PL_utf8_graph, "IsGraph");
b8c5462f
JH
1314}
1315
1316bool
7fc63493 1317Perl_is_utf8_print(pTHX_ const U8 *p)
a0ed51b3 1318{
97aff369 1319 dVAR;
d4c19fe8 1320 return is_utf8_common(p, &PL_utf8_print, "IsPrint");
a0ed51b3
LW
1321}
1322
1323bool
7fc63493 1324Perl_is_utf8_punct(pTHX_ const U8 *p)
b8c5462f 1325{
97aff369 1326 dVAR;
d4c19fe8 1327 return is_utf8_common(p, &PL_utf8_punct, "IsPunct");
b8c5462f
JH
1328}
1329
1330bool
7fc63493 1331Perl_is_utf8_xdigit(pTHX_ const U8 *p)
b8c5462f 1332{
97aff369 1333 dVAR;
d4c19fe8 1334 return is_utf8_common(p, &PL_utf8_xdigit, "Isxdigit");
b8c5462f
JH
1335}
1336
1337bool
7fc63493 1338Perl_is_utf8_mark(pTHX_ const U8 *p)
a0ed51b3 1339{
97aff369 1340 dVAR;
d4c19fe8 1341 return is_utf8_common(p, &PL_utf8_mark, "IsM");
a0ed51b3
LW
1342}
1343
6b5c0936
JH
1344/*
1345=for apidoc A|UV|to_utf8_case|U8 *p|U8* ustrp|STRLEN *lenp|SV **swash|char *normal|char *special
1346
1347The "p" contains the pointer to the UTF-8 string encoding
1348the character that is being converted.
1349
1350The "ustrp" is a pointer to the character buffer to put the
1351conversion result to. The "lenp" is a pointer to the length
1352of the result.
1353
0134edef 1354The "swashp" is a pointer to the swash to use.
6b5c0936 1355
0134edef 1356Both the special and normal mappings are stored lib/unicore/To/Foo.pl,
8fe4d5b2 1357and loaded by SWASHNEW, using lib/utf8_heavy.pl. The special (usually,
0134edef 1358but not always, a multicharacter mapping), is tried first.
6b5c0936 1359
0134edef
JH
1360The "special" is a string like "utf8::ToSpecLower", which means the
1361hash %utf8::ToSpecLower. The access to the hash is through
1362Perl_to_utf8_case().
6b5c0936 1363
0134edef
JH
1364The "normal" is a string like "ToLower" which means the swash
1365%utf8::ToLower.
1366
1367=cut */
6b5c0936 1368
2104c8d9 1369UV
9a957fbc
AL
1370Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp,
1371 SV **swashp, const char *normal, const char *special)
a0ed51b3 1372{
97aff369 1373 dVAR;
89ebb4a3 1374 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
0134edef 1375 STRLEN len = 0;
a0ed51b3 1376
aec46f14 1377 const UV uv0 = utf8_to_uvchr(p, NULL);
1feea2c7
JH
1378 /* The NATIVE_TO_UNI() and UNI_TO_NATIVE() mappings
1379 * are necessary in EBCDIC, they are redundant no-ops
1380 * in ASCII-ish platforms, and hopefully optimized away. */
f54cb97a 1381 const UV uv1 = NATIVE_TO_UNI(uv0);
1feea2c7 1382 uvuni_to_utf8(tmpbuf, uv1);
0134edef
JH
1383
1384 if (!*swashp) /* load on-demand */
1385 *swashp = swash_init("utf8", normal, &PL_sv_undef, 4, 0);
1386
b08cf34e
JH
1387 /* The 0xDF is the only special casing Unicode code point below 0x100. */
1388 if (special && (uv1 == 0xDF || uv1 > 0xFF)) {
0134edef 1389 /* It might be "special" (sometimes, but not always,
2a37f04d 1390 * a multicharacter mapping) */
983ffd37 1391 HV *hv;
b08cf34e
JH
1392 SV **svp;
1393
1394 if ((hv = get_hv(special, FALSE)) &&
1395 (svp = hv_fetch(hv, (const char*)tmpbuf, UNISKIP(uv1), FALSE)) &&
1396 (*svp)) {
cfd0369c 1397 const char *s;
47654450 1398
cfd0369c 1399 s = SvPV_const(*svp, len);
47654450
JH
1400 if (len == 1)
1401 len = uvuni_to_utf8(ustrp, NATIVE_TO_UNI(*(U8*)s)) - ustrp;
2a37f04d 1402 else {
2f9475ad
JH
1403#ifdef EBCDIC
1404 /* If we have EBCDIC we need to remap the characters
1405 * since any characters in the low 256 are Unicode
1406 * code points, not EBCDIC. */
7cda7a3d 1407 U8 *t = (U8*)s, *tend = t + len, *d;
2f9475ad
JH
1408
1409 d = tmpbuf;
b08cf34e 1410 if (SvUTF8(*svp)) {
2f9475ad
JH
1411 STRLEN tlen = 0;
1412
1413 while (t < tend) {
d4c19fe8 1414 const UV c = utf8_to_uvchr(t, &tlen);
2f9475ad
JH
1415 if (tlen > 0) {
1416 d = uvchr_to_utf8(d, UNI_TO_NATIVE(c));
1417 t += tlen;
1418 }
1419 else
1420 break;
1421 }
1422 }
1423 else {
36fec512
JH
1424 while (t < tend) {
1425 d = uvchr_to_utf8(d, UNI_TO_NATIVE(*t));
1426 t++;
1427 }
2f9475ad
JH
1428 }
1429 len = d - tmpbuf;
1430 Copy(tmpbuf, ustrp, len, U8);
1431#else
d2dcd0fb 1432 Copy(s, ustrp, len, U8);
2f9475ad 1433#endif
29e98929 1434 }
983ffd37 1435 }
0134edef
JH
1436 }
1437
1438 if (!len && *swashp) {
d4c19fe8
AL
1439 const UV uv2 = swash_fetch(*swashp, tmpbuf, TRUE);
1440
0134edef
JH
1441 if (uv2) {
1442 /* It was "normal" (a single character mapping). */
d4c19fe8 1443 const UV uv3 = UNI_TO_NATIVE(uv2);
e9101d72 1444 len = uvchr_to_utf8(ustrp, uv3) - ustrp;
2a37f04d
JH
1445 }
1446 }
1feea2c7 1447
0134edef
JH
1448 if (!len) /* Neither: just copy. */
1449 len = uvchr_to_utf8(ustrp, uv0) - ustrp;
1450
2a37f04d
JH
1451 if (lenp)
1452 *lenp = len;
1453
0134edef 1454 return len ? utf8_to_uvchr(ustrp, 0) : 0;
a0ed51b3
LW
1455}
1456
d3e79532 1457/*
7fc63493 1458=for apidoc A|UV|to_utf8_upper|const U8 *p|U8 *ustrp|STRLEN *lenp
d3e79532
JH
1459
1460Convert the UTF-8 encoded character at p to its uppercase version and
1461store that in UTF-8 in ustrp and its length in bytes in lenp. Note
89ebb4a3
JH
1462that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since
1463the uppercase version may be longer than the original character.
d3e79532
JH
1464
1465The first character of the uppercased version is returned
1466(but note, as explained above, that there may be more.)
1467
1468=cut */
1469
2104c8d9 1470UV
7fc63493 1471Perl_to_utf8_upper(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
a0ed51b3 1472{
97aff369 1473 dVAR;
983ffd37 1474 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
b4e400f9 1475 &PL_utf8_toupper, "ToUpper", "utf8::ToSpecUpper");
983ffd37 1476}
a0ed51b3 1477
d3e79532 1478/*
7fc63493 1479=for apidoc A|UV|to_utf8_title|const U8 *p|U8 *ustrp|STRLEN *lenp
d3e79532
JH
1480
1481Convert the UTF-8 encoded character at p to its titlecase version and
1482store that in UTF-8 in ustrp and its length in bytes in lenp. Note
89ebb4a3
JH
1483that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
1484titlecase version may be longer than the original character.
d3e79532
JH
1485
1486The first character of the titlecased version is returned
1487(but note, as explained above, that there may be more.)
1488
1489=cut */
1490
983ffd37 1491UV
7fc63493 1492Perl_to_utf8_title(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
983ffd37 1493{
97aff369 1494 dVAR;
983ffd37 1495 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
b4e400f9 1496 &PL_utf8_totitle, "ToTitle", "utf8::ToSpecTitle");
a0ed51b3
LW
1497}
1498
d3e79532 1499/*
7fc63493 1500=for apidoc A|UV|to_utf8_lower|const U8 *p|U8 *ustrp|STRLEN *lenp
d3e79532
JH
1501
1502Convert the UTF-8 encoded character at p to its lowercase version and
1503store that in UTF-8 in ustrp and its length in bytes in lenp. Note
89ebb4a3
JH
1504that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
1505lowercase version may be longer than the original character.
d3e79532
JH
1506
1507The first character of the lowercased version is returned
1508(but note, as explained above, that there may be more.)
1509
1510=cut */
1511
2104c8d9 1512UV
7fc63493 1513Perl_to_utf8_lower(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
a0ed51b3 1514{
97aff369 1515 dVAR;
983ffd37 1516 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
b4e400f9
JH
1517 &PL_utf8_tolower, "ToLower", "utf8::ToSpecLower");
1518}
1519
d3e79532 1520/*
7fc63493 1521=for apidoc A|UV|to_utf8_fold|const U8 *p|U8 *ustrp|STRLEN *lenp
d3e79532
JH
1522
1523Convert the UTF-8 encoded character at p to its foldcase version and
1524store that in UTF-8 in ustrp and its length in bytes in lenp. Note
89ebb4a3 1525that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
d3e79532
JH
1526foldcase version may be longer than the original character (up to
1527three characters).
1528
1529The first character of the foldcased version is returned
1530(but note, as explained above, that there may be more.)
1531
1532=cut */
1533
b4e400f9 1534UV
7fc63493 1535Perl_to_utf8_fold(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
b4e400f9 1536{
97aff369 1537 dVAR;
b4e400f9
JH
1538 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1539 &PL_utf8_tofold, "ToFold", "utf8::ToSpecFold");
a0ed51b3
LW
1540}
1541
711a919c
TS
1542/* Note:
1543 * A "swash" is a swatch hash.
1544 * A "swatch" is a bit vector generated by utf8.c:S_swash_get().
1545 * C<pkg> is a pointer to a package name for SWASHNEW, should be "utf8".
1546 * For other parameters, see utf8::SWASHNEW in lib/utf8_heavy.pl.
1547 */
a0ed51b3 1548SV*
7fc63493 1549Perl_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none)
a0ed51b3 1550{
27da23d5 1551 dVAR;
a0ed51b3 1552 SV* retval;
9a957fbc 1553 SV* const tokenbufsv = sv_newmortal();
8e84507e 1554 dSP;
7fc63493
AL
1555 const size_t pkg_len = strlen(pkg);
1556 const size_t name_len = strlen(name);
aec46f14 1557 HV * const stash = gv_stashpvn(pkg, pkg_len, FALSE);
f8be5cf0 1558 SV* errsv_save;
ce3b816e 1559
96ca9f55
DM
1560 PUSHSTACKi(PERLSI_MAGIC);
1561 ENTER;
1562 SAVEI32(PL_hints);
1563 PL_hints = 0;
1564 save_re_context();
1b026014 1565 if (!gv_fetchmeth(stash, "SWASHNEW", 8, -1)) { /* demand load utf8 */
ce3b816e 1566 ENTER;
f8be5cf0 1567 errsv_save = newSVsv(ERRSV);
dc0c6abb
NC
1568 /* It is assumed that callers of this routine are not passing in any
1569 user derived data. */
1570 /* Need to do this after save_re_context() as it will set PL_tainted to
1571 1 while saving $1 etc (see the code after getrx: in Perl_magic_get).
1572 Even line to create errsv_save can turn on PL_tainted. */
1573 SAVEBOOL(PL_tainted);
1574 PL_tainted = 0;
71bed85a 1575 Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, newSVpvn(pkg,pkg_len),
a0714e2c 1576 NULL);
f8be5cf0
JH
1577 if (!SvTRUE(ERRSV))
1578 sv_setsv(ERRSV, errsv_save);
1579 SvREFCNT_dec(errsv_save);
ce3b816e
GS
1580 LEAVE;
1581 }
1582 SPAGAIN;
a0ed51b3
LW
1583 PUSHMARK(SP);
1584 EXTEND(SP,5);
71bed85a
NC
1585 PUSHs(sv_2mortal(newSVpvn(pkg, pkg_len)));
1586 PUSHs(sv_2mortal(newSVpvn(name, name_len)));
a0ed51b3
LW
1587 PUSHs(listsv);
1588 PUSHs(sv_2mortal(newSViv(minbits)));
1589 PUSHs(sv_2mortal(newSViv(none)));
1590 PUTBACK;
923e4eb5 1591 if (IN_PERL_COMPILETIME) {
bf1fed83 1592 /* XXX ought to be handled by lex_start */
82686b01 1593 SAVEI32(PL_in_my);
2b4bd638 1594 PL_in_my = 0;
bf1fed83 1595 sv_setpv(tokenbufsv, PL_tokenbuf);
82686b01 1596 }
f8be5cf0 1597 errsv_save = newSVsv(ERRSV);
864dbfa3 1598 if (call_method("SWASHNEW", G_SCALAR))
8e84507e 1599 retval = newSVsv(*PL_stack_sp--);
a0ed51b3 1600 else
e24b16f9 1601 retval = &PL_sv_undef;
f8be5cf0
JH
1602 if (!SvTRUE(ERRSV))
1603 sv_setsv(ERRSV, errsv_save);
1604 SvREFCNT_dec(errsv_save);
a0ed51b3
LW
1605 LEAVE;
1606 POPSTACK;
923e4eb5 1607 if (IN_PERL_COMPILETIME) {
bf1fed83 1608 STRLEN len;
aec46f14 1609 const char* const pv = SvPV_const(tokenbufsv, len);
bf1fed83
JH
1610
1611 Copy(pv, PL_tokenbuf, len+1, char);
eb160463 1612 PL_curcop->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
a0ed51b3 1613 }
bc45ce41
JH
1614 if (!SvROK(retval) || SvTYPE(SvRV(retval)) != SVt_PVHV) {
1615 if (SvPOK(retval))
35c1215d
NC
1616 Perl_croak(aTHX_ "Can't find Unicode property definition \"%"SVf"\"",
1617 retval);
cea2e8a9 1618 Perl_croak(aTHX_ "SWASHNEW didn't return an HV ref");
bc45ce41 1619 }
a0ed51b3
LW
1620 return retval;
1621}
1622
035d37be
JH
1623
1624/* This API is wrong for special case conversions since we may need to
1625 * return several Unicode characters for a single Unicode character
1626 * (see lib/unicore/SpecCase.txt) The SWASHGET in lib/utf8_heavy.pl is
1627 * the lower-level routine, and it is similarly broken for returning
1628 * multiple values. --jhi */
979f2922 1629/* Now SWASHGET is recasted into S_swash_get in this file. */
680c470c
TS
1630
1631/* Note:
1632 * Returns the value of property/mapping C<swash> for the first character
1633 * of the string C<ptr>. If C<do_utf8> is true, the string C<ptr> is
1634 * assumed to be in utf8. If C<do_utf8> is false, the string C<ptr> is
1635 * assumed to be in native 8-bit encoding. Caches the swatch in C<swash>.
1636 */
a0ed51b3 1637UV
680c470c 1638Perl_swash_fetch(pTHX_ SV *swash, const U8 *ptr, bool do_utf8)
a0ed51b3 1639{
27da23d5 1640 dVAR;
680c470c 1641 HV* const hv = (HV*)SvRV(swash);
3568d838
JH
1642 U32 klen;
1643 U32 off;
a0ed51b3 1644 STRLEN slen;
7d85a32c 1645 STRLEN needents;
cfd0369c 1646 const U8 *tmps = NULL;
a0ed51b3 1647 U32 bit;
979f2922 1648 SV *swatch;
3568d838
JH
1649 U8 tmputf8[2];
1650 UV c = NATIVE_TO_ASCII(*ptr);
1651
1652 if (!do_utf8 && !UNI_IS_INVARIANT(c)) {
979f2922
TS
1653 tmputf8[0] = (U8)UTF8_EIGHT_BIT_HI(c);
1654 tmputf8[1] = (U8)UTF8_EIGHT_BIT_LO(c);
1655 ptr = tmputf8;
3568d838
JH
1656 }
1657 /* Given a UTF-X encoded char 0xAA..0xYY,0xZZ
1658 * then the "swatch" is a vec() for al the chars which start
1659 * with 0xAA..0xYY
1660 * So the key in the hash (klen) is length of encoded char -1
1661 */
1662 klen = UTF8SKIP(ptr) - 1;
1663 off = ptr[klen];
a0ed51b3 1664
979f2922 1665 if (klen == 0) {
7d85a32c 1666 /* If char in invariant then swatch is for all the invariant chars
1e54db1a 1667 * In both UTF-8 and UTF-8-MOD that happens to be UTF_CONTINUATION_MARK
7d85a32c 1668 */
979f2922
TS
1669 needents = UTF_CONTINUATION_MARK;
1670 off = NATIVE_TO_UTF(ptr[klen]);
1671 }
1672 else {
7d85a32c 1673 /* If char is encoded then swatch is for the prefix */
979f2922
TS
1674 needents = (1 << UTF_ACCUMULATION_SHIFT);
1675 off = NATIVE_TO_UTF(ptr[klen]) & UTF_CONTINUATION_MASK;
1676 }
7d85a32c 1677
a0ed51b3
LW
1678 /*
1679 * This single-entry cache saves about 1/3 of the utf8 overhead in test
1680 * suite. (That is, only 7-8% overall over just a hash cache. Still,
1681 * it's nothing to sniff at.) Pity we usually come through at least
1682 * two function calls to get here...
1683 *
1684 * NB: this code assumes that swatches are never modified, once generated!
1685 */
1686
3568d838 1687 if (hv == PL_last_swash_hv &&
a0ed51b3 1688 klen == PL_last_swash_klen &&
27da23d5 1689 (!klen || memEQ((char *)ptr, (char *)PL_last_swash_key, klen)) )
a0ed51b3
LW
1690 {
1691 tmps = PL_last_swash_tmps;
1692 slen = PL_last_swash_slen;
1693 }
1694 else {
1695 /* Try our second-level swatch cache, kept in a hash. */
e1ec3a88 1696 SV** svp = hv_fetch(hv, (const char*)ptr, klen, FALSE);
a0ed51b3 1697
979f2922
TS
1698 /* If not cached, generate it via swash_get */
1699 if (!svp || !SvPOK(*svp)
1700 || !(tmps = (const U8*)SvPV_const(*svp, slen))) {
2b9d42f0
NIS
1701 /* We use utf8n_to_uvuni() as we want an index into
1702 Unicode tables, not a native character number.
1703 */
aec46f14 1704 const UV code_point = utf8n_to_uvuni(ptr, UTF8_MAXBYTES, 0,
872c91ae
JH
1705 ckWARN(WARN_UTF8) ?
1706 0 : UTF8_ALLOW_ANY);
680c470c 1707 swatch = swash_get(swash,
979f2922
TS
1708 /* On EBCDIC & ~(0xA0-1) isn't a useful thing to do */
1709 (klen) ? (code_point & ~(needents - 1)) : 0,
1710 needents);
1711
923e4eb5 1712 if (IN_PERL_COMPILETIME)
eb160463 1713 PL_curcop->op_private = (U8)(PL_hints & HINT_PRIVATE_MASK);
a0ed51b3 1714
979f2922 1715 svp = hv_store(hv, (const char *)ptr, klen, swatch, 0);
a0ed51b3 1716
979f2922
TS
1717 if (!svp || !(tmps = (U8*)SvPV(*svp, slen))
1718 || (slen << 3) < needents)
660a4616 1719 Perl_croak(aTHX_ "panic: swash_fetch got improper swatch");
a0ed51b3
LW
1720 }
1721
1722 PL_last_swash_hv = hv;
1723 PL_last_swash_klen = klen;
cfd0369c
NC
1724 /* FIXME change interpvar.h? */
1725 PL_last_swash_tmps = (U8 *) tmps;
a0ed51b3
LW
1726 PL_last_swash_slen = slen;
1727 if (klen)
1728 Copy(ptr, PL_last_swash_key, klen, U8);
1729 }
1730
9faf8d75 1731 switch ((int)((slen << 3) / needents)) {
a0ed51b3
LW
1732 case 1:
1733 bit = 1 << (off & 7);
1734 off >>= 3;
1735 return (tmps[off] & bit) != 0;
1736 case 8:
1737 return tmps[off];
1738 case 16:
1739 off <<= 1;
1740 return (tmps[off] << 8) + tmps[off + 1] ;
1741 case 32:
1742 off <<= 2;
1743 return (tmps[off] << 24) + (tmps[off+1] << 16) + (tmps[off+2] << 8) + tmps[off + 3] ;
1744 }
660a4616 1745 Perl_croak(aTHX_ "panic: swash_fetch got swatch of unexpected bit width");
a0ed51b3 1746}
2b9d42f0 1747
979f2922
TS
1748/* Note:
1749 * Returns a swatch (a bit vector string) for a code point sequence
1750 * that starts from the value C<start> and comprises the number C<span>.
1751 * A C<swash> must be an object created by SWASHNEW (see lib/utf8_heavy.pl).
1752 * Should be used via swash_fetch, which will cache the swatch in C<swash>.
1753 */
1754STATIC SV*
1755S_swash_get(pTHX_ SV* swash, UV start, UV span)
1756{
1757 SV *swatch;
711a919c 1758 U8 *l, *lend, *x, *xend, *s;
979f2922
TS
1759 STRLEN lcur, xcur, scur;
1760
1761 HV* const hv = (HV*)SvRV(swash);
017a3ce5
GA
1762 SV** const listsvp = hv_fetchs(hv, "LIST", FALSE);
1763 SV** const typesvp = hv_fetchs(hv, "TYPE", FALSE);
1764 SV** const bitssvp = hv_fetchs(hv, "BITS", FALSE);
1765 SV** const nonesvp = hv_fetchs(hv, "NONE", FALSE);
1766 SV** const extssvp = hv_fetchs(hv, "EXTRAS", FALSE);
0bd48802
AL
1767 const U8* const typestr = (U8*)SvPV_nolen(*typesvp);
1768 const int typeto = typestr[0] == 'T' && typestr[1] == 'o';
1769 const STRLEN bits = SvUV(*bitssvp);
1770 const STRLEN octets = bits >> 3; /* if bits == 1, then octets == 0 */
1771 const UV none = SvUV(*nonesvp);
1772 const UV end = start + span;
979f2922
TS
1773
1774 if (bits != 1 && bits != 8 && bits != 16 && bits != 32) {
660a4616
TS
1775 Perl_croak(aTHX_ "panic: swash_get doesn't expect bits %"UVuf,
1776 (UV)bits);
979f2922
TS
1777 }
1778
1779 /* create and initialize $swatch */
396482e1 1780 swatch = newSVpvs("");
979f2922
TS
1781 scur = octets ? (span * octets) : (span + 7) / 8;
1782 SvGROW(swatch, scur + 1);
1783 s = (U8*)SvPVX(swatch);
1784 if (octets && none) {
0bd48802 1785 const U8* const e = s + scur;
979f2922
TS
1786 while (s < e) {
1787 if (bits == 8)
1788 *s++ = (U8)(none & 0xff);
1789 else if (bits == 16) {
1790 *s++ = (U8)((none >> 8) & 0xff);
1791 *s++ = (U8)( none & 0xff);
1792 }
1793 else if (bits == 32) {
1794 *s++ = (U8)((none >> 24) & 0xff);
1795 *s++ = (U8)((none >> 16) & 0xff);
1796 *s++ = (U8)((none >> 8) & 0xff);
1797 *s++ = (U8)( none & 0xff);
1798 }
1799 }
1800 *s = '\0';
1801 }
1802 else {
1803 (void)memzero((U8*)s, scur + 1);
1804 }
1805 SvCUR_set(swatch, scur);
1806 s = (U8*)SvPVX(swatch);
1807
1808 /* read $swash->{LIST} */
1809 l = (U8*)SvPV(*listsvp, lcur);
1810 lend = l + lcur;
1811 while (l < lend) {
1812 UV min, max, val, key;
1813 STRLEN numlen;
1814 I32 flags = PERL_SCAN_SILENT_ILLDIGIT | PERL_SCAN_DISALLOW_PREFIX;
1815
0bd48802 1816 U8* const nl = (U8*)memchr(l, '\n', lend - l);
979f2922
TS
1817
1818 numlen = lend - l;
1819 min = grok_hex((char *)l, &numlen, &flags, NULL);
1820 if (numlen)
1821 l += numlen;
1822 else if (nl) {
1823 l = nl + 1; /* 1 is length of "\n" */
1824 continue;
1825 }
1826 else {
1827 l = lend; /* to LIST's end at which \n is not found */
1828 break;
1829 }
1830
1831 if (isBLANK(*l)) {
1832 ++l;
1833 flags = PERL_SCAN_SILENT_ILLDIGIT | PERL_SCAN_DISALLOW_PREFIX;
1834 numlen = lend - l;
1835 max = grok_hex((char *)l, &numlen, &flags, NULL);
1836 if (numlen)
1837 l += numlen;
1838 else
1839 max = min;
1840
1841 if (octets) {
1842 if (isBLANK(*l)) {
1843 ++l;
1844 flags = PERL_SCAN_SILENT_ILLDIGIT |
1845 PERL_SCAN_DISALLOW_PREFIX;
1846 numlen = lend - l;
1847 val = grok_hex((char *)l, &numlen, &flags, NULL);
1848 if (numlen)
1849 l += numlen;
1850 else
1851 val = 0;
1852 }
1853 else {
1854 val = 0;
1855 if (typeto) {
1856 Perl_croak(aTHX_ "%s: illegal mapping '%s'",
1857 typestr, l);
1858 }
1859 }
1860 }
711a919c
TS
1861 else
1862 val = 0; /* bits == 1, then val should be ignored */
979f2922
TS
1863 }
1864 else {
1865 max = min;
1866 if (octets) {
1867 val = 0;
1868 if (typeto) {
1869 Perl_croak(aTHX_ "%s: illegal mapping '%s'", typestr, l);
1870 }
1871 }
711a919c
TS
1872 else
1873 val = 0; /* bits == 1, then val should be ignored */
979f2922
TS
1874 }
1875
1876 if (nl)
1877 l = nl + 1;
1878 else
1879 l = lend;
1880
1881 if (max < start)
1882 continue;
1883
1884 if (octets) {
1885 if (min < start) {
1886 if (!none || val < none) {
1887 val += start - min;
1888 }
1889 min = start;
1890 }
1891 for (key = min; key <= max; key++) {
1892 STRLEN offset;
1893 if (key >= end)
1894 goto go_out_list;
1895 /* offset must be non-negative (start <= min <= key < end) */
1896 offset = octets * (key - start);
1897 if (bits == 8)
1898 s[offset] = (U8)(val & 0xff);
1899 else if (bits == 16) {
1900 s[offset ] = (U8)((val >> 8) & 0xff);
1901 s[offset + 1] = (U8)( val & 0xff);
1902 }
1903 else if (bits == 32) {
1904 s[offset ] = (U8)((val >> 24) & 0xff);
1905 s[offset + 1] = (U8)((val >> 16) & 0xff);
1906 s[offset + 2] = (U8)((val >> 8) & 0xff);
1907 s[offset + 3] = (U8)( val & 0xff);
1908 }
1909
1910 if (!none || val < none)
1911 ++val;
1912 }
1913 }
711a919c 1914 else { /* bits == 1, then val should be ignored */
979f2922
TS
1915 if (min < start)
1916 min = start;
1917 for (key = min; key <= max; key++) {
0bd48802 1918 const STRLEN offset = (STRLEN)(key - start);
979f2922
TS
1919 if (key >= end)
1920 goto go_out_list;
1921 s[offset >> 3] |= 1 << (offset & 7);
1922 }
1923 }
1924 } /* while */
1925 go_out_list:
1926
1927 /* read $swash->{EXTRAS} */
1928 x = (U8*)SvPV(*extssvp, xcur);
1929 xend = x + xcur;
1930 while (x < xend) {
1931 STRLEN namelen;
1932 U8 *namestr;
1933 SV** othersvp;
1934 HV* otherhv;
1935 STRLEN otherbits;
1936 SV **otherbitssvp, *other;
711a919c 1937 U8 *s, *o, *nl;
979f2922
TS
1938 STRLEN slen, olen;
1939
1940 U8 opc = *x++;
1941 if (opc == '\n')
1942 continue;
1943
1944 nl = (U8*)memchr(x, '\n', xend - x);
1945
1946 if (opc != '-' && opc != '+' && opc != '!' && opc != '&') {
1947 if (nl) {
1948 x = nl + 1; /* 1 is length of "\n" */
1949 continue;
1950 }
1951 else {
1952 x = xend; /* to EXTRAS' end at which \n is not found */
1953 break;
1954 }
1955 }
1956
1957 namestr = x;
1958 if (nl) {
1959 namelen = nl - namestr;
1960 x = nl + 1;
1961 }
1962 else {
1963 namelen = xend - namestr;
1964 x = xend;
1965 }
1966
1967 othersvp = hv_fetch(hv, (char *)namestr, namelen, FALSE);
660a4616 1968 otherhv = (HV*)SvRV(*othersvp);
017a3ce5 1969 otherbitssvp = hv_fetchs(otherhv, "BITS", FALSE);
979f2922
TS
1970 otherbits = (STRLEN)SvUV(*otherbitssvp);
1971 if (bits < otherbits)
660a4616 1972 Perl_croak(aTHX_ "panic: swash_get found swatch size mismatch");
979f2922
TS
1973
1974 /* The "other" swatch must be destroyed after. */
1975 other = swash_get(*othersvp, start, span);
1976 o = (U8*)SvPV(other, olen);
1977
1978 if (!olen)
660a4616 1979 Perl_croak(aTHX_ "panic: swash_get got improper swatch");
979f2922
TS
1980
1981 s = (U8*)SvPV(swatch, slen);
1982 if (bits == 1 && otherbits == 1) {
1983 if (slen != olen)
660a4616 1984 Perl_croak(aTHX_ "panic: swash_get found swatch length mismatch");
979f2922
TS
1985
1986 switch (opc) {
1987 case '+':
1988 while (slen--)
1989 *s++ |= *o++;
1990 break;
1991 case '!':
1992 while (slen--)
1993 *s++ |= ~*o++;
1994 break;
1995 case '-':
1996 while (slen--)
1997 *s++ &= ~*o++;
1998 break;
1999 case '&':
2000 while (slen--)
2001 *s++ &= *o++;
2002 break;
2003 default:
2004 break;
2005 }
2006 }
711a919c 2007 else {
979f2922
TS
2008 STRLEN otheroctets = otherbits >> 3;
2009 STRLEN offset = 0;
2010 U8* send = s + slen;
2011
2012 while (s < send) {
2013 UV otherval = 0;
2014
2015 if (otherbits == 1) {
2016 otherval = (o[offset >> 3] >> (offset & 7)) & 1;
2017 ++offset;
2018 }
2019 else {
2020 STRLEN vlen = otheroctets;
2021 otherval = *o++;
2022 while (--vlen) {
2023 otherval <<= 8;
2024 otherval |= *o++;
2025 }
2026 }
2027
711a919c 2028 if (opc == '+' && otherval)
bb263b4e 2029 /*EMPTY*/; /* replace with otherval */
979f2922
TS
2030 else if (opc == '!' && !otherval)
2031 otherval = 1;
2032 else if (opc == '-' && otherval)
2033 otherval = 0;
2034 else if (opc == '&' && !otherval)
2035 otherval = 0;
2036 else {
711a919c 2037 s += octets; /* no replacement */
979f2922
TS
2038 continue;
2039 }
2040
2041 if (bits == 8)
2042 *s++ = (U8)( otherval & 0xff);
2043 else if (bits == 16) {
2044 *s++ = (U8)((otherval >> 8) & 0xff);
2045 *s++ = (U8)( otherval & 0xff);
2046 }
2047 else if (bits == 32) {
2048 *s++ = (U8)((otherval >> 24) & 0xff);
2049 *s++ = (U8)((otherval >> 16) & 0xff);
2050 *s++ = (U8)((otherval >> 8) & 0xff);
2051 *s++ = (U8)( otherval & 0xff);
2052 }
2053 }
2054 }
2055 sv_free(other); /* through with it! */
2056 } /* while */
2057 return swatch;
2058}
2059
0f830e0b
NC
2060/*
2061=for apidoc A|U8 *|uvchr_to_utf8|U8 *d|UV uv
2062
2063Adds the UTF-8 representation of the Native codepoint C<uv> to the end
2064of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
2065bytes available. The return value is the pointer to the byte after the
2066end of the new character. In other words,
2067
2068 d = uvchr_to_utf8(d, uv);
2069
2070is the recommended wide native character-aware way of saying
2071
2072 *(d++) = uv;
2073
2074=cut
2075*/
2076
2077/* On ASCII machines this is normally a macro but we want a
2078 real function in case XS code wants it
2079*/
0f830e0b
NC
2080U8 *
2081Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv)
2082{
2083 return Perl_uvuni_to_utf8_flags(aTHX_ d, NATIVE_TO_UNI(uv), 0);
2084}
2085
b851fbc1
JH
2086U8 *
2087Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
2088{
2089 return Perl_uvuni_to_utf8_flags(aTHX_ d, NATIVE_TO_UNI(uv), flags);
2090}
2b9d42f0
NIS
2091
2092/*
0f830e0b
NC
2093=for apidoc A|UV|utf8n_to_uvchr|U8 *s|STRLEN curlen|STRLEN *retlen|U32
2094flags
2095
2096Returns the native character value of the first character in the string
2097C<s>
2098which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
2099length, in bytes, of that character.
2100
2101Allows length and flags to be passed to low level routine.
2102
2103=cut
2104*/
2105/* On ASCII machines this is normally a macro but we want
2106 a real function in case XS code wants it
2107*/
0f830e0b
NC
2108UV
2109Perl_utf8n_to_uvchr(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen,
2110U32 flags)
2111{
2112 const UV uv = Perl_utf8n_to_uvuni(aTHX_ s, curlen, retlen, flags);
2113 return UNI_TO_NATIVE(uv);
2114}
2115
2116/*
d2cc3551
JH
2117=for apidoc A|char *|pv_uni_display|SV *dsv|U8 *spv|STRLEN len|STRLEN pvlim|UV flags
2118
2119Build to the scalar dsv a displayable version of the string spv,
2120length len, the displayable version being at most pvlim bytes long
2121(if longer, the rest is truncated and "..." will be appended).
0a2ef054 2122
9e55ce06 2123The flags argument can have UNI_DISPLAY_ISPRINT set to display
00e86452 2124isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH
0a2ef054
JH
2125to display the \\[nrfta\\] as the backslashed versions (like '\n')
2126(UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\).
2127UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both
2128UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on.
2129
d2cc3551
JH
2130The pointer to the PV of the dsv is returned.
2131
2132=cut */
e6b2e755 2133char *
e1ec3a88 2134Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
e6b2e755
JH
2135{
2136 int truncated = 0;
e1ec3a88 2137 const char *s, *e;
e6b2e755
JH
2138
2139 sv_setpvn(dsv, "", 0);
e1ec3a88 2140 for (s = (const char *)spv, e = s + len; s < e; s += UTF8SKIP(s)) {
e6b2e755 2141 UV u;
a49f32c6
NC
2142 /* This serves double duty as a flag and a character to print after
2143 a \ when flags & UNI_DISPLAY_BACKSLASH is true.
2144 */
2145 char ok = 0;
c728cb41 2146
e6b2e755
JH
2147 if (pvlim && SvCUR(dsv) >= pvlim) {
2148 truncated++;
2149 break;
2150 }
2151 u = utf8_to_uvchr((U8*)s, 0);
c728cb41 2152 if (u < 256) {
a3b680e6 2153 const unsigned char c = (unsigned char)u & 0xFF;
0bd48802 2154 if (flags & UNI_DISPLAY_BACKSLASH) {
a49f32c6 2155 switch (c) {
c728cb41 2156 case '\n':
a49f32c6 2157 ok = 'n'; break;
c728cb41 2158 case '\r':
a49f32c6 2159 ok = 'r'; break;
c728cb41 2160 case '\t':
a49f32c6 2161 ok = 't'; break;
c728cb41 2162 case '\f':
a49f32c6 2163 ok = 'f'; break;
c728cb41 2164 case '\a':
a49f32c6 2165 ok = 'a'; break;
c728cb41 2166 case '\\':
a49f32c6 2167 ok = '\\'; break;
c728cb41
JH
2168 default: break;
2169 }
a49f32c6
NC
2170 if (ok) {
2171 Perl_sv_catpvf(aTHX_ dsv, "\\%c", ok);
2172 }
c728cb41 2173 }
00e86452 2174 /* isPRINT() is the locale-blind version. */
a49f32c6
NC
2175 if (!ok && (flags & UNI_DISPLAY_ISPRINT) && isPRINT(c)) {
2176 Perl_sv_catpvf(aTHX_ dsv, "%c", c);
2177 ok = 1;
0a2ef054 2178 }
c728cb41
JH
2179 }
2180 if (!ok)
9e55ce06 2181 Perl_sv_catpvf(aTHX_ dsv, "\\x{%"UVxf"}", u);
e6b2e755
JH
2182 }
2183 if (truncated)
396482e1 2184 sv_catpvs(dsv, "...");
e6b2e755
JH
2185
2186 return SvPVX(dsv);
2187}
2b9d42f0 2188
d2cc3551
JH
2189/*
2190=for apidoc A|char *|sv_uni_display|SV *dsv|SV *ssv|STRLEN pvlim|UV flags
2191
2192Build to the scalar dsv a displayable version of the scalar sv,
0a2ef054 2193the displayable version being at most pvlim bytes long
d2cc3551 2194(if longer, the rest is truncated and "..." will be appended).
0a2ef054
JH
2195
2196The flags argument is as in pv_uni_display().
2197
d2cc3551
JH
2198The pointer to the PV of the dsv is returned.
2199
d4c19fe8
AL
2200=cut
2201*/
e6b2e755
JH
2202char *
2203Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
2204{
cfd0369c
NC
2205 return Perl_pv_uni_display(aTHX_ dsv, (const U8*)SvPVX_const(ssv),
2206 SvCUR(ssv), pvlim, flags);
701a277b
JH
2207}
2208
d2cc3551 2209/*
d07ddd77 2210=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
2211
2212Return true if the strings s1 and s2 differ case-insensitively, false
2213if not (if they are equal case-insensitively). If u1 is true, the
2214string s1 is assumed to be in UTF-8-encoded Unicode. If u2 is true,
d07ddd77
JH
2215the string s2 is assumed to be in UTF-8-encoded Unicode. If u1 or u2
2216are false, the respective string is assumed to be in native 8-bit
2217encoding.
2218
2219If the pe1 and pe2 are non-NULL, the scanning pointers will be copied
2220in there (they will point at the beginning of the I<next> character).
2221If the pointers behind pe1 or pe2 are non-NULL, they are the end
2222pointers beyond which scanning will not continue under any
4cdaeff7 2223circumstances. If the byte lengths l1 and l2 are non-zero, s1+l1 and
d07ddd77
JH
2224s2+l2 will be used as goal end pointers that will also stop the scan,
2225and which qualify towards defining a successful match: all the scans
2226that define an explicit length must reach their goal pointers for
2227a match to succeed).
d2cc3551
JH
2228
2229For case-insensitiveness, the "casefolding" of Unicode is used
2230instead of upper/lowercasing both the characters, see
2231http://www.unicode.org/unicode/reports/tr21/ (Case Mappings).
2232
2233=cut */
701a277b 2234I32
d07ddd77 2235Perl_ibcmp_utf8(pTHX_ const char *s1, char **pe1, register UV l1, bool u1, const char *s2, char **pe2, register UV l2, bool u2)
332ddc25 2236{
97aff369 2237 dVAR;
e1ec3a88
AL
2238 register const U8 *p1 = (const U8*)s1;
2239 register const U8 *p2 = (const U8*)s2;
cbbf8932 2240 register const U8 *f1 = NULL;
2f73348c 2241 register const U8 *f2 = NULL;
cbbf8932
AL
2242 register U8 *e1 = NULL;
2243 register U8 *q1 = NULL;
2244 register U8 *e2 = NULL;
2245 register U8 *q2 = NULL;
d07ddd77 2246 STRLEN n1 = 0, n2 = 0;
89ebb4a3
JH
2247 U8 foldbuf1[UTF8_MAXBYTES_CASE+1];
2248 U8 foldbuf2[UTF8_MAXBYTES_CASE+1];
d7f013c8
JH
2249 U8 natbuf[1+1];
2250 STRLEN foldlen1, foldlen2;
d07ddd77 2251 bool match;
332ddc25 2252
d07ddd77
JH
2253 if (pe1)
2254 e1 = *(U8**)pe1;
e1ec3a88
AL
2255 if (e1 == 0 || (l1 && l1 < (UV)(e1 - (const U8*)s1)))
2256 f1 = (const U8*)s1 + l1;
d07ddd77
JH
2257 if (pe2)
2258 e2 = *(U8**)pe2;
e1ec3a88
AL
2259 if (e2 == 0 || (l2 && l2 < (UV)(e2 - (const U8*)s2)))
2260 f2 = (const U8*)s2 + l2;
d07ddd77
JH
2261
2262 if ((e1 == 0 && f1 == 0) || (e2 == 0 && f2 == 0) || (f1 == 0 && f2 == 0))
2263 return 1; /* mismatch; possible infinite loop or false positive */
2264
a6872d42
JH
2265 if (!u1 || !u2)
2266 natbuf[1] = 0; /* Need to terminate the buffer. */
2267
d07ddd77
JH
2268 while ((e1 == 0 || p1 < e1) &&
2269 (f1 == 0 || p1 < f1) &&
2270 (e2 == 0 || p2 < e2) &&
2271 (f2 == 0 || p2 < f2)) {
2272 if (n1 == 0) {
d7f013c8
JH
2273 if (u1)
2274 to_utf8_fold(p1, foldbuf1, &foldlen1);
2275 else {
809e8e66 2276 uvuni_to_utf8(natbuf, (UV) NATIVE_TO_UNI(((UV)*p1)));
d7f013c8
JH
2277 to_utf8_fold(natbuf, foldbuf1, &foldlen1);
2278 }
2279 q1 = foldbuf1;
d07ddd77 2280 n1 = foldlen1;
332ddc25 2281 }
d07ddd77 2282 if (n2 == 0) {
d7f013c8
JH
2283 if (u2)
2284 to_utf8_fold(p2, foldbuf2, &foldlen2);
2285 else {
809e8e66 2286 uvuni_to_utf8(natbuf, (UV) NATIVE_TO_UNI(((UV)*p2)));
d7f013c8
JH
2287 to_utf8_fold(natbuf, foldbuf2, &foldlen2);
2288 }
2289 q2 = foldbuf2;
d07ddd77 2290 n2 = foldlen2;
332ddc25 2291 }
d07ddd77
JH
2292 while (n1 && n2) {
2293 if ( UTF8SKIP(q1) != UTF8SKIP(q2) ||
2294 (UTF8SKIP(q1) == 1 && *q1 != *q2) ||
2295 memNE((char*)q1, (char*)q2, UTF8SKIP(q1)) )
d7f013c8 2296 return 1; /* mismatch */
d07ddd77 2297 n1 -= UTF8SKIP(q1);
d7f013c8 2298 q1 += UTF8SKIP(q1);
d07ddd77 2299 n2 -= UTF8SKIP(q2);
d7f013c8 2300 q2 += UTF8SKIP(q2);
701a277b 2301 }
d07ddd77 2302 if (n1 == 0)
d7f013c8 2303 p1 += u1 ? UTF8SKIP(p1) : 1;
d07ddd77 2304 if (n2 == 0)
d7f013c8
JH
2305 p2 += u2 ? UTF8SKIP(p2) : 1;
2306
d2cc3551 2307 }
5469e704 2308
d07ddd77
JH
2309 /* A match is defined by all the scans that specified
2310 * an explicit length reaching their final goals. */
2311 match = (f1 == 0 || p1 == f1) && (f2 == 0 || p2 == f2);
5469e704
JH
2312
2313 if (match) {
d07ddd77
JH
2314 if (pe1)
2315 *pe1 = (char*)p1;
2316 if (pe2)
2317 *pe2 = (char*)p2;
5469e704
JH
2318 }
2319
2320 return match ? 0 : 1; /* 0 match, 1 mismatch */
e6b2e755 2321}
701a277b 2322
a49f32c6
NC
2323/*
2324 * Local variables:
2325 * c-indentation-style: bsd
2326 * c-basic-offset: 4
2327 * indent-tabs-mode: t
2328 * End:
2329 *
37442d52
RGS
2330 * ex: set ts=8 sts=4 sw=4 noet:
2331 */