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