blob: 29f368b5b2db24446891e10b95dc97c00d4cbc87 [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 "--");
596 value = xmlTextReaderValue(reader);
Daniel Veillard7704fb12003-01-03 16:19:51 +0000597
Daniel Veillarde59494f2003-01-04 16:35:29 +0000598 printf("%d %d %s %d",
599 xmlTextReaderDepth(reader),
600 xmlTextReaderNodeType(reader),
601 name,
602 xmlTextReaderIsEmptyElement(reader));
603 xmlFree(name);
604 if (value == NULL)
605 printf("\n");
606 else {
607 printf(" %s\n", value);
608 xmlFree(value);
Daniel Veillard7704fb12003-01-03 16:19:51 +0000609 }
610}
611
612static void streamFile(char *filename) {
613 xmlTextReaderPtr reader;
614 int ret;
615
616 if (count) {
617 elem = 0;
618 attrs = 0;
619 }
620
621 reader = xmlNewTextReaderFilename(filename);
622 if (reader != NULL) {
623 if (valid)
624 xmlTextReaderSetParserProp(reader, XML_PARSER_VALIDATE, 1);
625
626 /*
627 * Process all nodes in sequence
628 */
629 ret = xmlTextReaderRead(reader);
630 while (ret == 1) {
631 if (debug)
632 processNode(reader);
633 ret = xmlTextReaderRead(reader);
634 }
635
636 /*
637 * Done, cleanup and status
638 */
639 xmlFreeTextReader(reader);
640 if (ret != 0) {
641 printf("%s : failed to parse\n", filename);
642 }
643 } else {
644 fprintf(stderr, "Unable to open %s\n", filename);
645 }
646}
647
648/************************************************************************
649 * *
650 * Tree Test processing *
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000651 * *
652 ************************************************************************/
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000653static void parseAndPrintFile(char *filename) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000654 xmlDocPtr doc = NULL, tmp;
655
Daniel Veillard48b2f892001-02-25 16:11:03 +0000656 if ((timing) && (!repeat))
Daniel Veillard01db67c2001-12-18 07:09:59 +0000657 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +0000658
659
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000660 if (filename == NULL) {
661 if (generate) {
662 xmlNodePtr n;
663
664 doc = xmlNewDoc(BAD_CAST "1.0");
665 n = xmlNewNode(NULL, BAD_CAST "info");
666 xmlNodeSetContent(n, BAD_CAST "abc");
667 xmlDocSetRootElement(doc, n);
668 }
669 }
Daniel Veillard89cad532001-10-22 09:46:13 +0000670#ifdef LIBXML_DOCB_ENABLED
671 /*
672 * build an SGML tree from a string;
673 */
674 else if ((sgml) && (push)) {
675 FILE *f;
676
677 f = fopen(filename, "r");
678 if (f != NULL) {
679 int res, size = 3;
680 char chars[4096];
681 docbParserCtxtPtr ctxt;
682
683 /* if (repeat) */
684 size = 4096;
685 res = fread(chars, 1, 4, f);
686 if (res > 0) {
687 ctxt = docbCreatePushParserCtxt(NULL, NULL,
688 chars, res, filename, 0);
689 while ((res = fread(chars, 1, size, f)) > 0) {
690 docbParseChunk(ctxt, chars, res, 0);
691 }
692 docbParseChunk(ctxt, chars, 0, 1);
693 doc = ctxt->myDoc;
694 docbFreeParserCtxt(ctxt);
695 }
696 fclose(f);
697 }
698 } else if (sgml) {
699 doc = docbParseFile(filename, NULL);
700 }
701#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000702#ifdef LIBXML_HTML_ENABLED
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000703 else if (html) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000704 doc = htmlParseFile(filename, NULL);
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000705 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000706#endif /* LIBXML_HTML_ENABLED */
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000707 else {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000708 /*
709 * build an XML tree from a string;
710 */
711 if (push) {
712 FILE *f;
713
Daniel Veillard4a6845d2001-01-03 13:32:39 +0000714 /* '-' Usually means stdin -<sven@zen.org> */
715 if ((filename[0] == '-') && (filename[1] == 0)) {
716 f = stdin;
717 } else {
718 f = fopen(filename, "r");
719 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000720 if (f != NULL) {
Daniel Veillarde715dd22000-08-29 18:29:38 +0000721 int ret;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000722 int res, size = 3;
723 char chars[1024];
724 xmlParserCtxtPtr ctxt;
725
726 if (repeat)
727 size = 1024;
728 res = fread(chars, 1, 4, f);
729 if (res > 0) {
730 ctxt = xmlCreatePushParserCtxt(NULL, NULL,
731 chars, res, filename);
732 while ((res = fread(chars, 1, size, f)) > 0) {
733 xmlParseChunk(ctxt, chars, res, 0);
734 }
735 xmlParseChunk(ctxt, chars, 0, 1);
736 doc = ctxt->myDoc;
Daniel Veillarde715dd22000-08-29 18:29:38 +0000737 ret = ctxt->wellFormed;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000738 xmlFreeParserCtxt(ctxt);
Daniel Veillarde715dd22000-08-29 18:29:38 +0000739 if (!ret) {
740 xmlFreeDoc(doc);
741 doc = NULL;
742 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000743 }
744 }
Daniel Veillard5e873c42000-04-12 13:27:38 +0000745 } else if (testIO) {
746 int ret;
747 FILE *f;
748
Daniel Veillard4a6845d2001-01-03 13:32:39 +0000749 /* '-' Usually means stdin -<sven@zen.org> */
750 if ((filename[0] == '-') && (filename[1] == 0)) {
751 f = stdin;
752 } else {
753 f = fopen(filename, "r");
754 }
Daniel Veillard5e873c42000-04-12 13:27:38 +0000755 if (f != NULL) {
756 xmlParserCtxtPtr ctxt;
757
758 ctxt = xmlCreateIOParserCtxt(NULL, NULL,
759 (xmlInputReadCallback) myRead,
760 (xmlInputCloseCallback) myClose,
761 f, XML_CHAR_ENCODING_NONE);
762 xmlParseDocument(ctxt);
763
764 ret = ctxt->wellFormed;
765 doc = ctxt->myDoc;
766 xmlFreeParserCtxt(ctxt);
767 if (!ret) {
768 xmlFreeDoc(doc);
769 doc = NULL;
770 }
771 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000772 } else if (recovery) {
773 doc = xmlRecoverFile(filename);
774 } else if (htmlout) {
775 int ret;
776 xmlParserCtxtPtr ctxt;
777 xmlSAXHandler silent, *old;
778
779 ctxt = xmlCreateFileParserCtxt(filename);
Daniel Veillard88a172f2000-08-04 18:23:10 +0000780
781 if (ctxt == NULL) {
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000782 /* If xmlCreateFileParserCtxt() return NULL something
Daniel Veillard88a172f2000-08-04 18:23:10 +0000783 strange happened so we don't want to do anything. Do
784 we want to print an error message here?
785 <sven@zen.org> */
Daniel Veillard7ebb1ee2000-08-04 18:24:45 +0000786 doc = NULL;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000787 } else {
788 memcpy(&silent, ctxt->sax, sizeof(silent));
789 old = ctxt->sax;
790 silent.error = xmlHTMLError;
791 if (xmlGetWarningsDefaultValue)
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000792 silent.warning = xmlHTMLWarning;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000793 else
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000794 silent.warning = NULL;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000795 silent.fatalError = xmlHTMLError;
796 ctxt->sax = &silent;
797 ctxt->vctxt.error = xmlHTMLValidityError;
798 if (xmlGetWarningsDefaultValue)
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000799 ctxt->vctxt.warning = xmlHTMLValidityWarning;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000800 else
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000801 ctxt->vctxt.warning = NULL;
802
Daniel Veillard88a172f2000-08-04 18:23:10 +0000803 xmlParseDocument(ctxt);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000804
Daniel Veillard88a172f2000-08-04 18:23:10 +0000805 ret = ctxt->wellFormed;
806 doc = ctxt->myDoc;
807 ctxt->sax = old;
808 xmlFreeParserCtxt(ctxt);
809 if (!ret) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000810 xmlFreeDoc(doc);
811 doc = NULL;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000812 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000813 }
Daniel Veillard46e370e2000-07-21 20:32:03 +0000814#ifdef HAVE_SYS_MMAN_H
815 } else if (memory) {
816 int fd;
817 struct stat info;
818 const char *base;
819 if (stat(filename, &info) < 0)
820 return;
821 if ((fd = open(filename, O_RDONLY)) < 0)
822 return;
823 base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
Daniel Veillard29579362000-08-14 17:57:48 +0000824 if (base == (void *) MAP_FAILED)
Daniel Veillard46e370e2000-07-21 20:32:03 +0000825 return;
826
827 doc = xmlParseMemory((char *) base, info.st_size);
828 munmap((char *) base, info.st_size);
829#endif
Daniel Veillardea7751d2002-12-20 00:16:24 +0000830 } else if (valid) {
831 int ret;
832 xmlParserCtxtPtr ctxt;
833
834 ctxt = xmlCreateFileParserCtxt(filename);
835
836 if (ctxt == NULL) {
837 doc = NULL;
838 } else {
839 xmlParseDocument(ctxt);
840 if (ctxt->valid == 0)
841 progresult = 4;
842 ret = ctxt->wellFormed;
843 doc = ctxt->myDoc;
844 xmlFreeParserCtxt(ctxt);
845 if (!ret) {
846 xmlFreeDoc(doc);
847 doc = NULL;
848 }
849 }
850 } else {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000851 doc = xmlParseFile(filename);
Daniel Veillardea7751d2002-12-20 00:16:24 +0000852 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000853 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000854
Daniel Veillard88a172f2000-08-04 18:23:10 +0000855 /*
856 * If we don't have a document we might as well give up. Do we
857 * want an error message here? <sven@zen.org> */
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000858 if (doc == NULL) {
Daniel Veillardf7cd4812001-02-23 18:44:52 +0000859 progresult = 1;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000860 return;
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000861 }
862
Daniel Veillard48b2f892001-02-25 16:11:03 +0000863 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000864 endTimer("Parsing");
Daniel Veillard48b2f892001-02-25 16:11:03 +0000865 }
866
Daniel Veillard29e43992001-12-13 22:21:58 +0000867 /*
868 * Remove DOCTYPE nodes
869 */
870 if (dropdtd) {
871 xmlDtdPtr dtd;
872
873 dtd = xmlGetIntSubset(doc);
874 if (dtd != NULL) {
875 xmlUnlinkNode((xmlNodePtr)dtd);
876 xmlFreeDtd(dtd);
877 }
878 }
879
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000880#ifdef LIBXML_XINCLUDE_ENABLED
Daniel Veillard48b2f892001-02-25 16:11:03 +0000881 if (xinclude) {
882 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000883 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +0000884 }
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000885 xmlXIncludeProcess(doc);
Daniel Veillard48b2f892001-02-25 16:11:03 +0000886 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000887 endTimer("Xinclude processing");
Daniel Veillard48b2f892001-02-25 16:11:03 +0000888 }
889 }
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000890#endif
Daniel Veillard88a172f2000-08-04 18:23:10 +0000891
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000892#ifdef LIBXML_DEBUG_ENABLED
893 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000894 * shell interaction
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000895 */
896 if (shell)
897 xmlShell(doc, filename, xmlShellReadline, stdout);
898#endif
899
900 /*
901 * test intermediate copy if needed.
902 */
903 if (copy) {
904 tmp = doc;
905 doc = xmlCopyDoc(doc, 1);
906 xmlFreeDoc(tmp);
907 }
908
909 if ((insert) && (!html)) {
910 const xmlChar* list[256];
911 int nb, i;
912 xmlNodePtr node;
913
914 if (doc->children != NULL) {
915 node = doc->children;
916 while ((node != NULL) && (node->last == NULL)) node = node->next;
917 if (node != NULL) {
918 nb = xmlValidGetValidElements(node->last, NULL, list, 256);
919 if (nb < 0) {
920 printf("could not get valid list of elements\n");
921 } else if (nb == 0) {
MDT 2001 John Fleckbbb9e432001-09-24 03:08:43 +0000922 printf("No element can be inserted under root\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000923 } else {
MDT 2001 John Fleckbbb9e432001-09-24 03:08:43 +0000924 printf("%d element types can be inserted under root:\n",
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000925 nb);
926 for (i = 0;i < nb;i++) {
Daniel Veillard8a1b1852003-01-05 22:37:17 +0000927 printf("%s\n", (char *) list[i]);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000928 }
929 }
930 }
931 }
932 }else if (noout == 0) {
933 /*
934 * print it.
935 */
936#ifdef LIBXML_DEBUG_ENABLED
937 if (!debug) {
938#endif
Daniel Veillard48b2f892001-02-25 16:11:03 +0000939 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000940 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +0000941 }
Daniel Veillard3b2c2612001-04-04 00:09:00 +0000942#ifdef HAVE_SYS_MMAN_H
Daniel Veillarda6d8eb62000-12-27 10:46:47 +0000943 if (memory) {
944 xmlChar *result;
945 int len;
946
947 if (encoding != NULL) {
Daniel Veillardd536f702001-11-08 17:32:47 +0000948 if ( format ) {
949 xmlDocDumpFormatMemoryEnc(doc, &result, &len, encoding, 1);
950 } else {
951 xmlDocDumpMemoryEnc(doc, &result, &len, encoding);
952 }
Daniel Veillarda6d8eb62000-12-27 10:46:47 +0000953 } else {
Daniel Veillard90493a92001-08-14 14:12:47 +0000954 if (format)
955 xmlDocDumpFormatMemory(doc, &result, &len, 1);
956 else
957 xmlDocDumpMemory(doc, &result, &len);
Daniel Veillarda6d8eb62000-12-27 10:46:47 +0000958 }
959 if (result == NULL) {
960 fprintf(stderr, "Failed to save\n");
961 } else {
962 write(1, result, len);
963 xmlFree(result);
964 }
Daniel Veillard3b2c2612001-04-04 00:09:00 +0000965 } else
966#endif /* HAVE_SYS_MMAN_H */
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000967 if (compress) {
968 xmlSaveFile(output ? output : "-", doc);
969 }
Daniel Veillardd536f702001-11-08 17:32:47 +0000970 else if (encoding != NULL) {
971 if ( format ) {
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000972 xmlSaveFormatFileEnc(output ? output : "-", doc, encoding, 1);
973 }
Daniel Veillardd536f702001-11-08 17:32:47 +0000974 else {
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000975 xmlSaveFileEnc(output ? output : "-", doc, encoding);
Daniel Veillardd536f702001-11-08 17:32:47 +0000976 }
977 }
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000978 else if (format) {
979 xmlSaveFormatFile(output ? output : "-", doc, 1);
980 }
981 else {
982 FILE *out;
983 if (output == NULL)
984 out = stdout;
985 else {
986 out = fopen(output,"wb");
987 }
988 xmlDocDump(out, doc);
989
990 if (output)
991 fclose(out);
992 }
Daniel Veillard48b2f892001-02-25 16:11:03 +0000993 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000994 endTimer("Saving");
Daniel Veillard48b2f892001-02-25 16:11:03 +0000995 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000996#ifdef LIBXML_DEBUG_ENABLED
Daniel Veillarda6d8eb62000-12-27 10:46:47 +0000997 } else {
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000998 FILE *out;
999 if (output == NULL)
1000 out = stdout;
1001 else {
1002 out = fopen(output,"wb");
1003 }
1004 xmlDebugDumpDocument(out, doc);
1005
1006 if (output)
1007 fclose(out);
Daniel Veillarda6d8eb62000-12-27 10:46:47 +00001008 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001009#endif
1010 }
1011
1012 /*
1013 * A posteriori validation test
1014 */
Daniel Veillardcd429612000-10-11 15:57:05 +00001015 if (dtdvalid != NULL) {
1016 xmlDtdPtr dtd;
1017
Daniel Veillard48b2f892001-02-25 16:11:03 +00001018 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001019 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +00001020 }
Daniel Veillardcd429612000-10-11 15:57:05 +00001021 dtd = xmlParseDTD(NULL, (const xmlChar *)dtdvalid);
Daniel Veillard48b2f892001-02-25 16:11:03 +00001022 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001023 endTimer("Parsing DTD");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001024 }
Daniel Veillardcd429612000-10-11 15:57:05 +00001025 if (dtd == NULL) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001026 xmlGenericError(xmlGenericErrorContext,
1027 "Could not parse DTD %s\n", dtdvalid);
Daniel Veillardf7cd4812001-02-23 18:44:52 +00001028 progresult = 2;
Daniel Veillardcd429612000-10-11 15:57:05 +00001029 } else {
1030 xmlValidCtxt cvp;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001031 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001032 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +00001033 }
Daniel Veillard01db67c2001-12-18 07:09:59 +00001034 cvp.userData = (void *) stderr;
1035 cvp.error = (xmlValidityErrorFunc) fprintf;
1036 cvp.warning = (xmlValidityWarningFunc) fprintf;
Daniel Veillardcd429612000-10-11 15:57:05 +00001037 if (!xmlValidateDtd(&cvp, doc, dtd)) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001038 xmlGenericError(xmlGenericErrorContext,
1039 "Document %s does not validate against %s\n",
Daniel Veillardcd429612000-10-11 15:57:05 +00001040 filename, dtdvalid);
Daniel Veillardf7cd4812001-02-23 18:44:52 +00001041 progresult = 3;
Daniel Veillardcd429612000-10-11 15:57:05 +00001042 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001043 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001044 endTimer("Validating against DTD");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001045 }
Daniel Veillardcd429612000-10-11 15:57:05 +00001046 xmlFreeDtd(dtd);
1047 }
1048 } else if (postvalid) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001049 xmlValidCtxt cvp;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001050 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001051 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +00001052 }
Daniel Veillardb7664f42001-08-19 13:00:43 +00001053 cvp.userData = (void *) stderr;
1054 cvp.error = (xmlValidityErrorFunc) fprintf;
1055 cvp.warning = (xmlValidityWarningFunc) fprintf;
Daniel Veillardcd429612000-10-11 15:57:05 +00001056 if (!xmlValidateDocument(&cvp, doc)) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001057 xmlGenericError(xmlGenericErrorContext,
1058 "Document %s does not validate\n", filename);
Daniel Veillardf7cd4812001-02-23 18:44:52 +00001059 progresult = 3;
Daniel Veillardcd429612000-10-11 15:57:05 +00001060 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001061 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001062 endTimer("Validating");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001063 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001064#ifdef LIBXML_SCHEMAS_ENABLED
1065 } else if (relaxngschemas != NULL) {
1066 xmlRelaxNGValidCtxtPtr ctxt;
1067 int ret;
1068
Daniel Veillard42f12e92003-03-07 18:32:59 +00001069 if ((timing) && (!repeat)) {
1070 startTimer();
1071 }
1072
Daniel Veillard71531f32003-02-05 13:19:53 +00001073 ctxt = xmlRelaxNGNewValidCtxt(relaxngschemas);
1074 xmlRelaxNGSetValidErrors(ctxt,
1075 (xmlRelaxNGValidityErrorFunc) fprintf,
1076 (xmlRelaxNGValidityWarningFunc) fprintf,
1077 stderr);
1078 ret = xmlRelaxNGValidateDoc(ctxt, doc);
1079 if (ret == 0) {
1080 printf("%s validates\n", filename);
1081 } else if (ret > 0) {
1082 printf("%s fails to validate\n", filename);
1083 } else {
1084 printf("%s validation generated an internal error\n",
1085 filename);
1086 }
1087 xmlRelaxNGFreeValidCtxt(ctxt);
Daniel Veillard42f12e92003-03-07 18:32:59 +00001088 if ((timing) && (!repeat)) {
1089 endTimer("Validating");
1090 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001091#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001092 }
1093
1094#ifdef LIBXML_DEBUG_ENABLED
1095 if ((debugent) && (!html))
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001096 xmlDebugDumpEntities(stderr, doc);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001097#endif
1098
1099 /*
1100 * free it.
1101 */
Daniel Veillard48b2f892001-02-25 16:11:03 +00001102 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001103 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +00001104 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001105 xmlFreeDoc(doc);
Daniel Veillard48b2f892001-02-25 16:11:03 +00001106 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001107 endTimer("Freeing");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001108 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001109}
1110
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001111/************************************************************************
1112 * *
1113 * Usage and Main *
1114 * *
1115 ************************************************************************/
1116
Daniel Veillard0f04f8e2002-09-17 23:04:40 +00001117static void showVersion(const char *name) {
1118 fprintf(stderr, "%s: using libxml version %s\n", name, xmlParserVersion);
1119 fprintf(stderr, " compiled with: ");
1120#ifdef LIBXML_FTP_ENABLED
1121 fprintf(stderr, "FTP ");
1122#endif
1123#ifdef LIBXML_HTTP_ENABLED
1124 fprintf(stderr, "HTTP ");
1125#endif
1126#ifdef LIBXML_HTML_ENABLED
1127 fprintf(stderr, "HTML ");
1128#endif
1129#ifdef LIBXML_C14N_ENABLED
1130 fprintf(stderr, "C14N ");
1131#endif
1132#ifdef LIBXML_CATALOG_ENABLED
1133 fprintf(stderr, "Catalog ");
1134#endif
1135#ifdef LIBXML_DOCB_ENABLED
1136 fprintf(stderr, "DocBook ");
1137#endif
1138#ifdef LIBXML_XPATH_ENABLED
1139 fprintf(stderr, "XPath ");
1140#endif
1141#ifdef LIBXML_XPTR_ENABLED
1142 fprintf(stderr, "XPointer ");
1143#endif
1144#ifdef LIBXML_XINCLUDE_ENABLED
1145 fprintf(stderr, "XInclude ");
1146#endif
1147#ifdef LIBXML_ICONV_ENABLED
1148 fprintf(stderr, "Iconv ");
1149#endif
1150#ifdef DEBUG_MEMORY_LOCATION
1151 fprintf(stderr, "MemDebug ");
1152#endif
1153#ifdef LIBXML_UNICODE_ENABLED
1154 fprintf(stderr, "Unicode ");
1155#endif
1156#ifdef LIBXML_REGEXP_ENABLED
1157 fprintf(stderr, "Regexps ");
1158#endif
1159#ifdef LIBXML_AUTOMATA_ENABLED
1160 fprintf(stderr, "Automata ");
1161#endif
1162#ifdef LIBXML_SCHEMAS_ENABLED
1163 fprintf(stderr, "Schemas ");
1164#endif
1165 fprintf(stderr, "\n");
1166}
1167
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001168static void usage(const char *name) {
1169 printf("Usage : %s [options] XMLfiles ...\n", name);
1170 printf("\tParse the XML files and output the result of the parsing\n");
1171 printf("\t--version : display the version of the XML library used\n");
1172#ifdef LIBXML_DEBUG_ENABLED
1173 printf("\t--debug : dump a debug tree of the in-memory document\n");
1174 printf("\t--shell : run a navigating shell\n");
1175 printf("\t--debugent : debug the entities defined in the document\n");
Daniel Veillard8326e732003-01-07 00:19:07 +00001176#else
1177 printf("\t--debug : dump the nodes content when using --stream\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001178#endif
1179 printf("\t--copy : used to test the internal copy implementation\n");
1180 printf("\t--recover : output what was parsable on broken XML documents\n");
1181 printf("\t--noent : substitute entity references by their value\n");
1182 printf("\t--noout : don't output the result tree\n");
1183 printf("\t--htmlout : output results as HTML\n");
Daniel Veillard05c13a22001-09-09 08:38:09 +00001184 printf("\t--nowrap : do not put HTML doc wrapper\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001185 printf("\t--valid : validate the document in addition to std well-formed check\n");
1186 printf("\t--postvalid : do a posteriori validation, i.e after parsing\n");
1187 printf("\t--dtdvalid URL : do a posteriori validation against a given DTD\n");
1188 printf("\t--timing : print some timings\n");
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001189 printf("\t--output file or -o file: save to a given file\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001190 printf("\t--repeat : repeat 100 times, for timing or profiling\n");
1191 printf("\t--insert : ad-hoc test for valid insertions\n");
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001192#ifdef HAVE_ZLIB_H
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001193 printf("\t--compress : turn on gzip compression of output\n");
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001194#endif
Daniel Veillard89cad532001-10-22 09:46:13 +00001195#ifdef LIBXML_DOCB_ENABLED
1196 printf("\t--sgml : use the DocBook SGML parser\n");
1197#endif
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001198#ifdef LIBXML_HTML_ENABLED
1199 printf("\t--html : use the HTML parser\n");
1200#endif
1201 printf("\t--push : use the push mode of the parser\n");
1202#ifdef HAVE_SYS_MMAN_H
1203 printf("\t--memory : parse from memory\n");
1204#endif
1205 printf("\t--nowarning : do not emit warnings from parser/validator\n");
1206 printf("\t--noblanks : drop (ignorable?) blanks spaces\n");
Daniel Veillard90493a92001-08-14 14:12:47 +00001207 printf("\t--format : reformat/reindent the input\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001208 printf("\t--testIO : test user I/O support\n");
1209 printf("\t--encode encoding : output in the given encoding\n");
1210#ifdef LIBXML_CATALOG_ENABLED
Daniel Veillardbd9b0e82001-11-26 10:32:08 +00001211 printf("\t--catalogs : use SGML catalogs from $SGML_CATALOG_FILES\n");
1212 printf("\t otherwise XML Catalogs starting from \n");
Daniel Veillard3be27512003-01-26 19:49:04 +00001213 printf("\t " XML_XML_DEFAULT_CATALOG " are activated by default\n");
Daniel Veillard05c13a22001-09-09 08:38:09 +00001214 printf("\t--nocatalogs: deactivate all catalogs\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001215#endif
1216 printf("\t--auto : generate a small doc on the fly\n");
1217#ifdef LIBXML_XINCLUDE_ENABLED
1218 printf("\t--xinclude : do XInclude processing\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001219#endif
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001220 printf("\t--loaddtd : fetch external DTD\n");
Daniel Veillard48da9102001-08-07 01:10:10 +00001221 printf("\t--dtdattr : loaddtd + populate the tree with inherited attributes \n");
Daniel Veillard29e43992001-12-13 22:21:58 +00001222 printf("\t--dropdtd : remove the DOCTYPE of the input docs\n");
Daniel Veillard7704fb12003-01-03 16:19:51 +00001223 printf("\t--stream : use the streaming interface to process very large files\n");
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001224 printf("\t--chkregister : verify the node registration code\n");
Daniel Veillardef4d3bc2003-02-07 12:38:22 +00001225#ifdef LIBXML_SCHEMAS_ENABLED
Daniel Veillard71531f32003-02-05 13:19:53 +00001226 printf("\t--relaxng schema : do RelaxNG validation against the schema\n");
1227#endif
Daniel Veillarda42f25f2002-01-25 14:15:40 +00001228 printf("\nLibxml project home page: http://xmlsoft.org/\n");
1229 printf("To report bugs or get some help check: http://xmlsoft.org/bugs.html\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001230}
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001231
1232static void registerNode(xmlNodePtr node)
1233{
1234 node->_private = malloc(sizeof(long));
1235 *(long*)node->_private = (long) 0x81726354;
1236}
1237
1238static void deregisterNode(xmlNodePtr node)
1239{
1240 assert(node->_private != NULL);
1241 assert(*(long*)node->_private == (long) 0x81726354);
1242 free(node->_private);
1243}
1244
Daniel Veillard4a6845d2001-01-03 13:32:39 +00001245int
1246main(int argc, char **argv) {
Daniel Veillard7704fb12003-01-03 16:19:51 +00001247 int i, acount;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001248 int files = 0;
Daniel Veillard845cce42002-01-09 11:51:37 +00001249 int version = 0;
Aleksey Sanin693c9bc2003-03-09 22:36:52 +00001250 const char* indent;
1251
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001252 if (argc <= 1) {
1253 usage(argv[0]);
1254 return(1);
1255 }
Daniel Veillardbe803962000-06-28 23:40:59 +00001256 LIBXML_TEST_VERSION
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001257 for (i = 1; i < argc ; i++) {
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001258 if (!strcmp(argv[i], "-"))
1259 break;
1260
1261 if (argv[i][0] != '-')
1262 continue;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001263 if ((!strcmp(argv[i], "-debug")) || (!strcmp(argv[i], "--debug")))
1264 debug++;
Daniel Veillard56ada1d2003-01-07 11:17:25 +00001265 else
1266#ifdef LIBXML_DEBUG_ENABLED
1267 if ((!strcmp(argv[i], "-shell")) ||
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001268 (!strcmp(argv[i], "--shell"))) {
1269 shell++;
1270 noout = 1;
1271 } else
1272#endif
1273 if ((!strcmp(argv[i], "-copy")) || (!strcmp(argv[i], "--copy")))
1274 copy++;
1275 else if ((!strcmp(argv[i], "-recover")) ||
1276 (!strcmp(argv[i], "--recover")))
1277 recovery++;
1278 else if ((!strcmp(argv[i], "-noent")) ||
1279 (!strcmp(argv[i], "--noent")))
1280 noent++;
Daniel Veillard4ec885a2001-06-17 10:31:07 +00001281 else if ((!strcmp(argv[i], "-version")) ||
Daniel Veillard845cce42002-01-09 11:51:37 +00001282 (!strcmp(argv[i], "--version"))) {
Daniel Veillard0f04f8e2002-09-17 23:04:40 +00001283 showVersion(argv[0]);
Daniel Veillard845cce42002-01-09 11:51:37 +00001284 version = 1;
1285 } else if ((!strcmp(argv[i], "-noout")) ||
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001286 (!strcmp(argv[i], "--noout")))
1287 noout++;
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001288 else if ((!strcmp(argv[i], "-o")) ||
1289 (!strcmp(argv[i], "-output")) ||
1290 (!strcmp(argv[i], "--output"))) {
1291 i++;
Daniel Veillard6e4f1c02002-04-09 09:55:20 +00001292 output = argv[i];
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001293 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001294 else if ((!strcmp(argv[i], "-htmlout")) ||
1295 (!strcmp(argv[i], "--htmlout")))
1296 htmlout++;
Daniel Veillard89cad532001-10-22 09:46:13 +00001297#ifdef LIBXML_DOCB_ENABLED
1298 else if ((!strcmp(argv[i], "-sgml")) ||
1299 (!strcmp(argv[i], "--sgml"))) {
1300 sgml++;
1301 }
1302#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001303#ifdef LIBXML_HTML_ENABLED
1304 else if ((!strcmp(argv[i], "-html")) ||
1305 (!strcmp(argv[i], "--html"))) {
1306 html++;
1307 }
1308#endif /* LIBXML_HTML_ENABLED */
1309 else if ((!strcmp(argv[i], "-nowrap")) ||
1310 (!strcmp(argv[i], "--nowrap")))
1311 nowrap++;
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001312 else if ((!strcmp(argv[i], "-loaddtd")) ||
1313 (!strcmp(argv[i], "--loaddtd")))
1314 loaddtd++;
Daniel Veillard48da9102001-08-07 01:10:10 +00001315 else if ((!strcmp(argv[i], "-dtdattr")) ||
1316 (!strcmp(argv[i], "--dtdattr"))) {
1317 loaddtd++;
1318 dtdattrs++;
1319 } else if ((!strcmp(argv[i], "-valid")) ||
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001320 (!strcmp(argv[i], "--valid")))
1321 valid++;
1322 else if ((!strcmp(argv[i], "-postvalid")) ||
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001323 (!strcmp(argv[i], "--postvalid"))) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001324 postvalid++;
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001325 loaddtd++;
1326 } else if ((!strcmp(argv[i], "-dtdvalid")) ||
Daniel Veillardcd429612000-10-11 15:57:05 +00001327 (!strcmp(argv[i], "--dtdvalid"))) {
1328 i++;
1329 dtdvalid = argv[i];
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001330 loaddtd++;
Daniel Veillardcd429612000-10-11 15:57:05 +00001331 }
Daniel Veillard29e43992001-12-13 22:21:58 +00001332 else if ((!strcmp(argv[i], "-dropdtd")) ||
1333 (!strcmp(argv[i], "--dropdtd")))
1334 dropdtd++;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001335 else if ((!strcmp(argv[i], "-insert")) ||
1336 (!strcmp(argv[i], "--insert")))
1337 insert++;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001338 else if ((!strcmp(argv[i], "-timing")) ||
1339 (!strcmp(argv[i], "--timing")))
1340 timing++;
Daniel Veillardd2f3ec72001-04-11 07:50:02 +00001341 else if ((!strcmp(argv[i], "-auto")) ||
1342 (!strcmp(argv[i], "--auto")))
1343 generate++;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001344 else if ((!strcmp(argv[i], "-repeat")) ||
1345 (!strcmp(argv[i], "--repeat")))
1346 repeat++;
1347 else if ((!strcmp(argv[i], "-push")) ||
1348 (!strcmp(argv[i], "--push")))
1349 push++;
Daniel Veillard46e370e2000-07-21 20:32:03 +00001350#ifdef HAVE_SYS_MMAN_H
1351 else if ((!strcmp(argv[i], "-memory")) ||
1352 (!strcmp(argv[i], "--memory")))
1353 memory++;
1354#endif
Daniel Veillard5e873c42000-04-12 13:27:38 +00001355 else if ((!strcmp(argv[i], "-testIO")) ||
1356 (!strcmp(argv[i], "--testIO")))
1357 testIO++;
Daniel Veillard9e8bfae2000-11-06 16:43:11 +00001358#ifdef LIBXML_XINCLUDE_ENABLED
1359 else if ((!strcmp(argv[i], "-xinclude")) ||
1360 (!strcmp(argv[i], "--xinclude")))
1361 xinclude++;
1362#endif
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001363#ifdef HAVE_ZLIB_H
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001364 else if ((!strcmp(argv[i], "-compress")) ||
1365 (!strcmp(argv[i], "--compress"))) {
1366 compress++;
1367 xmlSetCompressMode(9);
1368 }
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001369#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001370 else if ((!strcmp(argv[i], "-nowarning")) ||
1371 (!strcmp(argv[i], "--nowarning"))) {
1372 xmlGetWarningsDefaultValue = 0;
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001373 xmlPedanticParserDefault(0);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001374 }
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001375 else if ((!strcmp(argv[i], "-pedantic")) ||
1376 (!strcmp(argv[i], "--pedantic"))) {
1377 xmlGetWarningsDefaultValue = 1;
1378 xmlPedanticParserDefault(1);
1379 }
Daniel Veillard64c20ed2000-09-22 16:07:02 +00001380#ifdef LIBXML_DEBUG_ENABLED
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001381 else if ((!strcmp(argv[i], "-debugent")) ||
1382 (!strcmp(argv[i], "--debugent"))) {
1383 debugent++;
1384 xmlParserDebugEntities = 1;
1385 }
Daniel Veillard64c20ed2000-09-22 16:07:02 +00001386#endif
Daniel Veillard81418e32001-05-22 15:08:55 +00001387#ifdef LIBXML_CATALOG_ENABLED
1388 else if ((!strcmp(argv[i], "-catalogs")) ||
1389 (!strcmp(argv[i], "--catalogs"))) {
Daniel Veillarde2940dd2001-08-22 00:06:49 +00001390 catalogs++;
1391 } else if ((!strcmp(argv[i], "-nocatalogs")) ||
1392 (!strcmp(argv[i], "--nocatalogs"))) {
1393 nocatalogs++;
Daniel Veillard81418e32001-05-22 15:08:55 +00001394 }
1395#endif
Daniel Veillardbe803962000-06-28 23:40:59 +00001396 else if ((!strcmp(argv[i], "-encode")) ||
1397 (!strcmp(argv[i], "--encode"))) {
1398 i++;
1399 encoding = argv[i];
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001400 /*
1401 * OK it's for testing purposes
1402 */
1403 xmlAddEncodingAlias("UTF-8", "DVEnc");
Daniel Veillardbe803962000-06-28 23:40:59 +00001404 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001405 else if ((!strcmp(argv[i], "-noblanks")) ||
1406 (!strcmp(argv[i], "--noblanks"))) {
1407 noblanks++;
1408 xmlKeepBlanksDefault(0);
Daniel Veillard90493a92001-08-14 14:12:47 +00001409 }
1410 else if ((!strcmp(argv[i], "-format")) ||
1411 (!strcmp(argv[i], "--format"))) {
1412 noblanks++;
1413 format++;
1414 xmlKeepBlanksDefault(0);
Daniel Veillard7704fb12003-01-03 16:19:51 +00001415 }
1416 else if ((!strcmp(argv[i], "-stream")) ||
1417 (!strcmp(argv[i], "--stream"))) {
1418 stream++;
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001419 }
1420 else if ((!strcmp(argv[i], "-chkregister")) ||
1421 (!strcmp(argv[i], "--chkregister"))) {
1422 chkregister++;
Daniel Veillard71531f32003-02-05 13:19:53 +00001423#ifdef LIBXML_SCHEMAS_ENABLED
1424 } else if ((!strcmp(argv[i], "-relaxng")) ||
1425 (!strcmp(argv[i], "--relaxng"))) {
1426 i++;
1427 relaxng = argv[i];
1428 noent++;
1429#endif
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001430 } else {
1431 fprintf(stderr, "Unknown option %s\n", argv[i]);
1432 usage(argv[0]);
1433 return(1);
1434 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001435 }
Daniel Veillarde2940dd2001-08-22 00:06:49 +00001436
1437#ifdef LIBXML_CATALOG_ENABLED
1438 if (nocatalogs == 0) {
1439 if (catalogs) {
1440 const char *catal;
1441
1442 catal = getenv("SGML_CATALOG_FILES");
Daniel Veillard6c5f9d12001-08-25 13:33:14 +00001443 if (catal != NULL) {
1444 xmlLoadCatalogs(catal);
1445 } else {
1446 fprintf(stderr, "Variable $SGML_CATALOG_FILES not set\n");
1447 }
Daniel Veillarde2940dd2001-08-22 00:06:49 +00001448 }
1449 }
1450#endif
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001451
1452 if (chkregister) {
1453 xmlRegisterNodeDefault(registerNode);
1454 xmlDeregisterNodeDefault(deregisterNode);
1455 }
Aleksey Sanin693c9bc2003-03-09 22:36:52 +00001456
1457 indent = getenv("XMLLINT_INDENT");
1458 if(indent != NULL) {
1459 xmlTreeIndentString = indent;
1460 }
1461
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001462
Daniel Veillardd9bad132001-07-23 19:39:43 +00001463 xmlLineNumbersDefault(1);
Daniel Veillard48da9102001-08-07 01:10:10 +00001464 if (loaddtd != 0)
1465 xmlLoadExtDtdDefaultValue |= XML_DETECT_IDS;
1466 if (dtdattrs)
1467 xmlLoadExtDtdDefaultValue |= XML_COMPLETE_ATTRS;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001468 if (noent != 0) xmlSubstituteEntitiesDefault(1);
1469 if (valid != 0) xmlDoValidityCheckingDefaultValue = 1;
1470 if ((htmlout) && (!nowrap)) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001471 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001472 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"\n");
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001473 xmlGenericError(xmlGenericErrorContext,
1474 "\t\"http://www.w3.org/TR/REC-html40/loose.dtd\">\n");
1475 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001476 "<html><head><title>%s output</title></head>\n",
1477 argv[0]);
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001478 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001479 "<body bgcolor=\"#ffffff\"><h1 align=\"center\">%s output</h1>\n",
1480 argv[0]);
1481 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001482
1483#ifdef LIBXML_SCHEMAS_ENABLED
1484 if (relaxng != NULL) {
1485 xmlRelaxNGParserCtxtPtr ctxt;
1486
Daniel Veillard42f12e92003-03-07 18:32:59 +00001487 if (timing) {
1488 startTimer();
1489 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001490 ctxt = xmlRelaxNGNewParserCtxt(relaxng);
1491 xmlRelaxNGSetParserErrors(ctxt,
1492 (xmlRelaxNGValidityErrorFunc) fprintf,
1493 (xmlRelaxNGValidityWarningFunc) fprintf,
1494 stderr);
1495 relaxngschemas = xmlRelaxNGParse(ctxt);
1496 xmlRelaxNGFreeParserCtxt(ctxt);
Daniel Veillard42f12e92003-03-07 18:32:59 +00001497 if (timing) {
1498 endTimer("Compiling the schemas");
1499 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001500 }
1501#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001502 for (i = 1; i < argc ; i++) {
Daniel Veillardbe803962000-06-28 23:40:59 +00001503 if ((!strcmp(argv[i], "-encode")) ||
1504 (!strcmp(argv[i], "--encode"))) {
1505 i++;
1506 continue;
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001507 } else if ((!strcmp(argv[i], "-o")) ||
1508 (!strcmp(argv[i], "-output")) ||
1509 (!strcmp(argv[i], "--output"))) {
1510 i++;
1511 continue;
Daniel Veillardbe803962000-06-28 23:40:59 +00001512 }
Daniel Veillardcd429612000-10-11 15:57:05 +00001513 if ((!strcmp(argv[i], "-dtdvalid")) ||
1514 (!strcmp(argv[i], "--dtdvalid"))) {
1515 i++;
1516 continue;
1517 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001518 if ((!strcmp(argv[i], "-relaxng")) ||
1519 (!strcmp(argv[i], "--relaxng"))) {
1520 i++;
1521 continue;
1522 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001523 if ((timing) && (repeat))
Daniel Veillard01db67c2001-12-18 07:09:59 +00001524 startTimer();
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001525 /* Remember file names. "-" means stdin. <sven@zen.org> */
Daniel Veillard4a6845d2001-01-03 13:32:39 +00001526 if ((argv[i][0] != '-') || (strcmp(argv[i], "-") == 0)) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001527 if (repeat) {
Daniel Veillard7704fb12003-01-03 16:19:51 +00001528 for (acount = 0;acount < 100 * repeat;acount++)
1529 if (stream != 0)
1530 streamFile(argv[i]);
1531 else
1532 parseAndPrintFile(argv[i]);
1533 } else {
1534 if (stream != 0)
1535 streamFile(argv[i]);
1536 else
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001537 parseAndPrintFile(argv[i]);
Daniel Veillard7704fb12003-01-03 16:19:51 +00001538 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001539 files ++;
Daniel Veillarda7866932001-12-04 13:14:44 +00001540 if ((timing) && (repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001541 endTimer("100 iterations");
Daniel Veillarda7866932001-12-04 13:14:44 +00001542 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001543 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001544 }
Daniel Veillardd2f3ec72001-04-11 07:50:02 +00001545 if (generate)
1546 parseAndPrintFile(NULL);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001547 if ((htmlout) && (!nowrap)) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001548 xmlGenericError(xmlGenericErrorContext, "</body></html>\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001549 }
Daniel Veillard845cce42002-01-09 11:51:37 +00001550 if ((files == 0) && (!generate) && (version == 0)) {
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001551 usage(argv[0]);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001552 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001553#ifdef LIBXML_SCHEMAS_ENABLED
1554 if (relaxngschemas != NULL)
1555 xmlRelaxNGFree(relaxngschemas);
1556 xmlRelaxNGCleanupTypes();
1557#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001558 xmlCleanupParser();
1559 xmlMemoryDump();
1560
Daniel Veillardf7cd4812001-02-23 18:44:52 +00001561 return(progresult);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001562}
Daniel Veillard88a172f2000-08-04 18:23:10 +00001563