blob: aad43bc0e18272d5311832194390f55f8fe86688 [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 Veillarda53c6882001-07-25 17:18:57 +000058/*
59 * Various global defaults for parsing
60 */
Owen Taylor3473f882001-02-23 17:55:21 +000061
Daniel Veillard5e2dace2001-07-18 19:30:27 +000062/**
Owen Taylor3473f882001-02-23 17:55:21 +000063 * xmlCheckVersion:
64 * @version: the include version number
65 *
66 * check the compiled lib version against the include one.
67 * This can warn or immediately kill the application
68 */
69void
70xmlCheckVersion(int version) {
71 int myversion = (int) LIBXML_VERSION;
72
Daniel Veillard6f350292001-10-14 09:56:15 +000073 xmlInitParser();
Daniel Veillard4de4d3b2001-05-07 20:50:47 +000074
Owen Taylor3473f882001-02-23 17:55:21 +000075 if ((myversion / 10000) != (version / 10000)) {
76 xmlGenericError(xmlGenericErrorContext,
77 "Fatal: program compiled against libxml %d using libxml %d\n",
78 (version / 10000), (myversion / 10000));
Daniel Veillardc69e0b12001-11-20 08:35:07 +000079 fprintf(stderr,
80 "Fatal: program compiled against libxml %d using libxml %d\n",
81 (version / 10000), (myversion / 10000));
Owen Taylor3473f882001-02-23 17:55:21 +000082 }
83 if ((myversion / 100) < (version / 100)) {
84 xmlGenericError(xmlGenericErrorContext,
85 "Warning: program compiled against libxml %d using older %d\n",
86 (version / 100), (myversion / 100));
87 }
88}
89
Daniel Veillardce9457f2003-10-05 21:33:18 +000090
91/************************************************************************
92 * *
93 * Some factorized error routines *
94 * *
95 ************************************************************************/
96
97
98/**
99 * xmlErrMemory:
100 * @ctxt: an XML parser context
101 * @extra: extra informations
102 *
103 * Handle a redefinition of attribute error
104 */
105void
106xmlErrMemory(xmlParserCtxtPtr ctxt, const char *extra)
107{
Daniel Veillard157fee02003-10-31 10:36:03 +0000108 if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
109 (ctxt->instate == XML_PARSER_EOF))
110 return;
Daniel Veillardce9457f2003-10-05 21:33:18 +0000111 if (ctxt != NULL) {
112 ctxt->errNo = XML_ERR_NO_MEMORY;
113 ctxt->instate = XML_PARSER_EOF;
114 ctxt->disableSAX = 1;
115 }
116 if (extra)
Daniel Veillard659e71e2003-10-10 14:10:40 +0000117 __xmlRaiseError(NULL, NULL, NULL, ctxt, NULL, XML_FROM_PARSER,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000118 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, extra,
119 NULL, NULL, 0, 0,
120 "Memory allocation failed : %s\n", extra);
121 else
Daniel Veillard659e71e2003-10-10 14:10:40 +0000122 __xmlRaiseError(NULL, NULL, NULL, ctxt, NULL, XML_FROM_PARSER,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000123 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, NULL,
124 NULL, NULL, 0, 0, "Memory allocation failed\n");
125}
126
127/**
Daniel Veillarda840b692003-10-19 13:35:37 +0000128 * __xmlErrEncoding:
Daniel Veillardce9457f2003-10-05 21:33:18 +0000129 * @ctxt: an XML parser context
Daniel Veillard29b17482004-08-16 00:39:03 +0000130 * @xmlerr: the error number
Daniel Veillardce9457f2003-10-05 21:33:18 +0000131 * @msg: the error message
132 * @str1: an string info
133 * @str2: an string info
134 *
135 * Handle an encoding error
136 */
Daniel Veillarda840b692003-10-19 13:35:37 +0000137void
Daniel Veillard29b17482004-08-16 00:39:03 +0000138__xmlErrEncoding(xmlParserCtxtPtr ctxt, xmlParserErrors xmlerr,
Daniel Veillarda840b692003-10-19 13:35:37 +0000139 const char *msg, const xmlChar * str1, const xmlChar * str2)
Daniel Veillardce9457f2003-10-05 21:33:18 +0000140{
Daniel Veillard157fee02003-10-31 10:36:03 +0000141 if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
142 (ctxt->instate == XML_PARSER_EOF))
143 return;
Daniel Veillardce9457f2003-10-05 21:33:18 +0000144 if (ctxt != NULL)
Daniel Veillard29b17482004-08-16 00:39:03 +0000145 ctxt->errNo = xmlerr;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000146 __xmlRaiseError(NULL, NULL, NULL,
Daniel Veillard29b17482004-08-16 00:39:03 +0000147 ctxt, NULL, XML_FROM_PARSER, xmlerr, XML_ERR_FATAL,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000148 NULL, 0, (const char *) str1, (const char *) str2,
149 NULL, 0, 0, msg, str1, str2);
150 if (ctxt != NULL) {
151 ctxt->wellFormed = 0;
152 if (ctxt->recovery == 0)
153 ctxt->disableSAX = 1;
154 }
155}
156
157/**
158 * xmlErrInternal:
159 * @ctxt: an XML parser context
160 * @msg: the error message
161 * @str: error informations
162 *
163 * Handle an internal error
164 */
165static void
166xmlErrInternal(xmlParserCtxtPtr ctxt, const char *msg, const xmlChar * str)
167{
Daniel Veillard157fee02003-10-31 10:36:03 +0000168 if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
169 (ctxt->instate == XML_PARSER_EOF))
170 return;
Daniel Veillardce9457f2003-10-05 21:33:18 +0000171 if (ctxt != NULL)
172 ctxt->errNo = XML_ERR_INTERNAL_ERROR;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000173 __xmlRaiseError(NULL, NULL, NULL,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000174 ctxt, NULL, XML_FROM_PARSER, XML_ERR_INTERNAL_ERROR,
175 XML_ERR_FATAL, NULL, 0, (const char *) str, NULL, NULL,
176 0, 0, msg, str);
177 if (ctxt != NULL) {
178 ctxt->wellFormed = 0;
179 if (ctxt->recovery == 0)
180 ctxt->disableSAX = 1;
181 }
182}
183
184/**
185 * xmlErrEncodingInt:
186 * @ctxt: an XML parser context
187 * @error: the error number
188 * @msg: the error message
189 * @val: an integer value
190 *
191 * n encoding error
192 */
193static void
194xmlErrEncodingInt(xmlParserCtxtPtr ctxt, xmlParserErrors error,
195 const char *msg, int val)
196{
Daniel Veillard157fee02003-10-31 10:36:03 +0000197 if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
198 (ctxt->instate == XML_PARSER_EOF))
199 return;
Daniel Veillardce9457f2003-10-05 21:33:18 +0000200 if (ctxt != NULL)
201 ctxt->errNo = error;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000202 __xmlRaiseError(NULL, NULL, NULL,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000203 ctxt, NULL, XML_FROM_PARSER, error, XML_ERR_FATAL,
204 NULL, 0, NULL, NULL, NULL, val, 0, msg, val);
205 if (ctxt != NULL) {
206 ctxt->wellFormed = 0;
207 if (ctxt->recovery == 0)
208 ctxt->disableSAX = 1;
209 }
210}
211
Owen Taylor3473f882001-02-23 17:55:21 +0000212/**
213 * xmlIsLetter:
214 * @c: an unicode character (int)
215 *
216 * Check whether the character is allowed by the production
217 * [84] Letter ::= BaseChar | Ideographic
218 *
219 * Returns 0 if not, non-zero otherwise
220 */
221int
222xmlIsLetter(int c) {
223 return(IS_BASECHAR(c) || IS_IDEOGRAPHIC(c));
224}
225
Owen Taylor3473f882001-02-23 17:55:21 +0000226/************************************************************************
227 * *
228 * Input handling functions for progressive parsing *
229 * *
230 ************************************************************************/
231
232/* #define DEBUG_INPUT */
233/* #define DEBUG_STACK */
234/* #define DEBUG_PUSH */
235
236
237/* we need to keep enough input to show errors in context */
238#define LINE_LEN 80
239
240#ifdef DEBUG_INPUT
241#define CHECK_BUFFER(in) check_buffer(in)
242
Daniel Veillard01c13b52002-12-10 15:19:08 +0000243static
Owen Taylor3473f882001-02-23 17:55:21 +0000244void check_buffer(xmlParserInputPtr in) {
245 if (in->base != in->buf->buffer->content) {
246 xmlGenericError(xmlGenericErrorContext,
247 "xmlParserInput: base mismatch problem\n");
248 }
249 if (in->cur < in->base) {
250 xmlGenericError(xmlGenericErrorContext,
251 "xmlParserInput: cur < base problem\n");
252 }
253 if (in->cur > in->base + in->buf->buffer->use) {
254 xmlGenericError(xmlGenericErrorContext,
255 "xmlParserInput: cur > base + use problem\n");
256 }
257 xmlGenericError(xmlGenericErrorContext,"buffer %x : content %x, cur %d, use %d, size %d\n",
258 (int) in, (int) in->buf->buffer->content, in->cur - in->base,
259 in->buf->buffer->use, in->buf->buffer->size);
260}
261
262#else
263#define CHECK_BUFFER(in)
264#endif
265
266
267/**
268 * xmlParserInputRead:
269 * @in: an XML parser input
270 * @len: an indicative size for the lookahead
271 *
272 * This function refresh the input for the parser. It doesn't try to
273 * preserve pointers to the input buffer, and discard already read data
274 *
275 * Returns the number of xmlChars read, or -1 in case of error, 0 indicate the
276 * end of this entity
277 */
278int
279xmlParserInputRead(xmlParserInputPtr in, int len) {
280 int ret;
281 int used;
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000282 int indx;
Owen Taylor3473f882001-02-23 17:55:21 +0000283
Daniel Veillardce682bc2004-11-05 17:22:25 +0000284 if (in == NULL) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +0000285#ifdef DEBUG_INPUT
286 xmlGenericError(xmlGenericErrorContext, "Read\n");
287#endif
288 if (in->buf == NULL) return(-1);
289 if (in->base == NULL) return(-1);
290 if (in->cur == NULL) return(-1);
291 if (in->buf->buffer == NULL) return(-1);
292 if (in->buf->readcallback == NULL) return(-1);
293
294 CHECK_BUFFER(in);
295
296 used = in->cur - in->buf->buffer->content;
297 ret = xmlBufferShrink(in->buf->buffer, used);
298 if (ret > 0) {
299 in->cur -= ret;
300 in->consumed += ret;
301 }
302 ret = xmlParserInputBufferRead(in->buf, len);
303 if (in->base != in->buf->buffer->content) {
304 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000305 * the buffer has been reallocated
Owen Taylor3473f882001-02-23 17:55:21 +0000306 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000307 indx = in->cur - in->base;
Owen Taylor3473f882001-02-23 17:55:21 +0000308 in->base = in->buf->buffer->content;
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000309 in->cur = &in->buf->buffer->content[indx];
Owen Taylor3473f882001-02-23 17:55:21 +0000310 }
Daniel Veillard48b2f892001-02-25 16:11:03 +0000311 in->end = &in->buf->buffer->content[in->buf->buffer->use];
Owen Taylor3473f882001-02-23 17:55:21 +0000312
313 CHECK_BUFFER(in);
314
315 return(ret);
316}
317
318/**
319 * xmlParserInputGrow:
320 * @in: an XML parser input
321 * @len: an indicative size for the lookahead
322 *
323 * This function increase the input for the parser. It tries to
324 * preserve pointers to the input buffer, and keep already read data
325 *
326 * Returns the number of xmlChars read, or -1 in case of error, 0 indicate the
327 * end of this entity
328 */
329int
330xmlParserInputGrow(xmlParserInputPtr in, int len) {
331 int ret;
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000332 int indx;
Owen Taylor3473f882001-02-23 17:55:21 +0000333
Daniel Veillardce682bc2004-11-05 17:22:25 +0000334 if (in == NULL) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +0000335#ifdef DEBUG_INPUT
336 xmlGenericError(xmlGenericErrorContext, "Grow\n");
337#endif
338 if (in->buf == NULL) return(-1);
339 if (in->base == NULL) return(-1);
340 if (in->cur == NULL) return(-1);
341 if (in->buf->buffer == NULL) return(-1);
342
343 CHECK_BUFFER(in);
344
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000345 indx = in->cur - in->base;
346 if (in->buf->buffer->use > (unsigned int) indx + INPUT_CHUNK) {
Owen Taylor3473f882001-02-23 17:55:21 +0000347
348 CHECK_BUFFER(in);
349
350 return(0);
351 }
352 if (in->buf->readcallback != NULL)
353 ret = xmlParserInputBufferGrow(in->buf, len);
354 else
355 return(0);
356
357 /*
Daniel Veillard48b2f892001-02-25 16:11:03 +0000358 * NOTE : in->base may be a "dangling" i.e. freed pointer in this
Owen Taylor3473f882001-02-23 17:55:21 +0000359 * block, but we use it really as an integer to do some
360 * pointer arithmetic. Insure will raise it as a bug but in
361 * that specific case, that's not !
362 */
363 if (in->base != in->buf->buffer->content) {
364 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000365 * the buffer has been reallocated
Owen Taylor3473f882001-02-23 17:55:21 +0000366 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000367 indx = in->cur - in->base;
Owen Taylor3473f882001-02-23 17:55:21 +0000368 in->base = in->buf->buffer->content;
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000369 in->cur = &in->buf->buffer->content[indx];
Owen Taylor3473f882001-02-23 17:55:21 +0000370 }
Daniel Veillard48b2f892001-02-25 16:11:03 +0000371 in->end = &in->buf->buffer->content[in->buf->buffer->use];
Owen Taylor3473f882001-02-23 17:55:21 +0000372
373 CHECK_BUFFER(in);
374
375 return(ret);
376}
377
378/**
379 * xmlParserInputShrink:
380 * @in: an XML parser input
381 *
382 * This function removes used input for the parser.
383 */
384void
385xmlParserInputShrink(xmlParserInputPtr in) {
386 int used;
387 int ret;
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000388 int indx;
Owen Taylor3473f882001-02-23 17:55:21 +0000389
390#ifdef DEBUG_INPUT
391 xmlGenericError(xmlGenericErrorContext, "Shrink\n");
392#endif
Daniel Veillard2a4fb5a2004-11-08 14:02:18 +0000393 if (in == NULL) return;
Owen Taylor3473f882001-02-23 17:55:21 +0000394 if (in->buf == NULL) return;
395 if (in->base == NULL) return;
396 if (in->cur == NULL) return;
397 if (in->buf->buffer == NULL) return;
398
399 CHECK_BUFFER(in);
400
401 used = in->cur - in->buf->buffer->content;
402 /*
403 * Do not shrink on large buffers whose only a tiny fraction
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000404 * was consumed
Owen Taylor3473f882001-02-23 17:55:21 +0000405 */
Owen Taylor3473f882001-02-23 17:55:21 +0000406 if (used > INPUT_CHUNK) {
407 ret = xmlBufferShrink(in->buf->buffer, used - LINE_LEN);
408 if (ret > 0) {
409 in->cur -= ret;
410 in->consumed += ret;
411 }
Daniel Veillard48b2f892001-02-25 16:11:03 +0000412 in->end = &in->buf->buffer->content[in->buf->buffer->use];
Owen Taylor3473f882001-02-23 17:55:21 +0000413 }
414
415 CHECK_BUFFER(in);
416
417 if (in->buf->buffer->use > INPUT_CHUNK) {
418 return;
419 }
420 xmlParserInputBufferRead(in->buf, 2 * INPUT_CHUNK);
421 if (in->base != in->buf->buffer->content) {
422 /*
Daniel Veillard5e5c2d02002-02-09 18:03:01 +0000423 * the buffer has been reallocated
Owen Taylor3473f882001-02-23 17:55:21 +0000424 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000425 indx = in->cur - in->base;
Owen Taylor3473f882001-02-23 17:55:21 +0000426 in->base = in->buf->buffer->content;
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000427 in->cur = &in->buf->buffer->content[indx];
Owen Taylor3473f882001-02-23 17:55:21 +0000428 }
Daniel Veillard48b2f892001-02-25 16:11:03 +0000429 in->end = &in->buf->buffer->content[in->buf->buffer->use];
Owen Taylor3473f882001-02-23 17:55:21 +0000430
431 CHECK_BUFFER(in);
432}
433
434/************************************************************************
435 * *
436 * UTF8 character input and related functions *
437 * *
438 ************************************************************************/
439
440/**
441 * xmlNextChar:
442 * @ctxt: the XML parser context
443 *
444 * Skip to the next char input char.
445 */
446
447void
Daniel Veillard77a90a72003-03-22 00:04:05 +0000448xmlNextChar(xmlParserCtxtPtr ctxt)
449{
Daniel Veillard2a4fb5a2004-11-08 14:02:18 +0000450 if ((ctxt == NULL) || (ctxt->instate == XML_PARSER_EOF) ||
451 (ctxt->input == NULL))
Daniel Veillard77a90a72003-03-22 00:04:05 +0000452 return;
Owen Taylor3473f882001-02-23 17:55:21 +0000453
Daniel Veillardfdc91562002-07-01 21:52:03 +0000454 if (ctxt->charset == XML_CHAR_ENCODING_UTF8) {
Daniel Veillard77a90a72003-03-22 00:04:05 +0000455 if ((*ctxt->input->cur == 0) &&
456 (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0) &&
457 (ctxt->instate != XML_PARSER_COMMENT)) {
458 /*
459 * If we are at the end of the current entity and
460 * the context allows it, we pop consumed entities
461 * automatically.
462 * the auto closing should be blocked in other cases
463 */
464 xmlPopInput(ctxt);
465 } else {
466 const unsigned char *cur;
467 unsigned char c;
Owen Taylor3473f882001-02-23 17:55:21 +0000468
Daniel Veillard77a90a72003-03-22 00:04:05 +0000469 /*
470 * 2.11 End-of-Line Handling
471 * the literal two-character sequence "#xD#xA" or a standalone
472 * literal #xD, an XML processor must pass to the application
473 * the single character #xA.
474 */
475 if (*(ctxt->input->cur) == '\n') {
Aleksey Sanin8fdc32a2005-01-05 15:37:55 +0000476 ctxt->input->line++; ctxt->input->col = 1;
Daniel Veillard77a90a72003-03-22 00:04:05 +0000477 } else
478 ctxt->input->col++;
Owen Taylor3473f882001-02-23 17:55:21 +0000479
Daniel Veillard77a90a72003-03-22 00:04:05 +0000480 /*
481 * We are supposed to handle UTF8, check it's valid
482 * From rfc2044: encoding of the Unicode values on UTF-8:
483 *
484 * UCS-4 range (hex.) UTF-8 octet sequence (binary)
485 * 0000 0000-0000 007F 0xxxxxxx
486 * 0000 0080-0000 07FF 110xxxxx 10xxxxxx
487 * 0000 0800-0000 FFFF 1110xxxx 10xxxxxx 10xxxxxx
488 *
489 * Check for the 0x110000 limit too
490 */
491 cur = ctxt->input->cur;
492
493 c = *cur;
494 if (c & 0x80) {
Daniel Veillard0e0f37a2003-05-20 12:22:41 +0000495 if (c == 0xC0)
496 goto encoding_error;
Daniel Veillard77a90a72003-03-22 00:04:05 +0000497 if (cur[1] == 0)
498 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
499 if ((cur[1] & 0xc0) != 0x80)
500 goto encoding_error;
501 if ((c & 0xe0) == 0xe0) {
502 unsigned int val;
503
504 if (cur[2] == 0)
505 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
506 if ((cur[2] & 0xc0) != 0x80)
507 goto encoding_error;
508 if ((c & 0xf0) == 0xf0) {
509 if (cur[3] == 0)
510 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
511 if (((c & 0xf8) != 0xf0) ||
512 ((cur[3] & 0xc0) != 0x80))
513 goto encoding_error;
514 /* 4-byte code */
515 ctxt->input->cur += 4;
516 val = (cur[0] & 0x7) << 18;
517 val |= (cur[1] & 0x3f) << 12;
518 val |= (cur[2] & 0x3f) << 6;
519 val |= cur[3] & 0x3f;
520 } else {
521 /* 3-byte code */
522 ctxt->input->cur += 3;
523 val = (cur[0] & 0xf) << 12;
524 val |= (cur[1] & 0x3f) << 6;
525 val |= cur[2] & 0x3f;
526 }
527 if (((val > 0xd7ff) && (val < 0xe000)) ||
528 ((val > 0xfffd) && (val < 0x10000)) ||
529 (val >= 0x110000)) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000530 xmlErrEncodingInt(ctxt, XML_ERR_INVALID_CHAR,
531 "Char 0x%X out of allowed range\n",
532 val);
Daniel Veillard77a90a72003-03-22 00:04:05 +0000533 }
534 } else
535 /* 2-byte code */
536 ctxt->input->cur += 2;
537 } else
538 /* 1-byte code */
539 ctxt->input->cur++;
540
541 ctxt->nbChars++;
542 if (*ctxt->input->cur == 0)
543 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
544 }
Owen Taylor3473f882001-02-23 17:55:21 +0000545 } else {
Daniel Veillard77a90a72003-03-22 00:04:05 +0000546 /*
547 * Assume it's a fixed length encoding (1) with
548 * a compatible encoding for the ASCII set, since
549 * XML constructs only use < 128 chars
550 */
551
552 if (*(ctxt->input->cur) == '\n') {
Aleksey Sanin8fdc32a2005-01-05 15:37:55 +0000553 ctxt->input->line++; ctxt->input->col = 1;
Daniel Veillard77a90a72003-03-22 00:04:05 +0000554 } else
555 ctxt->input->col++;
556 ctxt->input->cur++;
557 ctxt->nbChars++;
558 if (*ctxt->input->cur == 0)
559 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
Owen Taylor3473f882001-02-23 17:55:21 +0000560 }
Daniel Veillard561b7f82002-03-20 21:55:57 +0000561 if ((*ctxt->input->cur == '%') && (!ctxt->html))
Daniel Veillard77a90a72003-03-22 00:04:05 +0000562 xmlParserHandlePEReference(ctxt);
Daniel Veillard561b7f82002-03-20 21:55:57 +0000563 if ((*ctxt->input->cur == 0) &&
Owen Taylor3473f882001-02-23 17:55:21 +0000564 (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0))
Daniel Veillard77a90a72003-03-22 00:04:05 +0000565 xmlPopInput(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +0000566 return;
Daniel Veillardf403d292003-10-05 13:51:35 +0000567encoding_error:
Owen Taylor3473f882001-02-23 17:55:21 +0000568 /*
569 * If we detect an UTF8 error that probably mean that the
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000570 * input encoding didn't get properly advertised in the
Owen Taylor3473f882001-02-23 17:55:21 +0000571 * declaration header. Report the error and switch the encoding
572 * to ISO-Latin-1 (if you don't like this policy, just declare the
573 * encoding !)
574 */
Daniel Veillarda521d282004-11-09 14:59:59 +0000575 if ((ctxt == NULL) || (ctxt->input == NULL) ||
576 (ctxt->input->end - ctxt->input->cur < 4)) {
577 __xmlErrEncoding(ctxt, XML_ERR_INVALID_CHAR,
578 "Input is not proper UTF-8, indicate encoding !\n",
579 NULL, NULL);
580 } else {
581 char buffer[150];
582
583 snprintf(buffer, 149, "Bytes: 0x%02X 0x%02X 0x%02X 0x%02X\n",
584 ctxt->input->cur[0], ctxt->input->cur[1],
585 ctxt->input->cur[2], ctxt->input->cur[3]);
586 __xmlErrEncoding(ctxt, XML_ERR_INVALID_CHAR,
587 "Input is not proper UTF-8, indicate encoding !\n%s",
588 BAD_CAST buffer, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +0000589 }
Daniel Veillard77a90a72003-03-22 00:04:05 +0000590 ctxt->charset = XML_CHAR_ENCODING_8859_1;
Daniel Veillard561b7f82002-03-20 21:55:57 +0000591 ctxt->input->cur++;
Owen Taylor3473f882001-02-23 17:55:21 +0000592 return;
593}
594
595/**
596 * xmlCurrentChar:
597 * @ctxt: the XML parser context
598 * @len: pointer to the length of the char read
599 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000600 * The current char value, if using UTF-8 this may actually span multiple
Owen Taylor3473f882001-02-23 17:55:21 +0000601 * bytes in the input buffer. Implement the end of line normalization:
602 * 2.11 End-of-Line Handling
603 * Wherever an external parsed entity or the literal entity value
604 * of an internal parsed entity contains either the literal two-character
605 * sequence "#xD#xA" or a standalone literal #xD, an XML processor
606 * must pass to the application the single character #xA.
607 * This behavior can conveniently be produced by normalizing all
608 * line breaks to #xA on input, before parsing.)
609 *
Daniel Veillard60087f32001-10-10 09:45:09 +0000610 * Returns the current char value and its length
Owen Taylor3473f882001-02-23 17:55:21 +0000611 */
612
613int
614xmlCurrentChar(xmlParserCtxtPtr ctxt, int *len) {
Daniel Veillard2a4fb5a2004-11-08 14:02:18 +0000615 if ((ctxt == NULL) || (len == NULL) || (ctxt->input == NULL)) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +0000616 if (ctxt->instate == XML_PARSER_EOF)
617 return(0);
618
Daniel Veillard561b7f82002-03-20 21:55:57 +0000619 if ((*ctxt->input->cur >= 0x20) && (*ctxt->input->cur <= 0x7F)) {
620 *len = 1;
621 return((int) *ctxt->input->cur);
Owen Taylor3473f882001-02-23 17:55:21 +0000622 }
623 if (ctxt->charset == XML_CHAR_ENCODING_UTF8) {
624 /*
625 * We are supposed to handle UTF8, check it's valid
626 * From rfc2044: encoding of the Unicode values on UTF-8:
627 *
628 * UCS-4 range (hex.) UTF-8 octet sequence (binary)
629 * 0000 0000-0000 007F 0xxxxxxx
630 * 0000 0080-0000 07FF 110xxxxx 10xxxxxx
631 * 0000 0800-0000 FFFF 1110xxxx 10xxxxxx 10xxxxxx
632 *
633 * Check for the 0x110000 limit too
634 */
635 const unsigned char *cur = ctxt->input->cur;
636 unsigned char c;
637 unsigned int val;
638
639 c = *cur;
640 if (c & 0x80) {
Daniel Veillard0e0f37a2003-05-20 12:22:41 +0000641 if (c == 0xC0)
642 goto encoding_error;
Daniel Veillard561b7f82002-03-20 21:55:57 +0000643 if (cur[1] == 0)
644 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
645 if ((cur[1] & 0xc0) != 0x80)
Owen Taylor3473f882001-02-23 17:55:21 +0000646 goto encoding_error;
647 if ((c & 0xe0) == 0xe0) {
Daniel Veillard561b7f82002-03-20 21:55:57 +0000648
649 if (cur[2] == 0)
650 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
651 if ((cur[2] & 0xc0) != 0x80)
Owen Taylor3473f882001-02-23 17:55:21 +0000652 goto encoding_error;
653 if ((c & 0xf0) == 0xf0) {
654 if (cur[3] == 0)
655 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
Daniel Veillard561b7f82002-03-20 21:55:57 +0000656 if (((c & 0xf8) != 0xf0) ||
Owen Taylor3473f882001-02-23 17:55:21 +0000657 ((cur[3] & 0xc0) != 0x80))
658 goto encoding_error;
659 /* 4-byte code */
660 *len = 4;
661 val = (cur[0] & 0x7) << 18;
662 val |= (cur[1] & 0x3f) << 12;
663 val |= (cur[2] & 0x3f) << 6;
664 val |= cur[3] & 0x3f;
665 } else {
666 /* 3-byte code */
667 *len = 3;
668 val = (cur[0] & 0xf) << 12;
669 val |= (cur[1] & 0x3f) << 6;
670 val |= cur[2] & 0x3f;
671 }
672 } else {
673 /* 2-byte code */
674 *len = 2;
675 val = (cur[0] & 0x1f) << 6;
676 val |= cur[1] & 0x3f;
677 }
678 if (!IS_CHAR(val)) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000679 xmlErrEncodingInt(ctxt, XML_ERR_INVALID_CHAR,
680 "Char 0x%X out of allowed range\n", val);
Owen Taylor3473f882001-02-23 17:55:21 +0000681 }
682 return(val);
683 } else {
684 /* 1-byte code */
685 *len = 1;
686 if (*ctxt->input->cur == 0xD) {
Daniel Veillard561b7f82002-03-20 21:55:57 +0000687 if (ctxt->input->cur[1] == 0xA) {
Owen Taylor3473f882001-02-23 17:55:21 +0000688 ctxt->nbChars++;
689 ctxt->input->cur++;
690 }
691 return(0xA);
692 }
693 return((int) *ctxt->input->cur);
694 }
695 }
696 /*
Daniel Veillard60087f32001-10-10 09:45:09 +0000697 * Assume it's a fixed length encoding (1) with
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000698 * a compatible encoding for the ASCII set, since
Owen Taylor3473f882001-02-23 17:55:21 +0000699 * XML constructs only use < 128 chars
700 */
701 *len = 1;
702 if (*ctxt->input->cur == 0xD) {
Daniel Veillard561b7f82002-03-20 21:55:57 +0000703 if (ctxt->input->cur[1] == 0xA) {
Owen Taylor3473f882001-02-23 17:55:21 +0000704 ctxt->nbChars++;
705 ctxt->input->cur++;
706 }
707 return(0xA);
708 }
709 return((int) *ctxt->input->cur);
710encoding_error:
711 /*
Daniel Veillardd2ff0392002-11-22 12:28:38 +0000712 * An encoding problem may arise from a truncated input buffer
713 * splitting a character in the middle. In that case do not raise
714 * an error but return 0 to endicate an end of stream problem
715 */
716 if (ctxt->input->end - ctxt->input->cur < 4) {
717 *len = 0;
718 return(0);
719 }
720
721 /*
Owen Taylor3473f882001-02-23 17:55:21 +0000722 * If we detect an UTF8 error that probably mean that the
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000723 * input encoding didn't get properly advertised in the
Owen Taylor3473f882001-02-23 17:55:21 +0000724 * declaration header. Report the error and switch the encoding
725 * to ISO-Latin-1 (if you don't like this policy, just declare the
726 * encoding !)
727 */
Daniel Veillarda521d282004-11-09 14:59:59 +0000728 {
729 char buffer[150];
730
Daniel Veillard2e7598c2005-09-02 12:28:34 +0000731 snprintf(&buffer[0], 149, "Bytes: 0x%02X 0x%02X 0x%02X 0x%02X\n",
Daniel Veillard561b7f82002-03-20 21:55:57 +0000732 ctxt->input->cur[0], ctxt->input->cur[1],
733 ctxt->input->cur[2], ctxt->input->cur[3]);
Daniel Veillarda521d282004-11-09 14:59:59 +0000734 __xmlErrEncoding(ctxt, XML_ERR_INVALID_CHAR,
735 "Input is not proper UTF-8, indicate encoding !\n%s",
736 BAD_CAST buffer, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +0000737 }
Owen Taylor3473f882001-02-23 17:55:21 +0000738 ctxt->charset = XML_CHAR_ENCODING_8859_1;
739 *len = 1;
740 return((int) *ctxt->input->cur);
741}
742
743/**
744 * xmlStringCurrentChar:
745 * @ctxt: the XML parser context
746 * @cur: pointer to the beginning of the char
747 * @len: pointer to the length of the char read
748 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000749 * The current char value, if using UTF-8 this may actually span multiple
Owen Taylor3473f882001-02-23 17:55:21 +0000750 * bytes in the input buffer.
751 *
Daniel Veillard60087f32001-10-10 09:45:09 +0000752 * Returns the current char value and its length
Owen Taylor3473f882001-02-23 17:55:21 +0000753 */
754
755int
Daniel Veillardd8224e02002-01-13 15:43:22 +0000756xmlStringCurrentChar(xmlParserCtxtPtr ctxt, const xmlChar * cur, int *len)
757{
Daniel Veillard2a4fb5a2004-11-08 14:02:18 +0000758 if ((len == NULL) || (cur == NULL)) return(0);
Daniel Veillard61d80a22001-04-27 17:13:01 +0000759 if ((ctxt == NULL) || (ctxt->charset == XML_CHAR_ENCODING_UTF8)) {
Daniel Veillardd8224e02002-01-13 15:43:22 +0000760 /*
761 * We are supposed to handle UTF8, check it's valid
762 * From rfc2044: encoding of the Unicode values on UTF-8:
763 *
764 * UCS-4 range (hex.) UTF-8 octet sequence (binary)
765 * 0000 0000-0000 007F 0xxxxxxx
766 * 0000 0080-0000 07FF 110xxxxx 10xxxxxx
767 * 0000 0800-0000 FFFF 1110xxxx 10xxxxxx 10xxxxxx
768 *
769 * Check for the 0x110000 limit too
770 */
771 unsigned char c;
772 unsigned int val;
Owen Taylor3473f882001-02-23 17:55:21 +0000773
Daniel Veillardd8224e02002-01-13 15:43:22 +0000774 c = *cur;
775 if (c & 0x80) {
776 if ((cur[1] & 0xc0) != 0x80)
777 goto encoding_error;
778 if ((c & 0xe0) == 0xe0) {
Owen Taylor3473f882001-02-23 17:55:21 +0000779
Daniel Veillardd8224e02002-01-13 15:43:22 +0000780 if ((cur[2] & 0xc0) != 0x80)
781 goto encoding_error;
782 if ((c & 0xf0) == 0xf0) {
783 if (((c & 0xf8) != 0xf0) || ((cur[3] & 0xc0) != 0x80))
784 goto encoding_error;
785 /* 4-byte code */
786 *len = 4;
787 val = (cur[0] & 0x7) << 18;
788 val |= (cur[1] & 0x3f) << 12;
789 val |= (cur[2] & 0x3f) << 6;
790 val |= cur[3] & 0x3f;
791 } else {
792 /* 3-byte code */
793 *len = 3;
794 val = (cur[0] & 0xf) << 12;
795 val |= (cur[1] & 0x3f) << 6;
796 val |= cur[2] & 0x3f;
797 }
798 } else {
799 /* 2-byte code */
800 *len = 2;
801 val = (cur[0] & 0x1f) << 6;
802 val |= cur[1] & 0x3f;
803 }
804 if (!IS_CHAR(val)) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000805 xmlErrEncodingInt(ctxt, XML_ERR_INVALID_CHAR,
806 "Char 0x%X out of allowed range\n", val);
Daniel Veillardd8224e02002-01-13 15:43:22 +0000807 }
808 return (val);
809 } else {
810 /* 1-byte code */
811 *len = 1;
812 return ((int) *cur);
813 }
Owen Taylor3473f882001-02-23 17:55:21 +0000814 }
815 /*
Daniel Veillard60087f32001-10-10 09:45:09 +0000816 * Assume it's a fixed length encoding (1) with
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000817 * a compatible encoding for the ASCII set, since
Owen Taylor3473f882001-02-23 17:55:21 +0000818 * XML constructs only use < 128 chars
819 */
820 *len = 1;
Daniel Veillardd8224e02002-01-13 15:43:22 +0000821 return ((int) *cur);
Owen Taylor3473f882001-02-23 17:55:21 +0000822encoding_error:
Daniel Veillardd8224e02002-01-13 15:43:22 +0000823
Owen Taylor3473f882001-02-23 17:55:21 +0000824 /*
Daniel Veillarda521d282004-11-09 14:59:59 +0000825 * An encoding problem may arise from a truncated input buffer
826 * splitting a character in the middle. In that case do not raise
827 * an error but return 0 to endicate an end of stream problem
828 */
829 if ((ctxt == NULL) || (ctxt->input == NULL) ||
830 (ctxt->input->end - ctxt->input->cur < 4)) {
831 *len = 0;
832 return(0);
833 }
834 /*
Owen Taylor3473f882001-02-23 17:55:21 +0000835 * If we detect an UTF8 error that probably mean that the
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000836 * input encoding didn't get properly advertised in the
Owen Taylor3473f882001-02-23 17:55:21 +0000837 * declaration header. Report the error and switch the encoding
838 * to ISO-Latin-1 (if you don't like this policy, just declare the
839 * encoding !)
840 */
Daniel Veillarda521d282004-11-09 14:59:59 +0000841 {
842 char buffer[150];
843
844 snprintf(buffer, 149, "Bytes: 0x%02X 0x%02X 0x%02X 0x%02X\n",
845 ctxt->input->cur[0], ctxt->input->cur[1],
846 ctxt->input->cur[2], ctxt->input->cur[3]);
847 __xmlErrEncoding(ctxt, XML_ERR_INVALID_CHAR,
848 "Input is not proper UTF-8, indicate encoding !\n%s",
849 BAD_CAST buffer, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +0000850 }
Owen Taylor3473f882001-02-23 17:55:21 +0000851 *len = 1;
Daniel Veillardd8224e02002-01-13 15:43:22 +0000852 return ((int) *cur);
Owen Taylor3473f882001-02-23 17:55:21 +0000853}
854
855/**
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000856 * xmlCopyCharMultiByte:
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000857 * @out: pointer to an array of xmlChar
Owen Taylor3473f882001-02-23 17:55:21 +0000858 * @val: the char value
859 *
860 * append the char value in the array
861 *
862 * Returns the number of xmlChar written
863 */
Owen Taylor3473f882001-02-23 17:55:21 +0000864int
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000865xmlCopyCharMultiByte(xmlChar *out, int val) {
Daniel Veillard2a4fb5a2004-11-08 14:02:18 +0000866 if (out == NULL) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +0000867 /*
868 * We are supposed to handle UTF8, check it's valid
869 * From rfc2044: encoding of the Unicode values on UTF-8:
870 *
871 * UCS-4 range (hex.) UTF-8 octet sequence (binary)
872 * 0000 0000-0000 007F 0xxxxxxx
873 * 0000 0080-0000 07FF 110xxxxx 10xxxxxx
874 * 0000 0800-0000 FFFF 1110xxxx 10xxxxxx 10xxxxxx
875 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000876 if (val >= 0x80) {
877 xmlChar *savedout = out;
878 int bits;
879 if (val < 0x800) { *out++= (val >> 6) | 0xC0; bits= 0; }
880 else if (val < 0x10000) { *out++= (val >> 12) | 0xE0; bits= 6;}
881 else if (val < 0x110000) { *out++= (val >> 18) | 0xF0; bits= 12; }
882 else {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000883 xmlErrEncodingInt(NULL, XML_ERR_INVALID_CHAR,
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000884 "Internal error, xmlCopyCharMultiByte 0x%X out of bound\n",
Daniel Veillardce9457f2003-10-05 21:33:18 +0000885 val);
Owen Taylor3473f882001-02-23 17:55:21 +0000886 return(0);
887 }
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000888 for ( ; bits >= 0; bits-= 6)
889 *out++= ((val >> bits) & 0x3F) | 0x80 ;
890 return (out - savedout);
Owen Taylor3473f882001-02-23 17:55:21 +0000891 }
892 *out = (xmlChar) val;
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000893 return 1;
894}
895
896/**
897 * xmlCopyChar:
898 * @len: Ignored, compatibility
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000899 * @out: pointer to an array of xmlChar
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000900 * @val: the char value
901 *
902 * append the char value in the array
903 *
904 * Returns the number of xmlChar written
905 */
906
907int
Daniel Veillardc86a4fa2001-03-26 16:28:29 +0000908xmlCopyChar(int len ATTRIBUTE_UNUSED, xmlChar *out, int val) {
Daniel Veillard2a4fb5a2004-11-08 14:02:18 +0000909 if (out == NULL) return(0);
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000910 /* the len parameter is ignored */
911 if (val >= 0x80) {
912 return(xmlCopyCharMultiByte (out, val));
913 }
914 *out = (xmlChar) val;
915 return 1;
Owen Taylor3473f882001-02-23 17:55:21 +0000916}
917
918/************************************************************************
919 * *
920 * Commodity functions to switch encodings *
921 * *
922 ************************************************************************/
923
924/**
925 * xmlSwitchEncoding:
926 * @ctxt: the parser context
927 * @enc: the encoding value (number)
928 *
929 * change the input functions when discovering the character encoding
930 * of a given entity.
931 *
932 * Returns 0 in case of success, -1 otherwise
933 */
934int
935xmlSwitchEncoding(xmlParserCtxtPtr ctxt, xmlCharEncoding enc)
936{
937 xmlCharEncodingHandlerPtr handler;
938
Daniel Veillard42595322004-11-08 10:52:06 +0000939 if (ctxt == NULL) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +0000940 switch (enc) {
941 case XML_CHAR_ENCODING_ERROR:
Daniel Veillarda840b692003-10-19 13:35:37 +0000942 __xmlErrEncoding(ctxt, XML_ERR_UNKNOWN_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000943 "encoding unknown\n", NULL, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +0000944 break;
945 case XML_CHAR_ENCODING_NONE:
946 /* let's assume it's UTF-8 without the XML decl */
947 ctxt->charset = XML_CHAR_ENCODING_UTF8;
948 return(0);
949 case XML_CHAR_ENCODING_UTF8:
950 /* default encoding, no conversion should be needed */
951 ctxt->charset = XML_CHAR_ENCODING_UTF8;
Daniel Veillard87a764e2001-06-20 17:41:10 +0000952
953 /*
954 * Errata on XML-1.0 June 20 2001
955 * Specific handling of the Byte Order Mark for
956 * UTF-8
957 */
Daniel Veillard3e5bb8e2001-06-27 16:34:34 +0000958 if ((ctxt->input != NULL) &&
959 (ctxt->input->cur[0] == 0xEF) &&
Daniel Veillard87a764e2001-06-20 17:41:10 +0000960 (ctxt->input->cur[1] == 0xBB) &&
961 (ctxt->input->cur[2] == 0xBF)) {
962 ctxt->input->cur += 3;
963 }
Owen Taylor3473f882001-02-23 17:55:21 +0000964 return(0);
Daniel Veillard2dcb9372003-07-16 21:18:19 +0000965 case XML_CHAR_ENCODING_UTF16LE:
966 case XML_CHAR_ENCODING_UTF16BE:
967 /*The raw input characters are encoded
968 *in UTF-16. As we expect this function
969 *to be called after xmlCharEncInFunc, we expect
970 *ctxt->input->cur to contain UTF-8 encoded characters.
971 *So the raw UTF16 Byte Order Mark
972 *has also been converted into
973 *an UTF-8 BOM. Let's skip that BOM.
974 */
975 if ((ctxt->input != NULL) &&
976 (ctxt->input->cur[0] == 0xEF) &&
977 (ctxt->input->cur[1] == 0xBB) &&
978 (ctxt->input->cur[2] == 0xBF)) {
979 ctxt->input->cur += 3;
980 }
981 break ;
Owen Taylor3473f882001-02-23 17:55:21 +0000982 default:
983 break;
984 }
985 handler = xmlGetCharEncodingHandler(enc);
986 if (handler == NULL) {
987 /*
988 * Default handlers.
989 */
990 switch (enc) {
991 case XML_CHAR_ENCODING_ERROR:
Daniel Veillarda840b692003-10-19 13:35:37 +0000992 __xmlErrEncoding(ctxt, XML_ERR_UNKNOWN_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +0000993 "encoding unknown\n", NULL, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +0000994 break;
995 case XML_CHAR_ENCODING_NONE:
996 /* let's assume it's UTF-8 without the XML decl */
997 ctxt->charset = XML_CHAR_ENCODING_UTF8;
998 return(0);
999 case XML_CHAR_ENCODING_UTF8:
1000 case XML_CHAR_ENCODING_ASCII:
1001 /* default encoding, no conversion should be needed */
1002 ctxt->charset = XML_CHAR_ENCODING_UTF8;
1003 return(0);
1004 case XML_CHAR_ENCODING_UTF16LE:
1005 break;
1006 case XML_CHAR_ENCODING_UTF16BE:
1007 break;
1008 case XML_CHAR_ENCODING_UCS4LE:
Daniel Veillarda840b692003-10-19 13:35:37 +00001009 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001010 "encoding not supported %s\n",
1011 BAD_CAST "USC4 little endian", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001012 break;
1013 case XML_CHAR_ENCODING_UCS4BE:
Daniel Veillarda840b692003-10-19 13:35:37 +00001014 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001015 "encoding not supported %s\n",
1016 BAD_CAST "USC4 big endian", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001017 break;
1018 case XML_CHAR_ENCODING_EBCDIC:
Daniel Veillarda840b692003-10-19 13:35:37 +00001019 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001020 "encoding not supported %s\n",
1021 BAD_CAST "EBCDIC", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001022 break;
1023 case XML_CHAR_ENCODING_UCS4_2143:
Daniel Veillarda840b692003-10-19 13:35:37 +00001024 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001025 "encoding not supported %s\n",
1026 BAD_CAST "UCS4 2143", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001027 break;
1028 case XML_CHAR_ENCODING_UCS4_3412:
Daniel Veillarda840b692003-10-19 13:35:37 +00001029 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001030 "encoding not supported %s\n",
1031 BAD_CAST "UCS4 3412", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001032 break;
1033 case XML_CHAR_ENCODING_UCS2:
Daniel Veillarda840b692003-10-19 13:35:37 +00001034 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001035 "encoding not supported %s\n",
1036 BAD_CAST "UCS2", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001037 break;
1038 case XML_CHAR_ENCODING_8859_1:
1039 case XML_CHAR_ENCODING_8859_2:
1040 case XML_CHAR_ENCODING_8859_3:
1041 case XML_CHAR_ENCODING_8859_4:
1042 case XML_CHAR_ENCODING_8859_5:
1043 case XML_CHAR_ENCODING_8859_6:
1044 case XML_CHAR_ENCODING_8859_7:
1045 case XML_CHAR_ENCODING_8859_8:
1046 case XML_CHAR_ENCODING_8859_9:
1047 /*
1048 * We used to keep the internal content in the
1049 * document encoding however this turns being unmaintainable
1050 * So xmlGetCharEncodingHandler() will return non-null
1051 * values for this now.
1052 */
1053 if ((ctxt->inputNr == 1) &&
1054 (ctxt->encoding == NULL) &&
1055 (ctxt->input->encoding != NULL)) {
1056 ctxt->encoding = xmlStrdup(ctxt->input->encoding);
1057 }
1058 ctxt->charset = enc;
1059 return(0);
1060 case XML_CHAR_ENCODING_2022_JP:
Daniel Veillarda840b692003-10-19 13:35:37 +00001061 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001062 "encoding not supported %s\n",
1063 BAD_CAST "ISO-2022-JP", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001064 break;
1065 case XML_CHAR_ENCODING_SHIFT_JIS:
Daniel Veillarda840b692003-10-19 13:35:37 +00001066 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001067 "encoding not supported %s\n",
1068 BAD_CAST "Shift_JIS", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001069 break;
1070 case XML_CHAR_ENCODING_EUC_JP:
Daniel Veillarda840b692003-10-19 13:35:37 +00001071 __xmlErrEncoding(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
Daniel Veillardce9457f2003-10-05 21:33:18 +00001072 "encoding not supported %s\n",
1073 BAD_CAST "EUC-JP", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001074 break;
1075 }
1076 }
1077 if (handler == NULL)
1078 return(-1);
1079 ctxt->charset = XML_CHAR_ENCODING_UTF8;
1080 return(xmlSwitchToEncoding(ctxt, handler));
1081}
1082
1083/**
Daniel Veillarda840b692003-10-19 13:35:37 +00001084 * xmlSwitchInputEncoding:
1085 * @ctxt: the parser context
1086 * @input: the input stream
1087 * @handler: the encoding handler
1088 *
1089 * change the input functions when discovering the character encoding
1090 * of a given entity.
1091 *
1092 * Returns 0 in case of success, -1 otherwise
1093 */
1094int
1095xmlSwitchInputEncoding(xmlParserCtxtPtr ctxt, xmlParserInputPtr input,
1096 xmlCharEncodingHandlerPtr handler)
1097{
1098 int nbchars;
1099
1100 if (handler == NULL)
1101 return (-1);
1102 if (input == NULL)
1103 return (-1);
1104 if (input->buf != NULL) {
1105 if (input->buf->encoder != NULL) {
1106 /*
1107 * Check in case the auto encoding detetection triggered
1108 * in already.
1109 */
1110 if (input->buf->encoder == handler)
1111 return (0);
1112
1113 /*
1114 * "UTF-16" can be used for both LE and BE
1115 if ((!xmlStrncmp(BAD_CAST input->buf->encoder->name,
1116 BAD_CAST "UTF-16", 6)) &&
1117 (!xmlStrncmp(BAD_CAST handler->name,
1118 BAD_CAST "UTF-16", 6))) {
1119 return(0);
1120 }
1121 */
1122
1123 /*
1124 * Note: this is a bit dangerous, but that's what it
1125 * takes to use nearly compatible signature for different
1126 * encodings.
1127 */
1128 xmlCharEncCloseFunc(input->buf->encoder);
1129 input->buf->encoder = handler;
1130 return (0);
1131 }
1132 input->buf->encoder = handler;
1133
1134 /*
1135 * Is there already some content down the pipe to convert ?
1136 */
1137 if ((input->buf->buffer != NULL) && (input->buf->buffer->use > 0)) {
1138 int processed;
Daniel Veillard36711902004-02-11 13:25:26 +00001139 unsigned int use;
Daniel Veillarda840b692003-10-19 13:35:37 +00001140
1141 /*
1142 * Specific handling of the Byte Order Mark for
1143 * UTF-16
1144 */
1145 if ((handler->name != NULL) &&
William M. Brack1d8c9b22004-12-25 10:14:57 +00001146 (!strcmp(handler->name, "UTF-16LE") ||
1147 !strcmp(handler->name, "UTF-16")) &&
Daniel Veillarda840b692003-10-19 13:35:37 +00001148 (input->cur[0] == 0xFF) && (input->cur[1] == 0xFE)) {
1149 input->cur += 2;
1150 }
1151 if ((handler->name != NULL) &&
1152 (!strcmp(handler->name, "UTF-16BE")) &&
1153 (input->cur[0] == 0xFE) && (input->cur[1] == 0xFF)) {
1154 input->cur += 2;
1155 }
1156 /*
1157 * Errata on XML-1.0 June 20 2001
1158 * Specific handling of the Byte Order Mark for
1159 * UTF-8
1160 */
1161 if ((handler->name != NULL) &&
1162 (!strcmp(handler->name, "UTF-8")) &&
1163 (input->cur[0] == 0xEF) &&
1164 (input->cur[1] == 0xBB) && (input->cur[2] == 0xBF)) {
1165 input->cur += 3;
1166 }
1167
1168 /*
1169 * Shrink the current input buffer.
1170 * Move it as the raw buffer and create a new input buffer
1171 */
1172 processed = input->cur - input->base;
1173 xmlBufferShrink(input->buf->buffer, processed);
1174 input->buf->raw = input->buf->buffer;
1175 input->buf->buffer = xmlBufferCreate();
Daniel Veillard36711902004-02-11 13:25:26 +00001176 input->buf->rawconsumed = processed;
1177 use = input->buf->raw->use;
Daniel Veillarda840b692003-10-19 13:35:37 +00001178
1179 if (ctxt->html) {
1180 /*
1181 * convert as much as possible of the buffer
1182 */
1183 nbchars = xmlCharEncInFunc(input->buf->encoder,
1184 input->buf->buffer,
1185 input->buf->raw);
1186 } else {
1187 /*
1188 * convert just enough to get
1189 * '<?xml version="1.0" encoding="xxx"?>'
1190 * parsed with the autodetected encoding
1191 * into the parser reading buffer.
1192 */
1193 nbchars = xmlCharEncFirstLine(input->buf->encoder,
1194 input->buf->buffer,
1195 input->buf->raw);
1196 }
1197 if (nbchars < 0) {
1198 xmlErrInternal(ctxt,
1199 "switching encoding: encoder error\n",
1200 NULL);
1201 return (-1);
1202 }
Daniel Veillard36711902004-02-11 13:25:26 +00001203 input->buf->rawconsumed += use - input->buf->raw->use;
Daniel Veillarda840b692003-10-19 13:35:37 +00001204 input->base = input->cur = input->buf->buffer->content;
1205 input->end = &input->base[input->buf->buffer->use];
1206
1207 }
1208 return (0);
Daniel Veillardc19d5352005-11-17 13:12:16 +00001209 } else if (input->length == 0) {
1210 /*
1211 * When parsing a static memory array one must know the
1212 * size to be able to convert the buffer.
1213 */
1214 xmlErrInternal(ctxt, "switching encoding : no input\n", NULL);
1215 return (-1);
Daniel Veillarda840b692003-10-19 13:35:37 +00001216 }
1217 return (0);
1218}
1219
1220/**
Owen Taylor3473f882001-02-23 17:55:21 +00001221 * xmlSwitchToEncoding:
1222 * @ctxt: the parser context
1223 * @handler: the encoding handler
1224 *
1225 * change the input functions when discovering the character encoding
1226 * of a given entity.
1227 *
1228 * Returns 0 in case of success, -1 otherwise
1229 */
1230int
1231xmlSwitchToEncoding(xmlParserCtxtPtr ctxt, xmlCharEncodingHandlerPtr handler)
1232{
Daniel Veillard304e78c2005-07-03 16:19:41 +00001233 int ret = 0;
1234
Owen Taylor3473f882001-02-23 17:55:21 +00001235 if (handler != NULL) {
1236 if (ctxt->input != NULL) {
Daniel Veillard304e78c2005-07-03 16:19:41 +00001237 ret = xmlSwitchInputEncoding(ctxt, ctxt->input, handler);
Owen Taylor3473f882001-02-23 17:55:21 +00001238 } else {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001239 xmlErrInternal(ctxt, "xmlSwitchToEncoding : no input\n",
1240 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001241 return(-1);
1242 }
1243 /*
1244 * The parsing is now done in UTF8 natively
1245 */
1246 ctxt->charset = XML_CHAR_ENCODING_UTF8;
1247 } else
1248 return(-1);
Daniel Veillard304e78c2005-07-03 16:19:41 +00001249 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +00001250}
1251
1252/************************************************************************
1253 * *
1254 * Commodity functions to handle entities processing *
1255 * *
1256 ************************************************************************/
1257
1258/**
1259 * xmlFreeInputStream:
1260 * @input: an xmlParserInputPtr
1261 *
1262 * Free up an input stream.
1263 */
1264void
1265xmlFreeInputStream(xmlParserInputPtr input) {
1266 if (input == NULL) return;
1267
1268 if (input->filename != NULL) xmlFree((char *) input->filename);
1269 if (input->directory != NULL) xmlFree((char *) input->directory);
1270 if (input->encoding != NULL) xmlFree((char *) input->encoding);
1271 if (input->version != NULL) xmlFree((char *) input->version);
1272 if ((input->free != NULL) && (input->base != NULL))
1273 input->free((xmlChar *) input->base);
1274 if (input->buf != NULL)
1275 xmlFreeParserInputBuffer(input->buf);
Owen Taylor3473f882001-02-23 17:55:21 +00001276 xmlFree(input);
1277}
1278
1279/**
1280 * xmlNewInputStream:
1281 * @ctxt: an XML parser context
1282 *
1283 * Create a new input stream structure
1284 * Returns the new input stream or NULL
1285 */
1286xmlParserInputPtr
1287xmlNewInputStream(xmlParserCtxtPtr ctxt) {
1288 xmlParserInputPtr input;
Daniel Veillardbdbe0d42003-09-14 19:56:14 +00001289 static int id = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001290
1291 input = (xmlParserInputPtr) xmlMalloc(sizeof(xmlParserInput));
1292 if (input == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001293 xmlErrMemory(ctxt, "couldn't allocate a new input stream\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001294 return(NULL);
1295 }
1296 memset(input, 0, sizeof(xmlParserInput));
1297 input->line = 1;
1298 input->col = 1;
1299 input->standalone = -1;
Daniel Veillardbdbe0d42003-09-14 19:56:14 +00001300 /*
1301 * we don't care about thread reentrancy unicity for a single
1302 * parser context (and hence thread) is sufficient.
1303 */
1304 input->id = id++;
Owen Taylor3473f882001-02-23 17:55:21 +00001305 return(input);
1306}
1307
1308/**
1309 * xmlNewIOInputStream:
1310 * @ctxt: an XML parser context
1311 * @input: an I/O Input
1312 * @enc: the charset encoding if known
1313 *
1314 * Create a new input stream structure encapsulating the @input into
1315 * a stream suitable for the parser.
1316 *
1317 * Returns the new input stream or NULL
1318 */
1319xmlParserInputPtr
1320xmlNewIOInputStream(xmlParserCtxtPtr ctxt, xmlParserInputBufferPtr input,
1321 xmlCharEncoding enc) {
1322 xmlParserInputPtr inputStream;
1323
Daniel Veillard42595322004-11-08 10:52:06 +00001324 if (input == NULL) return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001325 if (xmlParserDebugEntities)
1326 xmlGenericError(xmlGenericErrorContext, "new input from I/O\n");
1327 inputStream = xmlNewInputStream(ctxt);
1328 if (inputStream == NULL) {
1329 return(NULL);
1330 }
1331 inputStream->filename = NULL;
1332 inputStream->buf = input;
1333 inputStream->base = inputStream->buf->buffer->content;
1334 inputStream->cur = inputStream->buf->buffer->content;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001335 inputStream->end = &inputStream->base[inputStream->buf->buffer->use];
Owen Taylor3473f882001-02-23 17:55:21 +00001336 if (enc != XML_CHAR_ENCODING_NONE) {
1337 xmlSwitchEncoding(ctxt, enc);
1338 }
1339
1340 return(inputStream);
1341}
1342
1343/**
1344 * xmlNewEntityInputStream:
1345 * @ctxt: an XML parser context
1346 * @entity: an Entity pointer
1347 *
1348 * Create a new input stream based on an xmlEntityPtr
1349 *
1350 * Returns the new input stream or NULL
1351 */
1352xmlParserInputPtr
1353xmlNewEntityInputStream(xmlParserCtxtPtr ctxt, xmlEntityPtr entity) {
1354 xmlParserInputPtr input;
1355
1356 if (entity == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001357 xmlErrInternal(ctxt, "xmlNewEntityInputStream entity = NULL\n",
1358 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001359 return(NULL);
1360 }
1361 if (xmlParserDebugEntities)
1362 xmlGenericError(xmlGenericErrorContext,
1363 "new input from entity: %s\n", entity->name);
1364 if (entity->content == NULL) {
1365 switch (entity->etype) {
1366 case XML_EXTERNAL_GENERAL_UNPARSED_ENTITY:
Daniel Veillardce9457f2003-10-05 21:33:18 +00001367 xmlErrInternal(ctxt, "Cannot parse entity %s\n",
1368 entity->name);
Owen Taylor3473f882001-02-23 17:55:21 +00001369 break;
1370 case XML_EXTERNAL_GENERAL_PARSED_ENTITY:
1371 case XML_EXTERNAL_PARAMETER_ENTITY:
1372 return(xmlLoadExternalEntity((char *) entity->URI,
1373 (char *) entity->ExternalID, ctxt));
1374 case XML_INTERNAL_GENERAL_ENTITY:
Daniel Veillardce9457f2003-10-05 21:33:18 +00001375 xmlErrInternal(ctxt,
1376 "Internal entity %s without content !\n",
1377 entity->name);
Owen Taylor3473f882001-02-23 17:55:21 +00001378 break;
1379 case XML_INTERNAL_PARAMETER_ENTITY:
Daniel Veillardce9457f2003-10-05 21:33:18 +00001380 xmlErrInternal(ctxt,
1381 "Internal parameter entity %s without content !\n",
1382 entity->name);
Owen Taylor3473f882001-02-23 17:55:21 +00001383 break;
1384 case XML_INTERNAL_PREDEFINED_ENTITY:
Daniel Veillardce9457f2003-10-05 21:33:18 +00001385 xmlErrInternal(ctxt,
1386 "Predefined entity %s without content !\n",
1387 entity->name);
Owen Taylor3473f882001-02-23 17:55:21 +00001388 break;
1389 }
1390 return(NULL);
1391 }
1392 input = xmlNewInputStream(ctxt);
1393 if (input == NULL) {
1394 return(NULL);
1395 }
1396 input->filename = (char *) entity->URI;
1397 input->base = entity->content;
1398 input->cur = entity->content;
1399 input->length = entity->length;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001400 input->end = &entity->content[input->length];
Owen Taylor3473f882001-02-23 17:55:21 +00001401 return(input);
1402}
1403
1404/**
1405 * xmlNewStringInputStream:
1406 * @ctxt: an XML parser context
1407 * @buffer: an memory buffer
1408 *
1409 * Create a new input stream based on a memory buffer.
1410 * Returns the new input stream
1411 */
1412xmlParserInputPtr
1413xmlNewStringInputStream(xmlParserCtxtPtr ctxt, const xmlChar *buffer) {
1414 xmlParserInputPtr input;
1415
1416 if (buffer == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001417 xmlErrInternal(ctxt, "xmlNewStringInputStream string = NULL\n",
1418 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001419 return(NULL);
1420 }
1421 if (xmlParserDebugEntities)
1422 xmlGenericError(xmlGenericErrorContext,
1423 "new fixed input: %.30s\n", buffer);
1424 input = xmlNewInputStream(ctxt);
1425 if (input == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001426 xmlErrMemory(ctxt, "couldn't allocate a new input stream\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001427 return(NULL);
1428 }
1429 input->base = buffer;
1430 input->cur = buffer;
1431 input->length = xmlStrlen(buffer);
Daniel Veillard48b2f892001-02-25 16:11:03 +00001432 input->end = &buffer[input->length];
Owen Taylor3473f882001-02-23 17:55:21 +00001433 return(input);
1434}
1435
1436/**
1437 * xmlNewInputFromFile:
1438 * @ctxt: an XML parser context
1439 * @filename: the filename to use as entity
1440 *
Daniel Veillarda840b692003-10-19 13:35:37 +00001441 * Create a new input stream based on a file or an URL.
Owen Taylor3473f882001-02-23 17:55:21 +00001442 *
1443 * Returns the new input stream or NULL in case of error
1444 */
1445xmlParserInputPtr
1446xmlNewInputFromFile(xmlParserCtxtPtr ctxt, const char *filename) {
1447 xmlParserInputBufferPtr buf;
1448 xmlParserInputPtr inputStream;
1449 char *directory = NULL;
1450 xmlChar *URI = NULL;
1451
1452 if (xmlParserDebugEntities)
1453 xmlGenericError(xmlGenericErrorContext,
1454 "new input from file: %s\n", filename);
1455 if (ctxt == NULL) return(NULL);
1456 buf = xmlParserInputBufferCreateFilename(filename, XML_CHAR_ENCODING_NONE);
Daniel Veillarde8039df2003-10-27 11:25:13 +00001457 if (buf == NULL) {
Daniel Veillard6e84bb22005-10-26 09:00:29 +00001458 if (filename == NULL)
1459 __xmlLoaderErr(ctxt,
1460 "failed to load external entity: NULL filename \n",
1461 NULL);
1462 else
1463 __xmlLoaderErr(ctxt, "failed to load external entity \"%s\"\n",
1464 (const char *) filename);
Owen Taylor3473f882001-02-23 17:55:21 +00001465 return(NULL);
Daniel Veillarde8039df2003-10-27 11:25:13 +00001466 }
Owen Taylor3473f882001-02-23 17:55:21 +00001467
Owen Taylor3473f882001-02-23 17:55:21 +00001468 inputStream = xmlNewInputStream(ctxt);
1469 if (inputStream == NULL) {
1470 if (directory != NULL) xmlFree((char *) directory);
1471 if (URI != NULL) xmlFree((char *) URI);
1472 return(NULL);
1473 }
Daniel Veillarda840b692003-10-19 13:35:37 +00001474 inputStream->buf = buf;
1475 inputStream = xmlCheckHTTPInput(ctxt, inputStream);
1476 if (inputStream == NULL)
1477 return(NULL);
1478
1479 if (inputStream->filename == NULL)
1480 URI = xmlStrdup((xmlChar *) filename);
1481 else
1482 URI = xmlStrdup((xmlChar *) inputStream->filename);
1483 directory = xmlParserGetDirectory((const char *) URI);
Daniel Veillard8d8bf2c2003-09-17 19:36:25 +00001484 inputStream->filename = (char *) xmlCanonicPath((const xmlChar *) URI);
Daniel Veillarda66b1d12003-09-17 20:54:38 +00001485 if (URI != NULL) xmlFree((char *) URI);
Owen Taylor3473f882001-02-23 17:55:21 +00001486 inputStream->directory = directory;
Owen Taylor3473f882001-02-23 17:55:21 +00001487
1488 inputStream->base = inputStream->buf->buffer->content;
1489 inputStream->cur = inputStream->buf->buffer->content;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001490 inputStream->end = &inputStream->base[inputStream->buf->buffer->use];
Owen Taylor3473f882001-02-23 17:55:21 +00001491 if ((ctxt->directory == NULL) && (directory != NULL))
1492 ctxt->directory = (char *) xmlStrdup((const xmlChar *) directory);
1493 return(inputStream);
1494}
1495
1496/************************************************************************
1497 * *
1498 * Commodity functions to handle parser contexts *
1499 * *
1500 ************************************************************************/
1501
1502/**
1503 * xmlInitParserCtxt:
1504 * @ctxt: an XML parser context
1505 *
1506 * Initialize a parser context
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001507 *
1508 * Returns 0 in case of success and -1 in case of error
Owen Taylor3473f882001-02-23 17:55:21 +00001509 */
1510
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001511int
Owen Taylor3473f882001-02-23 17:55:21 +00001512xmlInitParserCtxt(xmlParserCtxtPtr ctxt)
1513{
Daniel Veillarda521d282004-11-09 14:59:59 +00001514 xmlParserInputPtr input;
1515
Daniel Veillard5d96fff2001-08-31 14:55:30 +00001516 if(ctxt==NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001517 xmlErrInternal(NULL, "Got NULL parser context\n", NULL);
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001518 return(-1);
Daniel Veillard5d96fff2001-08-31 14:55:30 +00001519 }
1520
Owen Taylor3473f882001-02-23 17:55:21 +00001521 xmlDefaultSAXHandlerInit();
1522
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001523 if (ctxt->dict == NULL)
1524 ctxt->dict = xmlDictCreate();
Daniel Veillard2fdbd322003-08-18 12:15:38 +00001525 if (ctxt->dict == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001526 xmlErrMemory(NULL, "cannot initialize parser context\n");
Daniel Veillard2fdbd322003-08-18 12:15:38 +00001527 return(-1);
1528 }
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001529 if (ctxt->sax == NULL)
1530 ctxt->sax = (xmlSAXHandler *) xmlMalloc(sizeof(xmlSAXHandler));
William M. Brack8b2c7f12002-11-22 05:07:29 +00001531 if (ctxt->sax == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001532 xmlErrMemory(NULL, "cannot initialize parser context\n");
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001533 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001534 }
1535 else
Daniel Veillard092643b2003-09-25 14:29:29 +00001536 xmlSAXVersion(ctxt->sax, 2);
Owen Taylor3473f882001-02-23 17:55:21 +00001537
Daniel Veillard6155d8a2003-08-19 15:01:28 +00001538 ctxt->maxatts = 0;
1539 ctxt->atts = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001540 /* Allocate the Input stack */
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001541 if (ctxt->inputTab == NULL) {
1542 ctxt->inputTab = (xmlParserInputPtr *)
1543 xmlMalloc(5 * sizeof(xmlParserInputPtr));
1544 ctxt->inputMax = 5;
1545 }
Owen Taylor3473f882001-02-23 17:55:21 +00001546 if (ctxt->inputTab == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001547 xmlErrMemory(NULL, "cannot initialize parser context\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001548 ctxt->inputNr = 0;
1549 ctxt->inputMax = 0;
1550 ctxt->input = NULL;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001551 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001552 }
Daniel Veillarda521d282004-11-09 14:59:59 +00001553 while ((input = inputPop(ctxt)) != NULL) { /* Non consuming */
1554 xmlFreeInputStream(input);
1555 }
Owen Taylor3473f882001-02-23 17:55:21 +00001556 ctxt->inputNr = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001557 ctxt->input = NULL;
1558
1559 ctxt->version = NULL;
1560 ctxt->encoding = NULL;
1561 ctxt->standalone = -1;
1562 ctxt->hasExternalSubset = 0;
1563 ctxt->hasPErefs = 0;
1564 ctxt->html = 0;
1565 ctxt->external = 0;
1566 ctxt->instate = XML_PARSER_START;
1567 ctxt->token = 0;
1568 ctxt->directory = NULL;
1569
1570 /* Allocate the Node stack */
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001571 if (ctxt->nodeTab == NULL) {
1572 ctxt->nodeTab = (xmlNodePtr *) xmlMalloc(10 * sizeof(xmlNodePtr));
1573 ctxt->nodeMax = 10;
1574 }
Owen Taylor3473f882001-02-23 17:55:21 +00001575 if (ctxt->nodeTab == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001576 xmlErrMemory(NULL, "cannot initialize parser context\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001577 ctxt->nodeNr = 0;
1578 ctxt->nodeMax = 0;
1579 ctxt->node = NULL;
1580 ctxt->inputNr = 0;
1581 ctxt->inputMax = 0;
1582 ctxt->input = NULL;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001583 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001584 }
1585 ctxt->nodeNr = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001586 ctxt->node = NULL;
1587
1588 /* Allocate the Name stack */
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001589 if (ctxt->nameTab == NULL) {
1590 ctxt->nameTab = (const xmlChar **) xmlMalloc(10 * sizeof(xmlChar *));
1591 ctxt->nameMax = 10;
1592 }
Owen Taylor3473f882001-02-23 17:55:21 +00001593 if (ctxt->nameTab == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001594 xmlErrMemory(NULL, "cannot initialize parser context\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001595 ctxt->nodeNr = 0;
1596 ctxt->nodeMax = 0;
1597 ctxt->node = NULL;
1598 ctxt->inputNr = 0;
1599 ctxt->inputMax = 0;
1600 ctxt->input = NULL;
1601 ctxt->nameNr = 0;
1602 ctxt->nameMax = 0;
1603 ctxt->name = NULL;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001604 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001605 }
1606 ctxt->nameNr = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001607 ctxt->name = NULL;
1608
1609 /* Allocate the space stack */
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001610 if (ctxt->spaceTab == NULL) {
1611 ctxt->spaceTab = (int *) xmlMalloc(10 * sizeof(int));
1612 ctxt->spaceMax = 10;
1613 }
Owen Taylor3473f882001-02-23 17:55:21 +00001614 if (ctxt->spaceTab == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001615 xmlErrMemory(NULL, "cannot initialize parser context\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001616 ctxt->nodeNr = 0;
1617 ctxt->nodeMax = 0;
1618 ctxt->node = NULL;
1619 ctxt->inputNr = 0;
1620 ctxt->inputMax = 0;
1621 ctxt->input = NULL;
1622 ctxt->nameNr = 0;
1623 ctxt->nameMax = 0;
1624 ctxt->name = NULL;
1625 ctxt->spaceNr = 0;
1626 ctxt->spaceMax = 0;
1627 ctxt->space = NULL;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001628 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001629 }
1630 ctxt->spaceNr = 1;
1631 ctxt->spaceMax = 10;
1632 ctxt->spaceTab[0] = -1;
1633 ctxt->space = &ctxt->spaceTab[0];
Owen Taylor3473f882001-02-23 17:55:21 +00001634 ctxt->userData = ctxt;
1635 ctxt->myDoc = NULL;
1636 ctxt->wellFormed = 1;
Daniel Veillard3b7840c2003-09-11 23:42:01 +00001637 ctxt->nsWellFormed = 1;
Owen Taylor3473f882001-02-23 17:55:21 +00001638 ctxt->valid = 1;
1639 ctxt->loadsubset = xmlLoadExtDtdDefaultValue;
1640 ctxt->validate = xmlDoValidityCheckingDefaultValue;
1641 ctxt->pedantic = xmlPedanticParserDefaultValue;
Daniel Veillarda53c6882001-07-25 17:18:57 +00001642 ctxt->linenumbers = xmlLineNumbersDefaultValue;
Owen Taylor3473f882001-02-23 17:55:21 +00001643 ctxt->keepBlanks = xmlKeepBlanksDefaultValue;
Daniel Veillard16698282001-09-14 10:29:27 +00001644 if (ctxt->keepBlanks == 0)
Daniel Veillard11476b42003-09-26 14:51:39 +00001645 ctxt->sax->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
Daniel Veillard16698282001-09-14 10:29:27 +00001646
Daniel Veillardeff45a92004-10-29 12:10:55 +00001647 ctxt->vctxt.finishDtd = XML_CTXT_FINISH_DTD_0;
Owen Taylor3473f882001-02-23 17:55:21 +00001648 ctxt->vctxt.userData = ctxt;
Daniel Veillard4e1b26c2002-02-03 20:13:06 +00001649 ctxt->vctxt.error = xmlParserValidityError;
1650 ctxt->vctxt.warning = xmlParserValidityWarning;
Owen Taylor3473f882001-02-23 17:55:21 +00001651 if (ctxt->validate) {
Owen Taylor3473f882001-02-23 17:55:21 +00001652 if (xmlGetWarningsDefaultValue == 0)
1653 ctxt->vctxt.warning = NULL;
1654 else
1655 ctxt->vctxt.warning = xmlParserValidityWarning;
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00001656 ctxt->vctxt.nodeMax = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001657 }
1658 ctxt->replaceEntities = xmlSubstituteEntitiesDefaultValue;
1659 ctxt->record_info = 0;
1660 ctxt->nbChars = 0;
1661 ctxt->checkIndex = 0;
1662 ctxt->inSubset = 0;
1663 ctxt->errNo = XML_ERR_OK;
1664 ctxt->depth = 0;
1665 ctxt->charset = XML_CHAR_ENCODING_UTF8;
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00001666 ctxt->catalogs = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001667 xmlInitNodeInfoSeq(&ctxt->node_seq);
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001668 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00001669}
1670
1671/**
1672 * xmlFreeParserCtxt:
1673 * @ctxt: an XML parser context
1674 *
1675 * Free all the memory used by a parser context. However the parsed
1676 * document in ctxt->myDoc is not freed.
1677 */
1678
1679void
1680xmlFreeParserCtxt(xmlParserCtxtPtr ctxt)
1681{
1682 xmlParserInputPtr input;
Owen Taylor3473f882001-02-23 17:55:21 +00001683
1684 if (ctxt == NULL) return;
1685
1686 while ((input = inputPop(ctxt)) != NULL) { /* Non consuming */
1687 xmlFreeInputStream(input);
1688 }
Owen Taylor3473f882001-02-23 17:55:21 +00001689 if (ctxt->spaceTab != NULL) xmlFree(ctxt->spaceTab);
Igor Zlatkovicd37c1392003-08-28 10:34:33 +00001690 if (ctxt->nameTab != NULL) xmlFree((xmlChar * *)ctxt->nameTab);
Owen Taylor3473f882001-02-23 17:55:21 +00001691 if (ctxt->nodeTab != NULL) xmlFree(ctxt->nodeTab);
1692 if (ctxt->inputTab != NULL) xmlFree(ctxt->inputTab);
1693 if (ctxt->version != NULL) xmlFree((char *) ctxt->version);
1694 if (ctxt->encoding != NULL) xmlFree((char *) ctxt->encoding);
Owen Taylor3473f882001-02-23 17:55:21 +00001695 if (ctxt->extSubURI != NULL) xmlFree((char *) ctxt->extSubURI);
1696 if (ctxt->extSubSystem != NULL) xmlFree((char *) ctxt->extSubSystem);
Daniel Veillard81273902003-09-30 00:43:48 +00001697#ifdef LIBXML_SAX1_ENABLED
Daniel Veillard092643b2003-09-25 14:29:29 +00001698 if ((ctxt->sax != NULL) &&
1699 (ctxt->sax != (xmlSAXHandlerPtr) &xmlDefaultSAXHandler))
Daniel Veillard81273902003-09-30 00:43:48 +00001700#else
1701 if (ctxt->sax != NULL)
1702#endif /* LIBXML_SAX1_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001703 xmlFree(ctxt->sax);
1704 if (ctxt->directory != NULL) xmlFree((char *) ctxt->directory);
Daniel Veillarda9142e72001-06-19 11:07:54 +00001705 if (ctxt->vctxt.nodeTab != NULL) xmlFree(ctxt->vctxt.nodeTab);
Igor Zlatkovicd37c1392003-08-28 10:34:33 +00001706 if (ctxt->atts != NULL) xmlFree((xmlChar * *)ctxt->atts);
Daniel Veillard2fdbd322003-08-18 12:15:38 +00001707 if (ctxt->dict != NULL) xmlDictFree(ctxt->dict);
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +00001708 if (ctxt->nsTab != NULL) xmlFree((char *) ctxt->nsTab);
Daniel Veillarde57ec792003-09-10 10:50:59 +00001709 if (ctxt->pushTab != NULL) xmlFree(ctxt->pushTab);
1710 if (ctxt->attallocs != NULL) xmlFree(ctxt->attallocs);
1711 if (ctxt->attsDefault != NULL)
1712 xmlHashFree(ctxt->attsDefault, (xmlHashDeallocator) xmlFree);
Daniel Veillard8e36e6a2003-09-10 10:50:59 +00001713 if (ctxt->attsSpecial != NULL)
1714 xmlHashFree(ctxt->attsSpecial, NULL);
Daniel Veillard9f7eb0b2003-09-17 10:26:25 +00001715 if (ctxt->freeElems != NULL) {
1716 xmlNodePtr cur, next;
1717
1718 cur = ctxt->freeElems;
1719 while (cur != NULL) {
1720 next = cur->next;
1721 xmlFree(cur);
1722 cur = next;
1723 }
1724 }
1725 if (ctxt->freeAttrs != NULL) {
1726 xmlAttrPtr cur, next;
1727
1728 cur = ctxt->freeAttrs;
1729 while (cur != NULL) {
1730 next = cur->next;
1731 xmlFree(cur);
1732 cur = next;
1733 }
1734 }
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00001735 /*
1736 * cleanup the error strings
1737 */
1738 if (ctxt->lastError.message != NULL)
1739 xmlFree(ctxt->lastError.message);
1740 if (ctxt->lastError.file != NULL)
1741 xmlFree(ctxt->lastError.file);
1742 if (ctxt->lastError.str1 != NULL)
1743 xmlFree(ctxt->lastError.str1);
1744 if (ctxt->lastError.str2 != NULL)
1745 xmlFree(ctxt->lastError.str2);
1746 if (ctxt->lastError.str3 != NULL)
1747 xmlFree(ctxt->lastError.str3);
Daniel Veillard0fb18932003-09-07 09:14:37 +00001748
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00001749#ifdef LIBXML_CATALOG_ENABLED
1750 if (ctxt->catalogs != NULL)
1751 xmlCatalogFreeLocal(ctxt->catalogs);
1752#endif
Owen Taylor3473f882001-02-23 17:55:21 +00001753 xmlFree(ctxt);
1754}
1755
1756/**
1757 * xmlNewParserCtxt:
1758 *
1759 * Allocate and initialize a new parser context.
1760 *
1761 * Returns the xmlParserCtxtPtr or NULL
1762 */
1763
1764xmlParserCtxtPtr
Daniel Veillard75e389d2005-07-29 22:02:24 +00001765xmlNewParserCtxt(void)
Owen Taylor3473f882001-02-23 17:55:21 +00001766{
1767 xmlParserCtxtPtr ctxt;
1768
1769 ctxt = (xmlParserCtxtPtr) xmlMalloc(sizeof(xmlParserCtxt));
1770 if (ctxt == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001771 xmlErrMemory(NULL, "cannot allocate parser context\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001772 return(NULL);
1773 }
1774 memset(ctxt, 0, sizeof(xmlParserCtxt));
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001775 if (xmlInitParserCtxt(ctxt) < 0) {
1776 xmlFreeParserCtxt(ctxt);
1777 return(NULL);
1778 }
Owen Taylor3473f882001-02-23 17:55:21 +00001779 return(ctxt);
1780}
1781
1782/************************************************************************
1783 * *
1784 * Handling of node informations *
1785 * *
1786 ************************************************************************/
1787
1788/**
1789 * xmlClearParserCtxt:
1790 * @ctxt: an XML parser context
1791 *
1792 * Clear (release owned resources) and reinitialize a parser context
1793 */
1794
1795void
1796xmlClearParserCtxt(xmlParserCtxtPtr ctxt)
1797{
Daniel Veillard5d96fff2001-08-31 14:55:30 +00001798 if (ctxt==NULL)
1799 return;
Owen Taylor3473f882001-02-23 17:55:21 +00001800 xmlClearNodeInfoSeq(&ctxt->node_seq);
Daniel Veillard36e5cd52004-11-02 14:52:23 +00001801 xmlCtxtReset(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00001802}
1803
Daniel Veillardce682bc2004-11-05 17:22:25 +00001804
Owen Taylor3473f882001-02-23 17:55:21 +00001805/**
1806 * xmlParserFindNodeInfo:
Daniel Veillard01c13b52002-12-10 15:19:08 +00001807 * @ctx: an XML parser context
Owen Taylor3473f882001-02-23 17:55:21 +00001808 * @node: an XML node within the tree
1809 *
1810 * Find the parser node info struct for a given node
1811 *
1812 * Returns an xmlParserNodeInfo block pointer or NULL
1813 */
Daniel Veillardce682bc2004-11-05 17:22:25 +00001814const xmlParserNodeInfo *
1815xmlParserFindNodeInfo(const xmlParserCtxtPtr ctx, const xmlNodePtr node)
Owen Taylor3473f882001-02-23 17:55:21 +00001816{
Daniel Veillardce682bc2004-11-05 17:22:25 +00001817 unsigned long pos;
Owen Taylor3473f882001-02-23 17:55:21 +00001818
Daniel Veillardce682bc2004-11-05 17:22:25 +00001819 if ((ctx == NULL) || (node == NULL))
1820 return (NULL);
1821 /* Find position where node should be at */
1822 pos = xmlParserFindNodeInfoIndex(&ctx->node_seq, node);
1823 if (pos < ctx->node_seq.length
1824 && ctx->node_seq.buffer[pos].node == node)
1825 return &ctx->node_seq.buffer[pos];
1826 else
1827 return NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001828}
1829
1830
1831/**
1832 * xmlInitNodeInfoSeq:
1833 * @seq: a node info sequence pointer
1834 *
1835 * -- Initialize (set to initial state) node info sequence
1836 */
1837void
1838xmlInitNodeInfoSeq(xmlParserNodeInfoSeqPtr seq)
1839{
Daniel Veillardce682bc2004-11-05 17:22:25 +00001840 if (seq == NULL)
1841 return;
1842 seq->length = 0;
1843 seq->maximum = 0;
1844 seq->buffer = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001845}
1846
1847/**
1848 * xmlClearNodeInfoSeq:
1849 * @seq: a node info sequence pointer
1850 *
1851 * -- Clear (release memory and reinitialize) node
1852 * info sequence
1853 */
1854void
1855xmlClearNodeInfoSeq(xmlParserNodeInfoSeqPtr seq)
1856{
Daniel Veillardce682bc2004-11-05 17:22:25 +00001857 if (seq == NULL)
1858 return;
1859 if (seq->buffer != NULL)
1860 xmlFree(seq->buffer);
1861 xmlInitNodeInfoSeq(seq);
Owen Taylor3473f882001-02-23 17:55:21 +00001862}
1863
Owen Taylor3473f882001-02-23 17:55:21 +00001864/**
1865 * xmlParserFindNodeInfoIndex:
1866 * @seq: a node info sequence pointer
1867 * @node: an XML node pointer
1868 *
1869 *
1870 * xmlParserFindNodeInfoIndex : Find the index that the info record for
1871 * the given node is or should be at in a sorted sequence
1872 *
1873 * Returns a long indicating the position of the record
1874 */
Daniel Veillardce682bc2004-11-05 17:22:25 +00001875unsigned long
1876xmlParserFindNodeInfoIndex(const xmlParserNodeInfoSeqPtr seq,
1877 const xmlNodePtr node)
Owen Taylor3473f882001-02-23 17:55:21 +00001878{
Daniel Veillardce682bc2004-11-05 17:22:25 +00001879 unsigned long upper, lower, middle;
1880 int found = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001881
Daniel Veillardce682bc2004-11-05 17:22:25 +00001882 if ((seq == NULL) || (node == NULL))
1883 return (-1);
1884
1885 /* Do a binary search for the key */
1886 lower = 1;
1887 upper = seq->length;
1888 middle = 0;
1889 while (lower <= upper && !found) {
1890 middle = lower + (upper - lower) / 2;
1891 if (node == seq->buffer[middle - 1].node)
1892 found = 1;
1893 else if (node < seq->buffer[middle - 1].node)
1894 upper = middle - 1;
1895 else
1896 lower = middle + 1;
1897 }
1898
1899 /* Return position */
1900 if (middle == 0 || seq->buffer[middle - 1].node < node)
1901 return middle;
Owen Taylor3473f882001-02-23 17:55:21 +00001902 else
Daniel Veillardce682bc2004-11-05 17:22:25 +00001903 return middle - 1;
Owen Taylor3473f882001-02-23 17:55:21 +00001904}
1905
1906
1907/**
1908 * xmlParserAddNodeInfo:
1909 * @ctxt: an XML parser context
1910 * @info: a node info sequence pointer
1911 *
1912 * Insert node info record into the sorted sequence
1913 */
1914void
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001915xmlParserAddNodeInfo(xmlParserCtxtPtr ctxt,
Daniel Veillard963d2ae2002-01-20 22:08:18 +00001916 const xmlParserNodeInfoPtr info)
Owen Taylor3473f882001-02-23 17:55:21 +00001917{
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001918 unsigned long pos;
Owen Taylor3473f882001-02-23 17:55:21 +00001919
Daniel Veillardce682bc2004-11-05 17:22:25 +00001920 if ((ctxt == NULL) || (info == NULL)) return;
1921
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001922 /* Find pos and check to see if node is already in the sequence */
William M. Brack78637da2003-07-31 14:47:38 +00001923 pos = xmlParserFindNodeInfoIndex(&ctxt->node_seq, (xmlNodePtr)
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001924 info->node);
1925 if (pos < ctxt->node_seq.length
1926 && ctxt->node_seq.buffer[pos].node == info->node) {
1927 ctxt->node_seq.buffer[pos] = *info;
Owen Taylor3473f882001-02-23 17:55:21 +00001928 }
1929
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001930 /* Otherwise, we need to add new node to buffer */
1931 else {
1932 if (ctxt->node_seq.length + 1 > ctxt->node_seq.maximum) {
1933 xmlParserNodeInfo *tmp_buffer;
1934 unsigned int byte_size;
Owen Taylor3473f882001-02-23 17:55:21 +00001935
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001936 if (ctxt->node_seq.maximum == 0)
1937 ctxt->node_seq.maximum = 2;
1938 byte_size = (sizeof(*ctxt->node_seq.buffer) *
1939 (2 * ctxt->node_seq.maximum));
1940
1941 if (ctxt->node_seq.buffer == NULL)
Daniel Veillardc4f65ab2003-04-21 23:07:45 +00001942 tmp_buffer = (xmlParserNodeInfo *) xmlMalloc(byte_size);
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001943 else
1944 tmp_buffer =
1945 (xmlParserNodeInfo *) xmlRealloc(ctxt->node_seq.buffer,
1946 byte_size);
1947
1948 if (tmp_buffer == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001949 xmlErrMemory(ctxt, "failed to allocate buffer\n");
Daniel Veillardc8c7be42002-01-23 17:53:44 +00001950 return;
1951 }
1952 ctxt->node_seq.buffer = tmp_buffer;
1953 ctxt->node_seq.maximum *= 2;
1954 }
1955
1956 /* If position is not at end, move elements out of the way */
1957 if (pos != ctxt->node_seq.length) {
1958 unsigned long i;
1959
1960 for (i = ctxt->node_seq.length; i > pos; i--)
1961 ctxt->node_seq.buffer[i] = ctxt->node_seq.buffer[i - 1];
1962 }
1963
1964 /* Copy element and increase length */
1965 ctxt->node_seq.buffer[pos] = *info;
1966 ctxt->node_seq.length++;
Owen Taylor3473f882001-02-23 17:55:21 +00001967 }
Owen Taylor3473f882001-02-23 17:55:21 +00001968}
1969
1970/************************************************************************
1971 * *
Daniel Veillarda53c6882001-07-25 17:18:57 +00001972 * Defaults settings *
1973 * *
1974 ************************************************************************/
1975/**
1976 * xmlPedanticParserDefault:
1977 * @val: int 0 or 1
1978 *
1979 * Set and return the previous value for enabling pedantic warnings.
1980 *
1981 * Returns the last value for 0 for no substitution, 1 for substitution.
1982 */
1983
1984int
1985xmlPedanticParserDefault(int val) {
1986 int old = xmlPedanticParserDefaultValue;
1987
1988 xmlPedanticParserDefaultValue = val;
1989 return(old);
1990}
1991
1992/**
1993 * xmlLineNumbersDefault:
1994 * @val: int 0 or 1
1995 *
1996 * Set and return the previous value for enabling line numbers in elements
1997 * contents. This may break on old application and is turned off by default.
1998 *
1999 * Returns the last value for 0 for no substitution, 1 for substitution.
2000 */
2001
2002int
2003xmlLineNumbersDefault(int val) {
2004 int old = xmlLineNumbersDefaultValue;
2005
2006 xmlLineNumbersDefaultValue = val;
2007 return(old);
2008}
2009
2010/**
2011 * xmlSubstituteEntitiesDefault:
2012 * @val: int 0 or 1
2013 *
2014 * Set and return the previous value for default entity support.
2015 * Initially the parser always keep entity references instead of substituting
2016 * entity values in the output. This function has to be used to change the
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002017 * default parser behavior
2018 * SAX::substituteEntities() has to be used for changing that on a file by
Daniel Veillarda53c6882001-07-25 17:18:57 +00002019 * file basis.
2020 *
2021 * Returns the last value for 0 for no substitution, 1 for substitution.
2022 */
2023
2024int
2025xmlSubstituteEntitiesDefault(int val) {
2026 int old = xmlSubstituteEntitiesDefaultValue;
2027
2028 xmlSubstituteEntitiesDefaultValue = val;
2029 return(old);
2030}
2031
2032/**
2033 * xmlKeepBlanksDefault:
2034 * @val: int 0 or 1
2035 *
2036 * Set and return the previous value for default blanks text nodes support.
2037 * The 1.x version of the parser used an heuristic to try to detect
2038 * ignorable white spaces. As a result the SAX callback was generating
Daniel Veillard11476b42003-09-26 14:51:39 +00002039 * xmlSAX2IgnorableWhitespace() callbacks instead of characters() one, and when
Daniel Veillarda53c6882001-07-25 17:18:57 +00002040 * using the DOM output text nodes containing those blanks were not generated.
2041 * The 2.x and later version will switch to the XML standard way and
2042 * ignorableWhitespace() are only generated when running the parser in
2043 * validating mode and when the current element doesn't allow CDATA or
2044 * mixed content.
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002045 * This function is provided as a way to force the standard behavior
Daniel Veillarda53c6882001-07-25 17:18:57 +00002046 * on 1.X libs and to switch back to the old mode for compatibility when
2047 * running 1.X client code on 2.X . Upgrade of 1.X code should be done
2048 * by using xmlIsBlankNode() commodity function to detect the "empty"
2049 * nodes generated.
2050 * This value also affect autogeneration of indentation when saving code
2051 * if blanks sections are kept, indentation is not generated.
2052 *
2053 * Returns the last value for 0 for no substitution, 1 for substitution.
2054 */
2055
2056int
2057xmlKeepBlanksDefault(int val) {
2058 int old = xmlKeepBlanksDefaultValue;
2059
2060 xmlKeepBlanksDefaultValue = val;
2061 xmlIndentTreeOutput = !val;
2062 return(old);
2063}
2064
Daniel Veillard5d4644e2005-04-01 13:11:58 +00002065#define bottom_parserInternals
2066#include "elfgcchack.h"