[524] | 1 | /* |
---|
[672] | 2 | * libcucul Canvas for ultrafast compositing of Unicode letters |
---|
[527] | 3 | * Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org> |
---|
[524] | 4 | * All Rights Reserved |
---|
| 5 | * |
---|
[769] | 6 | * $Id: charset.c 982 2006-05-25 20:01:10Z sam $ |
---|
| 7 | * |
---|
[524] | 8 | * This library is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the Do What The Fuck You Want To |
---|
| 10 | * Public License, Version 2, as published by Sam Hocevar. See |
---|
| 11 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
| 12 | */ |
---|
| 13 | |
---|
[769] | 14 | /* |
---|
[643] | 15 | * This file contains functions for converting characters between |
---|
| 16 | * various character sets. |
---|
[524] | 17 | */ |
---|
| 18 | |
---|
| 19 | #include "config.h" |
---|
[859] | 20 | #include "common.h" |
---|
[524] | 21 | |
---|
[568] | 22 | #if !defined(__KERNEL__) |
---|
| 23 | # include <string.h> |
---|
[524] | 24 | #endif |
---|
| 25 | |
---|
| 26 | #include "cucul.h" |
---|
| 27 | #include "cucul_internals.h" |
---|
| 28 | |
---|
[962] | 29 | /* |
---|
| 30 | * UTF-8 handling |
---|
| 31 | */ |
---|
| 32 | |
---|
[643] | 33 | static char const trailing[256] = |
---|
[524] | 34 | { |
---|
[583] | 35 | 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, |
---|
| 36 | 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, |
---|
| 37 | 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, |
---|
| 38 | 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, |
---|
| 39 | 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, |
---|
| 40 | 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, |
---|
| 41 | 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,1, |
---|
| 42 | 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5 |
---|
| 43 | }; |
---|
| 44 | |
---|
[643] | 45 | static uint32_t const offsets[6] = |
---|
[583] | 46 | { |
---|
| 47 | 0x00000000UL, 0x00003080UL, 0x000E2080UL, |
---|
| 48 | 0x03C82080UL, 0xFA082080UL, 0x82082080UL |
---|
| 49 | }; |
---|
| 50 | |
---|
[962] | 51 | /* |
---|
| 52 | * CP437 handling |
---|
| 53 | */ |
---|
| 54 | |
---|
| 55 | static uint32_t const cp437_lookup1[] = |
---|
[583] | 56 | { |
---|
[962] | 57 | /* 0x01 - 0x0f: ☺ ☻ ♥ ♦ ♣ ♠ • ◘ ○ ◙ ♂ ♀ ♪ ♫ ☼ */ |
---|
| 58 | 0x263a, 0x263b, 0x2665, 0x2666, 0x2663, 0x2660, 0x2022, |
---|
| 59 | 0x25d8, 0x25cb, 0x25d9, 0x2642, 0x2640, 0x266a, 0x266b, 0x263c, |
---|
| 60 | /* 0x10 - 0x1f: ► ◄ ↕ ‼ ¶ § ▬ ↨ ↑ ↓ → ← ∟ ↔ ▲ ▼ */ |
---|
| 61 | 0x25ba, 0x25c4, 0x2195, 0x203c, 0xb6, 0xa7, 0x25ac, 0x21a8, |
---|
| 62 | 0x2191, 0x2193, 0x2192, 0x2190, 0x221f, 0x2194, 0x25b2, 0x25bc |
---|
| 63 | }; |
---|
[583] | 64 | |
---|
[962] | 65 | static uint32_t const cp437_lookup2[] = |
---|
[583] | 66 | { |
---|
[962] | 67 | /* 0x7f: ⌂ */ |
---|
| 68 | 0x2302, |
---|
| 69 | /* 0x80 - 0x8f: Ç ü é â ä à å ç ê ë è ï î ì Ä Å */ |
---|
| 70 | 0xc7, 0xfc, 0xe9, 0xe2, 0xe4, 0xe0, 0xe5, 0xe7, |
---|
| 71 | 0xea, 0xeb, 0xe8, 0xef, 0xee, 0xec, 0xc4, 0xc5, |
---|
| 72 | /* 0x90 - 0x9f: É æ Æ ô ö ò û ù ÿ Ö Ü ¢ £ ¥ ₧ ƒ */ |
---|
| 73 | 0xc9, 0xe6, 0xc6, 0xf4, 0xf6, 0xf2, 0xfb, 0xf9, |
---|
| 74 | 0xff, 0xd6, 0xdc, 0xa2, 0xa3, 0xa5, 0x20a7, 0x192, |
---|
| 75 | /* 0xa0 - 0xaf: á í ó ú ñ Ñ ª º ¿ ⌐ ¬ ½ ¼ ¡ « » */ |
---|
| 76 | 0xe1, 0xed, 0xf3, 0xfa, 0xf1, 0xd1, 0xaa, 0xba, |
---|
| 77 | 0xbf, 0x2310, 0xac, 0xbd, 0xbc, 0xa1, 0xab, 0xbb, |
---|
| 78 | /* 0xb0 - 0xbf: ░ ▒ ▓ │ ┤ ╡ ╢ ╖ ╕ ╣ ║ ╗ ╝ ╜ ╛ ┐ */ |
---|
| 79 | 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556, |
---|
| 80 | 0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510, |
---|
| 81 | /* 0xc0 - 0xcf: └ ┴ ┬ ├ ─ ┼ ╞ ╟ ╚ ╔ ╩ ╦ ╠ ═ ╬ ╧ */ |
---|
| 82 | 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f, |
---|
| 83 | 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567, |
---|
| 84 | /* 0xd0 - 0xdf: ╨ ╤ ╥ ╙ ╘ ╒ ╓ ╫ ╪ ┘ ┌ █ ▄ ▌ ▐ ▀ */ |
---|
| 85 | 0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b, |
---|
| 86 | 0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580, |
---|
| 87 | /* 0xe0 - 0xef: α ß Γ π Σ σ µ τ Φ Θ Ω δ ∞ φ ε ∩ */ |
---|
| 88 | 0x3b1, 0xdf, 0x393, 0x3c0, 0x3a3, 0x3c3, 0xb5, 0x3c4, |
---|
| 89 | 0x3a6, 0x398, 0x3a9, 0x3b4, 0x221e, 0x3c6, 0x3b5, 0x2229, |
---|
| 90 | /* 0xf0 - 0xff: ≡ ± ≥ ≤ ⌠ ⌡ ÷ ≈ ° ∙ · √ ⁿ ² ■ <nbsp> */ |
---|
| 91 | 0x2261, 0xb1, 0x2265, 0x2264, 0x2320, 0x2321, 0xf7, 0x2248, |
---|
| 92 | 0xb0, 0x2219, 0xb7, 0x221a, 0x207f, 0xb2, 0x25a0, 0xa0 |
---|
| 93 | }; |
---|
[583] | 94 | |
---|
[963] | 95 | /** \brief Convert a UTF-8 character to UTF-32. |
---|
| 96 | * |
---|
| 97 | * This function converts a UTF-8 character read from a string and returns |
---|
[982] | 98 | * its value in the UTF-32 character set. If the second argument is not null, |
---|
| 99 | * the total number of read bytes is written in it. |
---|
[963] | 100 | * |
---|
[982] | 101 | * If a null byte was reached before the expected end of the UTF-8 sequence, |
---|
| 102 | * this function returns zero and the number of read bytes is set to zero. |
---|
| 103 | * |
---|
[963] | 104 | * This function never fails, but its behaviour with illegal UTF-8 sequences |
---|
| 105 | * is undefined. |
---|
| 106 | * |
---|
| 107 | * \param s A string containing the UTF-8 character. |
---|
[982] | 108 | * \param read A pointer to an unsigned integer to store the number of |
---|
| 109 | * bytes in the character, or NULL. |
---|
| 110 | * \return The corresponding UTF-32 character, or zero if the character |
---|
| 111 | * is incomplete. |
---|
[963] | 112 | */ |
---|
[982] | 113 | unsigned long int cucul_utf8_to_utf32(char const *s, unsigned int *read) |
---|
[583] | 114 | { |
---|
[982] | 115 | unsigned int bytes = trailing[(int)(unsigned char)*s]; |
---|
| 116 | unsigned int i = 0; |
---|
[583] | 117 | uint32_t ret = 0; |
---|
| 118 | |
---|
[982] | 119 | for(;;) |
---|
[583] | 120 | { |
---|
[982] | 121 | if(!*s) |
---|
| 122 | { |
---|
| 123 | if(read) |
---|
| 124 | *read = 0; |
---|
| 125 | return 0; |
---|
| 126 | } |
---|
[583] | 127 | |
---|
[982] | 128 | ret += ((uint32_t)(unsigned char)*s++) << (6 * (bytes - i)); |
---|
[583] | 129 | |
---|
[982] | 130 | if(bytes == i++) |
---|
| 131 | { |
---|
| 132 | if(read) |
---|
| 133 | *read = i; |
---|
| 134 | return ret - offsets[bytes]; |
---|
| 135 | } |
---|
| 136 | } |
---|
[583] | 137 | } |
---|
| 138 | |
---|
[963] | 139 | /** \brief Convert a UTF-32 character to UTF-8. |
---|
| 140 | * |
---|
| 141 | * This function converts a UTF-32 character read from a string and writes |
---|
| 142 | * its value in the UTF-8 character set into the given buffer. |
---|
| 143 | * |
---|
| 144 | * This function never fails, but its behaviour with illegal UTF-32 characters |
---|
| 145 | * is undefined. |
---|
| 146 | * |
---|
| 147 | * \param buf A pointer to a character buffer where the UTF-8 sequence will |
---|
| 148 | * be written. |
---|
| 149 | * \param ch The UTF-32 character. |
---|
| 150 | * \return The number of bytes written. |
---|
| 151 | */ |
---|
[962] | 152 | unsigned int cucul_utf32_to_utf8(char *buf, unsigned long int ch) |
---|
[927] | 153 | { |
---|
| 154 | static const uint8_t mark[7] = |
---|
| 155 | { |
---|
| 156 | 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC |
---|
| 157 | }; |
---|
| 158 | |
---|
| 159 | char *parser = buf; |
---|
| 160 | int bytes; |
---|
| 161 | |
---|
| 162 | if(ch < 0x80) |
---|
| 163 | { |
---|
| 164 | *parser++ = ch; |
---|
| 165 | return 1; |
---|
| 166 | } |
---|
| 167 | |
---|
| 168 | bytes = (ch < 0x800) ? 2 : (ch < 0x10000) ? 3 : 4; |
---|
| 169 | parser += bytes; |
---|
| 170 | |
---|
| 171 | switch(bytes) |
---|
| 172 | { |
---|
| 173 | case 4: *--parser = (ch | 0x80) & 0xbf; ch >>= 6; |
---|
| 174 | case 3: *--parser = (ch | 0x80) & 0xbf; ch >>= 6; |
---|
| 175 | case 2: *--parser = (ch | 0x80) & 0xbf; ch >>= 6; |
---|
| 176 | } |
---|
| 177 | *--parser = ch | mark[bytes]; |
---|
| 178 | |
---|
| 179 | return bytes; |
---|
| 180 | } |
---|
| 181 | |
---|
[963] | 182 | /** \brief Convert a UTF-32 character to CP437. |
---|
| 183 | * |
---|
| 184 | * This function converts a UTF-32 character read from a string and returns |
---|
| 185 | * its value in the CP437 character set, or "?" if the character has no |
---|
| 186 | * equivalent. |
---|
| 187 | * |
---|
| 188 | * This function never fails. |
---|
| 189 | * |
---|
| 190 | * \param ch The UTF-32 character. |
---|
| 191 | * \return The corresponding CP437 character, or "?" if not representable. |
---|
| 192 | */ |
---|
[962] | 193 | unsigned char cucul_utf32_to_cp437(unsigned long int ch) |
---|
[643] | 194 | { |
---|
| 195 | unsigned int i; |
---|
| 196 | |
---|
[811] | 197 | if(ch < 0x00000020) |
---|
[643] | 198 | return '?'; |
---|
| 199 | |
---|
[811] | 200 | if(ch < 0x00000080) |
---|
| 201 | return ch; |
---|
[643] | 202 | |
---|
| 203 | for(i = 0; i < sizeof(cp437_lookup1) / sizeof(*cp437_lookup1); i++) |
---|
[811] | 204 | if(cp437_lookup1[i] == ch) |
---|
[643] | 205 | return 0x01 + i; |
---|
| 206 | |
---|
| 207 | for(i = 0; i < sizeof(cp437_lookup2) / sizeof(*cp437_lookup2); i++) |
---|
[811] | 208 | if(cp437_lookup2[i] == ch) |
---|
[643] | 209 | return 0x7f + i; |
---|
| 210 | |
---|
| 211 | return '?'; |
---|
| 212 | } |
---|
| 213 | |
---|
[963] | 214 | /** \brief Convert a CP437 character to UTF-32. |
---|
| 215 | * |
---|
| 216 | * This function converts a CP437 character read from a string and returns |
---|
| 217 | * its value in the UTF-32 character set, or zero if the character is a |
---|
| 218 | * CP437 control character. |
---|
| 219 | * |
---|
| 220 | * This function never fails. |
---|
| 221 | * |
---|
| 222 | * \param ch The CP437 character. |
---|
| 223 | * \return The corresponding UTF-32 character, or zero if not representable. |
---|
| 224 | */ |
---|
[962] | 225 | unsigned long int cucul_cp437_to_utf32(unsigned char ch) |
---|
[643] | 226 | { |
---|
[811] | 227 | if(ch > 0x7f) |
---|
| 228 | return cp437_lookup2[ch - 0x7f]; |
---|
[643] | 229 | |
---|
[811] | 230 | if(ch >= 0x20) |
---|
| 231 | return (uint32_t)ch; |
---|
[643] | 232 | |
---|
[811] | 233 | if(ch > 0) |
---|
| 234 | return cp437_lookup1[ch - 0x01]; |
---|
[643] | 235 | |
---|
| 236 | return 0x00000000; |
---|
| 237 | } |
---|
| 238 | |
---|
[963] | 239 | /* |
---|
| 240 | * XXX: The following functions are local. |
---|
| 241 | */ |
---|
| 242 | |
---|
[962] | 243 | unsigned int _cucul_strlen_utf8(char const *s) |
---|
| 244 | { |
---|
| 245 | int len = 0; |
---|
| 246 | char const *parser = s; |
---|
| 247 | |
---|
| 248 | while(*parser) |
---|
| 249 | { |
---|
| 250 | int i; |
---|
| 251 | int bytes = 1 + trailing[(int)(unsigned char)*parser]; |
---|
| 252 | |
---|
| 253 | for(i = 1; i < bytes; i++) |
---|
| 254 | if(!parser[i]) |
---|
| 255 | return len; |
---|
| 256 | parser += bytes; |
---|
| 257 | len++; |
---|
| 258 | } |
---|
| 259 | |
---|
| 260 | return len; |
---|
| 261 | } |
---|
| 262 | |
---|
| 263 | char const *_cucul_skip_utf8(char const *s, unsigned int x) |
---|
| 264 | { |
---|
| 265 | char const *parser = s; |
---|
| 266 | |
---|
| 267 | while(x) |
---|
| 268 | { |
---|
| 269 | int i; |
---|
| 270 | int bytes = 1 + trailing[(int)(unsigned char)*parser]; |
---|
| 271 | |
---|
| 272 | for(i = 1; i < bytes; i++) |
---|
| 273 | if(!parser[i]) |
---|
| 274 | return parser; |
---|
| 275 | parser += bytes; |
---|
| 276 | x--; |
---|
| 277 | } |
---|
| 278 | |
---|
| 279 | return parser; |
---|
| 280 | } |
---|
| 281 | |
---|