joliet.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/isofs/joliet.c
  3.  *
  4.  *  (C) 1996 Gordon Chaffee
  5.  *
  6.  *  Joliet: Microsoft's Unicode extensions to iso9660
  7.  */
  8. #include <linux/string.h>
  9. #include <linux/nls.h>
  10. #include <linux/slab.h>
  11. #include <linux/iso_fs.h>
  12. #include <asm/unaligned.h>
  13. /*
  14.  * Convert Unicode 16 to UTF8 or ASCII.
  15.  */
  16. static int
  17. uni16_to_x8(unsigned char *ascii, u16 *uni, int len, struct nls_table *nls)
  18. {
  19. wchar_t *ip, ch;
  20. unsigned char *op;
  21. ip = uni;
  22. op = ascii;
  23. while ((ch = get_unaligned(ip)) && len) {
  24. int llen;
  25. ch = be16_to_cpu(ch);
  26. if ((llen = nls->uni2char(ch, op, NLS_MAX_CHARSET_SIZE)) > 0)
  27. op += llen;
  28. else
  29. *op++ = '?';
  30. ip++;
  31. len--;
  32. }
  33. *op = 0;
  34. return (op - ascii);
  35. }
  36. /* Convert big endian wide character string to utf8 */
  37. static int
  38. wcsntombs_be(__u8 *s, const __u8 *pwcs, int inlen, int maxlen)
  39. {
  40. const __u8 *ip;
  41. __u8 *op;
  42. int size;
  43. __u16 c;
  44. op = s;
  45. ip = pwcs;
  46. while ((*ip || ip[1]) && (maxlen > 0) && (inlen > 0)) {
  47. c = (*ip << 8) | ip[1];
  48. if (c > 0x7f) {
  49. size = utf8_wctomb(op, c, maxlen);
  50. if (size == -1) {
  51. /* Ignore character and move on */
  52. maxlen--;
  53. } else {
  54. op += size;
  55. maxlen -= size;
  56. }
  57. } else {
  58. *op++ = (__u8) c;
  59. }
  60. ip += 2;
  61. inlen--;
  62. }
  63. return (op - s);
  64. }
  65. int
  66. get_joliet_filename(struct iso_directory_record * de, unsigned char *outname, struct inode * inode)
  67. {
  68. unsigned char utf8;
  69. struct nls_table *nls;
  70. unsigned char len = 0;
  71. utf8 = inode->i_sb->u.isofs_sb.s_utf8;
  72. nls = inode->i_sb->u.isofs_sb.s_nls_iocharset;
  73. if (utf8) {
  74. len = wcsntombs_be(outname, de->name,
  75.    de->name_len[0] >> 1, PAGE_SIZE);
  76. } else {
  77. len = uni16_to_x8(outname, (u16 *) de->name,
  78.   de->name_len[0] >> 1, nls);
  79. }
  80. if ((len > 2) && (outname[len-2] == ';') && (outname[len-1] == '1')) {
  81. len -= 2;
  82. }
  83. /*
  84.  * Windows doesn't like periods at the end of a name,
  85.  * so neither do we
  86.  */
  87. while (len >= 2 && (outname[len-1] == '.')) {
  88. len--;
  89. }
  90. return len;
  91. }