blob: b8d5bbce38fb25b2fafe434e0760d1d2dd6e7450 [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002 * parserInternals.c : Internal routines (and obsolete ones) needed for the
3 * XML and HTML parsers.
Owen Taylor3473f882001-02-23 17:55:21 +00004 *
5 * See Copyright for the status of this software.
6 *
Daniel Veillardc5d64342001-06-24 12:13:24 +00007 * daniel@veillard.com
Owen Taylor3473f882001-02-23 17:55:21 +00008 */
9
Daniel Veillard34ce8be2002-03-18 19:37:11 +000010#define IN_LIBXML
Bjorn Reese70a9da52001-04-21 16:57:29 +000011#include "libxml.h"
12
Daniel Veillard3c5ed912002-01-08 10:36:16 +000013#if defined(WIN32) && !defined (__CYGWIN__)
Owen Taylor3473f882001-02-23 17:55:21 +000014#define XML_DIR_SEP '\\'
15#else
Owen Taylor3473f882001-02-23 17:55:21 +000016#define XML_DIR_SEP '/'
17#endif
18
Owen Taylor3473f882001-02-23 17:55:21 +000019#include <string.h>
20#ifdef HAVE_CTYPE_H
21#include <ctype.h>
22#endif
23#ifdef HAVE_STDLIB_H
24#include <stdlib.h>
25#endif
26#ifdef HAVE_SYS_STAT_H
27#include <sys/stat.h>
28#endif
29#ifdef HAVE_FCNTL_H
30#include <fcntl.h>
31#endif
32#ifdef HAVE_UNISTD_H
33#include <unistd.h>
34#endif
35#ifdef HAVE_ZLIB_H
36#include <zlib.h>
37#endif
38
39#include <libxml/xmlmemory.h>
40#include <libxml/tree.h>
41#include <libxml/parser.h>
42#include <libxml/parserInternals.h>
43#include <libxml/valid.h>
44#include <libxml/entities.h>
45#include <libxml/xmlerror.h>
46#include <libxml/encoding.h>
47#include <libxml/valid.h>
48#include <libxml/xmlIO.h>
49#include <libxml/uri.h>
Daniel Veillard2fdbd322003-08-18 12:15:38 +000050#include <libxml/dict.h>
Daniel Veillard16698282001-09-14 10:29:27 +000051#include <libxml/SAX.h>
Daniel Veillard5d90b6c2001-08-22 14:29:45 +000052#ifdef LIBXML_CATALOG_ENABLED
53#include <libxml/catalog.h>
54#endif
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000055#include <libxml/globals.h>
William M. Brack68aca052003-10-11 15:22:13 +000056#include <libxml/chvalid.h>
Owen Taylor3473f882001-02-23 17:55:21 +000057
Daniel Veillard768eb3b2012-07-16 14:19:49 +080058#include "buf.h"
59#include "enc.h"
60
Daniel Veillarda53c6882001-07-25 17:18:57 +000061/*
62 * Various global defaults for parsing
63 */
Owen Taylor3473f882001-02-23 17:55:21 +000064
Daniel Veillard5e2dace2001-07-18 19:30:27 +000065/**
Owen Taylor3473f882001-02-23 17:55:21 +000066 * xmlCheckVersion:
67 * @version: the include version number
68 *
69 * check the compiled lib version against the include one.
70 * This can warn or immediately kill the application
71 */
72void
73xmlCheckVersion(int version) {
74 int myversion = (int) LIBXML_VERSION;
75
Daniel Veillard6f350292001-10-14 09:56:15 +000076 xmlInitParser();
Daniel Veillard4de4d3b2001-05-07 20:50:47 +000077
Owen Taylor3473f882001-02-23 17:55:21 +000078 if ((myversion / 10000) != (version / 10000)) {
79 xmlGenericError(xmlGenericErrorContext,
80 "Fatal: program compiled against libxml %d using libxml %d\n",
81 (version / 10000), (myversion / 10000));
Daniel Veillardc69e0b12001-11-20 08:35:07 +000082 fprintf(stderr,
83 "Fatal: program compiled against libxml %d using libxml %d\n",
84 (version / 10000), (myversion / 10000));
Owen Taylor3473f882001-02-23 17:55:21 +000085 }
86 if ((myversion / 100) < (version / 100)) {
87 xmlGenericError(xmlGenericErrorContext,
88 "Warning: program compiled against libxml %d using older %d\n",
89 (version / 100), (myversion / 100));
90 }
91}
92
Daniel Veillardce9457f2003-10-05 21:33:18 +000093
94/************************************************************************
95 * *
96 * Some factorized error routines *
97 * *
98 ************************************************************************/
99
100
101/**
102 * xmlErrMemory:
103 * @ctxt: an XML parser context
104 * @extra: extra informations
105 *
106 * Handle a redefinition of attribute error
107 */
108void
109xmlErrMemory(xmlParserCtxtPtr ctxt, const char *extra)
110{
Daniel Veillard157fee02003-10-31 10:36:03 +0000111 if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
112 (ctxt->instate == XML_PARSER_EOF))
113 return;
Daniel Veillardce9457f2003-10-05 21:33:18 +0000114 if (ctxt != NULL) {
115 ctxt->errNo = XML_ERR_NO_MEMORY;
116 ctxt->instate = XML_PARSER_EOF;
117 ctxt->disableSAX = 1;
118 }
119 if (extra)
Daniel Veillard659e71e2003-10-10 14:10:40 +0000120 __xmlRaiseError(NULL, NULL, NULL, ctxt, NULL, XML_FROM_PARSER,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000121 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, extra,
122 NULL, NULL, 0, 0,
123 "Memory allocation failed : %s\n", extra);
124 else
Daniel Veillard659e71e2003-10-10 14:10:40 +0000125 __xmlRaiseError(NULL, NULL, NULL, ctxt, NULL, XML_FROM_PARSER,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000126 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, NULL,
127 NULL, NULL, 0, 0, "Memory allocation failed\n");
128}
129
130/**
Daniel Veillarda840b692003-10-19 13:35:37 +0000131 * __xmlErrEncoding:
Daniel Veillardce9457f2003-10-05 21:33:18 +0000132 * @ctxt: an XML parser context
Daniel Veillard29b17482004-08-16 00:39:03 +0000133 * @xmlerr: the error number
Daniel Veillardce9457f2003-10-05 21:33:18 +0000134 * @msg: the error message
135 * @str1: an string info
136 * @str2: an string info
137 *
138 * Handle an encoding error
139 */
Daniel Veillarda840b692003-10-19 13:35:37 +0000140void
Daniel Veillard29b17482004-08-16 00:39:03 +0000141__xmlErrEncoding(xmlParserCtxtPtr ctxt, xmlParserErrors xmlerr,
Daniel Veillarda840b692003-10-19 13:35:37 +0000142 const char *msg, const xmlChar * str1, const xmlChar * str2)
Daniel Veillardce9457f2003-10-05 21:33:18 +0000143{
Daniel Veillard157fee02003-10-31 10:36:03 +0000144 if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
145 (ctxt->instate == XML_PARSER_EOF))
146 return;
Daniel Veillardce9457f2003-10-05 21:33:18 +0000147 if (ctxt != NULL)
Daniel Veillard29b17482004-08-16 00:39:03 +0000148 ctxt->errNo = xmlerr;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000149 __xmlRaiseError(NULL, NULL, NULL,
Daniel Veillard29b17482004-08-16 00:39:03 +0000150 ctxt, NULL, XML_FROM_PARSER, xmlerr, XML_ERR_FATAL,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000151 NULL, 0, (const char *) str1, (const char *) str2,
152 NULL, 0, 0, msg, str1, str2);
153 if (ctxt != NULL) {
154 ctxt->wellFormed = 0;
155 if (ctxt->recovery == 0)
156 ctxt->disableSAX = 1;
157 }
158}
159
160/**
161 * xmlErrInternal:
162 * @ctxt: an XML parser context
163 * @msg: the error message
164 * @str: error informations
165 *
166 * Handle an internal error
167 */
168static void
169xmlErrInternal(xmlParserCtxtPtr ctxt, const char *msg, const xmlChar * str)
170{
Daniel Veillard157fee02003-10-31 10:36:03 +0000171 if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
172 (ctxt->instate == XML_PARSER_EOF))
173 return;
Daniel Veillardce9457f2003-10-05 21:33:18 +0000174 if (ctxt != NULL)
175 ctxt->errNo = XML_ERR_INTERNAL_ERROR;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000176 __xmlRaiseError(NULL, NULL, NULL,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000177 ctxt, NULL, XML_FROM_PARSER, XML_ERR_INTERNAL_ERROR,
178 XML_ERR_FATAL, NULL, 0, (const char *) str, NULL, NULL,
179 0, 0, msg, str);
180 if (ctxt != NULL) {
181 ctxt->wellFormed = 0;
182 if (ctxt->recovery == 0)
183 ctxt->disableSAX = 1;
184 }
185}
186
187/**
188 * xmlErrEncodingInt:
189 * @ctxt: an XML parser context
190 * @error: the error number
191 * @msg: the error message
192 * @val: an integer value
193 *
194 * n encoding error
195 */
196static void
197xmlErrEncodingInt(xmlParserCtxtPtr ctxt, xmlParserErrors error,
198 const char *msg, int val)
199{
Daniel Veillard157fee02003-10-31 10:36:03 +0000200 if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
201 (ctxt->instate == XML_PARSER_EOF))
202 return;
Daniel Veillardce9457f2003-10-05 21:33:18 +0000203 if (ctxt != NULL)
204 ctxt->errNo = error;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000205 __xmlRaiseError(NULL, NULL, NULL,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000206 ctxt, NULL, XML_FROM_PARSER, error, XML_ERR_FATAL,
207 NULL, 0, NULL, NULL, NULL, val, 0, msg, val);
208 if (ctxt != NULL) {
209 ctxt->wellFormed = 0;
210 if (ctxt->recovery == 0)
211 ctxt->disableSAX = 1;
212 }
213}
214
Owen Taylor3473f882001-02-23 17:55:21 +0000215/**
216 * xmlIsLetter:
217 * @c: an unicode character (int)
218 *
219 * Check whether the character is allowed by the production
220 * [84] Letter ::= BaseChar | Ideographic
221 *
222 * Returns 0 if not, non-zero otherwise
223 */
224int
225xmlIsLetter(int c) {
226 return(IS_BASECHAR(c) || IS_IDEOGRAPHIC(c));
227}
228
Owen Taylor3473f882001-02-23 17:55:21 +0000229/************************************************************************
230 * *
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800231 * Input handling functions for progressive parsing *
Owen Taylor3473f882001-02-23 17:55:21 +0000232 * *
233 ************************************************************************/
234
235/* #define DEBUG_INPUT */
236/* #define DEBUG_STACK */
237/* #define DEBUG_PUSH */
238
239
240/* we need to keep enough input to show errors in context */
241#define LINE_LEN 80
242
243#ifdef DEBUG_INPUT
244#define CHECK_BUFFER(in) check_buffer(in)
245
Daniel Veillard01c13b52002-12-10 15:19:08 +0000246static
Owen Taylor3473f882001-02-23 17:55:21 +0000247void check_buffer(xmlParserInputPtr in) {
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800248 if (in->base != xmlBufContent(in->buf->buffer)) {
Owen Taylor3473f882001-02-23 17:55:21 +0000249 xmlGenericError(xmlGenericErrorContext,
250 "xmlParserInput: base mismatch problem\n");
251 }
252 if (in->cur < in->base) {
253 xmlGenericError(xmlGenericErrorContext,
254 "xmlParserInput: cur < base problem\n");
255 }
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800256 if (in->cur > in->base + xmlBufUse(in->buf->buffer)) {
Owen Taylor3473f882001-02-23 17:55:21 +0000257 xmlGenericError(xmlGenericErrorContext,
258 "xmlParserInput: cur > base + use problem\n");
259 }
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800260 xmlGenericError(xmlGenericErrorContext,"buffer %x : content %x, cur %d, use %d\n",
261 (int) in, (int) xmlBufContent(in->buf->buffer), in->cur - in->base,
262 xmlBufUse(in->buf->buffer));
Owen Taylor3473f882001-02-23 17:55:21 +0000263}
264
265#else
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800266#define CHECK_BUFFER(in)
Owen Taylor3473f882001-02-23 17:55:21 +0000267#endif
268
269
270/**
271 * xmlParserInputRead:
272 * @in: an XML parser input
273 * @len: an indicative size for the lookahead
274 *
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800275 * This function was internal and is deprecated.
Owen Taylor3473f882001-02-23 17:55:21 +0000276 *
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800277 * Returns -1 as this is an error to use it.
Owen Taylor3473f882001-02-23 17:55:21 +0000278 */
279int
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800280xmlParserInputRead(xmlParserInputPtr in ATTRIBUTE_UNUSED, int len ATTRIBUTE_UNUSED) {
281 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +0000282}
283
284/**
285 * xmlParserInputGrow:
286 * @in: an XML parser input
287 * @len: an indicative size for the lookahead
288 *
289 * This function increase the input for the parser. It tries to
290 * preserve pointers to the input buffer, and keep already read data
291 *
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800292 * Returns the amount of char read, or -1 in case of error, 0 indicate the
Owen Taylor3473f882001-02-23 17:55:21 +0000293 * end of this entity
294 */
295int
296xmlParserInputGrow(xmlParserInputPtr in, int len) {
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800297 size_t ret;
298 size_t indx;
299 const xmlChar *content;
Owen Taylor3473f882001-02-23 17:55:21 +0000300
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800301 if ((in == NULL) || (len < 0)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +0000302#ifdef DEBUG_INPUT
303 xmlGenericError(xmlGenericErrorContext, "Grow\n");
304#endif
305 if (in->buf == NULL) return(-1);
306 if (in->base == NULL) return(-1);
307 if (in->cur == NULL) return(-1);
308 if (in->buf->buffer == NULL) return(-1);
309
310 CHECK_BUFFER(in);
311
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000312 indx = in->cur - in->base;
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800313 if (xmlBufUse(in->buf->buffer) > (unsigned int) indx + INPUT_CHUNK) {
Owen Taylor3473f882001-02-23 17:55:21 +0000314
315 CHECK_BUFFER(in);
316
317 return(0);
318 }
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800319 if (in->buf->readcallback != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +0000320 ret = xmlParserInputBufferGrow(in->buf, len);
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800321 } else
Owen Taylor3473f882001-02-23 17:55:21 +0000322 return(0);
323
324 /*
Daniel Veillard48b2f892001-02-25 16:11:03 +0000325 * NOTE : in->base may be a "dangling" i.e. freed pointer in this
Owen Taylor3473f882001-02-23 17:55:21 +0000326 * block, but we use it really as an integer to do some
327 * pointer arithmetic. Insure will raise it as a bug but in
328 * that specific case, that's not !
329 */
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800330
331 content = xmlBufContent(in->buf->buffer);
332 if (in->base != content) {
Owen Taylor3473f882001-02-23 17:55:21 +0000333 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000334 * the buffer has been reallocated
Owen Taylor3473f882001-02-23 17:55:21 +0000335 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000336 indx = in->cur - in->base;
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800337 in->base = content;
338 in->cur = &content[indx];
Owen Taylor3473f882001-02-23 17:55:21 +0000339 }
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800340 in->end = xmlBufEnd(in->buf->buffer);
Owen Taylor3473f882001-02-23 17:55:21 +0000341
342 CHECK_BUFFER(in);
343
344 return(ret);
345}
346
347/**
348 * xmlParserInputShrink:
349 * @in: an XML parser input
350 *
351 * This function removes used input for the parser.
352 */
353void
354xmlParserInputShrink(xmlParserInputPtr in) {
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800355 size_t used;
356 size_t ret;
357 size_t indx;
358 const xmlChar *content;
Owen Taylor3473f882001-02-23 17:55:21 +0000359
360#ifdef DEBUG_INPUT
361 xmlGenericError(xmlGenericErrorContext, "Shrink\n");
362#endif
Daniel Veillard2a4fb5a2004-11-08 14:02:18 +0000363 if (in == NULL) return;
Owen Taylor3473f882001-02-23 17:55:21 +0000364 if (in->buf == NULL) return;
365 if (in->base == NULL) return;
366 if (in->cur == NULL) return;
367 if (in->buf->buffer == NULL) return;
368
369 CHECK_BUFFER(in);
370
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800371 used = in->cur - xmlBufContent(in->buf->buffer);
Owen Taylor3473f882001-02-23 17:55:21 +0000372 /*
373 * Do not shrink on large buffers whose only a tiny fraction
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000374 * was consumed
Owen Taylor3473f882001-02-23 17:55:21 +0000375 */
Owen Taylor3473f882001-02-23 17:55:21 +0000376 if (used > INPUT_CHUNK) {
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800377 ret = xmlBufShrink(in->buf->buffer, used - LINE_LEN);
Owen Taylor3473f882001-02-23 17:55:21 +0000378 if (ret > 0) {
379 in->cur -= ret;
380 in->consumed += ret;
381 }
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800382 in->end = xmlBufEnd(in->buf->buffer);
Owen Taylor3473f882001-02-23 17:55:21 +0000383 }
384
385 CHECK_BUFFER(in);
386
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800387 if (xmlBufUse(in->buf->buffer) > INPUT_CHUNK) {
Owen Taylor3473f882001-02-23 17:55:21 +0000388 return;
389 }
390 xmlParserInputBufferRead(in->buf, 2 * INPUT_CHUNK);
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800391 content = xmlBufContent(in->buf->buffer);
392 if (in->base != content) {
Owen Taylor3473f882001-02-23 17:55:21 +0000393 /*
Daniel Veillard5e5c2d02002-02-09 18:03:01 +0000394 * the buffer has been reallocated
Owen Taylor3473f882001-02-23 17:55:21 +0000395 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000396 indx = in->cur - in->base;
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800397 in->base = content;
398 in->cur = &content[indx];
Owen Taylor3473f882001-02-23 17:55:21 +0000399 }
Daniel Veillard768eb3b2012-07-16 14:19:49 +0800400 in->end = xmlBufEnd(in->buf->buffer);
Owen Taylor3473f882001-02-23 17:55:21 +0000401
402 CHECK_BUFFER(in);
403}
404
405/************************************************************************
406 * *
407 * UTF8 character input and related functions *
408 * *
409 ************************************************************************/
410
411/**
412 * xmlNextChar:
413 * @ctxt: the XML parser context
414 *
415 * Skip to the next char input char.
416 */
417
418void
Daniel Veillard77a90a72003-03-22 00:04:05 +0000419xmlNextChar(xmlParserCtxtPtr ctxt)
420{
Daniel Veillard2a4fb5a2004-11-08 14:02:18 +0000421 if ((ctxt == NULL) || (ctxt->instate == XML_PARSER_EOF) ||
422 (ctxt->input == NULL))
Daniel Veillard77a90a72003-03-22 00:04:05 +0000423 return;
Owen Taylor3473f882001-02-23 17:55:21 +0000424
Daniel Veillardfdc91562002-07-01 21:52:03 +0000425 if (ctxt->charset == XML_CHAR_ENCODING_UTF8) {
Daniel Veillard77a90a72003-03-22 00:04:05 +0000426 if ((*ctxt->input->cur == 0) &&
427 (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0) &&
428 (ctxt->instate != XML_PARSER_COMMENT)) {
429 /*
430 * If we are at the end of the current entity and
431 * the context allows it, we pop consumed entities
432 * automatically.
433 * the auto closing should be blocked in other cases
434 */
435 xmlPopInput(ctxt);
436 } else {
437 const unsigned char *cur;
438 unsigned char c;
Owen Taylor3473f882001-02-23 17:55:21 +0000439
Daniel Veillard77a90a72003-03-22 00:04:05 +0000440 /*
441 * 2.11 End-of-Line Handling
442 * the literal two-character sequence "#xD#xA" or a standalone
443 * literal #xD, an XML processor must pass to the application
444 * the single character #xA.
445 */
446 if (*(ctxt->input->cur) == '\n') {
Aleksey Sanin8fdc32a2005-01-05 15:37:55 +0000447 ctxt->input->line++; ctxt->input->col = 1;
Daniel Veillard77a90a72003-03-22 00:04:05 +0000448 } else
449 ctxt->input->col++;
Owen Taylor3473f882001-02-23 17:55:21 +0000450
Daniel Veillard77a90a72003-03-22 00:04:05 +0000451 /*
452 * We are supposed to handle UTF8, check it's valid
453 * From rfc2044: encoding of the Unicode values on UTF-8:
454 *
455 * UCS-4 range (hex.) UTF-8 octet sequence (binary)
456 * 0000 0000-0000 007F 0xxxxxxx
457 * 0000 0080-0000 07FF 110xxxxx 10xxxxxx
458 * 0000 0800-0000 FFFF 1110xxxx 10xxxxxx 10xxxxxx
459 *
460 * Check for the 0x110000 limit too
461 */
462 cur = ctxt->input->cur;
463
464 c = *cur;
465 if (c & 0x80) {
Daniel Veillard0e0f37a2003-05-20 12:22:41 +0000466 if (c == 0xC0)
467 goto encoding_error;
Daniel Veillard33c76c82009-08-25 11:30:34 +0200468 if (cur[1] == 0) {
Daniel Veillard77a90a72003-03-22 00:04:05 +0000469 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
Daniel Veillard33c76c82009-08-25 11:30:34 +0200470 cur = ctxt->input->cur;
471 }
Daniel Veillard77a90a72003-03-22 00:04:05 +0000472 if ((cur[1] & 0xc0) != 0x80)
473 goto encoding_error;
474 if ((c & 0xe0) == 0xe0) {
475 unsigned int val;
476
Daniel Veillard33c76c82009-08-25 11:30:34 +0200477 if (cur[2] == 0) {
Daniel Veillard77a90a72003-03-22 00:04:05 +0000478 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
Daniel Veillard33c76c82009-08-25 11:30:34 +0200479 cur = ctxt->input->cur;
480 }
Daniel Veillard77a90a72003-03-22 00:04:05 +0000481 if ((cur[2] & 0xc0) != 0x80)
482 goto encoding_error;
483 if ((c & 0xf0) == 0xf0) {
Daniel Veillard33c76c82009-08-25 11:30:34 +0200484 if (cur[3] == 0) {
Daniel Veillard77a90a72003-03-22 00:04:05 +0000485 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
Daniel Veillard33c76c82009-08-25 11:30:34 +0200486 cur = ctxt->input->cur;
487 }
Daniel Veillard77a90a72003-03-22 00:04:05 +0000488 if (((c & 0xf8) != 0xf0) ||
489 ((cur[3] & 0xc0) != 0x80))
490 goto encoding_error;
491 /* 4-byte code */
492 ctxt->input->cur += 4;
493 val = (cur[0] & 0x7) << 18;
494 val |= (cur[1] & 0x3f) << 12;
495 val |= (cur[2] & 0x3f) << 6;
496 val |= cur[3] & 0x3f;
497 } else {
498 /* 3-byte code */
499 ctxt->input->cur += 3;
500 val = (cur[0] & 0xf) << 12;
501 val |= (cur[1] & 0x3f) << 6;
502 val |= cur[2] & 0x3f;
503 }
504 if (((val > 0xd7ff) && (val < 0xe000)) ||
505 ((val > 0xfffd) && (val < 0x10000)) ||
506 (val >= 0x110000)) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000507 xmlErrEncodingInt(ctxt, XML_ERR_INVALID_CHAR,
508 "Char 0x%X out of allowed range\n",
509 val);
Daniel Veillard77a90a72003-03-22 00:04:05 +0000510 }
511 } else
512 /* 2-byte code */
513 ctxt->input->cur += 2;
514 } else
515 /* 1-byte code */
516 ctxt->input->cur++;
517
518 ctxt->nbChars++;
519 if (*ctxt->input->cur == 0)
520 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
521 }
Owen Taylor3473f882001-02-23 17:55:21 +0000522 } else {
Daniel Veillard77a90a72003-03-22 00:04:05 +0000523 /*
524 * Assume it's a fixed length encoding (1) with
525 * a compatible encoding for the ASCII set, since
526 * XML constructs only use < 128 chars
527 */
528
529 if (*(ctxt->input->cur) == '\n') {
Aleksey Sanin8fdc32a2005-01-05 15:37:55 +0000530 ctxt->input->line++; ctxt->input->col = 1;
Daniel Veillard77a90a72003-03-22 00:04:05 +0000531 } else
532 ctxt->input->col++;
533 ctxt->input->cur++;
534 ctxt->nbChars++;
535 if (*ctxt->input->cur == 0)
536 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
Owen Taylor3473f882001-02-23 17:55:21 +0000537 }
Daniel Veillard561b7f82002-03-20 21:55:57 +0000538 if ((*ctxt->input->cur == '%') && (!ctxt->html))
Daniel Veillard77a90a72003-03-22 00:04:05 +0000539 xmlParserHandlePEReference(ctxt);
Daniel Veillard561b7f82002-03-20 21:55:57 +0000540 if ((*ctxt->input->cur == 0) &&
Owen Taylor3473f882001-02-23 17:55:21 +0000541 (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0))
Daniel Veillard77a90a72003-03-22 00:04:05 +0000542 xmlPopInput(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +0000543 return;
Daniel Veillardf403d292003-10-05 13:51:35 +0000544encoding_error:
Owen Taylor3473f882001-02-23 17:55:21 +0000545 /*
546 * If we detect an UTF8 error that probably mean that the
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000547 * input encoding didn't get properly advertised in the
Owen Taylor3473f882001-02-23 17:55:21 +0000548 * declaration header. Report the error and switch the encoding
549 * to ISO-Latin-1 (if you don't like this policy, just declare the
550 * encoding !)
551 */
Daniel Veillarda521d282004-11-09 14:59:59 +0000552 if ((ctxt == NULL) || (ctxt->input == NULL) ||
553 (ctxt->input->end - ctxt->input->cur < 4)) {
554 __xmlErrEncoding(ctxt, XML_ERR_INVALID_CHAR,
555 "Input is not proper UTF-8, indicate encoding !\n",
556 NULL, NULL);
557 } else {
558 char buffer[150];
559
560 snprintf(buffer, 149, "Bytes: 0x%02X 0x%02X 0x%02X 0x%02X\n",
561 ctxt->input->cur[0], ctxt->input->cur[1],
562 ctxt->input->cur[2], ctxt->input->cur[3]);
563 __xmlErrEncoding(ctxt, XML_ERR_INVALID_CHAR,
564 "Input is not proper UTF-8, indicate encoding !\n%s",
565 BAD_CAST buffer, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +0000566 }
Daniel Veillard77a90a72003-03-22 00:04:05 +0000567 ctxt->charset = XML_CHAR_ENCODING_8859_1;
Daniel Veillard561b7f82002-03-20 21:55:57 +0000568 ctxt->input->cur++;
Owen Taylor3473f882001-02-23 17:55:21 +0000569 return;
570}
571
572/**
573 * xmlCurrentChar:
574 * @ctxt: the XML parser context
575 * @len: pointer to the length of the char read
576 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000577 * The current char value, if using UTF-8 this may actually span multiple
Owen Taylor3473f882001-02-23 17:55:21 +0000578 * bytes in the input buffer. Implement the end of line normalization:
579 * 2.11 End-of-Line Handling
580 * Wherever an external parsed entity or the literal entity value
581 * of an internal parsed entity contains either the literal two-character
582 * sequence "#xD#xA" or a standalone literal #xD, an XML processor
583 * must pass to the application the single character #xA.
584 * This behavior can conveniently be produced by normalizing all
585 * line breaks to #xA on input, before parsing.)
586 *
Daniel Veillard60087f32001-10-10 09:45:09 +0000587 * Returns the current char value and its length
Owen Taylor3473f882001-02-23 17:55:21 +0000588 */
589
590int
591xmlCurrentChar(xmlParserCtxtPtr ctxt, int *len) {
Daniel Veillard2a4fb5a2004-11-08 14:02:18 +0000592 if ((ctxt == NULL) || (len == NULL) || (ctxt->input == NULL)) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +0000593 if (ctxt->instate == XML_PARSER_EOF)
594 return(0);
595
Daniel Veillard561b7f82002-03-20 21:55:57 +0000596 if ((*ctxt->input->cur >= 0x20) && (*ctxt->input->cur <= 0x7F)) {
597 *len = 1;
598 return((int) *ctxt->input->cur);
Owen Taylor3473f882001-02-23 17:55:21 +0000599 }
600 if (ctxt->charset == XML_CHAR_ENCODING_UTF8) {
601 /*
602 * We are supposed to handle UTF8, check it's valid
603 * From rfc2044: encoding of the Unicode values on UTF-8:
604 *
605 * UCS-4 range (hex.) UTF-8 octet sequence (binary)
606 * 0000 0000-0000 007F 0xxxxxxx
607 * 0000 0080-0000 07FF 110xxxxx 10xxxxxx
608 * 0000 0800-0000 FFFF 1110xxxx 10xxxxxx 10xxxxxx
609 *
610 * Check for the 0x110000 limit too
611 */
612 const unsigned char *cur = ctxt->input->cur;
613 unsigned char c;
614 unsigned int val;
615
616 c = *cur;
617 if (c & 0x80) {
Daniel Veillardb3edafd2008-01-11 08:00:57 +0000618 if (((c & 0x40) == 0) || (c == 0xC0))
Daniel Veillard0e0f37a2003-05-20 12:22:41 +0000619 goto encoding_error;
Daniel Veillard33c76c82009-08-25 11:30:34 +0200620 if (cur[1] == 0) {
Daniel Veillard561b7f82002-03-20 21:55:57 +0000621 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
Daniel Veillard33c76c82009-08-25 11:30:34 +0200622 cur = ctxt->input->cur;
623 }
Daniel Veillard561b7f82002-03-20 21:55:57 +0000624 if ((cur[1] & 0xc0) != 0x80)
Owen Taylor3473f882001-02-23 17:55:21 +0000625 goto encoding_error;
626 if ((c & 0xe0) == 0xe0) {
Daniel Veillard33c76c82009-08-25 11:30:34 +0200627 if (cur[2] == 0) {
Daniel Veillard561b7f82002-03-20 21:55:57 +0000628 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
Daniel Veillard33c76c82009-08-25 11:30:34 +0200629 cur = ctxt->input->cur;
630 }
Daniel Veillard561b7f82002-03-20 21:55:57 +0000631 if ((cur[2] & 0xc0) != 0x80)
Owen Taylor3473f882001-02-23 17:55:21 +0000632 goto encoding_error;
633 if ((c & 0xf0) == 0xf0) {
Daniel Veillard33c76c82009-08-25 11:30:34 +0200634 if (cur[3] == 0) {
Owen Taylor3473f882001-02-23 17:55:21 +0000635 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
Daniel Veillard33c76c82009-08-25 11:30:34 +0200636 cur = ctxt->input->cur;
637 }
Daniel Veillard561b7f82002-03-20 21:55:57 +0000638 if (((c & 0xf8) != 0xf0) ||
Owen Taylor3473f882001-02-23 17:55:21 +0000639 ((cur[3] & 0xc0) != 0x80))
640 goto encoding_error;
641 /* 4-byte code */
642 *len = 4;
643 val = (cur[0] & 0x7) << 18;
644 val |= (cur[1] & 0x3f) << 12;
645 val |= (cur[2] & 0x3f) << 6;
646 val |= cur[3] & 0x3f;
Daniel Veillardb3edafd2008-01-11 08:00:57 +0000647 if (val < 0x10000)
648 goto encoding_error;
Owen Taylor3473f882001-02-23 17:55:21 +0000649 } else {
650 /* 3-byte code */
651 *len = 3;
652 val = (cur[0] & 0xf) << 12;
653 val |= (cur[1] & 0x3f) << 6;
654 val |= cur[2] & 0x3f;
Daniel Veillardb3edafd2008-01-11 08:00:57 +0000655 if (val < 0x800)
656 goto encoding_error;
Owen Taylor3473f882001-02-23 17:55:21 +0000657 }
658 } else {
659 /* 2-byte code */
660 *len = 2;
661 val = (cur[0] & 0x1f) << 6;
662 val |= cur[1] & 0x3f;
Daniel Veillardb3edafd2008-01-11 08:00:57 +0000663 if (val < 0x80)
664 goto encoding_error;
Owen Taylor3473f882001-02-23 17:55:21 +0000665 }
666 if (!IS_CHAR(val)) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000667 xmlErrEncodingInt(ctxt, XML_ERR_INVALID_CHAR,
668 "Char 0x%X out of allowed range\n", val);
Owen Taylor3473f882001-02-23 17:55:21 +0000669 }
670 return(val);
671 } else {
672 /* 1-byte code */
673 *len = 1;
Daniel Veillardb3edafd2008-01-11 08:00:57 +0000674 if (*ctxt->input->cur == 0)
675 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
676 if ((*ctxt->input->cur == 0) &&
677 (ctxt->input->end > ctxt->input->cur)) {
678 xmlErrEncodingInt(ctxt, XML_ERR_INVALID_CHAR,
679 "Char 0x0 out of allowed range\n", 0);
680 }
Owen Taylor3473f882001-02-23 17:55:21 +0000681 if (*ctxt->input->cur == 0xD) {
Daniel Veillard561b7f82002-03-20 21:55:57 +0000682 if (ctxt->input->cur[1] == 0xA) {
Owen Taylor3473f882001-02-23 17:55:21 +0000683 ctxt->nbChars++;
684 ctxt->input->cur++;
685 }
686 return(0xA);
687 }
688 return((int) *ctxt->input->cur);
689 }
690 }
691 /*
Daniel Veillard60087f32001-10-10 09:45:09 +0000692 * Assume it's a fixed length encoding (1) with
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000693 * a compatible encoding for the ASCII set, since
Owen Taylor3473f882001-02-23 17:55:21 +0000694 * XML constructs only use < 128 chars
695 */
696 *len = 1;
697 if (*ctxt->input->cur == 0xD) {
Daniel Veillard561b7f82002-03-20 21:55:57 +0000698 if (ctxt->input->cur[1] == 0xA) {
Owen Taylor3473f882001-02-23 17:55:21 +0000699 ctxt->nbChars++;
700 ctxt->input->cur++;
701 }
702 return(0xA);
703 }
704 return((int) *ctxt->input->cur);
705encoding_error:
706 /*
Daniel Veillardd2ff0392002-11-22 12:28:38 +0000707 * An encoding problem may arise from a truncated input buffer
708 * splitting a character in the middle. In that case do not raise
709 * an error but return 0 to endicate an end of stream problem
710 */
711 if (ctxt->input->end - ctxt->input->cur < 4) {
712 *len = 0;
713 return(0);
714 }
715
716 /*
Owen Taylor3473f882001-02-23 17:55:21 +0000717 * If we detect an UTF8 error that probably mean that the
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000718 * input encoding didn't get properly advertised in the
Owen Taylor3473f882001-02-23 17:55:21 +0000719 * declaration header. Report the error and switch the encoding
720 * to ISO-Latin-1 (if you don't like this policy, just declare the
721 * encoding !)
722 */
Daniel Veillarda521d282004-11-09 14:59:59 +0000723 {
724 char buffer[150];
725
Daniel Veillard2e7598c2005-09-02 12:28:34 +0000726 snprintf(&buffer[0], 149, "Bytes: 0x%02X 0x%02X 0x%02X 0x%02X\n",
Daniel Veillard561b7f82002-03-20 21:55:57 +0000727 ctxt->input->cur[0], ctxt->input->cur[1],
728 ctxt->input->cur[2], ctxt->input->cur[3]);
Daniel Veillarda521d282004-11-09 14:59:59 +0000729 __xmlErrEncoding(ctxt, XML_ERR_INVALID_CHAR,
730 "Input is not proper UTF-8, indicate encoding !\n%s",
731 BAD_CAST buffer, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +0000732 }
Owen Taylor3473f882001-02-23 17:55:21 +0000733 ctxt->charset = XML_CHAR_ENCODING_8859_1;
734 *len = 1;
735 return((int) *ctxt->input->cur);
736}
737
738/**
739 * xmlStringCurrentChar:
740 * @ctxt: the XML parser context
741 * @cur: pointer to the beginning of the char
742 * @len: pointer to the length of the char read
743 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000744 * The current char value, if using UTF-8 this may actually span multiple
Owen Taylor3473f882001-02-23 17:55:21 +0000745 * bytes in the input buffer.
746 *
Daniel Veillard60087f32001-10-10 09:45:09 +0000747 * Returns the current char value and its length
Owen Taylor3473f882001-02-23 17:55:21 +0000748 */
749
750int
Daniel Veillardd8224e02002-01-13 15:43:22 +0000751xmlStringCurrentChar(xmlParserCtxtPtr ctxt, const xmlChar * cur, int *len)
752{
Daniel Veillard2a4fb5a2004-11-08 14:02:18 +0000753 if ((len == NULL) || (cur == NULL)) return(0);
Daniel Veillard61d80a22001-04-27 17:13:01 +0000754 if ((ctxt == NULL) || (ctxt->charset == XML_CHAR_ENCODING_UTF8)) {
Daniel Veillardd8224e02002-01-13 15:43:22 +0000755 /*
756 * We are supposed to handle UTF8, check it's valid
757 * From rfc2044: encoding of the Unicode values on UTF-8:
758 *
759 * UCS-4 range (hex.) UTF-8 octet sequence (binary)
760 * 0000 0000-0000 007F 0xxxxxxx
761 * 0000 0080-0000 07FF 110xxxxx 10xxxxxx
762 * 0000 0800-0000 FFFF 1110xxxx 10xxxxxx 10xxxxxx
763 *
764 * Check for the 0x110000 limit too
765 */
766 unsigned char c;
767 unsigned int val;
Owen Taylor3473f882001-02-23 17:55:21 +0000768
Daniel Veillardd8224e02002-01-13 15:43:22 +0000769 c = *cur;
770 if (c & 0x80) {
771 if ((cur[1] & 0xc0) != 0x80)
772 goto encoding_error;
773 if ((c & 0xe0) == 0xe0) {
Owen Taylor3473f882001-02-23 17:55:21 +0000774
Daniel Veillardd8224e02002-01-13 15:43:22 +0000775 if ((cur[2] & 0xc0) != 0x80)
776 goto encoding_error;
777 if ((c & 0xf0) == 0xf0) {
778 if (((c & 0xf8) != 0xf0) || ((cur[3] & 0xc0) != 0x80))
779 goto encoding_error;
780 /* 4-byte code */
781 *len = 4;
782 val = (cur[0] & 0x7) << 18;
783 val |= (cur[1] & 0x3f) << 12;
784 val |= (cur[2] & 0x3f) << 6;
785 val |= cur[3] & 0x3f;
786 } else {
787 /* 3-byte code */
788 *len = 3;
789 val = (cur[0] & 0xf) << 12;
790 val |= (cur[1] & 0x3f) << 6;
791 val |= cur[2] & 0x3f;
792 }
793 } else {
794 /* 2-byte code */
795 *len = 2;
796 val = (cur[0] & 0x1f) << 6;
797 val |= cur[1] & 0x3f;
798 }
799 if (!IS_CHAR(val)) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000800 xmlErrEncodingInt(ctxt, XML_ERR_INVALID_CHAR,
801 "Char 0x%X out of allowed range\n", val);
Daniel Veillardd8224e02002-01-13 15:43:22 +0000802 }
803 return (val);
804 } else {
805 /* 1-byte code */
806 *len = 1;
807 return ((int) *cur);
808 }
Owen Taylor3473f882001-02-23 17:55:21 +0000809 }
810 /*
Daniel Veillard60087f32001-10-10 09:45:09 +0000811 * Assume it's a fixed length encoding (1) with
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000812 * a compatible encoding for the ASCII set, since
Owen Taylor3473f882001-02-23 17:55:21 +0000813 * XML constructs only use < 128 chars
814 */
815 *len = 1;
Daniel Veillardd8224e02002-01-13 15:43:22 +0000816 return ((int) *cur);
Owen Taylor3473f882001-02-23 17:55:21 +0000817encoding_error:
Daniel Veillardd8224e02002-01-13 15:43:22 +0000818
Owen Taylor3473f882001-02-23 17:55:21 +0000819 /*
Daniel Veillarda521d282004-11-09 14:59:59 +0000820 * An encoding problem may arise from a truncated input buffer
821 * splitting a character in the middle. In that case do not raise
822 * an error but return 0 to endicate an end of stream problem
823 */
824 if ((ctxt == NULL) || (ctxt->input == NULL) ||
825 (ctxt->input->end - ctxt->input->cur < 4)) {
826 *len = 0;
827 return(0);
828 }
829 /*
Owen Taylor3473f882001-02-23 17:55:21 +0000830 * If we detect an UTF8 error that probably mean that the
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000831 * input encoding didn't get properly advertised in the
Owen Taylor3473f882001-02-23 17:55:21 +0000832 * declaration header. Report the error and switch the encoding
833 * to ISO-Latin-1 (if you don't like this policy, just declare the
834 * encoding !)
835 */
Daniel Veillarda521d282004-11-09 14:59:59 +0000836 {
837 char buffer[150];
838
839 snprintf(buffer, 149, "Bytes: 0x%02X 0x%02X 0x%02X 0x%02X\n",
840 ctxt->input->cur[0], ctxt->input->cur[1],
841 ctxt->input->cur[2], ctxt->input->cur[3]);
842 __xmlErrEncoding(ctxt, XML_ERR_INVALID_CHAR,
843 "Input is not proper UTF-8, indicate encoding !\n%s",
844 BAD_CAST buffer, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +0000845 }
Owen Taylor3473f882001-02-23 17:55:21 +0000846 *len = 1;
Daniel Veillardd8224e02002-01-13 15:43:22 +0000847 return ((int) *cur);
Owen Taylor3473f882001-02-23 17:55:21 +0000848}
849
850/**
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000851 * xmlCopyCharMultiByte:
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000852 * @out: pointer to an array of xmlChar
Owen Taylor3473f882001-02-23 17:55:21 +0000853 * @val: the char value
854 *
855 * append the char value in the array
856 *
857 * Returns the number of xmlChar written
858 */
Owen Taylor3473f882001-02-23 17:55:21 +0000859int
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000860xmlCopyCharMultiByte(xmlChar *out, int val) {
Daniel Veillard2a4fb5a2004-11-08 14:02:18 +0000861 if (out == NULL) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +0000862 /*
863 * We are supposed to handle UTF8, check it's valid
864 * From rfc2044: encoding of the Unicode values on UTF-8:
865 *
866 * UCS-4 range (hex.) UTF-8 octet sequence (binary)
867 * 0000 0000-0000 007F 0xxxxxxx
868 * 0000 0080-0000 07FF 110xxxxx 10xxxxxx
869 * 0000 0800-0000 FFFF 1110xxxx 10xxxxxx 10xxxxxx
870 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000871 if (val >= 0x80) {
872 xmlChar *savedout = out;
873 int bits;
874 if (val < 0x800) { *out++= (val >> 6) | 0xC0; bits= 0; }
875 else if (val < 0x10000) { *out++= (val >> 12) | 0xE0; bits= 6;}
876 else if (val < 0x110000) { *out++= (val >> 18) | 0xF0; bits= 12; }
877 else {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000878 xmlErrEncodingInt(NULL, XML_ERR_INVALID_CHAR,
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000879 "Internal error, xmlCopyCharMultiByte 0x%X out of bound\n",
Daniel Veillardce9457f2003-10-05 21:33:18 +0000880 val);
Owen Taylor3473f882001-02-23 17:55:21 +0000881 return(0);
882 }
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000883 for ( ; bits >= 0; bits-= 6)
884 *out++= ((val >> bits) & 0x3F) | 0x80 ;
885 return (out - savedout);
Owen Taylor3473f882001-02-23 17:55:21 +0000886 }
887 *out = (xmlChar) val;
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000888 return 1;
889}
890
891/**
892 * xmlCopyChar:
893 * @len: Ignored, compatibility
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000894 * @out: pointer to an array of xmlChar
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000895 * @val: the char value
896 *
897 * append the char value in the array
898 *
899 * Returns the number of xmlChar written
900 */
901
902int
Daniel Veillardc86a4fa2001-03-26 16:28:29 +0000903xmlCopyChar(int len ATTRIBUTE_UNUSED, xmlChar *out, int val) {
Daniel Veillard2a4fb5a2004-11-08 14:02:18 +0000904 if (out == NULL) return(0);
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000905 /* the len parameter is ignored */
906 if (val >= 0x80) {
907 return(xmlCopyCharMultiByte (out, val));
908 }
909 *out = (xmlChar) val;
910 return 1;
Owen Taylor3473f882001-02-23 17:55:21 +0000911}
912
913/************************************************************************
914 * *
915 * Commodity functions to switch encodings *
916 * *
917 ************************************************************************/
918
Daniel Veillard7e385bd2009-08-26 11:38:49 +0200919static int
920xmlSwitchToEncodingInt(xmlParserCtxtPtr ctxt,
921 xmlCharEncodingHandlerPtr handler, int len);
922static int
923xmlSwitchInputEncodingInt(xmlParserCtxtPtr ctxt, xmlParserInputPtr input,
924 xmlCharEncodingHandlerPtr handler, int len);
Owen Taylor3473f882001-02-23 17:55:21 +0000925/**
926 * xmlSwitchEncoding:
927 * @ctxt: the parser context
928 * @enc: the encoding value (number)
929 *
930 * change the input functions when discovering the character encoding
931 * of a given entity.
932 *
933 * Returns 0 in case of success, -1 otherwise
934 */
935int
936xmlSwitchEncoding(xmlParserCtxtPtr ctxt, xmlCharEncoding enc)
937{
938 xmlCharEncodingHandlerPtr handler;
Daniel Veillard7e385bd2009-08-26 11:38:49 +0200939 int len = -1;
Owen Taylor3473f882001-02-23 17:55:21 +0000940
Daniel Veillard42595322004-11-08 10:52:06 +0000941 if (ctxt == NULL) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +0000942 switch (enc) {
943 case XML_CHAR_ENCODING_ERROR:
Daniel Veillarda840b692003-10-19 13:35:37 +0000944 __xmlErrEncoding(ctxt, XML_ERR_UNKNOWN_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000945 "encoding unknown\n", NULL, NULL);
Daniel Veillard30e76072006-03-09 14:13:55 +0000946 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +0000947 case XML_CHAR_ENCODING_NONE:
948 /* let's assume it's UTF-8 without the XML decl */
949 ctxt->charset = XML_CHAR_ENCODING_UTF8;
950 return(0);
951 case XML_CHAR_ENCODING_UTF8:
952 /* default encoding, no conversion should be needed */
953 ctxt->charset = XML_CHAR_ENCODING_UTF8;
Daniel Veillard87a764e2001-06-20 17:41:10 +0000954
955 /*
956 * Errata on XML-1.0 June 20 2001
957 * Specific handling of the Byte Order Mark for
958 * UTF-8
959 */
Daniel Veillard3e5bb8e2001-06-27 16:34:34 +0000960 if ((ctxt->input != NULL) &&
961 (ctxt->input->cur[0] == 0xEF) &&
Daniel Veillard87a764e2001-06-20 17:41:10 +0000962 (ctxt->input->cur[1] == 0xBB) &&
963 (ctxt->input->cur[2] == 0xBF)) {
964 ctxt->input->cur += 3;
965 }
Owen Taylor3473f882001-02-23 17:55:21 +0000966 return(0);
Daniel Veillard2dcb9372003-07-16 21:18:19 +0000967 case XML_CHAR_ENCODING_UTF16LE:
968 case XML_CHAR_ENCODING_UTF16BE:
969 /*The raw input characters are encoded
970 *in UTF-16. As we expect this function
971 *to be called after xmlCharEncInFunc, we expect
972 *ctxt->input->cur to contain UTF-8 encoded characters.
973 *So the raw UTF16 Byte Order Mark
974 *has also been converted into
975 *an UTF-8 BOM. Let's skip that BOM.
976 */
Daniel Veillard30e76072006-03-09 14:13:55 +0000977 if ((ctxt->input != NULL) && (ctxt->input->cur != NULL) &&
Daniel Veillard2dcb9372003-07-16 21:18:19 +0000978 (ctxt->input->cur[0] == 0xEF) &&
979 (ctxt->input->cur[1] == 0xBB) &&
980 (ctxt->input->cur[2] == 0xBF)) {
981 ctxt->input->cur += 3;
982 }
Daniel Veillard7e385bd2009-08-26 11:38:49 +0200983 len = 90;
984 break;
985 case XML_CHAR_ENCODING_UCS2:
986 len = 90;
987 break;
988 case XML_CHAR_ENCODING_UCS4BE:
989 case XML_CHAR_ENCODING_UCS4LE:
990 case XML_CHAR_ENCODING_UCS4_2143:
991 case XML_CHAR_ENCODING_UCS4_3412:
992 len = 180;
993 break;
994 case XML_CHAR_ENCODING_EBCDIC:
995 case XML_CHAR_ENCODING_8859_1:
996 case XML_CHAR_ENCODING_8859_2:
997 case XML_CHAR_ENCODING_8859_3:
998 case XML_CHAR_ENCODING_8859_4:
999 case XML_CHAR_ENCODING_8859_5:
1000 case XML_CHAR_ENCODING_8859_6:
1001 case XML_CHAR_ENCODING_8859_7:
1002 case XML_CHAR_ENCODING_8859_8:
1003 case XML_CHAR_ENCODING_8859_9:
1004 case XML_CHAR_ENCODING_ASCII:
1005 case XML_CHAR_ENCODING_2022_JP:
1006 case XML_CHAR_ENCODING_SHIFT_JIS:
1007 case XML_CHAR_ENCODING_EUC_JP:
1008 len = 45;
1009 break;
Owen Taylor3473f882001-02-23 17:55:21 +00001010 }
1011 handler = xmlGetCharEncodingHandler(enc);
1012 if (handler == NULL) {
1013 /*
1014 * Default handlers.
1015 */
1016 switch (enc) {
Owen Taylor3473f882001-02-23 17:55:21 +00001017 case XML_CHAR_ENCODING_ASCII:
1018 /* default encoding, no conversion should be needed */
1019 ctxt->charset = XML_CHAR_ENCODING_UTF8;
1020 return(0);
1021 case XML_CHAR_ENCODING_UTF16LE:
1022 break;
1023 case XML_CHAR_ENCODING_UTF16BE:
1024 break;
1025 case XML_CHAR_ENCODING_UCS4LE:
Daniel Veillarda840b692003-10-19 13:35:37 +00001026 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001027 "encoding not supported %s\n",
1028 BAD_CAST "USC4 little endian", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001029 break;
1030 case XML_CHAR_ENCODING_UCS4BE:
Daniel Veillarda840b692003-10-19 13:35:37 +00001031 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001032 "encoding not supported %s\n",
1033 BAD_CAST "USC4 big endian", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001034 break;
1035 case XML_CHAR_ENCODING_EBCDIC:
Daniel Veillarda840b692003-10-19 13:35:37 +00001036 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001037 "encoding not supported %s\n",
1038 BAD_CAST "EBCDIC", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001039 break;
1040 case XML_CHAR_ENCODING_UCS4_2143:
Daniel Veillarda840b692003-10-19 13:35:37 +00001041 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001042 "encoding not supported %s\n",
1043 BAD_CAST "UCS4 2143", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001044 break;
1045 case XML_CHAR_ENCODING_UCS4_3412:
Daniel Veillarda840b692003-10-19 13:35:37 +00001046 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001047 "encoding not supported %s\n",
1048 BAD_CAST "UCS4 3412", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001049 break;
1050 case XML_CHAR_ENCODING_UCS2:
Daniel Veillarda840b692003-10-19 13:35:37 +00001051 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001052 "encoding not supported %s\n",
1053 BAD_CAST "UCS2", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001054 break;
1055 case XML_CHAR_ENCODING_8859_1:
1056 case XML_CHAR_ENCODING_8859_2:
1057 case XML_CHAR_ENCODING_8859_3:
1058 case XML_CHAR_ENCODING_8859_4:
1059 case XML_CHAR_ENCODING_8859_5:
1060 case XML_CHAR_ENCODING_8859_6:
1061 case XML_CHAR_ENCODING_8859_7:
1062 case XML_CHAR_ENCODING_8859_8:
1063 case XML_CHAR_ENCODING_8859_9:
1064 /*
1065 * We used to keep the internal content in the
1066 * document encoding however this turns being unmaintainable
1067 * So xmlGetCharEncodingHandler() will return non-null
1068 * values for this now.
1069 */
1070 if ((ctxt->inputNr == 1) &&
1071 (ctxt->encoding == NULL) &&
Daniel Veillard30e76072006-03-09 14:13:55 +00001072 (ctxt->input != NULL) &&
Owen Taylor3473f882001-02-23 17:55:21 +00001073 (ctxt->input->encoding != NULL)) {
1074 ctxt->encoding = xmlStrdup(ctxt->input->encoding);
1075 }
1076 ctxt->charset = enc;
1077 return(0);
1078 case XML_CHAR_ENCODING_2022_JP:
Daniel Veillarda840b692003-10-19 13:35:37 +00001079 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001080 "encoding not supported %s\n",
1081 BAD_CAST "ISO-2022-JP", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001082 break;
1083 case XML_CHAR_ENCODING_SHIFT_JIS:
Daniel Veillarda840b692003-10-19 13:35:37 +00001084 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001085 "encoding not supported %s\n",
1086 BAD_CAST "Shift_JIS", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001087 break;
1088 case XML_CHAR_ENCODING_EUC_JP:
Daniel Veillarda840b692003-10-19 13:35:37 +00001089 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001090 "encoding not supported %s\n",
1091 BAD_CAST "EUC-JP", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001092 break;
Daniel Veillard30e76072006-03-09 14:13:55 +00001093 default:
1094 break;
Owen Taylor3473f882001-02-23 17:55:21 +00001095 }
1096 }
1097 if (handler == NULL)
1098 return(-1);
1099 ctxt->charset = XML_CHAR_ENCODING_UTF8;
Daniel Veillard7e385bd2009-08-26 11:38:49 +02001100 return(xmlSwitchToEncodingInt(ctxt, handler, len));
Owen Taylor3473f882001-02-23 17:55:21 +00001101}
1102
1103/**
Daniel Veillarda840b692003-10-19 13:35:37 +00001104 * xmlSwitchInputEncoding:
1105 * @ctxt: the parser context
1106 * @input: the input stream
1107 * @handler: the encoding handler
Daniel Veillard7e385bd2009-08-26 11:38:49 +02001108 * @len: the number of bytes to convert for the first line or -1
Daniel Veillarda840b692003-10-19 13:35:37 +00001109 *
1110 * change the input functions when discovering the character encoding
1111 * of a given entity.
1112 *
1113 * Returns 0 in case of success, -1 otherwise
1114 */
Daniel Veillard7e385bd2009-08-26 11:38:49 +02001115static int
1116xmlSwitchInputEncodingInt(xmlParserCtxtPtr ctxt, xmlParserInputPtr input,
1117 xmlCharEncodingHandlerPtr handler, int len)
Daniel Veillarda840b692003-10-19 13:35:37 +00001118{
1119 int nbchars;
1120
1121 if (handler == NULL)
1122 return (-1);
1123 if (input == NULL)
1124 return (-1);
1125 if (input->buf != NULL) {
1126 if (input->buf->encoder != NULL) {
1127 /*
1128 * Check in case the auto encoding detetection triggered
1129 * in already.
1130 */
1131 if (input->buf->encoder == handler)
1132 return (0);
1133
1134 /*
1135 * "UTF-16" can be used for both LE and BE
1136 if ((!xmlStrncmp(BAD_CAST input->buf->encoder->name,
1137 BAD_CAST "UTF-16", 6)) &&
1138 (!xmlStrncmp(BAD_CAST handler->name,
1139 BAD_CAST "UTF-16", 6))) {
1140 return(0);
1141 }
1142 */
1143
1144 /*
1145 * Note: this is a bit dangerous, but that's what it
1146 * takes to use nearly compatible signature for different
1147 * encodings.
1148 */
1149 xmlCharEncCloseFunc(input->buf->encoder);
1150 input->buf->encoder = handler;
1151 return (0);
1152 }
1153 input->buf->encoder = handler;
1154
1155 /*
1156 * Is there already some content down the pipe to convert ?
1157 */
Daniel Veillard768eb3b2012-07-16 14:19:49 +08001158 if (xmlBufIsEmpty(input->buf->buffer) == 0) {
Daniel Veillarda840b692003-10-19 13:35:37 +00001159 int processed;
Daniel Veillard36711902004-02-11 13:25:26 +00001160 unsigned int use;
Daniel Veillarda840b692003-10-19 13:35:37 +00001161
1162 /*
1163 * Specific handling of the Byte Order Mark for
1164 * UTF-16
1165 */
1166 if ((handler->name != NULL) &&
William M. Brack1d8c9b22004-12-25 10:14:57 +00001167 (!strcmp(handler->name, "UTF-16LE") ||
1168 !strcmp(handler->name, "UTF-16")) &&
Daniel Veillarda840b692003-10-19 13:35:37 +00001169 (input->cur[0] == 0xFF) && (input->cur[1] == 0xFE)) {
1170 input->cur += 2;
1171 }
1172 if ((handler->name != NULL) &&
1173 (!strcmp(handler->name, "UTF-16BE")) &&
1174 (input->cur[0] == 0xFE) && (input->cur[1] == 0xFF)) {
1175 input->cur += 2;
1176 }
1177 /*
1178 * Errata on XML-1.0 June 20 2001
1179 * Specific handling of the Byte Order Mark for
1180 * UTF-8
1181 */
1182 if ((handler->name != NULL) &&
1183 (!strcmp(handler->name, "UTF-8")) &&
1184 (input->cur[0] == 0xEF) &&
1185 (input->cur[1] == 0xBB) && (input->cur[2] == 0xBF)) {
1186 input->cur += 3;
1187 }
1188
1189 /*
1190 * Shrink the current input buffer.
1191 * Move it as the raw buffer and create a new input buffer
1192 */
1193 processed = input->cur - input->base;
Daniel Veillard768eb3b2012-07-16 14:19:49 +08001194 xmlBufShrink(input->buf->buffer, processed);
Daniel Veillarda840b692003-10-19 13:35:37 +00001195 input->buf->raw = input->buf->buffer;
Daniel Veillard768eb3b2012-07-16 14:19:49 +08001196 input->buf->buffer = xmlBufCreate();
Daniel Veillard36711902004-02-11 13:25:26 +00001197 input->buf->rawconsumed = processed;
Daniel Veillard768eb3b2012-07-16 14:19:49 +08001198 use = xmlBufUse(input->buf->raw);
Daniel Veillarda840b692003-10-19 13:35:37 +00001199
1200 if (ctxt->html) {
1201 /*
1202 * convert as much as possible of the buffer
1203 */
Daniel Veillard768eb3b2012-07-16 14:19:49 +08001204 nbchars = xmlCharEncInput(input->buf);
Daniel Veillarda840b692003-10-19 13:35:37 +00001205 } else {
1206 /*
1207 * convert just enough to get
1208 * '<?xml version="1.0" encoding="xxx"?>'
1209 * parsed with the autodetected encoding
1210 * into the parser reading buffer.
1211 */
Daniel Veillard768eb3b2012-07-16 14:19:49 +08001212 nbchars = xmlCharEncFirstLineInput(input->buf, len);
Daniel Veillarda840b692003-10-19 13:35:37 +00001213 }
1214 if (nbchars < 0) {
1215 xmlErrInternal(ctxt,
1216 "switching encoding: encoder error\n",
1217 NULL);
1218 return (-1);
1219 }
Daniel Veillard768eb3b2012-07-16 14:19:49 +08001220 input->buf->rawconsumed += use - xmlBufUse(input->buf->raw);
Daniel Veillard61551a12012-07-16 16:28:47 +08001221 xmlBufResetInput(input->buf->buffer, input);
Daniel Veillarda840b692003-10-19 13:35:37 +00001222 }
1223 return (0);
Daniel Veillardc19d5352005-11-17 13:12:16 +00001224 } else if (input->length == 0) {
1225 /*
1226 * When parsing a static memory array one must know the
1227 * size to be able to convert the buffer.
1228 */
1229 xmlErrInternal(ctxt, "switching encoding : no input\n", NULL);
1230 return (-1);
Daniel Veillarda840b692003-10-19 13:35:37 +00001231 }
1232 return (0);
1233}
1234
1235/**
Daniel Veillard7e385bd2009-08-26 11:38:49 +02001236 * xmlSwitchInputEncoding:
1237 * @ctxt: the parser context
1238 * @input: the input stream
1239 * @handler: the encoding handler
1240 *
1241 * change the input functions when discovering the character encoding
1242 * of a given entity.
1243 *
1244 * Returns 0 in case of success, -1 otherwise
1245 */
1246int
1247xmlSwitchInputEncoding(xmlParserCtxtPtr ctxt, xmlParserInputPtr input,
1248 xmlCharEncodingHandlerPtr handler) {
1249 return(xmlSwitchInputEncodingInt(ctxt, input, handler, -1));
1250}
1251
1252/**
1253 * xmlSwitchToEncodingInt:
1254 * @ctxt: the parser context
1255 * @handler: the encoding handler
1256 * @len: the lenght to convert or -1
1257 *
1258 * change the input functions when discovering the character encoding
1259 * of a given entity, and convert only @len bytes of the output, this
1260 * is needed on auto detect to allows any declared encoding later to
1261 * convert the actual content after the xmlDecl
1262 *
1263 * Returns 0 in case of success, -1 otherwise
1264 */
1265static int
1266xmlSwitchToEncodingInt(xmlParserCtxtPtr ctxt,
1267 xmlCharEncodingHandlerPtr handler, int len) {
1268 int ret = 0;
1269
1270 if (handler != NULL) {
1271 if (ctxt->input != NULL) {
1272 ret = xmlSwitchInputEncodingInt(ctxt, ctxt->input, handler, len);
1273 } else {
1274 xmlErrInternal(ctxt, "xmlSwitchToEncoding : no input\n",
1275 NULL);
1276 return(-1);
1277 }
1278 /*
1279 * The parsing is now done in UTF8 natively
1280 */
1281 ctxt->charset = XML_CHAR_ENCODING_UTF8;
1282 } else
1283 return(-1);
1284 return(ret);
1285}
1286
1287/**
Owen Taylor3473f882001-02-23 17:55:21 +00001288 * xmlSwitchToEncoding:
1289 * @ctxt: the parser context
1290 * @handler: the encoding handler
1291 *
1292 * change the input functions when discovering the character encoding
1293 * of a given entity.
1294 *
1295 * Returns 0 in case of success, -1 otherwise
1296 */
1297int
1298xmlSwitchToEncoding(xmlParserCtxtPtr ctxt, xmlCharEncodingHandlerPtr handler)
1299{
Daniel Veillard7e385bd2009-08-26 11:38:49 +02001300 return (xmlSwitchToEncodingInt(ctxt, handler, -1));
Owen Taylor3473f882001-02-23 17:55:21 +00001301}
1302
1303/************************************************************************
1304 * *
1305 * Commodity functions to handle entities processing *
1306 * *
1307 ************************************************************************/
1308
1309/**
1310 * xmlFreeInputStream:
1311 * @input: an xmlParserInputPtr
1312 *
1313 * Free up an input stream.
1314 */
1315void
1316xmlFreeInputStream(xmlParserInputPtr input) {
1317 if (input == NULL) return;
1318
1319 if (input->filename != NULL) xmlFree((char *) input->filename);
1320 if (input->directory != NULL) xmlFree((char *) input->directory);
1321 if (input->encoding != NULL) xmlFree((char *) input->encoding);
1322 if (input->version != NULL) xmlFree((char *) input->version);
1323 if ((input->free != NULL) && (input->base != NULL))
1324 input->free((xmlChar *) input->base);
1325 if (input->buf != NULL)
1326 xmlFreeParserInputBuffer(input->buf);
Owen Taylor3473f882001-02-23 17:55:21 +00001327 xmlFree(input);
1328}
1329
1330/**
1331 * xmlNewInputStream:
1332 * @ctxt: an XML parser context
1333 *
Daniel Veillard0d51cfe2012-05-15 11:18:40 +08001334 * Create a new input stream structure.
1335 *
Owen Taylor3473f882001-02-23 17:55:21 +00001336 * Returns the new input stream or NULL
1337 */
1338xmlParserInputPtr
1339xmlNewInputStream(xmlParserCtxtPtr ctxt) {
1340 xmlParserInputPtr input;
1341
1342 input = (xmlParserInputPtr) xmlMalloc(sizeof(xmlParserInput));
1343 if (input == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001344 xmlErrMemory(ctxt, "couldn't allocate a new input stream\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001345 return(NULL);
1346 }
1347 memset(input, 0, sizeof(xmlParserInput));
1348 input->line = 1;
1349 input->col = 1;
1350 input->standalone = -1;
Daniel Veillard0d51cfe2012-05-15 11:18:40 +08001351
Daniel Veillardbdbe0d42003-09-14 19:56:14 +00001352 /*
Daniel Veillard0d51cfe2012-05-15 11:18:40 +08001353 * If the context is NULL the id cannot be initialized, but that
1354 * should not happen while parsing which is the situation where
1355 * the id is actually needed.
Daniel Veillardbdbe0d42003-09-14 19:56:14 +00001356 */
Daniel Veillard0d51cfe2012-05-15 11:18:40 +08001357 if (ctxt != NULL)
1358 input->id = ctxt->input_id++;
1359
Owen Taylor3473f882001-02-23 17:55:21 +00001360 return(input);
1361}
1362
1363/**
1364 * xmlNewIOInputStream:
1365 * @ctxt: an XML parser context
1366 * @input: an I/O Input
1367 * @enc: the charset encoding if known
1368 *
1369 * Create a new input stream structure encapsulating the @input into
1370 * a stream suitable for the parser.
1371 *
1372 * Returns the new input stream or NULL
1373 */
1374xmlParserInputPtr
1375xmlNewIOInputStream(xmlParserCtxtPtr ctxt, xmlParserInputBufferPtr input,
1376 xmlCharEncoding enc) {
1377 xmlParserInputPtr inputStream;
1378
Daniel Veillard42595322004-11-08 10:52:06 +00001379 if (input == NULL) return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001380 if (xmlParserDebugEntities)
1381 xmlGenericError(xmlGenericErrorContext, "new input from I/O\n");
1382 inputStream = xmlNewInputStream(ctxt);
1383 if (inputStream == NULL) {
1384 return(NULL);
1385 }
1386 inputStream->filename = NULL;
1387 inputStream->buf = input;
Daniel Veillard61551a12012-07-16 16:28:47 +08001388 xmlBufResetInput(inputStream->buf->buffer, inputStream);
1389
Owen Taylor3473f882001-02-23 17:55:21 +00001390 if (enc != XML_CHAR_ENCODING_NONE) {
1391 xmlSwitchEncoding(ctxt, enc);
1392 }
1393
1394 return(inputStream);
1395}
1396
1397/**
1398 * xmlNewEntityInputStream:
1399 * @ctxt: an XML parser context
1400 * @entity: an Entity pointer
1401 *
1402 * Create a new input stream based on an xmlEntityPtr
1403 *
1404 * Returns the new input stream or NULL
1405 */
1406xmlParserInputPtr
1407xmlNewEntityInputStream(xmlParserCtxtPtr ctxt, xmlEntityPtr entity) {
1408 xmlParserInputPtr input;
1409
1410 if (entity == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001411 xmlErrInternal(ctxt, "xmlNewEntityInputStream entity = NULL\n",
1412 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001413 return(NULL);
1414 }
1415 if (xmlParserDebugEntities)
1416 xmlGenericError(xmlGenericErrorContext,
1417 "new input from entity: %s\n", entity->name);
1418 if (entity->content == NULL) {
1419 switch (entity->etype) {
1420 case XML_EXTERNAL_GENERAL_UNPARSED_ENTITY:
Daniel Veillardce9457f2003-10-05 21:33:18 +00001421 xmlErrInternal(ctxt, "Cannot parse entity %s\n",
1422 entity->name);
Owen Taylor3473f882001-02-23 17:55:21 +00001423 break;
1424 case XML_EXTERNAL_GENERAL_PARSED_ENTITY:
1425 case XML_EXTERNAL_PARAMETER_ENTITY:
1426 return(xmlLoadExternalEntity((char *) entity->URI,
1427 (char *) entity->ExternalID, ctxt));
1428 case XML_INTERNAL_GENERAL_ENTITY:
Daniel Veillardce9457f2003-10-05 21:33:18 +00001429 xmlErrInternal(ctxt,
1430 "Internal entity %s without content !\n",
1431 entity->name);
Owen Taylor3473f882001-02-23 17:55:21 +00001432 break;
1433 case XML_INTERNAL_PARAMETER_ENTITY:
Daniel Veillardce9457f2003-10-05 21:33:18 +00001434 xmlErrInternal(ctxt,
1435 "Internal parameter entity %s without content !\n",
1436 entity->name);
Owen Taylor3473f882001-02-23 17:55:21 +00001437 break;
1438 case XML_INTERNAL_PREDEFINED_ENTITY:
Daniel Veillardce9457f2003-10-05 21:33:18 +00001439 xmlErrInternal(ctxt,
1440 "Predefined entity %s without content !\n",
1441 entity->name);
Owen Taylor3473f882001-02-23 17:55:21 +00001442 break;
1443 }
1444 return(NULL);
1445 }
1446 input = xmlNewInputStream(ctxt);
1447 if (input == NULL) {
1448 return(NULL);
1449 }
Daniel Veillard87303e32008-04-28 18:07:29 +00001450 if (entity->URI != NULL)
1451 input->filename = (char *) xmlStrdup((xmlChar *) entity->URI);
Owen Taylor3473f882001-02-23 17:55:21 +00001452 input->base = entity->content;
1453 input->cur = entity->content;
1454 input->length = entity->length;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001455 input->end = &entity->content[input->length];
Owen Taylor3473f882001-02-23 17:55:21 +00001456 return(input);
1457}
1458
1459/**
1460 * xmlNewStringInputStream:
1461 * @ctxt: an XML parser context
1462 * @buffer: an memory buffer
1463 *
1464 * Create a new input stream based on a memory buffer.
1465 * Returns the new input stream
1466 */
1467xmlParserInputPtr
1468xmlNewStringInputStream(xmlParserCtxtPtr ctxt, const xmlChar *buffer) {
1469 xmlParserInputPtr input;
1470
1471 if (buffer == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001472 xmlErrInternal(ctxt, "xmlNewStringInputStream string = NULL\n",
1473 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001474 return(NULL);
1475 }
1476 if (xmlParserDebugEntities)
1477 xmlGenericError(xmlGenericErrorContext,
1478 "new fixed input: %.30s\n", buffer);
1479 input = xmlNewInputStream(ctxt);
1480 if (input == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001481 xmlErrMemory(ctxt, "couldn't allocate a new input stream\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001482 return(NULL);
1483 }
1484 input->base = buffer;
1485 input->cur = buffer;
1486 input->length = xmlStrlen(buffer);
Daniel Veillard48b2f892001-02-25 16:11:03 +00001487 input->end = &buffer[input->length];
Owen Taylor3473f882001-02-23 17:55:21 +00001488 return(input);
1489}
1490
1491/**
1492 * xmlNewInputFromFile:
1493 * @ctxt: an XML parser context
1494 * @filename: the filename to use as entity
1495 *
Daniel Veillarda840b692003-10-19 13:35:37 +00001496 * Create a new input stream based on a file or an URL.
Owen Taylor3473f882001-02-23 17:55:21 +00001497 *
1498 * Returns the new input stream or NULL in case of error
1499 */
1500xmlParserInputPtr
1501xmlNewInputFromFile(xmlParserCtxtPtr ctxt, const char *filename) {
1502 xmlParserInputBufferPtr buf;
1503 xmlParserInputPtr inputStream;
1504 char *directory = NULL;
1505 xmlChar *URI = NULL;
1506
1507 if (xmlParserDebugEntities)
1508 xmlGenericError(xmlGenericErrorContext,
1509 "new input from file: %s\n", filename);
1510 if (ctxt == NULL) return(NULL);
1511 buf = xmlParserInputBufferCreateFilename(filename, XML_CHAR_ENCODING_NONE);
Daniel Veillarde8039df2003-10-27 11:25:13 +00001512 if (buf == NULL) {
Daniel Veillard6e84bb22005-10-26 09:00:29 +00001513 if (filename == NULL)
1514 __xmlLoaderErr(ctxt,
1515 "failed to load external entity: NULL filename \n",
1516 NULL);
1517 else
1518 __xmlLoaderErr(ctxt, "failed to load external entity \"%s\"\n",
1519 (const char *) filename);
Owen Taylor3473f882001-02-23 17:55:21 +00001520 return(NULL);
Daniel Veillarde8039df2003-10-27 11:25:13 +00001521 }
Owen Taylor3473f882001-02-23 17:55:21 +00001522
Owen Taylor3473f882001-02-23 17:55:21 +00001523 inputStream = xmlNewInputStream(ctxt);
Daniel Veillard30e76072006-03-09 14:13:55 +00001524 if (inputStream == NULL)
Owen Taylor3473f882001-02-23 17:55:21 +00001525 return(NULL);
Daniel Veillard30e76072006-03-09 14:13:55 +00001526
Daniel Veillarda840b692003-10-19 13:35:37 +00001527 inputStream->buf = buf;
1528 inputStream = xmlCheckHTTPInput(ctxt, inputStream);
1529 if (inputStream == NULL)
1530 return(NULL);
1531
1532 if (inputStream->filename == NULL)
1533 URI = xmlStrdup((xmlChar *) filename);
1534 else
1535 URI = xmlStrdup((xmlChar *) inputStream->filename);
1536 directory = xmlParserGetDirectory((const char *) URI);
Daniel Veillard5addfeb2006-10-17 20:32:22 +00001537 if (inputStream->filename != NULL) xmlFree((char *)inputStream->filename);
Daniel Veillard8d8bf2c2003-09-17 19:36:25 +00001538 inputStream->filename = (char *) xmlCanonicPath((const xmlChar *) URI);
Daniel Veillarda66b1d12003-09-17 20:54:38 +00001539 if (URI != NULL) xmlFree((char *) URI);
Owen Taylor3473f882001-02-23 17:55:21 +00001540 inputStream->directory = directory;
Owen Taylor3473f882001-02-23 17:55:21 +00001541
Daniel Veillard61551a12012-07-16 16:28:47 +08001542 xmlBufResetInput(inputStream->buf->buffer, inputStream);
Owen Taylor3473f882001-02-23 17:55:21 +00001543 if ((ctxt->directory == NULL) && (directory != NULL))
1544 ctxt->directory = (char *) xmlStrdup((const xmlChar *) directory);
1545 return(inputStream);
1546}
1547
1548/************************************************************************
1549 * *
1550 * Commodity functions to handle parser contexts *
1551 * *
1552 ************************************************************************/
1553
1554/**
1555 * xmlInitParserCtxt:
1556 * @ctxt: an XML parser context
1557 *
1558 * Initialize a parser context
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001559 *
1560 * Returns 0 in case of success and -1 in case of error
Owen Taylor3473f882001-02-23 17:55:21 +00001561 */
1562
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001563int
Owen Taylor3473f882001-02-23 17:55:21 +00001564xmlInitParserCtxt(xmlParserCtxtPtr ctxt)
1565{
Daniel Veillarda521d282004-11-09 14:59:59 +00001566 xmlParserInputPtr input;
1567
Daniel Veillard5d96fff2001-08-31 14:55:30 +00001568 if(ctxt==NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001569 xmlErrInternal(NULL, "Got NULL parser context\n", NULL);
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001570 return(-1);
Daniel Veillard5d96fff2001-08-31 14:55:30 +00001571 }
1572
Owen Taylor3473f882001-02-23 17:55:21 +00001573 xmlDefaultSAXHandlerInit();
1574
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001575 if (ctxt->dict == NULL)
1576 ctxt->dict = xmlDictCreate();
Daniel Veillard2fdbd322003-08-18 12:15:38 +00001577 if (ctxt->dict == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001578 xmlErrMemory(NULL, "cannot initialize parser context\n");
Daniel Veillard2fdbd322003-08-18 12:15:38 +00001579 return(-1);
1580 }
Daniel Veillard52d8ade2012-07-30 10:08:45 +08001581 xmlDictSetLimit(ctxt->dict, XML_MAX_DICTIONARY_LIMIT);
1582
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001583 if (ctxt->sax == NULL)
1584 ctxt->sax = (xmlSAXHandler *) xmlMalloc(sizeof(xmlSAXHandler));
William M. Brack8b2c7f12002-11-22 05:07:29 +00001585 if (ctxt->sax == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001586 xmlErrMemory(NULL, "cannot initialize parser context\n");
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001587 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001588 }
1589 else
Daniel Veillard092643b2003-09-25 14:29:29 +00001590 xmlSAXVersion(ctxt->sax, 2);
Owen Taylor3473f882001-02-23 17:55:21 +00001591
Daniel Veillard6155d8a2003-08-19 15:01:28 +00001592 ctxt->maxatts = 0;
1593 ctxt->atts = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001594 /* Allocate the Input stack */
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001595 if (ctxt->inputTab == NULL) {
1596 ctxt->inputTab = (xmlParserInputPtr *)
1597 xmlMalloc(5 * sizeof(xmlParserInputPtr));
1598 ctxt->inputMax = 5;
1599 }
Owen Taylor3473f882001-02-23 17:55:21 +00001600 if (ctxt->inputTab == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001601 xmlErrMemory(NULL, "cannot initialize parser context\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001602 ctxt->inputNr = 0;
1603 ctxt->inputMax = 0;
1604 ctxt->input = NULL;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001605 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001606 }
Daniel Veillarda521d282004-11-09 14:59:59 +00001607 while ((input = inputPop(ctxt)) != NULL) { /* Non consuming */
1608 xmlFreeInputStream(input);
1609 }
Owen Taylor3473f882001-02-23 17:55:21 +00001610 ctxt->inputNr = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001611 ctxt->input = NULL;
1612
1613 ctxt->version = NULL;
1614 ctxt->encoding = NULL;
1615 ctxt->standalone = -1;
1616 ctxt->hasExternalSubset = 0;
1617 ctxt->hasPErefs = 0;
1618 ctxt->html = 0;
1619 ctxt->external = 0;
1620 ctxt->instate = XML_PARSER_START;
1621 ctxt->token = 0;
1622 ctxt->directory = NULL;
1623
1624 /* Allocate the Node stack */
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001625 if (ctxt->nodeTab == NULL) {
1626 ctxt->nodeTab = (xmlNodePtr *) xmlMalloc(10 * sizeof(xmlNodePtr));
1627 ctxt->nodeMax = 10;
1628 }
Owen Taylor3473f882001-02-23 17:55:21 +00001629 if (ctxt->nodeTab == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001630 xmlErrMemory(NULL, "cannot initialize parser context\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001631 ctxt->nodeNr = 0;
1632 ctxt->nodeMax = 0;
1633 ctxt->node = NULL;
1634 ctxt->inputNr = 0;
1635 ctxt->inputMax = 0;
1636 ctxt->input = NULL;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001637 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001638 }
1639 ctxt->nodeNr = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001640 ctxt->node = NULL;
1641
1642 /* Allocate the Name stack */
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001643 if (ctxt->nameTab == NULL) {
1644 ctxt->nameTab = (const xmlChar **) xmlMalloc(10 * sizeof(xmlChar *));
1645 ctxt->nameMax = 10;
1646 }
Owen Taylor3473f882001-02-23 17:55:21 +00001647 if (ctxt->nameTab == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001648 xmlErrMemory(NULL, "cannot initialize parser context\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001649 ctxt->nodeNr = 0;
1650 ctxt->nodeMax = 0;
1651 ctxt->node = NULL;
1652 ctxt->inputNr = 0;
1653 ctxt->inputMax = 0;
1654 ctxt->input = NULL;
1655 ctxt->nameNr = 0;
1656 ctxt->nameMax = 0;
1657 ctxt->name = NULL;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001658 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001659 }
1660 ctxt->nameNr = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001661 ctxt->name = NULL;
1662
1663 /* Allocate the space stack */
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001664 if (ctxt->spaceTab == NULL) {
1665 ctxt->spaceTab = (int *) xmlMalloc(10 * sizeof(int));
1666 ctxt->spaceMax = 10;
1667 }
Owen Taylor3473f882001-02-23 17:55:21 +00001668 if (ctxt->spaceTab == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001669 xmlErrMemory(NULL, "cannot initialize parser context\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001670 ctxt->nodeNr = 0;
1671 ctxt->nodeMax = 0;
1672 ctxt->node = NULL;
1673 ctxt->inputNr = 0;
1674 ctxt->inputMax = 0;
1675 ctxt->input = NULL;
1676 ctxt->nameNr = 0;
1677 ctxt->nameMax = 0;
1678 ctxt->name = NULL;
1679 ctxt->spaceNr = 0;
1680 ctxt->spaceMax = 0;
1681 ctxt->space = NULL;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001682 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001683 }
1684 ctxt->spaceNr = 1;
1685 ctxt->spaceMax = 10;
1686 ctxt->spaceTab[0] = -1;
1687 ctxt->space = &ctxt->spaceTab[0];
Owen Taylor3473f882001-02-23 17:55:21 +00001688 ctxt->userData = ctxt;
1689 ctxt->myDoc = NULL;
1690 ctxt->wellFormed = 1;
Daniel Veillard3b7840c2003-09-11 23:42:01 +00001691 ctxt->nsWellFormed = 1;
Owen Taylor3473f882001-02-23 17:55:21 +00001692 ctxt->valid = 1;
1693 ctxt->loadsubset = xmlLoadExtDtdDefaultValue;
1694 ctxt->validate = xmlDoValidityCheckingDefaultValue;
1695 ctxt->pedantic = xmlPedanticParserDefaultValue;
Daniel Veillarda53c6882001-07-25 17:18:57 +00001696 ctxt->linenumbers = xmlLineNumbersDefaultValue;
Owen Taylor3473f882001-02-23 17:55:21 +00001697 ctxt->keepBlanks = xmlKeepBlanksDefaultValue;
Daniel Veillard16698282001-09-14 10:29:27 +00001698 if (ctxt->keepBlanks == 0)
Daniel Veillard11476b42003-09-26 14:51:39 +00001699 ctxt->sax->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
Daniel Veillard16698282001-09-14 10:29:27 +00001700
Daniel Veillardeff45a92004-10-29 12:10:55 +00001701 ctxt->vctxt.finishDtd = XML_CTXT_FINISH_DTD_0;
Owen Taylor3473f882001-02-23 17:55:21 +00001702 ctxt->vctxt.userData = ctxt;
Daniel Veillard4e1b26c2002-02-03 20:13:06 +00001703 ctxt->vctxt.error = xmlParserValidityError;
1704 ctxt->vctxt.warning = xmlParserValidityWarning;
Owen Taylor3473f882001-02-23 17:55:21 +00001705 if (ctxt->validate) {
Owen Taylor3473f882001-02-23 17:55:21 +00001706 if (xmlGetWarningsDefaultValue == 0)
1707 ctxt->vctxt.warning = NULL;
1708 else
1709 ctxt->vctxt.warning = xmlParserValidityWarning;
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00001710 ctxt->vctxt.nodeMax = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001711 }
1712 ctxt->replaceEntities = xmlSubstituteEntitiesDefaultValue;
1713 ctxt->record_info = 0;
1714 ctxt->nbChars = 0;
1715 ctxt->checkIndex = 0;
1716 ctxt->inSubset = 0;
1717 ctxt->errNo = XML_ERR_OK;
1718 ctxt->depth = 0;
1719 ctxt->charset = XML_CHAR_ENCODING_UTF8;
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00001720 ctxt->catalogs = NULL;
Daniel Veillard4bf899b2008-08-20 17:04:30 +00001721 ctxt->nbentities = 0;
Daniel Veillard0d51cfe2012-05-15 11:18:40 +08001722 ctxt->input_id = 1;
Owen Taylor3473f882001-02-23 17:55:21 +00001723 xmlInitNodeInfoSeq(&ctxt->node_seq);
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001724 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00001725}
1726
1727/**
1728 * xmlFreeParserCtxt:
1729 * @ctxt: an XML parser context
1730 *
1731 * Free all the memory used by a parser context. However the parsed
1732 * document in ctxt->myDoc is not freed.
1733 */
1734
1735void
1736xmlFreeParserCtxt(xmlParserCtxtPtr ctxt)
1737{
1738 xmlParserInputPtr input;
Owen Taylor3473f882001-02-23 17:55:21 +00001739
1740 if (ctxt == NULL) return;
1741
1742 while ((input = inputPop(ctxt)) != NULL) { /* Non consuming */
1743 xmlFreeInputStream(input);
1744 }
Owen Taylor3473f882001-02-23 17:55:21 +00001745 if (ctxt->spaceTab != NULL) xmlFree(ctxt->spaceTab);
Igor Zlatkovicd37c1392003-08-28 10:34:33 +00001746 if (ctxt->nameTab != NULL) xmlFree((xmlChar * *)ctxt->nameTab);
Owen Taylor3473f882001-02-23 17:55:21 +00001747 if (ctxt->nodeTab != NULL) xmlFree(ctxt->nodeTab);
Eugene Pimenov615904f2010-03-15 15:16:02 +01001748 if (ctxt->nodeInfoTab != NULL) xmlFree(ctxt->nodeInfoTab);
Owen Taylor3473f882001-02-23 17:55:21 +00001749 if (ctxt->inputTab != NULL) xmlFree(ctxt->inputTab);
1750 if (ctxt->version != NULL) xmlFree((char *) ctxt->version);
1751 if (ctxt->encoding != NULL) xmlFree((char *) ctxt->encoding);
Owen Taylor3473f882001-02-23 17:55:21 +00001752 if (ctxt->extSubURI != NULL) xmlFree((char *) ctxt->extSubURI);
1753 if (ctxt->extSubSystem != NULL) xmlFree((char *) ctxt->extSubSystem);
Daniel Veillard81273902003-09-30 00:43:48 +00001754#ifdef LIBXML_SAX1_ENABLED
Daniel Veillard092643b2003-09-25 14:29:29 +00001755 if ((ctxt->sax != NULL) &&
1756 (ctxt->sax != (xmlSAXHandlerPtr) &xmlDefaultSAXHandler))
Daniel Veillard81273902003-09-30 00:43:48 +00001757#else
1758 if (ctxt->sax != NULL)
1759#endif /* LIBXML_SAX1_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001760 xmlFree(ctxt->sax);
1761 if (ctxt->directory != NULL) xmlFree((char *) ctxt->directory);
Daniel Veillarda9142e72001-06-19 11:07:54 +00001762 if (ctxt->vctxt.nodeTab != NULL) xmlFree(ctxt->vctxt.nodeTab);
Igor Zlatkovicd37c1392003-08-28 10:34:33 +00001763 if (ctxt->atts != NULL) xmlFree((xmlChar * *)ctxt->atts);
Daniel Veillard2fdbd322003-08-18 12:15:38 +00001764 if (ctxt->dict != NULL) xmlDictFree(ctxt->dict);
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +00001765 if (ctxt->nsTab != NULL) xmlFree((char *) ctxt->nsTab);
Daniel Veillarde57ec792003-09-10 10:50:59 +00001766 if (ctxt->pushTab != NULL) xmlFree(ctxt->pushTab);
1767 if (ctxt->attallocs != NULL) xmlFree(ctxt->attallocs);
1768 if (ctxt->attsDefault != NULL)
1769 xmlHashFree(ctxt->attsDefault, (xmlHashDeallocator) xmlFree);
Daniel Veillard8e36e6a2003-09-10 10:50:59 +00001770 if (ctxt->attsSpecial != NULL)
1771 xmlHashFree(ctxt->attsSpecial, NULL);
Daniel Veillard9f7eb0b2003-09-17 10:26:25 +00001772 if (ctxt->freeElems != NULL) {
1773 xmlNodePtr cur, next;
1774
1775 cur = ctxt->freeElems;
1776 while (cur != NULL) {
1777 next = cur->next;
1778 xmlFree(cur);
1779 cur = next;
1780 }
1781 }
1782 if (ctxt->freeAttrs != NULL) {
1783 xmlAttrPtr cur, next;
1784
1785 cur = ctxt->freeAttrs;
1786 while (cur != NULL) {
1787 next = cur->next;
1788 xmlFree(cur);
1789 cur = next;
1790 }
1791 }
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00001792 /*
1793 * cleanup the error strings
1794 */
1795 if (ctxt->lastError.message != NULL)
1796 xmlFree(ctxt->lastError.message);
1797 if (ctxt->lastError.file != NULL)
1798 xmlFree(ctxt->lastError.file);
1799 if (ctxt->lastError.str1 != NULL)
1800 xmlFree(ctxt->lastError.str1);
1801 if (ctxt->lastError.str2 != NULL)
1802 xmlFree(ctxt->lastError.str2);
1803 if (ctxt->lastError.str3 != NULL)
1804 xmlFree(ctxt->lastError.str3);
Daniel Veillard0fb18932003-09-07 09:14:37 +00001805
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00001806#ifdef LIBXML_CATALOG_ENABLED
1807 if (ctxt->catalogs != NULL)
1808 xmlCatalogFreeLocal(ctxt->catalogs);
1809#endif
Owen Taylor3473f882001-02-23 17:55:21 +00001810 xmlFree(ctxt);
1811}
1812
1813/**
1814 * xmlNewParserCtxt:
1815 *
1816 * Allocate and initialize a new parser context.
1817 *
1818 * Returns the xmlParserCtxtPtr or NULL
1819 */
1820
1821xmlParserCtxtPtr
Daniel Veillard75e389d2005-07-29 22:02:24 +00001822xmlNewParserCtxt(void)
Owen Taylor3473f882001-02-23 17:55:21 +00001823{
1824 xmlParserCtxtPtr ctxt;
1825
1826 ctxt = (xmlParserCtxtPtr) xmlMalloc(sizeof(xmlParserCtxt));
1827 if (ctxt == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001828 xmlErrMemory(NULL, "cannot allocate parser context\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001829 return(NULL);
1830 }
1831 memset(ctxt, 0, sizeof(xmlParserCtxt));
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001832 if (xmlInitParserCtxt(ctxt) < 0) {
1833 xmlFreeParserCtxt(ctxt);
1834 return(NULL);
1835 }
Owen Taylor3473f882001-02-23 17:55:21 +00001836 return(ctxt);
1837}
1838
1839/************************************************************************
1840 * *
1841 * Handling of node informations *
1842 * *
1843 ************************************************************************/
1844
1845/**
1846 * xmlClearParserCtxt:
1847 * @ctxt: an XML parser context
1848 *
1849 * Clear (release owned resources) and reinitialize a parser context
1850 */
1851
1852void
1853xmlClearParserCtxt(xmlParserCtxtPtr ctxt)
1854{
Daniel Veillard5d96fff2001-08-31 14:55:30 +00001855 if (ctxt==NULL)
1856 return;
Owen Taylor3473f882001-02-23 17:55:21 +00001857 xmlClearNodeInfoSeq(&ctxt->node_seq);
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001858 xmlCtxtReset(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00001859}
1860
Daniel Veillardce682bc2004-11-05 17:22:25 +00001861
Owen Taylor3473f882001-02-23 17:55:21 +00001862/**
1863 * xmlParserFindNodeInfo:
Daniel Veillard01c13b52002-12-10 15:19:08 +00001864 * @ctx: an XML parser context
Owen Taylor3473f882001-02-23 17:55:21 +00001865 * @node: an XML node within the tree
1866 *
1867 * Find the parser node info struct for a given node
1868 *
1869 * Returns an xmlParserNodeInfo block pointer or NULL
1870 */
Daniel Veillardce682bc2004-11-05 17:22:25 +00001871const xmlParserNodeInfo *
1872xmlParserFindNodeInfo(const xmlParserCtxtPtr ctx, const xmlNodePtr node)
Owen Taylor3473f882001-02-23 17:55:21 +00001873{
Daniel Veillardce682bc2004-11-05 17:22:25 +00001874 unsigned long pos;
Owen Taylor3473f882001-02-23 17:55:21 +00001875
Daniel Veillardce682bc2004-11-05 17:22:25 +00001876 if ((ctx == NULL) || (node == NULL))
1877 return (NULL);
1878 /* Find position where node should be at */
1879 pos = xmlParserFindNodeInfoIndex(&ctx->node_seq, node);
1880 if (pos < ctx->node_seq.length
1881 && ctx->node_seq.buffer[pos].node == node)
1882 return &ctx->node_seq.buffer[pos];
1883 else
1884 return NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001885}
1886
1887
1888/**
1889 * xmlInitNodeInfoSeq:
1890 * @seq: a node info sequence pointer
1891 *
1892 * -- Initialize (set to initial state) node info sequence
1893 */
1894void
1895xmlInitNodeInfoSeq(xmlParserNodeInfoSeqPtr seq)
1896{
Daniel Veillardce682bc2004-11-05 17:22:25 +00001897 if (seq == NULL)
1898 return;
1899 seq->length = 0;
1900 seq->maximum = 0;
1901 seq->buffer = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001902}
1903
1904/**
1905 * xmlClearNodeInfoSeq:
1906 * @seq: a node info sequence pointer
1907 *
1908 * -- Clear (release memory and reinitialize) node
1909 * info sequence
1910 */
1911void
1912xmlClearNodeInfoSeq(xmlParserNodeInfoSeqPtr seq)
1913{
Daniel Veillardce682bc2004-11-05 17:22:25 +00001914 if (seq == NULL)
1915 return;
1916 if (seq->buffer != NULL)
1917 xmlFree(seq->buffer);
1918 xmlInitNodeInfoSeq(seq);
Owen Taylor3473f882001-02-23 17:55:21 +00001919}
1920
Owen Taylor3473f882001-02-23 17:55:21 +00001921/**
1922 * xmlParserFindNodeInfoIndex:
1923 * @seq: a node info sequence pointer
1924 * @node: an XML node pointer
1925 *
1926 *
1927 * xmlParserFindNodeInfoIndex : Find the index that the info record for
1928 * the given node is or should be at in a sorted sequence
1929 *
1930 * Returns a long indicating the position of the record
1931 */
Daniel Veillardce682bc2004-11-05 17:22:25 +00001932unsigned long
1933xmlParserFindNodeInfoIndex(const xmlParserNodeInfoSeqPtr seq,
1934 const xmlNodePtr node)
Owen Taylor3473f882001-02-23 17:55:21 +00001935{
Daniel Veillardce682bc2004-11-05 17:22:25 +00001936 unsigned long upper, lower, middle;
1937 int found = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001938
Daniel Veillardce682bc2004-11-05 17:22:25 +00001939 if ((seq == NULL) || (node == NULL))
Daniel Veillard6a0baa02005-12-10 11:11:12 +00001940 return ((unsigned long) -1);
Daniel Veillardce682bc2004-11-05 17:22:25 +00001941
1942 /* Do a binary search for the key */
1943 lower = 1;
1944 upper = seq->length;
1945 middle = 0;
1946 while (lower <= upper && !found) {
1947 middle = lower + (upper - lower) / 2;
1948 if (node == seq->buffer[middle - 1].node)
1949 found = 1;
1950 else if (node < seq->buffer[middle - 1].node)
1951 upper = middle - 1;
1952 else
1953 lower = middle + 1;
1954 }
1955
1956 /* Return position */
1957 if (middle == 0 || seq->buffer[middle - 1].node < node)
1958 return middle;
Owen Taylor3473f882001-02-23 17:55:21 +00001959 else
Daniel Veillardce682bc2004-11-05 17:22:25 +00001960 return middle - 1;
Owen Taylor3473f882001-02-23 17:55:21 +00001961}
1962
1963
1964/**
1965 * xmlParserAddNodeInfo:
1966 * @ctxt: an XML parser context
1967 * @info: a node info sequence pointer
1968 *
1969 * Insert node info record into the sorted sequence
1970 */
1971void
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001972xmlParserAddNodeInfo(xmlParserCtxtPtr ctxt,
Daniel Veillard963d2ae2002-01-20 22:08:18 +00001973 const xmlParserNodeInfoPtr info)
Owen Taylor3473f882001-02-23 17:55:21 +00001974{
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001975 unsigned long pos;
Owen Taylor3473f882001-02-23 17:55:21 +00001976
Daniel Veillardce682bc2004-11-05 17:22:25 +00001977 if ((ctxt == NULL) || (info == NULL)) return;
1978
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001979 /* Find pos and check to see if node is already in the sequence */
William M. Brack78637da2003-07-31 14:47:38 +00001980 pos = xmlParserFindNodeInfoIndex(&ctxt->node_seq, (xmlNodePtr)
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001981 info->node);
Daniel Veillard30e76072006-03-09 14:13:55 +00001982
1983 if ((pos < ctxt->node_seq.length) &&
1984 (ctxt->node_seq.buffer != NULL) &&
1985 (ctxt->node_seq.buffer[pos].node == info->node)) {
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001986 ctxt->node_seq.buffer[pos] = *info;
Owen Taylor3473f882001-02-23 17:55:21 +00001987 }
1988
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001989 /* Otherwise, we need to add new node to buffer */
1990 else {
1991 if (ctxt->node_seq.length + 1 > ctxt->node_seq.maximum) {
1992 xmlParserNodeInfo *tmp_buffer;
1993 unsigned int byte_size;
Owen Taylor3473f882001-02-23 17:55:21 +00001994
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001995 if (ctxt->node_seq.maximum == 0)
1996 ctxt->node_seq.maximum = 2;
1997 byte_size = (sizeof(*ctxt->node_seq.buffer) *
1998 (2 * ctxt->node_seq.maximum));
1999
2000 if (ctxt->node_seq.buffer == NULL)
Daniel Veillardc4f65ab2003-04-21 23:07:45 +00002001 tmp_buffer = (xmlParserNodeInfo *) xmlMalloc(byte_size);
Daniel Veillardc8c7be42002-01-23 17:53:44 +00002002 else
2003 tmp_buffer =
2004 (xmlParserNodeInfo *) xmlRealloc(ctxt->node_seq.buffer,
2005 byte_size);
2006
2007 if (tmp_buffer == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00002008 xmlErrMemory(ctxt, "failed to allocate buffer\n");
Daniel Veillardc8c7be42002-01-23 17:53:44 +00002009 return;
2010 }
2011 ctxt->node_seq.buffer = tmp_buffer;
2012 ctxt->node_seq.maximum *= 2;
2013 }
2014
2015 /* If position is not at end, move elements out of the way */
2016 if (pos != ctxt->node_seq.length) {
2017 unsigned long i;
2018
2019 for (i = ctxt->node_seq.length; i > pos; i--)
2020 ctxt->node_seq.buffer[i] = ctxt->node_seq.buffer[i - 1];
2021 }
2022
2023 /* Copy element and increase length */
2024 ctxt->node_seq.buffer[pos] = *info;
2025 ctxt->node_seq.length++;
Owen Taylor3473f882001-02-23 17:55:21 +00002026 }
Owen Taylor3473f882001-02-23 17:55:21 +00002027}
2028
2029/************************************************************************
2030 * *
Daniel Veillarda53c6882001-07-25 17:18:57 +00002031 * Defaults settings *
2032 * *
2033 ************************************************************************/
2034/**
2035 * xmlPedanticParserDefault:
2036 * @val: int 0 or 1
2037 *
2038 * Set and return the previous value for enabling pedantic warnings.
2039 *
2040 * Returns the last value for 0 for no substitution, 1 for substitution.
2041 */
2042
2043int
2044xmlPedanticParserDefault(int val) {
2045 int old = xmlPedanticParserDefaultValue;
2046
2047 xmlPedanticParserDefaultValue = val;
2048 return(old);
2049}
2050
2051/**
2052 * xmlLineNumbersDefault:
2053 * @val: int 0 or 1
2054 *
2055 * Set and return the previous value for enabling line numbers in elements
2056 * contents. This may break on old application and is turned off by default.
2057 *
2058 * Returns the last value for 0 for no substitution, 1 for substitution.
2059 */
2060
2061int
2062xmlLineNumbersDefault(int val) {
2063 int old = xmlLineNumbersDefaultValue;
2064
2065 xmlLineNumbersDefaultValue = val;
2066 return(old);
2067}
2068
2069/**
2070 * xmlSubstituteEntitiesDefault:
2071 * @val: int 0 or 1
2072 *
2073 * Set and return the previous value for default entity support.
2074 * Initially the parser always keep entity references instead of substituting
2075 * entity values in the output. This function has to be used to change the
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002076 * default parser behavior
2077 * SAX::substituteEntities() has to be used for changing that on a file by
Daniel Veillarda53c6882001-07-25 17:18:57 +00002078 * file basis.
2079 *
2080 * Returns the last value for 0 for no substitution, 1 for substitution.
2081 */
2082
2083int
2084xmlSubstituteEntitiesDefault(int val) {
2085 int old = xmlSubstituteEntitiesDefaultValue;
2086
2087 xmlSubstituteEntitiesDefaultValue = val;
2088 return(old);
2089}
2090
2091/**
2092 * xmlKeepBlanksDefault:
2093 * @val: int 0 or 1
2094 *
2095 * Set and return the previous value for default blanks text nodes support.
2096 * The 1.x version of the parser used an heuristic to try to detect
2097 * ignorable white spaces. As a result the SAX callback was generating
Daniel Veillard11476b42003-09-26 14:51:39 +00002098 * xmlSAX2IgnorableWhitespace() callbacks instead of characters() one, and when
Daniel Veillarda53c6882001-07-25 17:18:57 +00002099 * using the DOM output text nodes containing those blanks were not generated.
2100 * The 2.x and later version will switch to the XML standard way and
2101 * ignorableWhitespace() are only generated when running the parser in
2102 * validating mode and when the current element doesn't allow CDATA or
2103 * mixed content.
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002104 * This function is provided as a way to force the standard behavior
Daniel Veillarda53c6882001-07-25 17:18:57 +00002105 * on 1.X libs and to switch back to the old mode for compatibility when
2106 * running 1.X client code on 2.X . Upgrade of 1.X code should be done
2107 * by using xmlIsBlankNode() commodity function to detect the "empty"
2108 * nodes generated.
2109 * This value also affect autogeneration of indentation when saving code
2110 * if blanks sections are kept, indentation is not generated.
2111 *
2112 * Returns the last value for 0 for no substitution, 1 for substitution.
2113 */
2114
2115int
2116xmlKeepBlanksDefault(int val) {
2117 int old = xmlKeepBlanksDefaultValue;
2118
2119 xmlKeepBlanksDefaultValue = val;
Nick Wellnhofer2f522dc2009-08-20 12:11:17 +02002120 if (!val) xmlIndentTreeOutput = 1;
Daniel Veillarda53c6882001-07-25 17:18:57 +00002121 return(old);
2122}
2123
Daniel Veillard5d4644e2005-04-01 13:11:58 +00002124#define bottom_parserInternals
2125#include "elfgcchack.h"