Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

326 righe
9.3 KiB

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