blob: 8eb616130a035df975e1f214c78f6d83ea179ff0 [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
2 * error.c: module displaying/handling XML parser errors
3 *
4 * See Copyright for the status of this software.
5 *
Daniel Veillardc5d64342001-06-24 12:13:24 +00006 * Daniel Veillard <daniel@veillard.com>
Owen Taylor3473f882001-02-23 17:55:21 +00007 */
8
Daniel Veillard34ce8be2002-03-18 19:37:11 +00009#define IN_LIBXML
Bjorn Reese70a9da52001-04-21 16:57:29 +000010#include "libxml.h"
Owen Taylor3473f882001-02-23 17:55:21 +000011
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000012#include <string.h>
Owen Taylor3473f882001-02-23 17:55:21 +000013#include <stdarg.h>
14#include <libxml/parser.h>
15#include <libxml/xmlerror.h>
Daniel Veillarde356c282001-03-10 12:32:04 +000016#include <libxml/xmlmemory.h>
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000017#include <libxml/globals.h>
Owen Taylor3473f882001-02-23 17:55:21 +000018
Daniel Veillard635ef722001-10-29 11:48:19 +000019void xmlGenericErrorDefaultFunc (void *ctx ATTRIBUTE_UNUSED,
20 const char *msg,
21 ...);
22
Daniel Veillard1c43dbf2001-06-05 17:12:52 +000023#define XML_GET_VAR_STR(msg, str) { \
24 int size; \
25 int chars; \
26 char *larger; \
27 va_list ap; \
28 \
29 str = (char *) xmlMalloc(150); \
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000030 if (str != NULL) { \
Daniel Veillard1c43dbf2001-06-05 17:12:52 +000031 \
32 size = 150; \
33 \
34 while (1) { \
35 va_start(ap, msg); \
36 chars = vsnprintf(str, size, msg, ap); \
37 va_end(ap); \
38 if ((chars > -1) && (chars < size)) \
39 break; \
40 if (chars > -1) \
41 size += chars + 1; \
42 else \
43 size += 100; \
44 if ((larger = (char *) xmlRealloc(str, size)) == NULL) {\
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000045 break; \
Daniel Veillard1c43dbf2001-06-05 17:12:52 +000046 } \
47 str = larger; \
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000048 }} \
Daniel Veillard1c43dbf2001-06-05 17:12:52 +000049}
Bjorn Reese570ff082001-06-05 12:45:55 +000050
Owen Taylor3473f882001-02-23 17:55:21 +000051/************************************************************************
52 * *
53 * Handling of out of context errors *
54 * *
55 ************************************************************************/
56
57/**
58 * xmlGenericErrorDefaultFunc:
59 * @ctx: an error context
60 * @msg: the message to display/transmit
61 * @...: extra parameters for the message display
62 *
63 * Default handler for out of context error messages.
64 */
Daniel Veillard635ef722001-10-29 11:48:19 +000065void
Daniel Veillardc86a4fa2001-03-26 16:28:29 +000066xmlGenericErrorDefaultFunc(void *ctx ATTRIBUTE_UNUSED, const char *msg, ...) {
Owen Taylor3473f882001-02-23 17:55:21 +000067 va_list args;
68
69 if (xmlGenericErrorContext == NULL)
70 xmlGenericErrorContext = (void *) stderr;
71
72 va_start(args, msg);
73 vfprintf((FILE *)xmlGenericErrorContext, msg, args);
74 va_end(args);
75}
76
Daniel Veillard9d06d302002-01-22 18:15:52 +000077/**
78 * initGenericErrorDefaultFunc:
79 * @handler: the handler
80 *
81 * Set or reset (if NULL) the default handler for generic errors
Daniel Veillard7424eb62003-01-24 14:14:52 +000082 * to the builtin error function.
Daniel Veillard9d06d302002-01-22 18:15:52 +000083 */
Daniel Veillardd0463562001-10-13 09:15:48 +000084void
Daniel Veillarddb5850a2002-01-18 11:49:26 +000085initGenericErrorDefaultFunc(xmlGenericErrorFunc * handler)
Daniel Veillardd0463562001-10-13 09:15:48 +000086{
Daniel Veillarddb5850a2002-01-18 11:49:26 +000087 if (handler == NULL)
88 xmlGenericError = xmlGenericErrorDefaultFunc;
89 else
Daniel Veillardda0ff5d2004-04-20 09:45:26 +000090 xmlGenericError = (*handler);
Daniel Veillardd0463562001-10-13 09:15:48 +000091}
Owen Taylor3473f882001-02-23 17:55:21 +000092
93/**
94 * xmlSetGenericErrorFunc:
95 * @ctx: the new error handling context
96 * @handler: the new handler function
97 *
98 * Function to reset the handler and the error context for out of
99 * context error messages.
100 * This simply means that @handler will be called for subsequent
101 * error messages while not parsing nor validating. And @ctx will
102 * be passed as first argument to @handler
103 * One can simply force messages to be emitted to another FILE * than
104 * stderr by setting @ctx to this file handle and @handler to NULL.
Daniel Veillardda3b29a2004-08-14 11:15:13 +0000105 * For multi-threaded applications, this must be set separately for each thread.
Owen Taylor3473f882001-02-23 17:55:21 +0000106 */
107void
108xmlSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler) {
109 xmlGenericErrorContext = ctx;
110 if (handler != NULL)
111 xmlGenericError = handler;
112 else
113 xmlGenericError = xmlGenericErrorDefaultFunc;
114}
115
Daniel Veillard659e71e2003-10-10 14:10:40 +0000116/**
117 * xmlSetStructuredErrorFunc:
118 * @ctx: the new error handling context
119 * @handler: the new handler function
120 *
121 * Function to reset the handler and the error context for out of
122 * context structured error messages.
123 * This simply means that @handler will be called for subsequent
124 * error messages while not parsing nor validating. And @ctx will
125 * be passed as first argument to @handler
Daniel Veillardda3b29a2004-08-14 11:15:13 +0000126 * For multi-threaded applications, this must be set separately for each thread.
Daniel Veillard659e71e2003-10-10 14:10:40 +0000127 */
128void
129xmlSetStructuredErrorFunc(void *ctx, xmlStructuredErrorFunc handler) {
130 xmlGenericErrorContext = ctx;
131 xmlStructuredError = handler;
132}
133
Owen Taylor3473f882001-02-23 17:55:21 +0000134/************************************************************************
135 * *
136 * Handling of parsing errors *
137 * *
138 ************************************************************************/
139
140/**
141 * xmlParserPrintFileInfo:
142 * @input: an xmlParserInputPtr input
143 *
144 * Displays the associated file and line informations for the current input
145 */
146
147void
148xmlParserPrintFileInfo(xmlParserInputPtr input) {
149 if (input != NULL) {
150 if (input->filename)
151 xmlGenericError(xmlGenericErrorContext,
152 "%s:%d: ", input->filename,
153 input->line);
154 else
155 xmlGenericError(xmlGenericErrorContext,
156 "Entity: line %d: ", input->line);
157 }
158}
159
160/**
161 * xmlParserPrintFileContext:
162 * @input: an xmlParserInputPtr input
163 *
164 * Displays current context within the input content for error tracking
165 */
166
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000167static void
168xmlParserPrintFileContextInternal(xmlParserInputPtr input ,
169 xmlGenericErrorFunc channel, void *data ) {
Daniel Veillard561b7f82002-03-20 21:55:57 +0000170 const xmlChar *cur, *base;
William M. Brackc1939562003-08-05 15:52:22 +0000171 unsigned int n, col; /* GCC warns if signed, because compared with sizeof() */
William M. Brack3dd57f72003-05-13 02:06:18 +0000172 xmlChar content[81]; /* space for 80 chars + line terminator */
Daniel Veillard2be30642001-03-27 00:32:28 +0000173 xmlChar *ctnt;
Owen Taylor3473f882001-02-23 17:55:21 +0000174
Daniel Veillard561b7f82002-03-20 21:55:57 +0000175 if (input == NULL) return;
Owen Taylor3473f882001-02-23 17:55:21 +0000176 cur = input->cur;
177 base = input->base;
Daniel Veillard2be30642001-03-27 00:32:28 +0000178 /* skip backwards over any end-of-lines */
William M. Brackc1939562003-08-05 15:52:22 +0000179 while ((cur > base) && ((*(cur) == '\n') || (*(cur) == '\r'))) {
Daniel Veillard561b7f82002-03-20 21:55:57 +0000180 cur--;
Owen Taylor3473f882001-02-23 17:55:21 +0000181 }
182 n = 0;
William M. Brack3dd57f72003-05-13 02:06:18 +0000183 /* search backwards for beginning-of-line (to max buff size) */
William M. Brackc1939562003-08-05 15:52:22 +0000184 while ((n++ < (sizeof(content)-1)) && (cur > base) &&
185 (*(cur) != '\n') && (*(cur) != '\r'))
Owen Taylor3473f882001-02-23 17:55:21 +0000186 cur--;
William M. Brackc1939562003-08-05 15:52:22 +0000187 if ((*(cur) == '\n') || (*(cur) == '\r')) cur++;
William M. Brack3dd57f72003-05-13 02:06:18 +0000188 /* calculate the error position in terms of the current position */
189 col = input->cur - cur;
190 /* search forward for end-of-line (to max buff size) */
Owen Taylor3473f882001-02-23 17:55:21 +0000191 n = 0;
Daniel Veillard2be30642001-03-27 00:32:28 +0000192 ctnt = content;
William M. Brack3dd57f72003-05-13 02:06:18 +0000193 /* copy selected text to our buffer */
William M. Brackc1939562003-08-05 15:52:22 +0000194 while ((*cur != 0) && (*(cur) != '\n') &&
195 (*(cur) != '\r') && (n < sizeof(content)-1)) {
Daniel Veillard561b7f82002-03-20 21:55:57 +0000196 *ctnt++ = *cur++;
197 n++;
Owen Taylor3473f882001-02-23 17:55:21 +0000198 }
Daniel Veillard2be30642001-03-27 00:32:28 +0000199 *ctnt = 0;
William M. Brack3dd57f72003-05-13 02:06:18 +0000200 /* print out the selected text */
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000201 channel(data ,"%s\n", content);
Daniel Veillard2be30642001-03-27 00:32:28 +0000202 /* create blank line with problem pointer */
Owen Taylor3473f882001-02-23 17:55:21 +0000203 n = 0;
Daniel Veillard7533cc82001-04-24 15:52:00 +0000204 ctnt = content;
William M. Brack3dd57f72003-05-13 02:06:18 +0000205 /* (leave buffer space for pointer + line terminator) */
206 while ((n<col) && (n++ < sizeof(content)-2) && (*ctnt != 0)) {
William M. Brackc1939562003-08-05 15:52:22 +0000207 if (*(ctnt) != '\t')
208 *(ctnt) = ' ';
William M. Brack69848302003-09-22 00:24:51 +0000209 ctnt++;
Owen Taylor3473f882001-02-23 17:55:21 +0000210 }
William M. Brack3dd57f72003-05-13 02:06:18 +0000211 *ctnt++ = '^';
212 *ctnt = 0;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000213 channel(data ,"%s\n", content);
Owen Taylor3473f882001-02-23 17:55:21 +0000214}
215
Daniel Veillard561b7f82002-03-20 21:55:57 +0000216/**
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000217 * xmlParserPrintFileContext:
218 * @input: an xmlParserInputPtr input
219 *
220 * Displays current context within the input content for error tracking
Daniel Veillard561b7f82002-03-20 21:55:57 +0000221 */
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000222void
223xmlParserPrintFileContext(xmlParserInputPtr input) {
224 xmlParserPrintFileContextInternal(input, xmlGenericError,
225 xmlGenericErrorContext);
Daniel Veillard561b7f82002-03-20 21:55:57 +0000226}
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000227
228/**
229 * xmlReportError:
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000230 * @err: the error
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000231 * @ctx: the parser context or NULL
232 * @str: the formatted error message
233 *
234 * Report an erro with its context, replace the 4 old error/warning
235 * routines.
236 */
237static void
Daniel Veillard4c004142003-10-07 11:33:24 +0000238xmlReportError(xmlErrorPtr err, xmlParserCtxtPtr ctxt, const char *str,
239 xmlGenericErrorFunc channel, void *data)
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000240{
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000241 char *file = NULL;
242 int line = 0;
243 int code = -1;
244 int domain;
Daniel Veillard4c004142003-10-07 11:33:24 +0000245 const xmlChar *name = NULL;
246 xmlNodePtr node;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000247 xmlErrorLevel level;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000248 xmlParserInputPtr input = NULL;
249 xmlParserInputPtr cur = NULL;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000250
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000251 if (err == NULL)
252 return;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000253
Daniel Veillard4c004142003-10-07 11:33:24 +0000254 if (channel == NULL) {
255 channel = xmlGenericError;
256 data = xmlGenericErrorContext;
257 }
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000258 file = err->file;
259 line = err->line;
260 code = err->code;
261 domain = err->domain;
262 level = err->level;
Daniel Veillard4c004142003-10-07 11:33:24 +0000263 node = err->node;
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000264
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000265 if (code == XML_ERR_OK)
266 return;
267
Daniel Veillard4c004142003-10-07 11:33:24 +0000268 if ((node != NULL) && (node->type == XML_ELEMENT_NODE))
269 name = node->name;
270
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000271 /*
272 * Maintain the compatibility with the legacy error handling
273 */
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000274 if (ctxt != NULL) {
275 input = ctxt->input;
276 if ((input != NULL) && (input->filename == NULL) &&
277 (ctxt->inputNr > 1)) {
278 cur = input;
279 input = ctxt->inputTab[ctxt->inputNr - 2];
280 }
281 if (input != NULL) {
282 if (input->filename)
283 channel(data, "%s:%d: ", input->filename, input->line);
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000284 else if ((line != 0) && (domain == XML_FROM_PARSER))
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000285 channel(data, "Entity: line %d: ", input->line);
286 }
287 } else {
288 if (file != NULL)
289 channel(data, "%s:%d: ", file, line);
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000290 else if ((line != 0) && (domain == XML_FROM_PARSER))
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000291 channel(data, "Entity: line %d: ", line);
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000292 }
Daniel Veillard4c004142003-10-07 11:33:24 +0000293 if (name != NULL) {
294 channel(data, "element %s: ", name);
295 }
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000296 if (code == XML_ERR_OK)
297 return;
298 switch (domain) {
299 case XML_FROM_PARSER:
300 channel(data, "parser ");
301 break;
302 case XML_FROM_NAMESPACE:
303 channel(data, "namespace ");
304 break;
305 case XML_FROM_DTD:
Daniel Veillard72b9e292003-10-28 15:44:17 +0000306 case XML_FROM_VALID:
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000307 channel(data, "validity ");
308 break;
309 case XML_FROM_HTML:
310 channel(data, "HTML parser ");
311 break;
312 case XML_FROM_MEMORY:
313 channel(data, "memory ");
314 break;
315 case XML_FROM_OUTPUT:
316 channel(data, "output ");
317 break;
318 case XML_FROM_IO:
319 channel(data, "I/O ");
320 break;
321 case XML_FROM_XINCLUDE:
322 channel(data, "XInclude ");
323 break;
324 case XML_FROM_XPATH:
325 channel(data, "XPath ");
326 break;
327 case XML_FROM_XPOINTER:
328 channel(data, "parser ");
329 break;
330 case XML_FROM_REGEXP:
331 channel(data, "regexp ");
332 break;
Daniel Veillardd0c9c322003-10-10 00:49:42 +0000333 case XML_FROM_SCHEMASV:
Daniel Veillard87db3a82003-10-10 10:52:58 +0000334 channel(data, "Schemas validity ");
Daniel Veillardd0c9c322003-10-10 00:49:42 +0000335 break;
336 case XML_FROM_SCHEMASP:
Daniel Veillard87db3a82003-10-10 10:52:58 +0000337 channel(data, "Schemas parser ");
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000338 break;
Daniel Veillard4c004142003-10-07 11:33:24 +0000339 case XML_FROM_RELAXNGP:
340 channel(data, "Relax-NG parser ");
341 break;
342 case XML_FROM_RELAXNGV:
Daniel Veillardd0c9c322003-10-10 00:49:42 +0000343 channel(data, "Relax-NG validity ");
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000344 break;
345 case XML_FROM_CATALOG:
346 channel(data, "Catalog ");
347 break;
348 case XML_FROM_C14N:
349 channel(data, "C14N ");
350 break;
351 case XML_FROM_XSLT:
352 channel(data, "XSLT ");
353 break;
354 default:
355 break;
356 }
357 if (code == XML_ERR_OK)
358 return;
359 switch (level) {
360 case XML_ERR_NONE:
361 channel(data, ": ");
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000362 break;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000363 case XML_ERR_WARNING:
364 channel(data, "warning : ");
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000365 break;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000366 case XML_ERR_ERROR:
367 channel(data, "error : ");
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000368 break;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000369 case XML_ERR_FATAL:
370 channel(data, "error : ");
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000371 break;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000372 }
373 if (code == XML_ERR_OK)
374 return;
375 if (str != NULL) {
Daniel Veillard828ce832003-10-08 19:19:10 +0000376 int len;
377 len = xmlStrlen((const xmlChar *)str);
378 if ((len > 0) && (str[len - 1] != '\n'))
Daniel Veillard828ce832003-10-08 19:19:10 +0000379 channel(data, "%s\n", str);
Daniel Veillarda8856222003-10-08 19:26:03 +0000380 else
381 channel(data, "%s", str);
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000382 } else {
Daniel Veillard828ce832003-10-08 19:19:10 +0000383 channel(data, "%s\n", "out of memory error");
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000384 }
385 if (code == XML_ERR_OK)
386 return;
387
388 if (ctxt != NULL) {
389 xmlParserPrintFileContextInternal(input, channel, data);
390 if (cur != NULL) {
391 if (cur->filename)
392 channel(data, "%s:%d: \n", cur->filename, cur->line);
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000393 else if ((line != 0) && (domain == XML_FROM_PARSER))
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000394 channel(data, "Entity: line %d: \n", cur->line);
395 xmlParserPrintFileContextInternal(cur, channel, data);
396 }
397 }
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000398 if ((domain == XML_FROM_XPATH) && (err->str1 != NULL) &&
399 (err->int1 < 100) &&
400 (err->int1 < xmlStrlen((const xmlChar *)err->str1))) {
401 xmlChar buf[150];
402 int i;
403
404 channel(data, "%s\n", err->str1);
405 for (i=0;i < err->int1;i++)
406 buf[i] = ' ';
407 buf[i++] = '^';
408 buf[i] = 0;
409 channel(data, "%s\n", buf);
410 }
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000411}
412
413/**
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000414 * __xmlRaiseError:
William M. Brackd233e392004-05-16 03:12:08 +0000415 * @schannel: the structured callback channel
Daniel Veillard659e71e2003-10-10 14:10:40 +0000416 * @channel: the old callback channel
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000417 * @data: the callback data
418 * @ctx: the parser context or NULL
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000419 * @ctx: the parser context or NULL
420 * @domain: the domain for the error
421 * @code: the code for the error
422 * @level: the xmlErrorLevel for the error
423 * @file: the file source of the error (or NULL)
424 * @line: the line of the error or 0 if N/A
425 * @str1: extra string info
426 * @str2: extra string info
427 * @str3: extra string info
428 * @int1: extra int info
429 * @int2: extra int info
430 * @msg: the message to display/transmit
431 * @...: extra parameters for the message display
432 *
William M. Brackd233e392004-05-16 03:12:08 +0000433 * Update the appropriate global or contextual error structure,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000434 * then forward the error message down the parser or generic
435 * error callback handler
436 */
437void
Daniel Veillard659e71e2003-10-10 14:10:40 +0000438__xmlRaiseError(xmlStructuredErrorFunc schannel,
439 xmlGenericErrorFunc channel, void *data, void *ctx,
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000440 void *nod, int domain, int code, xmlErrorLevel level,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000441 const char *file, int line, const char *str1,
442 const char *str2, const char *str3, int int1, int int2,
443 const char *msg, ...)
444{
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000445 xmlParserCtxtPtr ctxt = NULL;
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000446 xmlNodePtr node = (xmlNodePtr) nod;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000447 char *str = NULL;
448 xmlParserInputPtr input = NULL;
449 xmlErrorPtr to = &xmlLastError;
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000450 xmlChar *base = NULL;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000451
Daniel Veillardb5fa0202003-12-08 17:41:29 +0000452 if ((xmlGetWarningsDefaultValue == 0) && (level == XML_ERR_WARNING))
453 return;
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000454 if ((domain == XML_FROM_PARSER) || (domain == XML_FROM_HTML) ||
455 (domain == XML_FROM_DTD) || (domain == XML_FROM_NAMESPACE) ||
456 (domain == XML_FROM_IO)) {
457 ctxt = (xmlParserCtxtPtr) ctx;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000458 if ((schannel == NULL) && (ctxt != NULL) && (ctxt->sax != NULL) &&
459 (ctxt->sax->initialized == XML_SAX2_MAGIC))
460 schannel = ctxt->sax->serror;
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000461 }
William M. Brackcd3628b2004-07-25 21:07:29 +0000462 /*
463 * Check if structured error handler set
464 */
465 if (schannel == NULL) {
Daniel Veillardf88d8cf2003-12-08 10:25:02 +0000466 schannel = xmlStructuredError;
William M. Brackcd3628b2004-07-25 21:07:29 +0000467 /*
468 * if user has defined handler, change data ptr to user's choice
469 */
470 if (schannel != NULL)
471 data = xmlGenericErrorContext;
472 }
Daniel Veillard72b9e292003-10-28 15:44:17 +0000473 if ((domain == XML_FROM_VALID) &&
474 ((channel == xmlParserValidityError) ||
475 (channel == xmlParserValidityWarning))) {
476 ctxt = (xmlParserCtxtPtr) ctx;
477 if ((schannel == NULL) && (ctxt != NULL) && (ctxt->sax != NULL) &&
478 (ctxt->sax->initialized == XML_SAX2_MAGIC))
479 schannel = ctxt->sax->serror;
480 }
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000481 if (code == XML_ERR_OK)
482 return;
483 /*
484 * Formatting the message
485 */
486 if (msg == NULL) {
487 str = (char *) xmlStrdup(BAD_CAST "No error message provided");
488 } else {
489 XML_GET_VAR_STR(msg, str);
490 }
491
492 /*
493 * specific processing if a parser context is provided
494 */
495 if (ctxt != NULL) {
496 if (file == NULL) {
497 input = ctxt->input;
498 if ((input != NULL) && (input->filename == NULL) &&
499 (ctxt->inputNr > 1)) {
500 input = ctxt->inputTab[ctxt->inputNr - 2];
501 }
502 if (input != NULL) {
503 file = input->filename;
504 line = input->line;
505 }
506 }
507 to = &ctxt->lastError;
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000508 } else if ((node != NULL) && (file == NULL)) {
509 int i;
Daniel Veillard4c004142003-10-07 11:33:24 +0000510
511 if ((node->doc != NULL) && (node->doc->URL != NULL))
512 base = xmlStrdup(node->doc->URL);
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000513 for (i = 0;
514 ((i < 10) && (node != NULL) && (node->type != XML_ELEMENT_NODE));
515 i++)
516 node = node->parent;
Daniel Veillard4c004142003-10-07 11:33:24 +0000517 if ((base == NULL) && (node != NULL) &&
518 (node->doc != NULL) && (node->doc->URL != NULL))
519 base = xmlStrdup(node->doc->URL);
520
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000521 if ((node != NULL) && (node->type == XML_ELEMENT_NODE))
Daniel Veillard3e35f8e2003-10-21 00:05:38 +0000522 line = node->line;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000523 }
524
525 /*
William M. Brackd233e392004-05-16 03:12:08 +0000526 * Save the information about the error
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000527 */
528 xmlResetError(to);
529 to->domain = domain;
530 to->code = code;
531 to->message = str;
532 to->level = level;
533 if (file != NULL)
534 to->file = (char *) xmlStrdup((const xmlChar *) file);
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000535 else if (base != NULL) {
536 to->file = (char *) base;
537 file = (char *) base;
538 }
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000539 to->line = line;
540 if (str1 != NULL)
541 to->str1 = (char *) xmlStrdup((const xmlChar *) str1);
542 if (str2 != NULL)
543 to->str2 = (char *) xmlStrdup((const xmlChar *) str2);
544 if (str3 != NULL)
545 to->str3 = (char *) xmlStrdup((const xmlChar *) str3);
546 to->int1 = int1;
547 to->int2 = int2;
Daniel Veillard4c004142003-10-07 11:33:24 +0000548 to->node = node;
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000549 to->ctxt = ctx;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000550
Daniel Veillardd34b0b82004-01-02 20:26:01 +0000551 if (to != &xmlLastError)
552 xmlCopyError(to,&xmlLastError);
553
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000554 /*
William M. Brackcd3628b2004-07-25 21:07:29 +0000555 * Find the callback channel if channel param is NULL
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000556 */
William M. Brack9f797ab2004-07-28 07:40:12 +0000557 if ((ctxt != NULL) && (channel == NULL) && (xmlStructuredError == NULL) && (ctxt->sax != NULL)) {
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000558 if (level == XML_ERR_WARNING)
559 channel = ctxt->sax->warning;
560 else
561 channel = ctxt->sax->error;
Daniel Veillard4c004142003-10-07 11:33:24 +0000562 data = ctxt->userData;
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000563 } else if (channel == NULL) {
Daniel Veillard659e71e2003-10-10 14:10:40 +0000564 if (xmlStructuredError != NULL)
565 schannel = xmlStructuredError;
566 else
567 channel = xmlGenericError;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000568 data = xmlGenericErrorContext;
569 }
Daniel Veillard659e71e2003-10-10 14:10:40 +0000570 if (schannel != NULL) {
571 schannel(data, to);
572 return;
573 }
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000574 if (channel == NULL)
575 return;
576
577 if ((channel == xmlParserError) ||
578 (channel == xmlParserWarning) ||
579 (channel == xmlParserValidityError) ||
580 (channel == xmlParserValidityWarning))
Daniel Veillard4c004142003-10-07 11:33:24 +0000581 xmlReportError(to, ctxt, str, NULL, NULL);
582 else if ((channel == (xmlGenericErrorFunc) fprintf) ||
583 (channel == xmlGenericErrorDefaultFunc))
584 xmlReportError(to, ctxt, str, channel, data);
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000585 else
586 channel(data, "%s", str);
587}
Daniel Veillard561b7f82002-03-20 21:55:57 +0000588
Daniel Veillarde356c282001-03-10 12:32:04 +0000589/**
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000590 * __xmlSimpleError:
591 * @domain: where the error comes from
592 * @code: the error code
593 * @node: the context node
594 * @extra: extra informations
595 *
596 * Handle an out of memory condition
597 */
598void
599__xmlSimpleError(int domain, int code, xmlNodePtr node,
600 const char *msg, const char *extra)
601{
602
603 if (code == XML_ERR_NO_MEMORY) {
604 if (extra)
Daniel Veillard659e71e2003-10-10 14:10:40 +0000605 __xmlRaiseError(NULL, NULL, NULL, NULL, node, domain,
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000606 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, extra,
607 NULL, NULL, 0, 0,
608 "Memory allocation failed : %s\n", extra);
609 else
Daniel Veillard659e71e2003-10-10 14:10:40 +0000610 __xmlRaiseError(NULL, NULL, NULL, NULL, node, domain,
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000611 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, NULL,
612 NULL, NULL, 0, 0, "Memory allocation failed\n");
613 } else {
Daniel Veillard659e71e2003-10-10 14:10:40 +0000614 __xmlRaiseError(NULL, NULL, NULL, NULL, node, domain,
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000615 code, XML_ERR_ERROR, NULL, 0, extra,
616 NULL, NULL, 0, 0, msg, extra);
617 }
618}
619/**
Owen Taylor3473f882001-02-23 17:55:21 +0000620 * xmlParserError:
621 * @ctx: an XML parser context
622 * @msg: the message to display/transmit
623 * @...: extra parameters for the message display
624 *
625 * Display and format an error messages, gives file, line, position and
626 * extra parameters.
627 */
628void
629xmlParserError(void *ctx, const char *msg, ...)
630{
631 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
632 xmlParserInputPtr input = NULL;
633 xmlParserInputPtr cur = NULL;
Daniel Veillarde356c282001-03-10 12:32:04 +0000634 char * str;
Owen Taylor3473f882001-02-23 17:55:21 +0000635
636 if (ctxt != NULL) {
637 input = ctxt->input;
638 if ((input != NULL) && (input->filename == NULL) &&
639 (ctxt->inputNr > 1)) {
640 cur = input;
641 input = ctxt->inputTab[ctxt->inputNr - 2];
642 }
643 xmlParserPrintFileInfo(input);
644 }
645
646 xmlGenericError(xmlGenericErrorContext, "error: ");
Daniel Veillard1c43dbf2001-06-05 17:12:52 +0000647 XML_GET_VAR_STR(msg, str);
Daniel Veillard635ef722001-10-29 11:48:19 +0000648 xmlGenericError(xmlGenericErrorContext, "%s", str);
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000649 if (str != NULL)
650 xmlFree(str);
Owen Taylor3473f882001-02-23 17:55:21 +0000651
652 if (ctxt != NULL) {
653 xmlParserPrintFileContext(input);
654 if (cur != NULL) {
655 xmlParserPrintFileInfo(cur);
656 xmlGenericError(xmlGenericErrorContext, "\n");
657 xmlParserPrintFileContext(cur);
658 }
659 }
660}
661
662/**
663 * xmlParserWarning:
664 * @ctx: an XML parser context
665 * @msg: the message to display/transmit
666 * @...: extra parameters for the message display
667 *
668 * Display and format a warning messages, gives file, line, position and
669 * extra parameters.
670 */
671void
672xmlParserWarning(void *ctx, const char *msg, ...)
673{
674 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
675 xmlParserInputPtr input = NULL;
676 xmlParserInputPtr cur = NULL;
Daniel Veillarde356c282001-03-10 12:32:04 +0000677 char * str;
Owen Taylor3473f882001-02-23 17:55:21 +0000678
679 if (ctxt != NULL) {
680 input = ctxt->input;
681 if ((input != NULL) && (input->filename == NULL) &&
682 (ctxt->inputNr > 1)) {
683 cur = input;
684 input = ctxt->inputTab[ctxt->inputNr - 2];
685 }
686 xmlParserPrintFileInfo(input);
687 }
688
689 xmlGenericError(xmlGenericErrorContext, "warning: ");
Daniel Veillard1c43dbf2001-06-05 17:12:52 +0000690 XML_GET_VAR_STR(msg, str);
Daniel Veillard635ef722001-10-29 11:48:19 +0000691 xmlGenericError(xmlGenericErrorContext, "%s", str);
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000692 if (str != NULL)
693 xmlFree(str);
Owen Taylor3473f882001-02-23 17:55:21 +0000694
695 if (ctxt != NULL) {
696 xmlParserPrintFileContext(input);
697 if (cur != NULL) {
698 xmlParserPrintFileInfo(cur);
699 xmlGenericError(xmlGenericErrorContext, "\n");
700 xmlParserPrintFileContext(cur);
701 }
702 }
703}
704
705/************************************************************************
706 * *
707 * Handling of validation errors *
708 * *
709 ************************************************************************/
710
711/**
712 * xmlParserValidityError:
713 * @ctx: an XML parser context
714 * @msg: the message to display/transmit
715 * @...: extra parameters for the message display
716 *
717 * Display and format an validity error messages, gives file,
718 * line, position and extra parameters.
719 */
720void
721xmlParserValidityError(void *ctx, const char *msg, ...)
722{
723 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
724 xmlParserInputPtr input = NULL;
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000725 char * str;
Daniel Veillard76575762002-09-05 14:21:15 +0000726 int len = xmlStrlen((const xmlChar *) msg);
727 static int had_info = 0;
Owen Taylor3473f882001-02-23 17:55:21 +0000728
Daniel Veillard76575762002-09-05 14:21:15 +0000729 if ((len > 1) && (msg[len - 2] != ':')) {
730 if (ctxt != NULL) {
731 input = ctxt->input;
732 if ((input->filename == NULL) && (ctxt->inputNr > 1))
733 input = ctxt->inputTab[ctxt->inputNr - 2];
734
735 if (had_info == 0) {
736 xmlParserPrintFileInfo(input);
737 }
738 }
739 xmlGenericError(xmlGenericErrorContext, "validity error: ");
Daniel Veillard76575762002-09-05 14:21:15 +0000740 had_info = 0;
741 } else {
742 had_info = 1;
Owen Taylor3473f882001-02-23 17:55:21 +0000743 }
744
Daniel Veillard1c43dbf2001-06-05 17:12:52 +0000745 XML_GET_VAR_STR(msg, str);
Daniel Veillard635ef722001-10-29 11:48:19 +0000746 xmlGenericError(xmlGenericErrorContext, "%s", str);
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000747 if (str != NULL)
748 xmlFree(str);
Owen Taylor3473f882001-02-23 17:55:21 +0000749
Daniel Veillard76575762002-09-05 14:21:15 +0000750 if ((ctxt != NULL) && (input != NULL)) {
Owen Taylor3473f882001-02-23 17:55:21 +0000751 xmlParserPrintFileContext(input);
752 }
753}
754
755/**
756 * xmlParserValidityWarning:
757 * @ctx: an XML parser context
758 * @msg: the message to display/transmit
759 * @...: extra parameters for the message display
760 *
761 * Display and format a validity warning messages, gives file, line,
762 * position and extra parameters.
763 */
764void
765xmlParserValidityWarning(void *ctx, const char *msg, ...)
766{
767 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
768 xmlParserInputPtr input = NULL;
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000769 char * str;
Daniel Veillard76575762002-09-05 14:21:15 +0000770 int len = xmlStrlen((const xmlChar *) msg);
Owen Taylor3473f882001-02-23 17:55:21 +0000771
Daniel Veillard76575762002-09-05 14:21:15 +0000772 if ((ctxt != NULL) && (len != 0) && (msg[len - 1] != ':')) {
Owen Taylor3473f882001-02-23 17:55:21 +0000773 input = ctxt->input;
774 if ((input->filename == NULL) && (ctxt->inputNr > 1))
775 input = ctxt->inputTab[ctxt->inputNr - 2];
776
777 xmlParserPrintFileInfo(input);
778 }
779
780 xmlGenericError(xmlGenericErrorContext, "validity warning: ");
Daniel Veillard1c43dbf2001-06-05 17:12:52 +0000781 XML_GET_VAR_STR(msg, str);
Daniel Veillard635ef722001-10-29 11:48:19 +0000782 xmlGenericError(xmlGenericErrorContext, "%s", str);
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000783 if (str != NULL)
784 xmlFree(str);
Owen Taylor3473f882001-02-23 17:55:21 +0000785
786 if (ctxt != NULL) {
787 xmlParserPrintFileContext(input);
788 }
789}
790
791
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000792/************************************************************************
793 * *
794 * Extended Error Handling *
795 * *
796 ************************************************************************/
797
798/**
799 * xmlGetLastError:
800 *
801 * Get the last global error registered. This is per thread if compiled
802 * with thread support.
803 *
804 * Returns NULL if no error occured or a pointer to the error
805 */
806xmlErrorPtr
807xmlGetLastError(void)
808{
809 if (xmlLastError.code == XML_ERR_OK)
810 return (NULL);
811 return (&xmlLastError);
812}
813
814/**
815 * xmlResetError:
816 * @err: pointer to the error.
817 *
818 * Cleanup the error.
819 */
820void
821xmlResetError(xmlErrorPtr err)
822{
823 if (err == NULL)
824 return;
825 if (err->code == XML_ERR_OK)
826 return;
827 if (err->message != NULL)
828 xmlFree(err->message);
829 if (err->file != NULL)
830 xmlFree(err->file);
831 if (err->str1 != NULL)
832 xmlFree(err->str1);
833 if (err->str2 != NULL)
834 xmlFree(err->str2);
835 if (err->str3 != NULL)
836 xmlFree(err->str3);
837 memset(err, 0, sizeof(xmlError));
838 err->code = XML_ERR_OK;
839}
840
841/**
842 * xmlResetLastError:
843 *
844 * Cleanup the last global error registered. For parsing error
845 * this does not change the well-formedness result.
846 */
847void
848xmlResetLastError(void)
849{
850 if (xmlLastError.code == XML_ERR_OK)
851 return;
852 xmlResetError(&xmlLastError);
853}
854
855/**
856 * xmlCtxtGetLastError:
857 * @ctx: an XML parser context
858 *
859 * Get the last parsing error registered.
860 *
861 * Returns NULL if no error occured or a pointer to the error
862 */
863xmlErrorPtr
864xmlCtxtGetLastError(void *ctx)
865{
866 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
867
868 if (ctxt == NULL)
869 return (NULL);
870 if (ctxt->lastError.code == XML_ERR_OK)
871 return (NULL);
872 return (&ctxt->lastError);
873}
874
875/**
876 * xmlCtxtResetLastError:
877 * @ctx: an XML parser context
878 *
879 * Cleanup the last global error registered. For parsing error
880 * this does not change the well-formedness result.
881 */
882void
883xmlCtxtResetLastError(void *ctx)
884{
885 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
886
887 if (ctxt == NULL)
888 return;
889 if (ctxt->lastError.code == XML_ERR_OK)
890 return;
891 xmlResetError(&ctxt->lastError);
892}
893
894/**
895 * xmlCopyError:
896 * @from: a source error
897 * @to: a target error
898 *
899 * Save the original error to the new place.
900 *
901 * Returns 0 in case of success and -1 in case of error.
902 */
903int
904xmlCopyError(xmlErrorPtr from, xmlErrorPtr to) {
William M. Bracka3215c72004-07-31 16:24:01 +0000905 char *message, *file, *str1, *str2, *str3;
906
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000907 if ((from == NULL) || (to == NULL))
908 return(-1);
William M. Bracka3215c72004-07-31 16:24:01 +0000909
910 message = (char *) xmlStrdup((xmlChar *) from->message);
911 file = (char *) xmlStrdup ((xmlChar *) from->file);
912 str1 = (char *) xmlStrdup ((xmlChar *) from->str1);
913 str2 = (char *) xmlStrdup ((xmlChar *) from->str2);
914 str3 = (char *) xmlStrdup ((xmlChar *) from->str3);
915
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000916 if (to->message != NULL)
917 xmlFree(to->message);
918 if (to->file != NULL)
919 xmlFree(to->file);
920 if (to->str1 != NULL)
921 xmlFree(to->str1);
922 if (to->str2 != NULL)
923 xmlFree(to->str2);
924 if (to->str3 != NULL)
925 xmlFree(to->str3);
926 to->domain = from->domain;
927 to->code = from->code;
928 to->level = from->level;
929 to->line = from->line;
Daniel Veillard4c004142003-10-07 11:33:24 +0000930 to->node = from->node;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000931 to->int1 = from->int1;
932 to->int2 = from->int2;
Daniel Veillard4c004142003-10-07 11:33:24 +0000933 to->node = from->node;
934 to->ctxt = from->ctxt;
William M. Bracka3215c72004-07-31 16:24:01 +0000935 to->message = message;
936 to->file = file;
937 to->str1 = str1;
938 to->str2 = str2;
939 to->str3 = str3;
940
941 return 0;
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000942}
943