nls_koi8-ru.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/nls_koi8-ru.c
  3.  *
  4.  * Charset koi8-ru translation based on charset koi8-u.
  5.  * The Unicode to charset table has only exact mappings.
  6.  */
  7. #include <linux/module.h>
  8. #include <linux/kernel.h>
  9. #include <linux/string.h>
  10. #include <linux/nls.h>
  11. #include <linux/errno.h>
  12. static struct nls_table *p_nls;
  13. static int uni2char(const wchar_t uni,
  14.     unsigned char *out, int boundlen)
  15. {
  16. if (boundlen <= 0)
  17. return -ENAMETOOLONG;
  18. if ((uni & 0xffaf) == 0x040e || (uni & 0xffce) == 0x254c) {
  19. /* koi8-ru and koi8-u differ only on two characters */
  20. if (uni == 0x040e)
  21. out[0] = 0xbe;
  22. else if (uni == 0x045e)
  23. out[0] = 0xae;
  24. else if (uni == 0x255d || uni == 0x256c)
  25. return 0;
  26. else
  27. return p_nls->uni2char(uni, out, boundlen);
  28. return 1;
  29. }
  30. else
  31. /* fast path */
  32. return p_nls->uni2char(uni, out, boundlen);
  33. }
  34. static int char2uni(const unsigned char *rawstring, int boundlen,
  35.     wchar_t *uni)
  36. {
  37. int n;
  38. if ((*rawstring & 0xef) != 0xae) {
  39. /* koi8-ru and koi8-u differ only on two characters */
  40. *uni = (*rawstring & 0x10) ? 0x040e : 0x045e;
  41. return 1;
  42. }
  43. n = p_nls->char2uni(rawstring, boundlen, uni);
  44. return n;
  45. }
  46. static struct nls_table table = {
  47. "koi8-ru",
  48. uni2char,
  49. char2uni,
  50. NULL,
  51. NULL,
  52. THIS_MODULE,
  53. };
  54. static int __init init_nls_koi8_ru(void)
  55. {
  56. p_nls = load_nls("koi8-u");
  57. if (p_nls) {
  58. table.charset2upper = p_nls->charset2upper;
  59. table.charset2lower = p_nls->charset2lower;
  60. return register_nls(&table);
  61. }
  62. return -EINVAL;
  63. }
  64. static void __exit exit_nls_koi8_ru(void)
  65. {
  66. unregister_nls(&table);
  67. unload_nls(p_nls);
  68. }
  69. module_init(init_nls_koi8_ru)
  70. module_exit(exit_nls_koi8_ru)
  71. MODULE_LICENSE("Dual BSD/GPL");
  72. /*
  73.  * Overrides for Emacs so that we follow Linus's tabbing style.
  74.  * Emacs will notice this stuff at the end of the file and automatically
  75.  * adjust the settings for this buffer only.  This must remain at the end
  76.  * of the file.
  77.  * ---------------------------------------------------------------------------
  78.  * Local variables:
  79.  * c-indent-level: 8
  80.  * c-brace-imaginary-offset: 0
  81.  * c-brace-offset: -8
  82.  * c-argdecl-indent: 8
  83.  * c-label-offset: -8
  84.  * c-continued-statement-offset: 8
  85.  * c-continued-brace-offset: 0
  86.  * End:
  87.  */