encoding.h
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*
  2.  * encoding.h : interface for the encoding conversion functions needed for
  3.  *              XML
  4.  *
  5.  * Related specs: 
  6.  * rfc2044        (UTF-8 and UTF-16) F. Yergeau Alis Technologies
  7.  * [ISO-10646]    UTF-8 and UTF-16 in Annexes
  8.  * [ISO-8859-1]   ISO Latin-1 characters codes.
  9.  * [UNICODE]      The Unicode Consortium, "The Unicode Standard --
  10.  *                Worldwide Character Encoding -- Version 1.0", Addison-
  11.  *                Wesley, Volume 1, 1991, Volume 2, 1992.  UTF-8 is
  12.  *                described in Unicode Technical Report #4.
  13.  * [US-ASCII]     Coded Character Set--7-bit American Standard Code for
  14.  *                Information Interchange, ANSI X3.4-1986.
  15.  *
  16.  * See Copyright for the status of this software.
  17.  *
  18.  * Daniel.Veillard@w3.org
  19.  */
  20. #ifndef __XML_CHAR_ENCODING_H__
  21. #define __XML_CHAR_ENCODING_H__
  22. #include <libxml/xmlversion.h>
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /**
  27.  * Predefined values for some standard encodings
  28.  */
  29. typedef enum {
  30.     XML_CHAR_ENCODING_ERROR=   -1, /* No char encoding detected */
  31.     XML_CHAR_ENCODING_NONE= 0, /* No char encoding detected */
  32.     XML_CHAR_ENCODING_UTF8= 1, /* UTF-8 */
  33.     XML_CHAR_ENCODING_UTF16LE= 2, /* UTF-16 little endian */
  34.     XML_CHAR_ENCODING_UTF16BE= 3, /* UTF-16 big endian */
  35.     XML_CHAR_ENCODING_UCS4LE= 4, /* UCS-4 little endian */
  36.     XML_CHAR_ENCODING_UCS4BE= 5, /* UCS-4 big endian */
  37.     XML_CHAR_ENCODING_EBCDIC= 6, /* EBCDIC uh! */
  38.     XML_CHAR_ENCODING_UCS4_2143=7, /* UCS-4 unusual ordering */
  39.     XML_CHAR_ENCODING_UCS4_3412=8, /* UCS-4 unusual ordering */
  40.     XML_CHAR_ENCODING_UCS2= 9, /* UCS-2 */
  41.     XML_CHAR_ENCODING_8859_1= 10,/* ISO-8859-1 ISO Latin 1 */
  42.     XML_CHAR_ENCODING_8859_2= 11,/* ISO-8859-2 ISO Latin 2 */
  43.     XML_CHAR_ENCODING_8859_3= 12,/* ISO-8859-3 */
  44.     XML_CHAR_ENCODING_8859_4= 13,/* ISO-8859-4 */
  45.     XML_CHAR_ENCODING_8859_5= 14,/* ISO-8859-5 */
  46.     XML_CHAR_ENCODING_8859_6= 15,/* ISO-8859-6 */
  47.     XML_CHAR_ENCODING_8859_7= 16,/* ISO-8859-7 */
  48.     XML_CHAR_ENCODING_8859_8= 17,/* ISO-8859-8 */
  49.     XML_CHAR_ENCODING_8859_9= 18,/* ISO-8859-9 */
  50.     XML_CHAR_ENCODING_2022_JP=  19,/* ISO-2022-JP */
  51.     XML_CHAR_ENCODING_SHIFT_JIS=20,/* Shift_JIS */
  52.     XML_CHAR_ENCODING_EUC_JP=   21 /* EUC-JP */
  53. } xmlCharEncoding;
  54. /**
  55.  * xmlCharEncodingInputFunc:
  56.  * @out:  a pointer ot an array of bytes to store the UTF-8 result
  57.  * @outlen:  the lenght of @out
  58.  * @in:  a pointer ot an array of chars in the original encoding
  59.  * @inlen:  the lenght of @in
  60.  *
  61.  * Take a block of chars in the original encoding and try to convert
  62.  * it to an UTF-8 block of chars out.
  63.  *
  64.  * Returns the number of byte written, or -1 by lack of space.
  65.  */
  66. typedef int (* xmlCharEncodingInputFunc)(unsigned char* out, int outlen,
  67.                                          const unsigned char* in, int *inlen);
  68. /**
  69.  * xmlCharEncodingOutputFunc:
  70.  * @out:  a pointer ot an array of bytes to store the result
  71.  * @outlen:  the lenght of @out
  72.  * @in:  a pointer ot an array of UTF-8 chars
  73.  * @inlen:  the lenght of @in
  74.  *
  75.  * Take a block of UTF-8 chars in and try to convert it to an other
  76.  * encoding.
  77.  *
  78.  * Returns the number of byte written, or -1 by lack of space, or -2
  79.  *     if the transcoding failed.
  80.  */
  81. typedef int (* xmlCharEncodingOutputFunc)(unsigned char* out, int outlen,
  82.                                           const unsigned char* in, int *inlen);
  83. /*
  84.  * Block defining the handlers for non UTF-8 encodings.
  85.  */
  86. typedef struct _xmlCharEncodingHandler xmlCharEncodingHandler;
  87. typedef xmlCharEncodingHandler *xmlCharEncodingHandlerPtr;
  88. struct _xmlCharEncodingHandler {
  89.     char                       *name;
  90.     xmlCharEncodingInputFunc   input;
  91.     xmlCharEncodingOutputFunc output;
  92. };
  93. void xmlInitCharEncodingHandlers (void);
  94. void xmlCleanupCharEncodingHandlers (void);
  95. void xmlRegisterCharEncodingHandler (xmlCharEncodingHandlerPtr handler);
  96. xmlCharEncoding xmlDetectCharEncoding (const unsigned char* in,
  97.  int len);
  98. xmlCharEncoding xmlParseCharEncoding (const char* name);
  99. xmlCharEncodingHandlerPtr xmlGetCharEncodingHandler(xmlCharEncoding enc);
  100. xmlCharEncodingHandlerPtr xmlFindCharEncodingHandler(const char *name);
  101. int xmlCheckUTF8 (const unsigned char *utf);
  102. #ifdef __cplusplus
  103. }
  104. #endif
  105. #endif /* __XML_CHAR_ENCODING_H__ */