This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Be more lenient on bad UTF-8 when doing bit arithmetics.
[perl5.git] / utf8.h
CommitLineData
a0ed51b3
LW
1/* utf8.h
2 *
3818b22b 3 * Copyright (c) 1998-2000, Larry Wall
a0ed51b3
LW
4 *
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
7 *
8 */
9
73c4f7a1
GS
10START_EXTERN_C
11
a0ed51b3 12#ifdef DOINIT
6f06b55f 13EXTCONST unsigned char PL_utf8skip[] = {
a0ed51b3
LW
141,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* ascii */
151,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* ascii */
161,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* ascii */
171,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* ascii */
181,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* bogus */
191,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* bogus */
202,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, /* scripts */
3c77ea2b
GS
213,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6, /* cjk etc. */
227,13, /* Perl extended (not UTF-8). Up to 72bit allowed (64-bit + reserved). */
a0ed51b3
LW
23};
24#else
6f06b55f 25EXTCONST unsigned char PL_utf8skip[];
a0ed51b3
LW
26#endif
27
73c4f7a1
GS
28END_EXTERN_C
29
aa6ffa16
GS
30#define UTF8_MAXLEN 13 /* how wide can a single UTF8 encoded character become */
31
fcc8fcf6 32/* #define IN_UTF8 (PL_curcop->op_private & HINT_UTF8) */
5bc28da9 33#define IN_BYTE (PL_curcop->op_private & HINT_BYTE)
7e2040f0 34#define DO_UTF8(sv) (SvUTF8(sv) && !IN_BYTE)
a0ed51b3 35
fcc8fcf6
JH
36#define UTF8_ALLOW_CONTINUATION 0x0001
37#define UTF8_ALLOW_NON_CONTINUATION 0x0002
38#define UTF8_ALLOW_FE_FF 0x0004
39#define UTF8_ALLOW_SHORT 0x0008
40#define UTF8_ALLOW_SURROGATE 0x0010
41#define UTF8_ALLOW_BOM 0x0020
42#define UTF8_ALLOW_FFFF 0x0040
43#define UTF8_ALLOW_LONG 0x0080
44#define UTF8_ALLOW_ANY 0x00ff
45#define UTF8_CHECK_ONLY 0x0100
46
6f06b55f 47#define UTF8SKIP(s) PL_utf8skip[*(U8*)s]
7e2040f0 48
1d68d6cd 49#ifdef HAS_QUAD
5bbb0b5a 50#define UNISKIP(uv) ( (uv) < 0x80 ? 1 : \
1d68d6cd
SC
51 (uv) < 0x800 ? 2 : \
52 (uv) < 0x10000 ? 3 : \
53 (uv) < 0x200000 ? 4 : \
54 (uv) < 0x4000000 ? 5 : \
55 (uv) < 0x80000000 ? 6 : \
56 (uv) < 0x1000000000LL ? 7 : 13 )
57#else
58/* No, I'm not even going to *TRY* putting #ifdef inside a #define */
5bbb0b5a 59#define UNISKIP(uv) ( (uv) < 0x80 ? 1 : \
1d68d6cd
SC
60 (uv) < 0x800 ? 2 : \
61 (uv) < 0x10000 ? 3 : \
62 (uv) < 0x200000 ? 4 : \
63 (uv) < 0x4000000 ? 5 : \
64 (uv) < 0x80000000 ? 6 : 7 )
65#endif
66
ba210ebe
JH
67#define UNICODE_REPLACEMENT_CHARACTER 0xfffd
68
7e2040f0
GS
69/*
70 * Note: we try to be careful never to call the isXXX_utf8() functions
71 * unless we're pretty sure we've seen the beginning of a UTF-8 character
72 * (that is, the two high bits are set). Otherwise we risk loading in the
73 * heavy-duty SWASHINIT and SWASHGET routines unnecessarily.
74 */
5b154c98
JH
75#ifdef EBCDIC
76#define isIDFIRST_lazy_if(p,c) isIDFIRST(*(p))
77#define isALNUM_lazy_if(p,c) isALNUM(*(p))
78#else
79#define isIDFIRST_lazy_if(p,c) ((IN_BYTE || (!c || (*((U8*)p) < 0xc0))) \
7e2040f0
GS
80 ? isIDFIRST(*(p)) \
81 : isIDFIRST_utf8((U8*)p))
5b154c98 82#define isALNUM_lazy_if(p,c) ((IN_BYTE || (!c || (*((U8*)p) < 0xc0))) \
7e2040f0
GS
83 ? isALNUM(*(p)) \
84 : isALNUM_utf8((U8*)p))
5b154c98 85#endif
7e2040f0
GS
86#define isIDFIRST_lazy(p) isIDFIRST_lazy_if(p,1)
87#define isALNUM_lazy(p) isALNUM_lazy_if(p,1)