blob: 555558fe83031bbc7d3c3c52ae7b6b89b7b8509e [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +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 *
16 * See Copyright for the status of this software.
17 *
18 * Daniel.Veillard@w3.org
19 */
20
21#ifndef __XML_CHAR_ENCODING_H__
22#define __XML_CHAR_ENCODING_H__
23
24#include <libxml/xmlversion.h>
25#ifdef LIBXML_ICONV_ENABLED
26#include <iconv.h>
27#endif
28#include <libxml/tree.h>
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34/**
35 * Predefined values for some standard encodings
36 * 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.
49 */
50typedef 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 */
73 XML_CHAR_ENCODING_EUC_JP= 21,/* EUC-JP */
74 XML_CHAR_ENCODING_ASCII= 22 /* pure ASCII */
75} xmlCharEncoding;
76
77/**
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 *
87 * 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.
92 */
93typedef int (* xmlCharEncodingInputFunc)(unsigned char* out, int *outlen,
94 const unsigned char* in, int *inlen);
95
96
97/**
98 * xmlCharEncodingOutputFunc:
99 * @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.
106 * Note: a first call designed to produce heading info is called with
107 * in = NULL. If stateful this should also initialize the encoder state
108 *
109 * Returns the number of byte written, or -1 by lack of space, or -2
110 * if the transcoding failed.
111 * 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.
114 */
115typedef int (* xmlCharEncodingOutputFunc)(unsigned char* out, int *outlen,
116 const unsigned char* in, int *inlen);
117
118
119/*
120 * Block defining the handlers for non UTF-8 encodings.
121 * If iconv is supported, there is two extra fields
122 */
123
124typedef struct _xmlCharEncodingHandler xmlCharEncodingHandler;
125typedef xmlCharEncodingHandler *xmlCharEncodingHandlerPtr;
126struct _xmlCharEncodingHandler {
127 char *name;
128 xmlCharEncodingInputFunc input;
129 xmlCharEncodingOutputFunc output;
130#ifdef LIBXML_ICONV_ENABLED
131 iconv_t iconv_in;
132 iconv_t iconv_out;
133#endif /* LIBXML_ICONV_ENABLED */
134};
135
136/*
137 * Interfaces for encoding handlers
138 */
139void xmlInitCharEncodingHandlers (void);
140void xmlCleanupCharEncodingHandlers (void);
141void xmlRegisterCharEncodingHandler (xmlCharEncodingHandlerPtr handler);
142xmlCharEncodingHandlerPtr
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,
167 int len);
168
Owen Taylor3473f882001-02-23 17:55:21 +0000169int xmlCharEncOutFunc (xmlCharEncodingHandler *handler,
170 xmlBufferPtr out,
171 xmlBufferPtr in);
172
173int xmlCharEncInFunc (xmlCharEncodingHandler *handler,
174 xmlBufferPtr out,
175 xmlBufferPtr in);
176int xmlCharEncFirstLine (xmlCharEncodingHandler *handler,
177 xmlBufferPtr out,
178 xmlBufferPtr in);
179int xmlCharEncCloseFunc (xmlCharEncodingHandler *handler);
180
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000181/*
182 * Export a few useful functions
183 */
184int UTF8Toisolat1 (unsigned char* out,
185 int *outlen,
186 const unsigned char* in,
187 int *inlen);
188int isolat1ToUTF8 (unsigned char* out,
189 int *outlen,
190 const unsigned char* in,
191 int *inlen);
Daniel Veillarde043ee12001-04-16 14:08:07 +0000192int xmlCheckUTF8 (const unsigned char *utf);
193int xmlUTF8Strlen (const unsigned char *utf);
194
Owen Taylor3473f882001-02-23 17:55:21 +0000195#ifdef __cplusplus
196}
197#endif
198
199#endif /* __XML_CHAR_ENCODING_H__ */