1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
/*
Copyright 1999-2014 ImageMagick Studio LLC, a non-profit organization
dedicated to making software imaging solutions freely available.
You may not use this file except in compliance with the License.
obtain a copy of the License at
http://www.imagemagick.org/script/license.php
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
MagickCore private token methods.
*/
#ifndef _MAGICKCORE_TOKEN_PRIVATE_H
#define _MAGICKCORE_TOKEN_PRIVATE_H
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
#ifndef EILSEQ
#define EILSEQ ENOENT
#endif
#define MaxMultibyteCodes 6
typedef struct
{
int
code_mask,
code_value,
utf_mask,
utf_value;
} UTFInfo;
static UTFInfo
utf_info[MaxMultibyteCodes] =
{
{ 0x80, 0x00, 0x000007f, 0x0000000 }, /* 1 byte sequence */
{ 0xE0, 0xC0, 0x00007ff, 0x0000080 }, /* 2 byte sequence */
{ 0xF0, 0xE0, 0x000ffff, 0x0000800 }, /* 3 byte sequence */
{ 0xF8, 0xF0, 0x01fffff, 0x0010000 }, /* 4 byte sequence */
{ 0xFC, 0xF8, 0x03fffff, 0x0200000 }, /* 5 byte sequence */
{ 0xFE, 0xFC, 0x7ffffff, 0x4000000 }, /* 6 byte sequence */
};
static inline unsigned char *ConvertLatin1ToUTF8(const unsigned char *content)
{
register const unsigned char
*p;
register unsigned char
*q;
size_t
length;
unsigned char
*utf8;
unsigned int
c;
length=0;
for (p=content; *p != '\0'; p++)
length+=(*p & 0x80) != 0 ? 2 : 1;
utf8=(unsigned char *) NULL;
if (~length >= 1)
utf8=(unsigned char *) AcquireQuantumMemory(length+1UL,sizeof(*utf8));
if (utf8 == (unsigned char *) NULL)
return((unsigned char *) NULL);
q=utf8;
for (p=content; *p != '\0'; p++)
{
c=(*p);
if ((c & 0x80) == 0)
*q++=c;
else
{
*q++=0xc0 | ((c >> 6) & 0x3f);
*q++=0x80 | (c & 0x3f);
}
}
*q='\0';
return(utf8);
}
static inline int GetNextUTFCode(const char *text,unsigned int *octets)
{
int
code;
register ssize_t
i;
register int
c,
unicode;
*octets=1;
if (text == (const char *) NULL)
{
errno=EINVAL;
return(-1);
}
code=(int) (*text++) & 0xff;
unicode=code;
for (i=0; i < MaxMultibyteCodes; i++)
{
if ((code & utf_info[i].code_mask) == utf_info[i].code_value)
{
unicode&=utf_info[i].utf_mask;
if (unicode < utf_info[i].utf_value)
{
errno=EILSEQ;
return(-1);
}
*octets=(unsigned int) (i+1);
return(unicode);
}
c=(int) (*text++ ^ 0x80) & 0xff;
if ((c & 0xc0) != 0)
{
errno=EILSEQ;
return(-1);
}
unicode=(unicode << 6) | c;
}
errno=EILSEQ;
return(-1);
}
static inline int GetUTFCode(const char *text)
{
unsigned int
octets;
return(GetNextUTFCode(text,&octets));
}
static inline unsigned int GetUTFOctets(const char *text)
{
unsigned int
octets;
(void) GetNextUTFCode(text,&octets);
return(octets);
}
static inline MagickBooleanType IsUTFSpace(int code)
{
if (((code >= 0x0009) && (code <= 0x000d)) || (code == 0x0020) ||
(code == 0x0085) || (code == 0x00a0) || (code == 0x1680) ||
(code == 0x180e) || ((code >= 0x2000) && (code <= 0x200a)) ||
(code == 0x2028) || (code == 0x2029) || (code == 0x202f) ||
(code == 0x205f) || (code == 0x3000))
return(MagickTrue);
return(MagickFalse);
}
static inline MagickBooleanType IsUTFValid(int code)
{
int
mask;
mask=(int) 0x7fffffff;
if (((code & ~mask) != 0) && ((code < 0xd800) || (code > 0xdfff)) &&
(code != 0xfffe) && (code != 0xffff))
return(MagickFalse);
return(MagickTrue);
}
static inline MagickBooleanType IsUTFAscii(int code)
{
int
mask;
mask=(int) 0x7f;
if ((code & ~mask) != 0)
return(MagickFalse);
return(MagickTrue);
}
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif
|