blob: 62e81e3d5aabbadd7a380247c0a840ec80c7dd1c [file] [log] [blame]
Daniel Veillard891e4041998-10-19 00:43:02 +00001/*
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 *
Daniel Veillard891e4041998-10-19 00:43:02 +000016 * See Copyright for the status of this software.
17 *
Daniel Veillard891e4041998-10-19 00:43:02 +000018 * Daniel.Veillard@w3.org
19 */
20
Daniel Veillard27d88741999-05-29 11:51:49 +000021#ifndef __XML_CHAR_ENCODING_H__
22#define __XML_CHAR_ENCODING_H__
Daniel Veillard891e4041998-10-19 00:43:02 +000023
Daniel Veillard361d8452000-04-03 19:48:13 +000024#include <libxml/xmlversion.h>
Daniel Veillard496a1cf2000-05-03 14:20:55 +000025#ifdef LIBXML_ICONV_ENABLED
26#include <iconv.h>
27#endif
28#include <libxml/tree.h>
29
Daniel Veillard891e4041998-10-19 00:43:02 +000030#ifdef __cplusplus
31extern "C" {
32#endif
33
Daniel Veillard14fff061999-06-22 21:49:07 +000034/**
35 * Predefined values for some standard encodings
Daniel Veillard496a1cf2000-05-03 14:20:55 +000036 * Libxml don't do beforehand translation on UTF8, ISOLatinX
37 * It also support UTF16 (LE and BE) by default.
38 *
39 * Anything else would have to be translated to UTF8 before being
40 * given to the parser itself. The BOM for UTF16 and the encoding
41 * declaration are looked at and a converter is looked for at that
42 * point. If not found the parser stops here as asked by the XML REC
43 * Converter can be registered by the user using xmlRegisterCharEncodingHandler
44 * but the currentl form doesn't allow stateful transcoding (a serious
45 * problem agreed !). If iconv has been found it will be used
46 * automatically and allow stateful transcoding, the simplest is then
47 * to be sure to enable icon and to provide iconv libs for the encoding
48 * support needed.
Daniel Veillard14fff061999-06-22 21:49:07 +000049 */
Daniel Veillard27d88741999-05-29 11:51:49 +000050typedef enum {
51 XML_CHAR_ENCODING_ERROR= -1, /* No char encoding detected */
52 XML_CHAR_ENCODING_NONE= 0, /* No char encoding detected */
53 XML_CHAR_ENCODING_UTF8= 1, /* UTF-8 */
54 XML_CHAR_ENCODING_UTF16LE= 2, /* UTF-16 little endian */
55 XML_CHAR_ENCODING_UTF16BE= 3, /* UTF-16 big endian */
56 XML_CHAR_ENCODING_UCS4LE= 4, /* UCS-4 little endian */
57 XML_CHAR_ENCODING_UCS4BE= 5, /* UCS-4 big endian */
58 XML_CHAR_ENCODING_EBCDIC= 6, /* EBCDIC uh! */
59 XML_CHAR_ENCODING_UCS4_2143=7, /* UCS-4 unusual ordering */
60 XML_CHAR_ENCODING_UCS4_3412=8, /* UCS-4 unusual ordering */
61 XML_CHAR_ENCODING_UCS2= 9, /* UCS-2 */
62 XML_CHAR_ENCODING_8859_1= 10,/* ISO-8859-1 ISO Latin 1 */
63 XML_CHAR_ENCODING_8859_2= 11,/* ISO-8859-2 ISO Latin 2 */
64 XML_CHAR_ENCODING_8859_3= 12,/* ISO-8859-3 */
65 XML_CHAR_ENCODING_8859_4= 13,/* ISO-8859-4 */
66 XML_CHAR_ENCODING_8859_5= 14,/* ISO-8859-5 */
67 XML_CHAR_ENCODING_8859_6= 15,/* ISO-8859-6 */
68 XML_CHAR_ENCODING_8859_7= 16,/* ISO-8859-7 */
69 XML_CHAR_ENCODING_8859_8= 17,/* ISO-8859-8 */
70 XML_CHAR_ENCODING_8859_9= 18,/* ISO-8859-9 */
71 XML_CHAR_ENCODING_2022_JP= 19,/* ISO-2022-JP */
72 XML_CHAR_ENCODING_SHIFT_JIS=20,/* Shift_JIS */
Daniel Veillard32bc74e2000-07-14 14:49:25 +000073 XML_CHAR_ENCODING_EUC_JP= 21,/* EUC-JP */
74 XML_CHAR_ENCODING_ASCII= 22 /* pure ASCII */
Daniel Veillard27d88741999-05-29 11:51:49 +000075} xmlCharEncoding;
76
Daniel Veillard14fff061999-06-22 21:49:07 +000077/**
78 * xmlCharEncodingInputFunc:
79 * @out: a pointer ot an array of bytes to store the UTF-8 result
80 * @outlen: the lenght of @out
81 * @in: a pointer ot an array of chars in the original encoding
82 * @inlen: the lenght of @in
83 *
84 * Take a block of chars in the original encoding and try to convert
85 * it to an UTF-8 block of chars out.
86 *
Daniel Veillard496a1cf2000-05-03 14:20:55 +000087 * Returns the number of byte written, or -1 by lack of space, or -2
88 * if the transcoding failed.
89 * The value of @inlen after return is the number of octets consumed
90 * as the return value is positive, else unpredictiable.
91 * The value of @outlen after return is the number of ocetes consumed.
Daniel Veillard14fff061999-06-22 21:49:07 +000092 */
Daniel Veillard496a1cf2000-05-03 14:20:55 +000093typedef int (* xmlCharEncodingInputFunc)(unsigned char* out, int *outlen,
Daniel Veillardcf461992000-03-14 18:30:20 +000094 const unsigned char* in, int *inlen);
Daniel Veillard14fff061999-06-22 21:49:07 +000095
96
97/**
Daniel Veillardcf461992000-03-14 18:30:20 +000098 * xmlCharEncodingOutputFunc:
Daniel Veillard14fff061999-06-22 21:49:07 +000099 * @out: a pointer ot an array of bytes to store the result
100 * @outlen: the lenght of @out
101 * @in: a pointer ot an array of UTF-8 chars
102 * @inlen: the lenght of @in
103 *
104 * Take a block of UTF-8 chars in and try to convert it to an other
105 * encoding.
Daniel Veillardbe803962000-06-28 23:40:59 +0000106 * Note: a first call designed to produce heading info is called with
107 * in = NULL. If stateful this should also initialize the encoder state
Daniel Veillard14fff061999-06-22 21:49:07 +0000108 *
109 * Returns the number of byte written, or -1 by lack of space, or -2
110 * if the transcoding failed.
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000111 * The value of @inlen after return is the number of octets consumed
112 * as the return value is positive, else unpredictiable.
113 * The value of @outlen after return is the number of ocetes consumed.
Daniel Veillard14fff061999-06-22 21:49:07 +0000114 */
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000115typedef int (* xmlCharEncodingOutputFunc)(unsigned char* out, int *outlen,
Daniel Veillardcf461992000-03-14 18:30:20 +0000116 const unsigned char* in, int *inlen);
Daniel Veillard14fff061999-06-22 21:49:07 +0000117
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000118
Daniel Veillard14fff061999-06-22 21:49:07 +0000119/*
120 * Block defining the handlers for non UTF-8 encodings.
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000121 * If iconv is supported, there is two extra fields
Daniel Veillard14fff061999-06-22 21:49:07 +0000122 */
123
Daniel Veillard71b656e2000-01-05 14:46:17 +0000124typedef struct _xmlCharEncodingHandler xmlCharEncodingHandler;
125typedef xmlCharEncodingHandler *xmlCharEncodingHandlerPtr;
126struct _xmlCharEncodingHandler {
Daniel Veillard14fff061999-06-22 21:49:07 +0000127 char *name;
128 xmlCharEncodingInputFunc input;
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000129 xmlCharEncodingOutputFunc output;
130#ifdef LIBXML_ICONV_ENABLED
131 iconv_t iconv_in;
132 iconv_t iconv_out;
133#endif /* LIBXML_ICONV_ENABLED */
Daniel Veillard71b656e2000-01-05 14:46:17 +0000134};
Daniel Veillard14fff061999-06-22 21:49:07 +0000135
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +0000136/*
137 * Interfaces for encoding handlers
138 */
Daniel Veillarda819dac1999-11-24 18:04:22 +0000139void xmlInitCharEncodingHandlers (void);
140void xmlCleanupCharEncodingHandlers (void);
141void xmlRegisterCharEncodingHandler (xmlCharEncodingHandlerPtr handler);
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +0000142xmlCharEncodingHandlerPtr
143 xmlGetCharEncodingHandler (xmlCharEncoding enc);
144xmlCharEncodingHandlerPtr
145 xmlFindCharEncodingHandler (const char *name);
146
147
148/*
149 * Interfaces for encoding names and aliases
150 */
151int xmlAddEncodingAlias (const char *name,
152 const char *alias);
153int xmlDelEncodingAlias (const char *alias);
154const char *
155 xmlGetEncodingAlias (const char *alias);
156void xmlCleanupEncodingAliases (void);
157xmlCharEncoding
158 xmlParseCharEncoding (const char* name);
159const char*
160 xmlGetCharEncodingName (xmlCharEncoding enc);
161
162/*
163 * Interfaces directly used by the parsers.
164 */
165xmlCharEncoding
166 xmlDetectCharEncoding (const unsigned char* in,
Daniel Veillardcf461992000-03-14 18:30:20 +0000167 int len);
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +0000168
Daniel Veillardcf461992000-03-14 18:30:20 +0000169int xmlCheckUTF8 (const unsigned char *utf);
Daniel Veillard14fff061999-06-22 21:49:07 +0000170
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000171int xmlCharEncOutFunc (xmlCharEncodingHandler *handler,
172 xmlBufferPtr out,
173 xmlBufferPtr in);
174
175int xmlCharEncInFunc (xmlCharEncodingHandler *handler,
176 xmlBufferPtr out,
177 xmlBufferPtr in);
Daniel Veillardbe803962000-06-28 23:40:59 +0000178int xmlCharEncFirstLine (xmlCharEncodingHandler *handler,
179 xmlBufferPtr out,
180 xmlBufferPtr in);
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000181int xmlCharEncCloseFunc (xmlCharEncodingHandler *handler);
Daniel Veillard27d88741999-05-29 11:51:49 +0000182
Daniel Veillard891e4041998-10-19 00:43:02 +0000183#ifdef __cplusplus
184}
185#endif
186
Daniel Veillard27d88741999-05-29 11:51:49 +0000187#endif /* __XML_CHAR_ENCODING_H__ */