encoding.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. (*
  2. * Summary: interface for the encoding conversion functions
  3. * Description: interface for the encoding conversion functions needed for
  4. * XML basic encoding and iconv() support.
  5. *
  6. * Related specs are
  7. * rfc2044 (UTF-8 and UTF-16) F. Yergeau Alis Technologies
  8. * [ISO-10646] UTF-8 and UTF-16 in Annexes
  9. * [ISO-8859-1] ISO Latin-1 characters codes.
  10. * [UNICODE] The Unicode Consortium, "The Unicode Standard --
  11. * Worldwide Character Encoding -- Version 1.0", Addison-
  12. * Wesley, Volume 1, 1991, Volume 2, 1992. UTF-8 is
  13. * described in Unicode Technical Report #4.
  14. * [US-ASCII] Coded Character Set--7-bit American Standard Code for
  15. * Information Interchange, ANSI X3.4-1986.
  16. *
  17. * Copy: See Copyright for the status of this software.
  18. *
  19. * Author: Daniel Veillard
  20. *)
  21. (*
  22. * xmlCharEncoding:
  23. *
  24. * Predefined values for some standard encodings.
  25. * Libxml does not do beforehand translation on UTF8 and ISOLatinX.
  26. * It also supports ASCII, ISO-8859-1, and UTF16 (LE and BE) by default.
  27. *
  28. * Anything else would have to be translated to UTF8 before being
  29. * given to the parser itself. The BOM for UTF16 and the encoding
  30. * declaration are looked at and a converter is looked for at that
  31. * point. If not found the parser stops here as asked by the XML REC. A
  32. * converter can be registered by the user using xmlRegisterCharEncodingHandler
  33. * but the current form doesn't allow stateful transcoding (a serious
  34. * problem agreed !). If iconv has been found it will be used
  35. * automatically and allow stateful transcoding, the simplest is then
  36. * to be sure to enable iconv and to provide iconv libs for the encoding
  37. * support needed.
  38. *
  39. * Note that the generic "UTF-16" is not a predefined value. Instead, only
  40. * the specific UTF-16LE and UTF-16BE are present.
  41. *)
  42. {$IFDEF TYPE}
  43. xmlCharEncoding = (
  44. XML_CHAR_ENCODING_ERROR= -1, (* No char encoding detected *)
  45. XML_CHAR_ENCODING_NONE= 0, (* No char encoding detected *)
  46. XML_CHAR_ENCODING_UTF8= 1, (* UTF-8 *)
  47. XML_CHAR_ENCODING_UTF16LE= 2, (* UTF-16 little endian *)
  48. XML_CHAR_ENCODING_UTF16BE= 3, (* UTF-16 big endian *)
  49. XML_CHAR_ENCODING_UCS4LE= 4, (* UCS-4 little endian *)
  50. XML_CHAR_ENCODING_UCS4BE= 5, (* UCS-4 big endian *)
  51. XML_CHAR_ENCODING_EBCDIC= 6, (* EBCDIC uh! *)
  52. XML_CHAR_ENCODING_UCS4_2143=7, (* UCS-4 unusual ordering *)
  53. XML_CHAR_ENCODING_UCS4_3412=8, (* UCS-4 unusual ordering *)
  54. XML_CHAR_ENCODING_UCS2= 9, (* UCS-2 *)
  55. XML_CHAR_ENCODING_8859_1= 10,(* ISO-8859-1 ISO Latin 1 *)
  56. XML_CHAR_ENCODING_8859_2= 11,(* ISO-8859-2 ISO Latin 2 *)
  57. XML_CHAR_ENCODING_8859_3= 12,(* ISO-8859-3 *)
  58. XML_CHAR_ENCODING_8859_4= 13,(* ISO-8859-4 *)
  59. XML_CHAR_ENCODING_8859_5= 14,(* ISO-8859-5 *)
  60. XML_CHAR_ENCODING_8859_6= 15,(* ISO-8859-6 *)
  61. XML_CHAR_ENCODING_8859_7= 16,(* ISO-8859-7 *)
  62. XML_CHAR_ENCODING_8859_8= 17,(* ISO-8859-8 *)
  63. XML_CHAR_ENCODING_8859_9= 18,(* ISO-8859-9 *)
  64. XML_CHAR_ENCODING_2022_JP= 19,(* ISO-2022-JP *)
  65. XML_CHAR_ENCODING_SHIFT_JIS=20,(* Shift_JIS *)
  66. XML_CHAR_ENCODING_EUC_JP= 21,(* EUC-JP *)
  67. XML_CHAR_ENCODING_ASCII= 22 (* pure ASCII *)
  68. );
  69. (**
  70. * xmlCharEncodingInputFunc:
  71. * @out: a pointer to an array of bytes to store the UTF-8 result
  72. * @outlen: the length of @out
  73. * @in: a pointer to an array of chars in the original encoding
  74. * @inlen: the length of @in
  75. *
  76. * Take a block of chars in the original encoding and try to convert
  77. * it to an UTF-8 block of chars out.
  78. *
  79. * Returns the number of bytes written, -1 if lack of space, or -2
  80. * if the transcoding failed.
  81. * The value of @inlen after return is the number of octets consumed
  82. * if the return value is positive, else unpredictiable.
  83. * The value of @outlen after return is the number of octets consumed.
  84. *)
  85. xmlCharEncodingInputFunc = function(_out: pchar; outlen: pcint; _in: pchar; inlen: pcint): cint; cdecl;
  86. (**
  87. * xmlCharEncodingOutputFunc:
  88. * @out: a pointer to an array of bytes to store the result
  89. * @outlen: the length of @out
  90. * @in: a pointer to an array of UTF-8 chars
  91. * @inlen: the length of @in
  92. *
  93. * Take a block of UTF-8 chars in and try to convert it to another
  94. * encoding.
  95. * Note: a first call designed to produce heading info is called with
  96. * in = NULL. If stateful this should also initialize the encoder state.
  97. *
  98. * Returns the number of bytes written, -1 if lack of space, or -2
  99. * if the transcoding failed.
  100. * The value of @inlen after return is the number of octets consumed
  101. * if the return value is positive, else unpredictiable.
  102. * The value of @outlen after return is the number of octets produced.
  103. *)
  104. xmlCharEncodingOutputFunc = function(_out: pchar; outlen: pcint; _in: pchar; inlen: pcint): cint; cdecl;
  105. (*
  106. * Block defining the handlers for non UTF-8 encodings.
  107. * If iconv is supported, there are two extra fields.
  108. *)
  109. xmlCharEncodingHandler = record
  110. name : pchar;
  111. input : xmlCharEncodingInputFunc;
  112. output : xmlCharEncodingOutputFunc;
  113. {$IFDEF LIBXML_ICONV_ENABLED}
  114. iconv_in : iconv_t;
  115. iconv_out : iconv_t;
  116. {$ENDIF} (* LIBXML_ICONV_ENABLED *)
  117. end;
  118. {$ENDIF}
  119. {$IFDEF FUNCTION}
  120. (*
  121. * Interfaces for encoding handlers.
  122. *)
  123. procedure xmlInitCharEncodingHandlers; cdecl; external;
  124. procedure xmlCleanupCharEncodingHandlers; cdecl; external;
  125. procedure xmlRegisterCharEncodingHandler(handler: xmlCharEncodingHandlerPtr); cdecl; external;
  126. function xmlGetCharEncodingHandler(enc: xmlCharEncoding): xmlCharEncodingHandlerPtr; cdecl; external;
  127. function xmlFindCharEncodingHandler(name: pchar): xmlCharEncodingHandlerPtr; cdecl; external;
  128. function xmlNewCharEncodingHandler(name: pchar; input: xmlCharEncodingInputFunc; output: xmlCharEncodingOutputFunc): xmlCharEncodingHandlerPtr; cdecl; external;
  129. (*
  130. * Interfaces for encoding names and aliases.
  131. *)
  132. function xmlAddEncodingAlias(name: pchar; alias: pchar): cint; cdecl; external;
  133. function xmlDelEncodingAlias(alias: pchar): cint; cdecl; external;
  134. function xmlGetEncodingAlias(alias: pchar): pchar; cdecl; external;
  135. procedure xmlCleanupEncodingAliases; cdecl; external;
  136. function xmlParseCharEncoding(name: pchar): xmlCharEncoding; cdecl; external;
  137. function xmlGetCharEncodingName(enc: xmlCharEncoding): pchar; cdecl; external;
  138. (*
  139. * Interfaces directly used by the parsers.
  140. *)
  141. function xmlDetectCharEncoding(_in: pchar; len: cint): xmlCharEncoding; cdecl; external;
  142. function xmlCharEncOutFunc(handler: xmlCharEncodingHandlerPtr; _out, _in: xmlBufferPtr): cint; cdecl; external;
  143. function xmlCharEncInFunc(handler: xmlCharEncodingHandlerPtr; _out, _in: xmlBufferPtr): cint; cdecl; external;
  144. function xmlCharEncFirstLine(handler: xmlCharEncodingHandlerPtr; _out, _in: xmlBufferPtr): cint; cdecl; external;
  145. function xmlCharEncCloseFunc(handler: xmlCharEncodingHandlerPtr): cint; cdecl; external;
  146. (*
  147. * Export a few useful functions
  148. *)
  149. {$IFDEF LIBXML_OUTPUT_ENABLED}
  150. function UTF8Toisolat1(_out: pchar; outlen: pcint; _in: pchar; inlen: pcint): cint; cdecl; external;
  151. {$ENDIF} (* LIBXML_OUTPUT_ENABLED *)
  152. function isolat1ToUTF8(_out: pchar; outlen: pcint; _in: pchar; inlen: pcint): cint; cdecl; external;
  153. {$ENDIF}