blob: fb9141bce99b8eeb829636282a7d84306b45debf [file] [log] [blame]
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001/*
2 * xmllint.c : a small tester program for XML input.
3 *
4 * See Copyright for the status of this software.
5 *
Daniel Veillardc5d64342001-06-24 12:13:24 +00006 * daniel@veillard.com
Daniel Veillardce8b83b2000-04-05 18:38:42 +00007 */
8
Bjorn Reese70a9da52001-04-21 16:57:29 +00009#include "libxml.h"
Daniel Veillardce8b83b2000-04-05 18:38:42 +000010
Daniel Veillardce8b83b2000-04-05 18:38:42 +000011#include <string.h>
Daniel Veillardce8b83b2000-04-05 18:38:42 +000012#include <stdarg.h>
Daniel Veillard28ae6362001-07-14 16:44:32 +000013
Daniel Veillard8a1b1852003-01-05 22:37:17 +000014#include <assert.h>
15
Daniel Veillard3c5ed912002-01-08 10:36:16 +000016#if defined (_WIN32) && !defined(__CYGWIN__)
Daniel Veillard2d90de42001-04-16 17:46:18 +000017#ifdef _MSC_VER
18#include <winsock2.h>
19#pragma comment(lib, "ws2_32.lib")
20#define gettimeofday(p1,p2)
Daniel Veillardf216d462002-02-08 13:44:24 +000021#include <time.h>
Daniel Veillard28ae6362001-07-14 16:44:32 +000022#else /* _MSC_VER */
23#include <sys/time.h>
Daniel Veillard2d90de42001-04-16 17:46:18 +000024#endif /* _MSC_VER */
25#else /* _WIN32 */
Daniel Veillarded472f32001-12-13 08:48:14 +000026#ifdef HAVE_SYS_TIME_H
Daniel Veillard48b2f892001-02-25 16:11:03 +000027#include <sys/time.h>
Daniel Veillarded472f32001-12-13 08:48:14 +000028#endif
Daniel Veillard01db67c2001-12-18 07:09:59 +000029#ifdef HAVE_TIME_H
30#include <time.h>
31#endif
Daniel Veillard2d90de42001-04-16 17:46:18 +000032#endif /* _WIN32 */
Daniel Veillard48b2f892001-02-25 16:11:03 +000033
Daniel Veillard90bc3712002-03-07 15:12:58 +000034#ifdef HAVE_SYS_TIMEB_H
35#include <sys/timeb.h>
36#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +000037
38#ifdef HAVE_SYS_TYPES_H
39#include <sys/types.h>
40#endif
41#ifdef HAVE_SYS_STAT_H
42#include <sys/stat.h>
43#endif
44#ifdef HAVE_FCNTL_H
45#include <fcntl.h>
46#endif
47#ifdef HAVE_UNISTD_H
48#include <unistd.h>
49#endif
Daniel Veillard46e370e2000-07-21 20:32:03 +000050#ifdef HAVE_SYS_MMAN_H
51#include <sys/mman.h>
Daniel Veillard87b95392000-08-12 21:12:04 +000052/* seems needed for Solaris */
53#ifndef MAP_FAILED
54#define MAP_FAILED ((void *) -1)
55#endif
Daniel Veillard46e370e2000-07-21 20:32:03 +000056#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +000057#ifdef HAVE_STDLIB_H
58#include <stdlib.h>
59#endif
60#ifdef HAVE_LIBREADLINE
61#include <readline/readline.h>
62#ifdef HAVE_LIBHISTORY
63#include <readline/history.h>
64#endif
65#endif
66
67#include <libxml/xmlmemory.h>
68#include <libxml/parser.h>
69#include <libxml/parserInternals.h>
70#include <libxml/HTMLparser.h>
71#include <libxml/HTMLtree.h>
72#include <libxml/tree.h>
73#include <libxml/xpath.h>
74#include <libxml/debugXML.h>
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +000075#include <libxml/xmlerror.h>
Daniel Veillard9e8bfae2000-11-06 16:43:11 +000076#ifdef LIBXML_XINCLUDE_ENABLED
77#include <libxml/xinclude.h>
78#endif
Daniel Veillard81418e32001-05-22 15:08:55 +000079#ifdef LIBXML_CATALOG_ENABLED
80#include <libxml/catalog.h>
81#endif
Daniel Veillard89cad532001-10-22 09:46:13 +000082#ifdef LIBXML_DOCB_ENABLED
83#include <libxml/DOCBparser.h>
84#endif
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000085#include <libxml/globals.h>
Daniel Veillard7704fb12003-01-03 16:19:51 +000086#include <libxml/xmlreader.h>
Daniel Veillard71531f32003-02-05 13:19:53 +000087#ifdef LIBXML_SCHEMAS_ENABLED
88#include <libxml/relaxng.h>
89#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +000090
Daniel Veillard3be27512003-01-26 19:49:04 +000091#ifndef XML_XML_DEFAULT_CATALOG
92#define XML_XML_DEFAULT_CATALOG "file:///etc/xml/catalog"
93#endif
94
Daniel Veillardce8b83b2000-04-05 18:38:42 +000095#ifdef LIBXML_DEBUG_ENABLED
Daniel Veillardce8b83b2000-04-05 18:38:42 +000096static int shell = 0;
97static int debugent = 0;
98#endif
Daniel Veillard8326e732003-01-07 00:19:07 +000099static int debug = 0;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000100static int copy = 0;
101static int recovery = 0;
102static int noent = 0;
103static int noout = 0;
104static int nowrap = 0;
105static int valid = 0;
106static int postvalid = 0;
Daniel Veillardcd429612000-10-11 15:57:05 +0000107static char * dtdvalid = NULL;
Daniel Veillard71531f32003-02-05 13:19:53 +0000108#ifdef LIBXML_SCHEMAS_ENABLED
109static char * relaxng = NULL;
110static xmlRelaxNGPtr relaxngschemas = NULL;
111#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000112static int repeat = 0;
113static int insert = 0;
114static int compress = 0;
Daniel Veillard89cad532001-10-22 09:46:13 +0000115#ifdef LIBXML_DOCB_ENABLED
116static int sgml = 0;
117#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000118static int html = 0;
119static int htmlout = 0;
120static int push = 0;
Daniel Veillard46e370e2000-07-21 20:32:03 +0000121#ifdef HAVE_SYS_MMAN_H
122static int memory = 0;
123#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000124static int noblanks = 0;
Daniel Veillard90493a92001-08-14 14:12:47 +0000125static int format = 0;
Daniel Veillard5e873c42000-04-12 13:27:38 +0000126static int testIO = 0;
Daniel Veillardbe803962000-06-28 23:40:59 +0000127static char *encoding = NULL;
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000128#ifdef LIBXML_XINCLUDE_ENABLED
129static int xinclude = 0;
130#endif
Daniel Veillard48da9102001-08-07 01:10:10 +0000131static int dtdattrs = 0;
Daniel Veillard10ea86c2001-06-20 13:55:33 +0000132static int loaddtd = 0;
Daniel Veillardf7cd4812001-02-23 18:44:52 +0000133static int progresult = 0;
Daniel Veillard48b2f892001-02-25 16:11:03 +0000134static int timing = 0;
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000135static int generate = 0;
Daniel Veillard29e43992001-12-13 22:21:58 +0000136static int dropdtd = 0;
Daniel Veillarde2940dd2001-08-22 00:06:49 +0000137#ifdef LIBXML_CATALOG_ENABLED
138static int catalogs = 0;
139static int nocatalogs = 0;
140#endif
Daniel Veillard7704fb12003-01-03 16:19:51 +0000141static int stream = 0;
Daniel Veillard8a1b1852003-01-05 22:37:17 +0000142static int chkregister = 0;
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000143static const char *output = NULL;
144
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000145
Daniel Veillard01db67c2001-12-18 07:09:59 +0000146/*
147 * Internal timing routines to remove the necessity to have unix-specific
148 * function calls
149 */
150
Daniel Veillard8c1ae602002-03-07 11:21:00 +0000151#ifndef HAVE_GETTIMEOFDAY
152#ifdef HAVE_SYS_TIMEB_H
153#ifdef HAVE_SYS_TIME_H
154#ifdef HAVE_FTIME
155
Daniel Veillard01c13b52002-12-10 15:19:08 +0000156static int
Daniel Veillard8c1ae602002-03-07 11:21:00 +0000157my_gettimeofday(struct timeval *tvp, void *tzp)
158{
159 struct timeb timebuffer;
160
161 ftime(&timebuffer);
162 if (tvp) {
163 tvp->tv_sec = timebuffer.time;
164 tvp->tv_usec = timebuffer.millitm * 1000L;
165 }
166 return (0);
167}
168#define HAVE_GETTIMEOFDAY 1
169#define gettimeofday my_gettimeofday
170
171#endif /* HAVE_FTIME */
172#endif /* HAVE_SYS_TIME_H */
173#endif /* HAVE_SYS_TIMEB_H */
174#endif /* !HAVE_GETTIMEOFDAY */
175
Daniel Veillard01db67c2001-12-18 07:09:59 +0000176#if defined(HAVE_GETTIMEOFDAY)
177static struct timeval begin, end;
178
179/*
180 * startTimer: call where you want to start timing
181 */
182static void
183startTimer(void)
184{
185 gettimeofday(&begin, NULL);
186}
187
188/*
189 * endTimer: call where you want to stop timing and to print out a
190 * message about the timing performed; format is a printf
191 * type argument
192 */
193static void
Daniel Veillard118aed72002-09-24 14:13:13 +0000194endTimer(const char *fmt, ...)
Daniel Veillard01db67c2001-12-18 07:09:59 +0000195{
196 long msec;
197 va_list ap;
198
199 gettimeofday(&end, NULL);
200 msec = end.tv_sec - begin.tv_sec;
201 msec *= 1000;
202 msec += (end.tv_usec - begin.tv_usec) / 1000;
203
204#ifndef HAVE_STDARG_H
205#error "endTimer required stdarg functions"
206#endif
Daniel Veillard118aed72002-09-24 14:13:13 +0000207 va_start(ap, fmt);
208 vfprintf(stderr, fmt, ap);
Daniel Veillard01db67c2001-12-18 07:09:59 +0000209 va_end(ap);
210
211 fprintf(stderr, " took %ld ms\n", msec);
212}
213#elif defined(HAVE_TIME_H)
Daniel Veillard01db67c2001-12-18 07:09:59 +0000214/*
215 * No gettimeofday function, so we have to make do with calling clock.
216 * This is obviously less accurate, but there's little we can do about
217 * that.
218 */
Daniel Veillard90bc3712002-03-07 15:12:58 +0000219#ifndef CLOCKS_PER_SEC
220#define CLOCKS_PER_SEC 100
221#endif
Daniel Veillard01db67c2001-12-18 07:09:59 +0000222
223static clock_t begin, end;
224static void
225startTimer(void)
226{
227 begin = clock();
228}
229static void
230endTimer(const char *fmt, ...)
231{
232 long msec;
233 va_list ap;
234
235 end = clock();
236 msec = ((end - begin) * 1000) / CLOCKS_PER_SEC;
237
238#ifndef HAVE_STDARG_H
239#error "endTimer required stdarg functions"
240#endif
241 va_start(ap, fmt);
242 vfprintf(stderr, fmt, ap);
243 va_end(ap);
244 fprintf(stderr, " took %ld ms\n", msec);
245}
246#else
247
248/*
249 * We don't have a gettimeofday or time.h, so we just don't do timing
250 */
251static void
252startTimer(void)
253{
254 /*
255 * Do nothing
256 */
257}
258static void
259endTimer(char *format, ...)
260{
261 /*
262 * We cannot do anything because we don't have a timing function
263 */
264#ifdef HAVE_STDARG_H
265 va_start(ap, format);
266 vfprintf(stderr, format, ap);
267 va_end(ap);
268 fprintf(stderr, " was not timed\n", msec);
269#else
270 /* We don't have gettimeofday, time or stdarg.h, what crazy world is
271 * this ?!
272 */
273#endif
274}
275#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000276/************************************************************************
277 * *
278 * HTML ouput *
279 * *
280 ************************************************************************/
281char buffer[50000];
282
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000283static void
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000284xmlHTMLEncodeSend(void) {
285 char *result;
286
287 result = (char *) xmlEncodeEntitiesReentrant(NULL, BAD_CAST buffer);
288 if (result) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +0000289 xmlGenericError(xmlGenericErrorContext, "%s", result);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000290 xmlFree(result);
291 }
292 buffer[0] = 0;
293}
294
295/**
296 * xmlHTMLPrintFileInfo:
297 * @input: an xmlParserInputPtr input
298 *
299 * Displays the associated file and line informations for the current input
300 */
301
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000302static void
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000303xmlHTMLPrintFileInfo(xmlParserInputPtr input) {
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000304 int len;
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +0000305 xmlGenericError(xmlGenericErrorContext, "<p>");
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000306
307 len = strlen(buffer);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000308 if (input != NULL) {
309 if (input->filename) {
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000310 snprintf(&buffer[len], sizeof(buffer) - len, "%s:%d: ", input->filename,
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000311 input->line);
312 } else {
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000313 snprintf(&buffer[len], sizeof(buffer) - len, "Entity: line %d: ", input->line);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000314 }
315 }
316 xmlHTMLEncodeSend();
317}
318
319/**
320 * xmlHTMLPrintFileContext:
321 * @input: an xmlParserInputPtr input
322 *
323 * Displays current context within the input content for error tracking
324 */
325
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000326static void
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000327xmlHTMLPrintFileContext(xmlParserInputPtr input) {
328 const xmlChar *cur, *base;
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000329 int len;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000330 int n;
331
332 if (input == NULL) return;
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +0000333 xmlGenericError(xmlGenericErrorContext, "<pre>\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000334 cur = input->cur;
335 base = input->base;
336 while ((cur > base) && ((*cur == '\n') || (*cur == '\r'))) {
337 cur--;
338 }
339 n = 0;
340 while ((n++ < 80) && (cur > base) && (*cur != '\n') && (*cur != '\r'))
341 cur--;
342 if ((*cur == '\n') || (*cur == '\r')) cur++;
343 base = cur;
344 n = 0;
345 while ((*cur != 0) && (*cur != '\n') && (*cur != '\r') && (n < 79)) {
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000346 len = strlen(buffer);
347 snprintf(&buffer[len], sizeof(buffer) - len, "%c",
348 (unsigned char) *cur++);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000349 n++;
350 }
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000351 len = strlen(buffer);
352 snprintf(&buffer[len], sizeof(buffer) - len, "\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000353 cur = input->cur;
354 while ((*cur == '\n') || (*cur == '\r'))
355 cur--;
356 n = 0;
357 while ((cur != base) && (n++ < 80)) {
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000358 len = strlen(buffer);
359 snprintf(&buffer[len], sizeof(buffer) - len, " ");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000360 base++;
361 }
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000362 len = strlen(buffer);
363 snprintf(&buffer[len], sizeof(buffer) - len, "^\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000364 xmlHTMLEncodeSend();
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +0000365 xmlGenericError(xmlGenericErrorContext, "</pre>");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000366}
367
368/**
369 * xmlHTMLError:
370 * @ctx: an XML parser context
371 * @msg: the message to display/transmit
372 * @...: extra parameters for the message display
373 *
374 * Display and format an error messages, gives file, line, position and
375 * extra parameters.
376 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000377static void
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000378xmlHTMLError(void *ctx, const char *msg, ...)
379{
380 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
381 xmlParserInputPtr input;
382 xmlParserInputPtr cur = NULL;
383 va_list args;
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000384 int len;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000385
386 buffer[0] = 0;
387 input = ctxt->input;
388 if ((input != NULL) && (input->filename == NULL) && (ctxt->inputNr > 1)) {
389 cur = input;
390 input = ctxt->inputTab[ctxt->inputNr - 2];
391 }
392
393 xmlHTMLPrintFileInfo(input);
394
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +0000395 xmlGenericError(xmlGenericErrorContext, "<b>error</b>: ");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000396 va_start(args, msg);
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000397 len = strlen(buffer);
398 vsnprintf(&buffer[len], sizeof(buffer) - len, msg, args);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000399 va_end(args);
400 xmlHTMLEncodeSend();
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +0000401 xmlGenericError(xmlGenericErrorContext, "</p>\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000402
403 xmlHTMLPrintFileContext(input);
404 xmlHTMLEncodeSend();
405}
406
407/**
408 * xmlHTMLWarning:
409 * @ctx: an XML parser context
410 * @msg: the message to display/transmit
411 * @...: extra parameters for the message display
412 *
413 * Display and format a warning messages, gives file, line, position and
414 * extra parameters.
415 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000416static void
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000417xmlHTMLWarning(void *ctx, const char *msg, ...)
418{
419 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
420 xmlParserInputPtr input;
421 xmlParserInputPtr cur = NULL;
422 va_list args;
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000423 int len;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000424
425 buffer[0] = 0;
426 input = ctxt->input;
427 if ((input != NULL) && (input->filename == NULL) && (ctxt->inputNr > 1)) {
428 cur = input;
429 input = ctxt->inputTab[ctxt->inputNr - 2];
430 }
431
432
433 xmlHTMLPrintFileInfo(input);
434
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +0000435 xmlGenericError(xmlGenericErrorContext, "<b>warning</b>: ");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000436 va_start(args, msg);
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000437 len = strlen(buffer);
438 vsnprintf(&buffer[len], sizeof(buffer) - len, msg, args);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000439 va_end(args);
440 xmlHTMLEncodeSend();
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +0000441 xmlGenericError(xmlGenericErrorContext, "</p>\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000442
443 xmlHTMLPrintFileContext(input);
444 xmlHTMLEncodeSend();
445}
446
447/**
448 * xmlHTMLValidityError:
449 * @ctx: an XML parser context
450 * @msg: the message to display/transmit
451 * @...: extra parameters for the message display
452 *
453 * Display and format an validity error messages, gives file,
454 * line, position and extra parameters.
455 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000456static void
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000457xmlHTMLValidityError(void *ctx, const char *msg, ...)
458{
459 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
460 xmlParserInputPtr input;
461 va_list args;
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000462 int len;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000463
464 buffer[0] = 0;
465 input = ctxt->input;
466 if ((input->filename == NULL) && (ctxt->inputNr > 1))
467 input = ctxt->inputTab[ctxt->inputNr - 2];
468
469 xmlHTMLPrintFileInfo(input);
470
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +0000471 xmlGenericError(xmlGenericErrorContext, "<b>validity error</b>: ");
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000472 len = strlen(buffer);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000473 va_start(args, msg);
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000474 vsnprintf(&buffer[len], sizeof(buffer) - len, msg, args);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000475 va_end(args);
476 xmlHTMLEncodeSend();
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +0000477 xmlGenericError(xmlGenericErrorContext, "</p>\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000478
479 xmlHTMLPrintFileContext(input);
480 xmlHTMLEncodeSend();
481}
482
483/**
484 * xmlHTMLValidityWarning:
485 * @ctx: an XML parser context
486 * @msg: the message to display/transmit
487 * @...: extra parameters for the message display
488 *
489 * Display and format a validity warning messages, gives file, line,
490 * position and extra parameters.
491 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000492static void
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000493xmlHTMLValidityWarning(void *ctx, const char *msg, ...)
494{
495 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
496 xmlParserInputPtr input;
497 va_list args;
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000498 int len;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000499
500 buffer[0] = 0;
501 input = ctxt->input;
502 if ((input->filename == NULL) && (ctxt->inputNr > 1))
503 input = ctxt->inputTab[ctxt->inputNr - 2];
504
505 xmlHTMLPrintFileInfo(input);
506
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +0000507 xmlGenericError(xmlGenericErrorContext, "<b>validity warning</b>: ");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000508 va_start(args, msg);
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000509 len = strlen(buffer);
510 vsnprintf(&buffer[len], sizeof(buffer) - len, msg, args);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000511 va_end(args);
512 xmlHTMLEncodeSend();
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +0000513 xmlGenericError(xmlGenericErrorContext, "</p>\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000514
515 xmlHTMLPrintFileContext(input);
516 xmlHTMLEncodeSend();
517}
518
519/************************************************************************
520 * *
521 * Shell Interface *
522 * *
523 ************************************************************************/
Daniel Veillard56ada1d2003-01-07 11:17:25 +0000524#ifdef LIBXML_DEBUG_ENABLED
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000525/**
526 * xmlShellReadline:
527 * @prompt: the prompt value
528 *
529 * Read a string
530 *
531 * Returns a pointer to it or NULL on EOF the caller is expected to
532 * free the returned string.
533 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000534static char *
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000535xmlShellReadline(char *prompt) {
536#ifdef HAVE_LIBREADLINE
537 char *line_read;
538
539 /* Get a line from the user. */
540 line_read = readline (prompt);
541
542 /* If the line has any text in it, save it on the history. */
543 if (line_read && *line_read)
544 add_history (line_read);
545
546 return (line_read);
547#else
548 char line_read[501];
Daniel Veillard29e43992001-12-13 22:21:58 +0000549 char *ret;
550 int len;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000551
552 if (prompt != NULL)
553 fprintf(stdout, "%s", prompt);
554 if (!fgets(line_read, 500, stdin))
555 return(NULL);
556 line_read[500] = 0;
Daniel Veillard29e43992001-12-13 22:21:58 +0000557 len = strlen(line_read);
558 ret = (char *) malloc(len + 1);
559 if (ret != NULL) {
560 memcpy (ret, line_read, len + 1);
561 }
562 return(ret);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000563#endif
564}
Daniel Veillard56ada1d2003-01-07 11:17:25 +0000565#endif /* LIBXML_DEBUG_ENABLED */
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000566
567/************************************************************************
568 * *
Daniel Veillard5e873c42000-04-12 13:27:38 +0000569 * I/O Interfaces *
570 * *
571 ************************************************************************/
572
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000573static int myRead(FILE *f, char * buf, int len) {
574 return(fread(buf, 1, len, f));
Daniel Veillard5e873c42000-04-12 13:27:38 +0000575}
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000576static void myClose(FILE *f) {
Daniel Veillard4a6845d2001-01-03 13:32:39 +0000577 if (f != stdin) {
Daniel Veillard5e873c42000-04-12 13:27:38 +0000578 fclose(f);
Daniel Veillard4a6845d2001-01-03 13:32:39 +0000579 }
Daniel Veillard5e873c42000-04-12 13:27:38 +0000580}
581
582/************************************************************************
583 * *
Daniel Veillard7704fb12003-01-03 16:19:51 +0000584 * Stream Test processing *
585 * *
586 ************************************************************************/
587static int count = 0;
588static int elem, attrs;
589
590static void processNode(xmlTextReaderPtr reader) {
Daniel Veillarde59494f2003-01-04 16:35:29 +0000591 xmlChar *name, *value;
Daniel Veillard7704fb12003-01-03 16:19:51 +0000592
Daniel Veillarde59494f2003-01-04 16:35:29 +0000593 name = xmlTextReaderName(reader);
594 if (name == NULL)
595 name = xmlStrdup(BAD_CAST "--");
Daniel Veillard99737f52003-03-22 14:55:50 +0000596
Daniel Veillarde59494f2003-01-04 16:35:29 +0000597 value = xmlTextReaderValue(reader);
Daniel Veillard7704fb12003-01-03 16:19:51 +0000598
Daniel Veillard99737f52003-03-22 14:55:50 +0000599 printf("%d %d %s %d %d",
Daniel Veillarde59494f2003-01-04 16:35:29 +0000600 xmlTextReaderDepth(reader),
601 xmlTextReaderNodeType(reader),
602 name,
Daniel Veillard99737f52003-03-22 14:55:50 +0000603 xmlTextReaderIsEmptyElement(reader),
604 xmlTextReaderHasValue(reader));
Daniel Veillarde59494f2003-01-04 16:35:29 +0000605 xmlFree(name);
606 if (value == NULL)
607 printf("\n");
608 else {
609 printf(" %s\n", value);
610 xmlFree(value);
Daniel Veillard7704fb12003-01-03 16:19:51 +0000611 }
612}
613
614static void streamFile(char *filename) {
615 xmlTextReaderPtr reader;
616 int ret;
617
618 if (count) {
619 elem = 0;
620 attrs = 0;
621 }
622
623 reader = xmlNewTextReaderFilename(filename);
624 if (reader != NULL) {
625 if (valid)
626 xmlTextReaderSetParserProp(reader, XML_PARSER_VALIDATE, 1);
627
628 /*
629 * Process all nodes in sequence
630 */
631 ret = xmlTextReaderRead(reader);
632 while (ret == 1) {
633 if (debug)
634 processNode(reader);
635 ret = xmlTextReaderRead(reader);
636 }
637
Daniel Veillardf6bad792003-04-11 19:38:54 +0000638 if (valid) {
639 if (xmlTextReaderIsValid(reader) != 1) {
640 xmlGenericError(xmlGenericErrorContext,
641 "Document %s does not validate\n", filename);
642 progresult = 3;
643 }
644 }
Daniel Veillard7704fb12003-01-03 16:19:51 +0000645 /*
646 * Done, cleanup and status
647 */
648 xmlFreeTextReader(reader);
649 if (ret != 0) {
650 printf("%s : failed to parse\n", filename);
Daniel Veillardf6bad792003-04-11 19:38:54 +0000651 progresult = 1;
Daniel Veillard7704fb12003-01-03 16:19:51 +0000652 }
653 } else {
654 fprintf(stderr, "Unable to open %s\n", filename);
Daniel Veillardf6bad792003-04-11 19:38:54 +0000655 progresult = 1;
Daniel Veillard7704fb12003-01-03 16:19:51 +0000656 }
657}
658
659/************************************************************************
660 * *
661 * Tree Test processing *
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000662 * *
663 ************************************************************************/
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000664static void parseAndPrintFile(char *filename) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000665 xmlDocPtr doc = NULL, tmp;
666
Daniel Veillard48b2f892001-02-25 16:11:03 +0000667 if ((timing) && (!repeat))
Daniel Veillard01db67c2001-12-18 07:09:59 +0000668 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +0000669
670
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000671 if (filename == NULL) {
672 if (generate) {
673 xmlNodePtr n;
674
675 doc = xmlNewDoc(BAD_CAST "1.0");
676 n = xmlNewNode(NULL, BAD_CAST "info");
677 xmlNodeSetContent(n, BAD_CAST "abc");
678 xmlDocSetRootElement(doc, n);
679 }
680 }
Daniel Veillard89cad532001-10-22 09:46:13 +0000681#ifdef LIBXML_DOCB_ENABLED
682 /*
683 * build an SGML tree from a string;
684 */
685 else if ((sgml) && (push)) {
686 FILE *f;
687
688 f = fopen(filename, "r");
689 if (f != NULL) {
690 int res, size = 3;
691 char chars[4096];
692 docbParserCtxtPtr ctxt;
693
694 /* if (repeat) */
695 size = 4096;
696 res = fread(chars, 1, 4, f);
697 if (res > 0) {
698 ctxt = docbCreatePushParserCtxt(NULL, NULL,
699 chars, res, filename, 0);
700 while ((res = fread(chars, 1, size, f)) > 0) {
701 docbParseChunk(ctxt, chars, res, 0);
702 }
703 docbParseChunk(ctxt, chars, 0, 1);
704 doc = ctxt->myDoc;
705 docbFreeParserCtxt(ctxt);
706 }
707 fclose(f);
708 }
709 } else if (sgml) {
710 doc = docbParseFile(filename, NULL);
711 }
712#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000713#ifdef LIBXML_HTML_ENABLED
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000714 else if (html) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000715 doc = htmlParseFile(filename, NULL);
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000716 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000717#endif /* LIBXML_HTML_ENABLED */
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000718 else {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000719 /*
720 * build an XML tree from a string;
721 */
722 if (push) {
723 FILE *f;
724
Daniel Veillard4a6845d2001-01-03 13:32:39 +0000725 /* '-' Usually means stdin -<sven@zen.org> */
726 if ((filename[0] == '-') && (filename[1] == 0)) {
727 f = stdin;
728 } else {
729 f = fopen(filename, "r");
730 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000731 if (f != NULL) {
Daniel Veillarde715dd22000-08-29 18:29:38 +0000732 int ret;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000733 int res, size = 3;
734 char chars[1024];
735 xmlParserCtxtPtr ctxt;
736
737 if (repeat)
738 size = 1024;
739 res = fread(chars, 1, 4, f);
740 if (res > 0) {
741 ctxt = xmlCreatePushParserCtxt(NULL, NULL,
742 chars, res, filename);
743 while ((res = fread(chars, 1, size, f)) > 0) {
744 xmlParseChunk(ctxt, chars, res, 0);
745 }
746 xmlParseChunk(ctxt, chars, 0, 1);
747 doc = ctxt->myDoc;
Daniel Veillarde715dd22000-08-29 18:29:38 +0000748 ret = ctxt->wellFormed;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000749 xmlFreeParserCtxt(ctxt);
Daniel Veillarde715dd22000-08-29 18:29:38 +0000750 if (!ret) {
751 xmlFreeDoc(doc);
752 doc = NULL;
753 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000754 }
755 }
Daniel Veillard5e873c42000-04-12 13:27:38 +0000756 } else if (testIO) {
757 int ret;
758 FILE *f;
759
Daniel Veillard4a6845d2001-01-03 13:32:39 +0000760 /* '-' Usually means stdin -<sven@zen.org> */
761 if ((filename[0] == '-') && (filename[1] == 0)) {
762 f = stdin;
763 } else {
764 f = fopen(filename, "r");
765 }
Daniel Veillard5e873c42000-04-12 13:27:38 +0000766 if (f != NULL) {
767 xmlParserCtxtPtr ctxt;
768
769 ctxt = xmlCreateIOParserCtxt(NULL, NULL,
770 (xmlInputReadCallback) myRead,
771 (xmlInputCloseCallback) myClose,
772 f, XML_CHAR_ENCODING_NONE);
773 xmlParseDocument(ctxt);
774
775 ret = ctxt->wellFormed;
776 doc = ctxt->myDoc;
777 xmlFreeParserCtxt(ctxt);
778 if (!ret) {
779 xmlFreeDoc(doc);
780 doc = NULL;
781 }
782 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000783 } else if (recovery) {
784 doc = xmlRecoverFile(filename);
785 } else if (htmlout) {
786 int ret;
787 xmlParserCtxtPtr ctxt;
788 xmlSAXHandler silent, *old;
789
790 ctxt = xmlCreateFileParserCtxt(filename);
Daniel Veillard88a172f2000-08-04 18:23:10 +0000791
792 if (ctxt == NULL) {
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000793 /* If xmlCreateFileParserCtxt() return NULL something
Daniel Veillard88a172f2000-08-04 18:23:10 +0000794 strange happened so we don't want to do anything. Do
795 we want to print an error message here?
796 <sven@zen.org> */
Daniel Veillard7ebb1ee2000-08-04 18:24:45 +0000797 doc = NULL;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000798 } else {
799 memcpy(&silent, ctxt->sax, sizeof(silent));
800 old = ctxt->sax;
801 silent.error = xmlHTMLError;
802 if (xmlGetWarningsDefaultValue)
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000803 silent.warning = xmlHTMLWarning;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000804 else
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000805 silent.warning = NULL;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000806 silent.fatalError = xmlHTMLError;
807 ctxt->sax = &silent;
808 ctxt->vctxt.error = xmlHTMLValidityError;
809 if (xmlGetWarningsDefaultValue)
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000810 ctxt->vctxt.warning = xmlHTMLValidityWarning;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000811 else
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000812 ctxt->vctxt.warning = NULL;
813
Daniel Veillard88a172f2000-08-04 18:23:10 +0000814 xmlParseDocument(ctxt);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000815
Daniel Veillard88a172f2000-08-04 18:23:10 +0000816 ret = ctxt->wellFormed;
817 doc = ctxt->myDoc;
818 ctxt->sax = old;
819 xmlFreeParserCtxt(ctxt);
820 if (!ret) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000821 xmlFreeDoc(doc);
822 doc = NULL;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000823 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000824 }
Daniel Veillard46e370e2000-07-21 20:32:03 +0000825#ifdef HAVE_SYS_MMAN_H
826 } else if (memory) {
827 int fd;
828 struct stat info;
829 const char *base;
830 if (stat(filename, &info) < 0)
831 return;
832 if ((fd = open(filename, O_RDONLY)) < 0)
833 return;
834 base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
Daniel Veillard29579362000-08-14 17:57:48 +0000835 if (base == (void *) MAP_FAILED)
Daniel Veillard46e370e2000-07-21 20:32:03 +0000836 return;
837
838 doc = xmlParseMemory((char *) base, info.st_size);
839 munmap((char *) base, info.st_size);
840#endif
Daniel Veillardea7751d2002-12-20 00:16:24 +0000841 } else if (valid) {
842 int ret;
843 xmlParserCtxtPtr ctxt;
844
845 ctxt = xmlCreateFileParserCtxt(filename);
846
847 if (ctxt == NULL) {
848 doc = NULL;
849 } else {
850 xmlParseDocument(ctxt);
851 if (ctxt->valid == 0)
852 progresult = 4;
853 ret = ctxt->wellFormed;
854 doc = ctxt->myDoc;
855 xmlFreeParserCtxt(ctxt);
856 if (!ret) {
857 xmlFreeDoc(doc);
858 doc = NULL;
859 }
860 }
861 } else {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000862 doc = xmlParseFile(filename);
Daniel Veillardea7751d2002-12-20 00:16:24 +0000863 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000864 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000865
Daniel Veillard88a172f2000-08-04 18:23:10 +0000866 /*
867 * If we don't have a document we might as well give up. Do we
868 * want an error message here? <sven@zen.org> */
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000869 if (doc == NULL) {
Daniel Veillardf7cd4812001-02-23 18:44:52 +0000870 progresult = 1;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000871 return;
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000872 }
873
Daniel Veillard48b2f892001-02-25 16:11:03 +0000874 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000875 endTimer("Parsing");
Daniel Veillard48b2f892001-02-25 16:11:03 +0000876 }
877
Daniel Veillard29e43992001-12-13 22:21:58 +0000878 /*
879 * Remove DOCTYPE nodes
880 */
881 if (dropdtd) {
882 xmlDtdPtr dtd;
883
884 dtd = xmlGetIntSubset(doc);
885 if (dtd != NULL) {
886 xmlUnlinkNode((xmlNodePtr)dtd);
887 xmlFreeDtd(dtd);
888 }
889 }
890
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000891#ifdef LIBXML_XINCLUDE_ENABLED
Daniel Veillard48b2f892001-02-25 16:11:03 +0000892 if (xinclude) {
893 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000894 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +0000895 }
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000896 xmlXIncludeProcess(doc);
Daniel Veillard48b2f892001-02-25 16:11:03 +0000897 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000898 endTimer("Xinclude processing");
Daniel Veillard48b2f892001-02-25 16:11:03 +0000899 }
900 }
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000901#endif
Daniel Veillard88a172f2000-08-04 18:23:10 +0000902
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000903#ifdef LIBXML_DEBUG_ENABLED
904 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000905 * shell interaction
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000906 */
907 if (shell)
908 xmlShell(doc, filename, xmlShellReadline, stdout);
909#endif
910
911 /*
912 * test intermediate copy if needed.
913 */
914 if (copy) {
915 tmp = doc;
916 doc = xmlCopyDoc(doc, 1);
917 xmlFreeDoc(tmp);
918 }
919
920 if ((insert) && (!html)) {
921 const xmlChar* list[256];
922 int nb, i;
923 xmlNodePtr node;
924
925 if (doc->children != NULL) {
926 node = doc->children;
927 while ((node != NULL) && (node->last == NULL)) node = node->next;
928 if (node != NULL) {
929 nb = xmlValidGetValidElements(node->last, NULL, list, 256);
930 if (nb < 0) {
931 printf("could not get valid list of elements\n");
932 } else if (nb == 0) {
MDT 2001 John Fleckbbb9e432001-09-24 03:08:43 +0000933 printf("No element can be inserted under root\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000934 } else {
MDT 2001 John Fleckbbb9e432001-09-24 03:08:43 +0000935 printf("%d element types can be inserted under root:\n",
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000936 nb);
937 for (i = 0;i < nb;i++) {
Daniel Veillard8a1b1852003-01-05 22:37:17 +0000938 printf("%s\n", (char *) list[i]);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000939 }
940 }
941 }
942 }
943 }else if (noout == 0) {
944 /*
945 * print it.
946 */
947#ifdef LIBXML_DEBUG_ENABLED
948 if (!debug) {
949#endif
Daniel Veillard48b2f892001-02-25 16:11:03 +0000950 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000951 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +0000952 }
Daniel Veillard3b2c2612001-04-04 00:09:00 +0000953#ifdef HAVE_SYS_MMAN_H
Daniel Veillarda6d8eb62000-12-27 10:46:47 +0000954 if (memory) {
955 xmlChar *result;
956 int len;
957
958 if (encoding != NULL) {
Daniel Veillardd536f702001-11-08 17:32:47 +0000959 if ( format ) {
960 xmlDocDumpFormatMemoryEnc(doc, &result, &len, encoding, 1);
961 } else {
962 xmlDocDumpMemoryEnc(doc, &result, &len, encoding);
963 }
Daniel Veillarda6d8eb62000-12-27 10:46:47 +0000964 } else {
Daniel Veillard90493a92001-08-14 14:12:47 +0000965 if (format)
966 xmlDocDumpFormatMemory(doc, &result, &len, 1);
967 else
968 xmlDocDumpMemory(doc, &result, &len);
Daniel Veillarda6d8eb62000-12-27 10:46:47 +0000969 }
970 if (result == NULL) {
971 fprintf(stderr, "Failed to save\n");
972 } else {
973 write(1, result, len);
974 xmlFree(result);
975 }
Daniel Veillard3b2c2612001-04-04 00:09:00 +0000976 } else
977#endif /* HAVE_SYS_MMAN_H */
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000978 if (compress) {
979 xmlSaveFile(output ? output : "-", doc);
980 }
Daniel Veillardd536f702001-11-08 17:32:47 +0000981 else if (encoding != NULL) {
982 if ( format ) {
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000983 xmlSaveFormatFileEnc(output ? output : "-", doc, encoding, 1);
984 }
Daniel Veillardd536f702001-11-08 17:32:47 +0000985 else {
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000986 xmlSaveFileEnc(output ? output : "-", doc, encoding);
Daniel Veillardd536f702001-11-08 17:32:47 +0000987 }
988 }
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000989 else if (format) {
990 xmlSaveFormatFile(output ? output : "-", doc, 1);
991 }
992 else {
993 FILE *out;
994 if (output == NULL)
995 out = stdout;
996 else {
997 out = fopen(output,"wb");
998 }
999 xmlDocDump(out, doc);
1000
1001 if (output)
1002 fclose(out);
1003 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001004 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001005 endTimer("Saving");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001006 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001007#ifdef LIBXML_DEBUG_ENABLED
Daniel Veillarda6d8eb62000-12-27 10:46:47 +00001008 } else {
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001009 FILE *out;
1010 if (output == NULL)
1011 out = stdout;
1012 else {
1013 out = fopen(output,"wb");
1014 }
1015 xmlDebugDumpDocument(out, doc);
1016
1017 if (output)
1018 fclose(out);
Daniel Veillarda6d8eb62000-12-27 10:46:47 +00001019 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001020#endif
1021 }
1022
1023 /*
1024 * A posteriori validation test
1025 */
Daniel Veillardcd429612000-10-11 15:57:05 +00001026 if (dtdvalid != NULL) {
1027 xmlDtdPtr dtd;
1028
Daniel Veillard48b2f892001-02-25 16:11:03 +00001029 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001030 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +00001031 }
Daniel Veillardcd429612000-10-11 15:57:05 +00001032 dtd = xmlParseDTD(NULL, (const xmlChar *)dtdvalid);
Daniel Veillard48b2f892001-02-25 16:11:03 +00001033 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001034 endTimer("Parsing DTD");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001035 }
Daniel Veillardcd429612000-10-11 15:57:05 +00001036 if (dtd == NULL) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001037 xmlGenericError(xmlGenericErrorContext,
1038 "Could not parse DTD %s\n", dtdvalid);
Daniel Veillardf7cd4812001-02-23 18:44:52 +00001039 progresult = 2;
Daniel Veillardcd429612000-10-11 15:57:05 +00001040 } else {
1041 xmlValidCtxt cvp;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001042 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001043 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +00001044 }
Daniel Veillard01db67c2001-12-18 07:09:59 +00001045 cvp.userData = (void *) stderr;
1046 cvp.error = (xmlValidityErrorFunc) fprintf;
1047 cvp.warning = (xmlValidityWarningFunc) fprintf;
Daniel Veillardcd429612000-10-11 15:57:05 +00001048 if (!xmlValidateDtd(&cvp, doc, dtd)) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001049 xmlGenericError(xmlGenericErrorContext,
1050 "Document %s does not validate against %s\n",
Daniel Veillardcd429612000-10-11 15:57:05 +00001051 filename, dtdvalid);
Daniel Veillardf7cd4812001-02-23 18:44:52 +00001052 progresult = 3;
Daniel Veillardcd429612000-10-11 15:57:05 +00001053 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001054 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001055 endTimer("Validating against DTD");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001056 }
Daniel Veillardcd429612000-10-11 15:57:05 +00001057 xmlFreeDtd(dtd);
1058 }
1059 } else if (postvalid) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001060 xmlValidCtxt cvp;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001061 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001062 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +00001063 }
Daniel Veillardb7664f42001-08-19 13:00:43 +00001064 cvp.userData = (void *) stderr;
1065 cvp.error = (xmlValidityErrorFunc) fprintf;
1066 cvp.warning = (xmlValidityWarningFunc) fprintf;
Daniel Veillardcd429612000-10-11 15:57:05 +00001067 if (!xmlValidateDocument(&cvp, doc)) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001068 xmlGenericError(xmlGenericErrorContext,
1069 "Document %s does not validate\n", filename);
Daniel Veillardf7cd4812001-02-23 18:44:52 +00001070 progresult = 3;
Daniel Veillardcd429612000-10-11 15:57:05 +00001071 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001072 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001073 endTimer("Validating");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001074 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001075#ifdef LIBXML_SCHEMAS_ENABLED
1076 } else if (relaxngschemas != NULL) {
1077 xmlRelaxNGValidCtxtPtr ctxt;
1078 int ret;
1079
Daniel Veillard42f12e92003-03-07 18:32:59 +00001080 if ((timing) && (!repeat)) {
1081 startTimer();
1082 }
1083
Daniel Veillard71531f32003-02-05 13:19:53 +00001084 ctxt = xmlRelaxNGNewValidCtxt(relaxngschemas);
1085 xmlRelaxNGSetValidErrors(ctxt,
1086 (xmlRelaxNGValidityErrorFunc) fprintf,
1087 (xmlRelaxNGValidityWarningFunc) fprintf,
1088 stderr);
1089 ret = xmlRelaxNGValidateDoc(ctxt, doc);
1090 if (ret == 0) {
1091 printf("%s validates\n", filename);
1092 } else if (ret > 0) {
1093 printf("%s fails to validate\n", filename);
1094 } else {
1095 printf("%s validation generated an internal error\n",
1096 filename);
1097 }
1098 xmlRelaxNGFreeValidCtxt(ctxt);
Daniel Veillard42f12e92003-03-07 18:32:59 +00001099 if ((timing) && (!repeat)) {
1100 endTimer("Validating");
1101 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001102#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001103 }
1104
1105#ifdef LIBXML_DEBUG_ENABLED
1106 if ((debugent) && (!html))
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001107 xmlDebugDumpEntities(stderr, doc);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001108#endif
1109
1110 /*
1111 * free it.
1112 */
Daniel Veillard48b2f892001-02-25 16:11:03 +00001113 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001114 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +00001115 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001116 xmlFreeDoc(doc);
Daniel Veillard48b2f892001-02-25 16:11:03 +00001117 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001118 endTimer("Freeing");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001119 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001120}
1121
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001122/************************************************************************
1123 * *
1124 * Usage and Main *
1125 * *
1126 ************************************************************************/
1127
Daniel Veillard0f04f8e2002-09-17 23:04:40 +00001128static void showVersion(const char *name) {
1129 fprintf(stderr, "%s: using libxml version %s\n", name, xmlParserVersion);
1130 fprintf(stderr, " compiled with: ");
1131#ifdef LIBXML_FTP_ENABLED
1132 fprintf(stderr, "FTP ");
1133#endif
1134#ifdef LIBXML_HTTP_ENABLED
1135 fprintf(stderr, "HTTP ");
1136#endif
1137#ifdef LIBXML_HTML_ENABLED
1138 fprintf(stderr, "HTML ");
1139#endif
1140#ifdef LIBXML_C14N_ENABLED
1141 fprintf(stderr, "C14N ");
1142#endif
1143#ifdef LIBXML_CATALOG_ENABLED
1144 fprintf(stderr, "Catalog ");
1145#endif
1146#ifdef LIBXML_DOCB_ENABLED
1147 fprintf(stderr, "DocBook ");
1148#endif
1149#ifdef LIBXML_XPATH_ENABLED
1150 fprintf(stderr, "XPath ");
1151#endif
1152#ifdef LIBXML_XPTR_ENABLED
1153 fprintf(stderr, "XPointer ");
1154#endif
1155#ifdef LIBXML_XINCLUDE_ENABLED
1156 fprintf(stderr, "XInclude ");
1157#endif
1158#ifdef LIBXML_ICONV_ENABLED
1159 fprintf(stderr, "Iconv ");
1160#endif
1161#ifdef DEBUG_MEMORY_LOCATION
1162 fprintf(stderr, "MemDebug ");
1163#endif
1164#ifdef LIBXML_UNICODE_ENABLED
1165 fprintf(stderr, "Unicode ");
1166#endif
1167#ifdef LIBXML_REGEXP_ENABLED
1168 fprintf(stderr, "Regexps ");
1169#endif
1170#ifdef LIBXML_AUTOMATA_ENABLED
1171 fprintf(stderr, "Automata ");
1172#endif
1173#ifdef LIBXML_SCHEMAS_ENABLED
1174 fprintf(stderr, "Schemas ");
1175#endif
1176 fprintf(stderr, "\n");
1177}
1178
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001179static void usage(const char *name) {
1180 printf("Usage : %s [options] XMLfiles ...\n", name);
1181 printf("\tParse the XML files and output the result of the parsing\n");
1182 printf("\t--version : display the version of the XML library used\n");
1183#ifdef LIBXML_DEBUG_ENABLED
1184 printf("\t--debug : dump a debug tree of the in-memory document\n");
1185 printf("\t--shell : run a navigating shell\n");
1186 printf("\t--debugent : debug the entities defined in the document\n");
Daniel Veillard8326e732003-01-07 00:19:07 +00001187#else
1188 printf("\t--debug : dump the nodes content when using --stream\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001189#endif
1190 printf("\t--copy : used to test the internal copy implementation\n");
1191 printf("\t--recover : output what was parsable on broken XML documents\n");
1192 printf("\t--noent : substitute entity references by their value\n");
1193 printf("\t--noout : don't output the result tree\n");
1194 printf("\t--htmlout : output results as HTML\n");
Daniel Veillard05c13a22001-09-09 08:38:09 +00001195 printf("\t--nowrap : do not put HTML doc wrapper\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001196 printf("\t--valid : validate the document in addition to std well-formed check\n");
1197 printf("\t--postvalid : do a posteriori validation, i.e after parsing\n");
1198 printf("\t--dtdvalid URL : do a posteriori validation against a given DTD\n");
1199 printf("\t--timing : print some timings\n");
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001200 printf("\t--output file or -o file: save to a given file\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001201 printf("\t--repeat : repeat 100 times, for timing or profiling\n");
1202 printf("\t--insert : ad-hoc test for valid insertions\n");
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001203#ifdef HAVE_ZLIB_H
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001204 printf("\t--compress : turn on gzip compression of output\n");
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001205#endif
Daniel Veillard89cad532001-10-22 09:46:13 +00001206#ifdef LIBXML_DOCB_ENABLED
1207 printf("\t--sgml : use the DocBook SGML parser\n");
1208#endif
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001209#ifdef LIBXML_HTML_ENABLED
1210 printf("\t--html : use the HTML parser\n");
1211#endif
1212 printf("\t--push : use the push mode of the parser\n");
1213#ifdef HAVE_SYS_MMAN_H
1214 printf("\t--memory : parse from memory\n");
1215#endif
1216 printf("\t--nowarning : do not emit warnings from parser/validator\n");
1217 printf("\t--noblanks : drop (ignorable?) blanks spaces\n");
Daniel Veillard90493a92001-08-14 14:12:47 +00001218 printf("\t--format : reformat/reindent the input\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001219 printf("\t--testIO : test user I/O support\n");
1220 printf("\t--encode encoding : output in the given encoding\n");
1221#ifdef LIBXML_CATALOG_ENABLED
Daniel Veillardbd9b0e82001-11-26 10:32:08 +00001222 printf("\t--catalogs : use SGML catalogs from $SGML_CATALOG_FILES\n");
1223 printf("\t otherwise XML Catalogs starting from \n");
Daniel Veillard3be27512003-01-26 19:49:04 +00001224 printf("\t " XML_XML_DEFAULT_CATALOG " are activated by default\n");
Daniel Veillard05c13a22001-09-09 08:38:09 +00001225 printf("\t--nocatalogs: deactivate all catalogs\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001226#endif
1227 printf("\t--auto : generate a small doc on the fly\n");
1228#ifdef LIBXML_XINCLUDE_ENABLED
1229 printf("\t--xinclude : do XInclude processing\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001230#endif
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001231 printf("\t--loaddtd : fetch external DTD\n");
Daniel Veillard48da9102001-08-07 01:10:10 +00001232 printf("\t--dtdattr : loaddtd + populate the tree with inherited attributes \n");
Daniel Veillard29e43992001-12-13 22:21:58 +00001233 printf("\t--dropdtd : remove the DOCTYPE of the input docs\n");
Daniel Veillard7704fb12003-01-03 16:19:51 +00001234 printf("\t--stream : use the streaming interface to process very large files\n");
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001235 printf("\t--chkregister : verify the node registration code\n");
Daniel Veillardef4d3bc2003-02-07 12:38:22 +00001236#ifdef LIBXML_SCHEMAS_ENABLED
Daniel Veillard71531f32003-02-05 13:19:53 +00001237 printf("\t--relaxng schema : do RelaxNG validation against the schema\n");
1238#endif
Daniel Veillarda42f25f2002-01-25 14:15:40 +00001239 printf("\nLibxml project home page: http://xmlsoft.org/\n");
1240 printf("To report bugs or get some help check: http://xmlsoft.org/bugs.html\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001241}
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001242
1243static void registerNode(xmlNodePtr node)
1244{
1245 node->_private = malloc(sizeof(long));
1246 *(long*)node->_private = (long) 0x81726354;
1247}
1248
1249static void deregisterNode(xmlNodePtr node)
1250{
1251 assert(node->_private != NULL);
1252 assert(*(long*)node->_private == (long) 0x81726354);
1253 free(node->_private);
1254}
1255
Daniel Veillard4a6845d2001-01-03 13:32:39 +00001256int
1257main(int argc, char **argv) {
Daniel Veillard7704fb12003-01-03 16:19:51 +00001258 int i, acount;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001259 int files = 0;
Daniel Veillard845cce42002-01-09 11:51:37 +00001260 int version = 0;
Aleksey Sanin693c9bc2003-03-09 22:36:52 +00001261 const char* indent;
1262
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001263 if (argc <= 1) {
1264 usage(argv[0]);
1265 return(1);
1266 }
Daniel Veillardbe803962000-06-28 23:40:59 +00001267 LIBXML_TEST_VERSION
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001268 for (i = 1; i < argc ; i++) {
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001269 if (!strcmp(argv[i], "-"))
1270 break;
1271
1272 if (argv[i][0] != '-')
1273 continue;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001274 if ((!strcmp(argv[i], "-debug")) || (!strcmp(argv[i], "--debug")))
1275 debug++;
Daniel Veillard56ada1d2003-01-07 11:17:25 +00001276 else
1277#ifdef LIBXML_DEBUG_ENABLED
1278 if ((!strcmp(argv[i], "-shell")) ||
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001279 (!strcmp(argv[i], "--shell"))) {
1280 shell++;
1281 noout = 1;
1282 } else
1283#endif
1284 if ((!strcmp(argv[i], "-copy")) || (!strcmp(argv[i], "--copy")))
1285 copy++;
1286 else if ((!strcmp(argv[i], "-recover")) ||
1287 (!strcmp(argv[i], "--recover")))
1288 recovery++;
1289 else if ((!strcmp(argv[i], "-noent")) ||
1290 (!strcmp(argv[i], "--noent")))
1291 noent++;
Daniel Veillard4ec885a2001-06-17 10:31:07 +00001292 else if ((!strcmp(argv[i], "-version")) ||
Daniel Veillard845cce42002-01-09 11:51:37 +00001293 (!strcmp(argv[i], "--version"))) {
Daniel Veillard0f04f8e2002-09-17 23:04:40 +00001294 showVersion(argv[0]);
Daniel Veillard845cce42002-01-09 11:51:37 +00001295 version = 1;
1296 } else if ((!strcmp(argv[i], "-noout")) ||
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001297 (!strcmp(argv[i], "--noout")))
1298 noout++;
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001299 else if ((!strcmp(argv[i], "-o")) ||
1300 (!strcmp(argv[i], "-output")) ||
1301 (!strcmp(argv[i], "--output"))) {
1302 i++;
Daniel Veillard6e4f1c02002-04-09 09:55:20 +00001303 output = argv[i];
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001304 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001305 else if ((!strcmp(argv[i], "-htmlout")) ||
1306 (!strcmp(argv[i], "--htmlout")))
1307 htmlout++;
Daniel Veillard89cad532001-10-22 09:46:13 +00001308#ifdef LIBXML_DOCB_ENABLED
1309 else if ((!strcmp(argv[i], "-sgml")) ||
1310 (!strcmp(argv[i], "--sgml"))) {
1311 sgml++;
1312 }
1313#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001314#ifdef LIBXML_HTML_ENABLED
1315 else if ((!strcmp(argv[i], "-html")) ||
1316 (!strcmp(argv[i], "--html"))) {
1317 html++;
1318 }
1319#endif /* LIBXML_HTML_ENABLED */
1320 else if ((!strcmp(argv[i], "-nowrap")) ||
1321 (!strcmp(argv[i], "--nowrap")))
1322 nowrap++;
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001323 else if ((!strcmp(argv[i], "-loaddtd")) ||
1324 (!strcmp(argv[i], "--loaddtd")))
1325 loaddtd++;
Daniel Veillard48da9102001-08-07 01:10:10 +00001326 else if ((!strcmp(argv[i], "-dtdattr")) ||
1327 (!strcmp(argv[i], "--dtdattr"))) {
1328 loaddtd++;
1329 dtdattrs++;
1330 } else if ((!strcmp(argv[i], "-valid")) ||
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001331 (!strcmp(argv[i], "--valid")))
1332 valid++;
1333 else if ((!strcmp(argv[i], "-postvalid")) ||
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001334 (!strcmp(argv[i], "--postvalid"))) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001335 postvalid++;
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001336 loaddtd++;
1337 } else if ((!strcmp(argv[i], "-dtdvalid")) ||
Daniel Veillardcd429612000-10-11 15:57:05 +00001338 (!strcmp(argv[i], "--dtdvalid"))) {
1339 i++;
1340 dtdvalid = argv[i];
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001341 loaddtd++;
Daniel Veillardcd429612000-10-11 15:57:05 +00001342 }
Daniel Veillard29e43992001-12-13 22:21:58 +00001343 else if ((!strcmp(argv[i], "-dropdtd")) ||
1344 (!strcmp(argv[i], "--dropdtd")))
1345 dropdtd++;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001346 else if ((!strcmp(argv[i], "-insert")) ||
1347 (!strcmp(argv[i], "--insert")))
1348 insert++;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001349 else if ((!strcmp(argv[i], "-timing")) ||
1350 (!strcmp(argv[i], "--timing")))
1351 timing++;
Daniel Veillardd2f3ec72001-04-11 07:50:02 +00001352 else if ((!strcmp(argv[i], "-auto")) ||
1353 (!strcmp(argv[i], "--auto")))
1354 generate++;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001355 else if ((!strcmp(argv[i], "-repeat")) ||
1356 (!strcmp(argv[i], "--repeat")))
1357 repeat++;
1358 else if ((!strcmp(argv[i], "-push")) ||
1359 (!strcmp(argv[i], "--push")))
1360 push++;
Daniel Veillard46e370e2000-07-21 20:32:03 +00001361#ifdef HAVE_SYS_MMAN_H
1362 else if ((!strcmp(argv[i], "-memory")) ||
1363 (!strcmp(argv[i], "--memory")))
1364 memory++;
1365#endif
Daniel Veillard5e873c42000-04-12 13:27:38 +00001366 else if ((!strcmp(argv[i], "-testIO")) ||
1367 (!strcmp(argv[i], "--testIO")))
1368 testIO++;
Daniel Veillard9e8bfae2000-11-06 16:43:11 +00001369#ifdef LIBXML_XINCLUDE_ENABLED
1370 else if ((!strcmp(argv[i], "-xinclude")) ||
1371 (!strcmp(argv[i], "--xinclude")))
1372 xinclude++;
1373#endif
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001374#ifdef HAVE_ZLIB_H
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001375 else if ((!strcmp(argv[i], "-compress")) ||
1376 (!strcmp(argv[i], "--compress"))) {
1377 compress++;
1378 xmlSetCompressMode(9);
1379 }
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001380#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001381 else if ((!strcmp(argv[i], "-nowarning")) ||
1382 (!strcmp(argv[i], "--nowarning"))) {
1383 xmlGetWarningsDefaultValue = 0;
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001384 xmlPedanticParserDefault(0);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001385 }
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001386 else if ((!strcmp(argv[i], "-pedantic")) ||
1387 (!strcmp(argv[i], "--pedantic"))) {
1388 xmlGetWarningsDefaultValue = 1;
1389 xmlPedanticParserDefault(1);
1390 }
Daniel Veillard64c20ed2000-09-22 16:07:02 +00001391#ifdef LIBXML_DEBUG_ENABLED
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001392 else if ((!strcmp(argv[i], "-debugent")) ||
1393 (!strcmp(argv[i], "--debugent"))) {
1394 debugent++;
1395 xmlParserDebugEntities = 1;
1396 }
Daniel Veillard64c20ed2000-09-22 16:07:02 +00001397#endif
Daniel Veillard81418e32001-05-22 15:08:55 +00001398#ifdef LIBXML_CATALOG_ENABLED
1399 else if ((!strcmp(argv[i], "-catalogs")) ||
1400 (!strcmp(argv[i], "--catalogs"))) {
Daniel Veillarde2940dd2001-08-22 00:06:49 +00001401 catalogs++;
1402 } else if ((!strcmp(argv[i], "-nocatalogs")) ||
1403 (!strcmp(argv[i], "--nocatalogs"))) {
1404 nocatalogs++;
Daniel Veillard81418e32001-05-22 15:08:55 +00001405 }
1406#endif
Daniel Veillardbe803962000-06-28 23:40:59 +00001407 else if ((!strcmp(argv[i], "-encode")) ||
1408 (!strcmp(argv[i], "--encode"))) {
1409 i++;
1410 encoding = argv[i];
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001411 /*
1412 * OK it's for testing purposes
1413 */
1414 xmlAddEncodingAlias("UTF-8", "DVEnc");
Daniel Veillardbe803962000-06-28 23:40:59 +00001415 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001416 else if ((!strcmp(argv[i], "-noblanks")) ||
1417 (!strcmp(argv[i], "--noblanks"))) {
1418 noblanks++;
1419 xmlKeepBlanksDefault(0);
Daniel Veillard90493a92001-08-14 14:12:47 +00001420 }
1421 else if ((!strcmp(argv[i], "-format")) ||
1422 (!strcmp(argv[i], "--format"))) {
1423 noblanks++;
1424 format++;
1425 xmlKeepBlanksDefault(0);
Daniel Veillard7704fb12003-01-03 16:19:51 +00001426 }
1427 else if ((!strcmp(argv[i], "-stream")) ||
1428 (!strcmp(argv[i], "--stream"))) {
1429 stream++;
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001430 }
1431 else if ((!strcmp(argv[i], "-chkregister")) ||
1432 (!strcmp(argv[i], "--chkregister"))) {
1433 chkregister++;
Daniel Veillard71531f32003-02-05 13:19:53 +00001434#ifdef LIBXML_SCHEMAS_ENABLED
1435 } else if ((!strcmp(argv[i], "-relaxng")) ||
1436 (!strcmp(argv[i], "--relaxng"))) {
1437 i++;
1438 relaxng = argv[i];
1439 noent++;
1440#endif
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001441 } else {
1442 fprintf(stderr, "Unknown option %s\n", argv[i]);
1443 usage(argv[0]);
1444 return(1);
1445 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001446 }
Daniel Veillarde2940dd2001-08-22 00:06:49 +00001447
1448#ifdef LIBXML_CATALOG_ENABLED
1449 if (nocatalogs == 0) {
1450 if (catalogs) {
1451 const char *catal;
1452
1453 catal = getenv("SGML_CATALOG_FILES");
Daniel Veillard6c5f9d12001-08-25 13:33:14 +00001454 if (catal != NULL) {
1455 xmlLoadCatalogs(catal);
1456 } else {
1457 fprintf(stderr, "Variable $SGML_CATALOG_FILES not set\n");
1458 }
Daniel Veillarde2940dd2001-08-22 00:06:49 +00001459 }
1460 }
1461#endif
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001462
1463 if (chkregister) {
1464 xmlRegisterNodeDefault(registerNode);
1465 xmlDeregisterNodeDefault(deregisterNode);
1466 }
Aleksey Sanin693c9bc2003-03-09 22:36:52 +00001467
1468 indent = getenv("XMLLINT_INDENT");
1469 if(indent != NULL) {
1470 xmlTreeIndentString = indent;
1471 }
1472
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001473
Daniel Veillardd9bad132001-07-23 19:39:43 +00001474 xmlLineNumbersDefault(1);
Daniel Veillard48da9102001-08-07 01:10:10 +00001475 if (loaddtd != 0)
1476 xmlLoadExtDtdDefaultValue |= XML_DETECT_IDS;
1477 if (dtdattrs)
1478 xmlLoadExtDtdDefaultValue |= XML_COMPLETE_ATTRS;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001479 if (noent != 0) xmlSubstituteEntitiesDefault(1);
1480 if (valid != 0) xmlDoValidityCheckingDefaultValue = 1;
1481 if ((htmlout) && (!nowrap)) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001482 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001483 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"\n");
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001484 xmlGenericError(xmlGenericErrorContext,
1485 "\t\"http://www.w3.org/TR/REC-html40/loose.dtd\">\n");
1486 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001487 "<html><head><title>%s output</title></head>\n",
1488 argv[0]);
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001489 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001490 "<body bgcolor=\"#ffffff\"><h1 align=\"center\">%s output</h1>\n",
1491 argv[0]);
1492 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001493
1494#ifdef LIBXML_SCHEMAS_ENABLED
1495 if (relaxng != NULL) {
1496 xmlRelaxNGParserCtxtPtr ctxt;
1497
Daniel Veillard42f12e92003-03-07 18:32:59 +00001498 if (timing) {
1499 startTimer();
1500 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001501 ctxt = xmlRelaxNGNewParserCtxt(relaxng);
1502 xmlRelaxNGSetParserErrors(ctxt,
1503 (xmlRelaxNGValidityErrorFunc) fprintf,
1504 (xmlRelaxNGValidityWarningFunc) fprintf,
1505 stderr);
1506 relaxngschemas = xmlRelaxNGParse(ctxt);
1507 xmlRelaxNGFreeParserCtxt(ctxt);
Daniel Veillard42f12e92003-03-07 18:32:59 +00001508 if (timing) {
1509 endTimer("Compiling the schemas");
1510 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001511 }
1512#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001513 for (i = 1; i < argc ; i++) {
Daniel Veillardbe803962000-06-28 23:40:59 +00001514 if ((!strcmp(argv[i], "-encode")) ||
1515 (!strcmp(argv[i], "--encode"))) {
1516 i++;
1517 continue;
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001518 } else if ((!strcmp(argv[i], "-o")) ||
1519 (!strcmp(argv[i], "-output")) ||
1520 (!strcmp(argv[i], "--output"))) {
1521 i++;
1522 continue;
Daniel Veillardbe803962000-06-28 23:40:59 +00001523 }
Daniel Veillardcd429612000-10-11 15:57:05 +00001524 if ((!strcmp(argv[i], "-dtdvalid")) ||
1525 (!strcmp(argv[i], "--dtdvalid"))) {
1526 i++;
1527 continue;
1528 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001529 if ((!strcmp(argv[i], "-relaxng")) ||
1530 (!strcmp(argv[i], "--relaxng"))) {
1531 i++;
1532 continue;
1533 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001534 if ((timing) && (repeat))
Daniel Veillard01db67c2001-12-18 07:09:59 +00001535 startTimer();
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001536 /* Remember file names. "-" means stdin. <sven@zen.org> */
Daniel Veillard4a6845d2001-01-03 13:32:39 +00001537 if ((argv[i][0] != '-') || (strcmp(argv[i], "-") == 0)) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001538 if (repeat) {
Daniel Veillard7704fb12003-01-03 16:19:51 +00001539 for (acount = 0;acount < 100 * repeat;acount++)
1540 if (stream != 0)
1541 streamFile(argv[i]);
1542 else
1543 parseAndPrintFile(argv[i]);
1544 } else {
1545 if (stream != 0)
1546 streamFile(argv[i]);
1547 else
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001548 parseAndPrintFile(argv[i]);
Daniel Veillard7704fb12003-01-03 16:19:51 +00001549 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001550 files ++;
Daniel Veillarda7866932001-12-04 13:14:44 +00001551 if ((timing) && (repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001552 endTimer("100 iterations");
Daniel Veillarda7866932001-12-04 13:14:44 +00001553 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001554 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001555 }
Daniel Veillardd2f3ec72001-04-11 07:50:02 +00001556 if (generate)
1557 parseAndPrintFile(NULL);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001558 if ((htmlout) && (!nowrap)) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001559 xmlGenericError(xmlGenericErrorContext, "</body></html>\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001560 }
Daniel Veillard845cce42002-01-09 11:51:37 +00001561 if ((files == 0) && (!generate) && (version == 0)) {
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001562 usage(argv[0]);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001563 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001564#ifdef LIBXML_SCHEMAS_ENABLED
1565 if (relaxngschemas != NULL)
1566 xmlRelaxNGFree(relaxngschemas);
1567 xmlRelaxNGCleanupTypes();
1568#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001569 xmlCleanupParser();
1570 xmlMemoryDump();
1571
Daniel Veillardf7cd4812001-02-23 18:44:52 +00001572 return(progresult);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001573}
Daniel Veillard88a172f2000-08-04 18:23:10 +00001574