blob: 9021b19e9bf54ec0cb605be63c4a23df162933b0 [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
638 /*
639 * Done, cleanup and status
640 */
641 xmlFreeTextReader(reader);
642 if (ret != 0) {
643 printf("%s : failed to parse\n", filename);
644 }
645 } else {
646 fprintf(stderr, "Unable to open %s\n", filename);
647 }
648}
649
650/************************************************************************
651 * *
652 * Tree Test processing *
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000653 * *
654 ************************************************************************/
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000655static void parseAndPrintFile(char *filename) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000656 xmlDocPtr doc = NULL, tmp;
657
Daniel Veillard48b2f892001-02-25 16:11:03 +0000658 if ((timing) && (!repeat))
Daniel Veillard01db67c2001-12-18 07:09:59 +0000659 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +0000660
661
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000662 if (filename == NULL) {
663 if (generate) {
664 xmlNodePtr n;
665
666 doc = xmlNewDoc(BAD_CAST "1.0");
667 n = xmlNewNode(NULL, BAD_CAST "info");
668 xmlNodeSetContent(n, BAD_CAST "abc");
669 xmlDocSetRootElement(doc, n);
670 }
671 }
Daniel Veillard89cad532001-10-22 09:46:13 +0000672#ifdef LIBXML_DOCB_ENABLED
673 /*
674 * build an SGML tree from a string;
675 */
676 else if ((sgml) && (push)) {
677 FILE *f;
678
679 f = fopen(filename, "r");
680 if (f != NULL) {
681 int res, size = 3;
682 char chars[4096];
683 docbParserCtxtPtr ctxt;
684
685 /* if (repeat) */
686 size = 4096;
687 res = fread(chars, 1, 4, f);
688 if (res > 0) {
689 ctxt = docbCreatePushParserCtxt(NULL, NULL,
690 chars, res, filename, 0);
691 while ((res = fread(chars, 1, size, f)) > 0) {
692 docbParseChunk(ctxt, chars, res, 0);
693 }
694 docbParseChunk(ctxt, chars, 0, 1);
695 doc = ctxt->myDoc;
696 docbFreeParserCtxt(ctxt);
697 }
698 fclose(f);
699 }
700 } else if (sgml) {
701 doc = docbParseFile(filename, NULL);
702 }
703#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000704#ifdef LIBXML_HTML_ENABLED
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000705 else if (html) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000706 doc = htmlParseFile(filename, NULL);
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000707 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000708#endif /* LIBXML_HTML_ENABLED */
Daniel Veillardd2f3ec72001-04-11 07:50:02 +0000709 else {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000710 /*
711 * build an XML tree from a string;
712 */
713 if (push) {
714 FILE *f;
715
Daniel Veillard4a6845d2001-01-03 13:32:39 +0000716 /* '-' Usually means stdin -<sven@zen.org> */
717 if ((filename[0] == '-') && (filename[1] == 0)) {
718 f = stdin;
719 } else {
720 f = fopen(filename, "r");
721 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000722 if (f != NULL) {
Daniel Veillarde715dd22000-08-29 18:29:38 +0000723 int ret;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000724 int res, size = 3;
725 char chars[1024];
726 xmlParserCtxtPtr ctxt;
727
728 if (repeat)
729 size = 1024;
730 res = fread(chars, 1, 4, f);
731 if (res > 0) {
732 ctxt = xmlCreatePushParserCtxt(NULL, NULL,
733 chars, res, filename);
734 while ((res = fread(chars, 1, size, f)) > 0) {
735 xmlParseChunk(ctxt, chars, res, 0);
736 }
737 xmlParseChunk(ctxt, chars, 0, 1);
738 doc = ctxt->myDoc;
Daniel Veillarde715dd22000-08-29 18:29:38 +0000739 ret = ctxt->wellFormed;
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000740 xmlFreeParserCtxt(ctxt);
Daniel Veillarde715dd22000-08-29 18:29:38 +0000741 if (!ret) {
742 xmlFreeDoc(doc);
743 doc = NULL;
744 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000745 }
746 }
Daniel Veillard5e873c42000-04-12 13:27:38 +0000747 } else if (testIO) {
748 int ret;
749 FILE *f;
750
Daniel Veillard4a6845d2001-01-03 13:32:39 +0000751 /* '-' Usually means stdin -<sven@zen.org> */
752 if ((filename[0] == '-') && (filename[1] == 0)) {
753 f = stdin;
754 } else {
755 f = fopen(filename, "r");
756 }
Daniel Veillard5e873c42000-04-12 13:27:38 +0000757 if (f != NULL) {
758 xmlParserCtxtPtr ctxt;
759
760 ctxt = xmlCreateIOParserCtxt(NULL, NULL,
761 (xmlInputReadCallback) myRead,
762 (xmlInputCloseCallback) myClose,
763 f, XML_CHAR_ENCODING_NONE);
764 xmlParseDocument(ctxt);
765
766 ret = ctxt->wellFormed;
767 doc = ctxt->myDoc;
768 xmlFreeParserCtxt(ctxt);
769 if (!ret) {
770 xmlFreeDoc(doc);
771 doc = NULL;
772 }
773 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000774 } else if (recovery) {
775 doc = xmlRecoverFile(filename);
776 } else if (htmlout) {
777 int ret;
778 xmlParserCtxtPtr ctxt;
779 xmlSAXHandler silent, *old;
780
781 ctxt = xmlCreateFileParserCtxt(filename);
Daniel Veillard88a172f2000-08-04 18:23:10 +0000782
783 if (ctxt == NULL) {
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000784 /* If xmlCreateFileParserCtxt() return NULL something
Daniel Veillard88a172f2000-08-04 18:23:10 +0000785 strange happened so we don't want to do anything. Do
786 we want to print an error message here?
787 <sven@zen.org> */
Daniel Veillard7ebb1ee2000-08-04 18:24:45 +0000788 doc = NULL;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000789 } else {
790 memcpy(&silent, ctxt->sax, sizeof(silent));
791 old = ctxt->sax;
792 silent.error = xmlHTMLError;
793 if (xmlGetWarningsDefaultValue)
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000794 silent.warning = xmlHTMLWarning;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000795 else
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000796 silent.warning = NULL;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000797 silent.fatalError = xmlHTMLError;
798 ctxt->sax = &silent;
799 ctxt->vctxt.error = xmlHTMLValidityError;
800 if (xmlGetWarningsDefaultValue)
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000801 ctxt->vctxt.warning = xmlHTMLValidityWarning;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000802 else
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000803 ctxt->vctxt.warning = NULL;
804
Daniel Veillard88a172f2000-08-04 18:23:10 +0000805 xmlParseDocument(ctxt);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000806
Daniel Veillard88a172f2000-08-04 18:23:10 +0000807 ret = ctxt->wellFormed;
808 doc = ctxt->myDoc;
809 ctxt->sax = old;
810 xmlFreeParserCtxt(ctxt);
811 if (!ret) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000812 xmlFreeDoc(doc);
813 doc = NULL;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000814 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000815 }
Daniel Veillard46e370e2000-07-21 20:32:03 +0000816#ifdef HAVE_SYS_MMAN_H
817 } else if (memory) {
818 int fd;
819 struct stat info;
820 const char *base;
821 if (stat(filename, &info) < 0)
822 return;
823 if ((fd = open(filename, O_RDONLY)) < 0)
824 return;
825 base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
Daniel Veillard29579362000-08-14 17:57:48 +0000826 if (base == (void *) MAP_FAILED)
Daniel Veillard46e370e2000-07-21 20:32:03 +0000827 return;
828
829 doc = xmlParseMemory((char *) base, info.st_size);
830 munmap((char *) base, info.st_size);
831#endif
Daniel Veillardea7751d2002-12-20 00:16:24 +0000832 } else if (valid) {
833 int ret;
834 xmlParserCtxtPtr ctxt;
835
836 ctxt = xmlCreateFileParserCtxt(filename);
837
838 if (ctxt == NULL) {
839 doc = NULL;
840 } else {
841 xmlParseDocument(ctxt);
842 if (ctxt->valid == 0)
843 progresult = 4;
844 ret = ctxt->wellFormed;
845 doc = ctxt->myDoc;
846 xmlFreeParserCtxt(ctxt);
847 if (!ret) {
848 xmlFreeDoc(doc);
849 doc = NULL;
850 }
851 }
852 } else {
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000853 doc = xmlParseFile(filename);
Daniel Veillardea7751d2002-12-20 00:16:24 +0000854 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000855 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000856
Daniel Veillard88a172f2000-08-04 18:23:10 +0000857 /*
858 * If we don't have a document we might as well give up. Do we
859 * want an error message here? <sven@zen.org> */
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000860 if (doc == NULL) {
Daniel Veillardf7cd4812001-02-23 18:44:52 +0000861 progresult = 1;
Daniel Veillard88a172f2000-08-04 18:23:10 +0000862 return;
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000863 }
864
Daniel Veillard48b2f892001-02-25 16:11:03 +0000865 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000866 endTimer("Parsing");
Daniel Veillard48b2f892001-02-25 16:11:03 +0000867 }
868
Daniel Veillard29e43992001-12-13 22:21:58 +0000869 /*
870 * Remove DOCTYPE nodes
871 */
872 if (dropdtd) {
873 xmlDtdPtr dtd;
874
875 dtd = xmlGetIntSubset(doc);
876 if (dtd != NULL) {
877 xmlUnlinkNode((xmlNodePtr)dtd);
878 xmlFreeDtd(dtd);
879 }
880 }
881
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000882#ifdef LIBXML_XINCLUDE_ENABLED
Daniel Veillard48b2f892001-02-25 16:11:03 +0000883 if (xinclude) {
884 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000885 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +0000886 }
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000887 xmlXIncludeProcess(doc);
Daniel Veillard48b2f892001-02-25 16:11:03 +0000888 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000889 endTimer("Xinclude processing");
Daniel Veillard48b2f892001-02-25 16:11:03 +0000890 }
891 }
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000892#endif
Daniel Veillard88a172f2000-08-04 18:23:10 +0000893
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000894#ifdef LIBXML_DEBUG_ENABLED
895 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000896 * shell interaction
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000897 */
898 if (shell)
899 xmlShell(doc, filename, xmlShellReadline, stdout);
900#endif
901
902 /*
903 * test intermediate copy if needed.
904 */
905 if (copy) {
906 tmp = doc;
907 doc = xmlCopyDoc(doc, 1);
908 xmlFreeDoc(tmp);
909 }
910
911 if ((insert) && (!html)) {
912 const xmlChar* list[256];
913 int nb, i;
914 xmlNodePtr node;
915
916 if (doc->children != NULL) {
917 node = doc->children;
918 while ((node != NULL) && (node->last == NULL)) node = node->next;
919 if (node != NULL) {
920 nb = xmlValidGetValidElements(node->last, NULL, list, 256);
921 if (nb < 0) {
922 printf("could not get valid list of elements\n");
923 } else if (nb == 0) {
MDT 2001 John Fleckbbb9e432001-09-24 03:08:43 +0000924 printf("No element can be inserted under root\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000925 } else {
MDT 2001 John Fleckbbb9e432001-09-24 03:08:43 +0000926 printf("%d element types can be inserted under root:\n",
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000927 nb);
928 for (i = 0;i < nb;i++) {
Daniel Veillard8a1b1852003-01-05 22:37:17 +0000929 printf("%s\n", (char *) list[i]);
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000930 }
931 }
932 }
933 }
934 }else if (noout == 0) {
935 /*
936 * print it.
937 */
938#ifdef LIBXML_DEBUG_ENABLED
939 if (!debug) {
940#endif
Daniel Veillard48b2f892001-02-25 16:11:03 +0000941 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000942 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +0000943 }
Daniel Veillard3b2c2612001-04-04 00:09:00 +0000944#ifdef HAVE_SYS_MMAN_H
Daniel Veillarda6d8eb62000-12-27 10:46:47 +0000945 if (memory) {
946 xmlChar *result;
947 int len;
948
949 if (encoding != NULL) {
Daniel Veillardd536f702001-11-08 17:32:47 +0000950 if ( format ) {
951 xmlDocDumpFormatMemoryEnc(doc, &result, &len, encoding, 1);
952 } else {
953 xmlDocDumpMemoryEnc(doc, &result, &len, encoding);
954 }
Daniel Veillarda6d8eb62000-12-27 10:46:47 +0000955 } else {
Daniel Veillard90493a92001-08-14 14:12:47 +0000956 if (format)
957 xmlDocDumpFormatMemory(doc, &result, &len, 1);
958 else
959 xmlDocDumpMemory(doc, &result, &len);
Daniel Veillarda6d8eb62000-12-27 10:46:47 +0000960 }
961 if (result == NULL) {
962 fprintf(stderr, "Failed to save\n");
963 } else {
964 write(1, result, len);
965 xmlFree(result);
966 }
Daniel Veillard3b2c2612001-04-04 00:09:00 +0000967 } else
968#endif /* HAVE_SYS_MMAN_H */
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000969 if (compress) {
970 xmlSaveFile(output ? output : "-", doc);
971 }
Daniel Veillardd536f702001-11-08 17:32:47 +0000972 else if (encoding != NULL) {
973 if ( format ) {
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000974 xmlSaveFormatFileEnc(output ? output : "-", doc, encoding, 1);
975 }
Daniel Veillardd536f702001-11-08 17:32:47 +0000976 else {
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000977 xmlSaveFileEnc(output ? output : "-", doc, encoding);
Daniel Veillardd536f702001-11-08 17:32:47 +0000978 }
979 }
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000980 else if (format) {
981 xmlSaveFormatFile(output ? output : "-", doc, 1);
982 }
983 else {
984 FILE *out;
985 if (output == NULL)
986 out = stdout;
987 else {
988 out = fopen(output,"wb");
989 }
990 xmlDocDump(out, doc);
991
992 if (output)
993 fclose(out);
994 }
Daniel Veillard48b2f892001-02-25 16:11:03 +0000995 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +0000996 endTimer("Saving");
Daniel Veillard48b2f892001-02-25 16:11:03 +0000997 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +0000998#ifdef LIBXML_DEBUG_ENABLED
Daniel Veillarda6d8eb62000-12-27 10:46:47 +0000999 } else {
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001000 FILE *out;
1001 if (output == NULL)
1002 out = stdout;
1003 else {
1004 out = fopen(output,"wb");
1005 }
1006 xmlDebugDumpDocument(out, doc);
1007
1008 if (output)
1009 fclose(out);
Daniel Veillarda6d8eb62000-12-27 10:46:47 +00001010 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001011#endif
1012 }
1013
1014 /*
1015 * A posteriori validation test
1016 */
Daniel Veillardcd429612000-10-11 15:57:05 +00001017 if (dtdvalid != NULL) {
1018 xmlDtdPtr dtd;
1019
Daniel Veillard48b2f892001-02-25 16:11:03 +00001020 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001021 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +00001022 }
Daniel Veillardcd429612000-10-11 15:57:05 +00001023 dtd = xmlParseDTD(NULL, (const xmlChar *)dtdvalid);
Daniel Veillard48b2f892001-02-25 16:11:03 +00001024 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001025 endTimer("Parsing DTD");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001026 }
Daniel Veillardcd429612000-10-11 15:57:05 +00001027 if (dtd == NULL) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001028 xmlGenericError(xmlGenericErrorContext,
1029 "Could not parse DTD %s\n", dtdvalid);
Daniel Veillardf7cd4812001-02-23 18:44:52 +00001030 progresult = 2;
Daniel Veillardcd429612000-10-11 15:57:05 +00001031 } else {
1032 xmlValidCtxt cvp;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001033 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001034 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +00001035 }
Daniel Veillard01db67c2001-12-18 07:09:59 +00001036 cvp.userData = (void *) stderr;
1037 cvp.error = (xmlValidityErrorFunc) fprintf;
1038 cvp.warning = (xmlValidityWarningFunc) fprintf;
Daniel Veillardcd429612000-10-11 15:57:05 +00001039 if (!xmlValidateDtd(&cvp, doc, dtd)) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001040 xmlGenericError(xmlGenericErrorContext,
1041 "Document %s does not validate against %s\n",
Daniel Veillardcd429612000-10-11 15:57:05 +00001042 filename, dtdvalid);
Daniel Veillardf7cd4812001-02-23 18:44:52 +00001043 progresult = 3;
Daniel Veillardcd429612000-10-11 15:57:05 +00001044 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001045 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001046 endTimer("Validating against DTD");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001047 }
Daniel Veillardcd429612000-10-11 15:57:05 +00001048 xmlFreeDtd(dtd);
1049 }
1050 } else if (postvalid) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001051 xmlValidCtxt cvp;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001052 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001053 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +00001054 }
Daniel Veillardb7664f42001-08-19 13:00:43 +00001055 cvp.userData = (void *) stderr;
1056 cvp.error = (xmlValidityErrorFunc) fprintf;
1057 cvp.warning = (xmlValidityWarningFunc) fprintf;
Daniel Veillardcd429612000-10-11 15:57:05 +00001058 if (!xmlValidateDocument(&cvp, doc)) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001059 xmlGenericError(xmlGenericErrorContext,
1060 "Document %s does not validate\n", filename);
Daniel Veillardf7cd4812001-02-23 18:44:52 +00001061 progresult = 3;
Daniel Veillardcd429612000-10-11 15:57:05 +00001062 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001063 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001064 endTimer("Validating");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001065 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001066#ifdef LIBXML_SCHEMAS_ENABLED
1067 } else if (relaxngschemas != NULL) {
1068 xmlRelaxNGValidCtxtPtr ctxt;
1069 int ret;
1070
Daniel Veillard42f12e92003-03-07 18:32:59 +00001071 if ((timing) && (!repeat)) {
1072 startTimer();
1073 }
1074
Daniel Veillard71531f32003-02-05 13:19:53 +00001075 ctxt = xmlRelaxNGNewValidCtxt(relaxngschemas);
1076 xmlRelaxNGSetValidErrors(ctxt,
1077 (xmlRelaxNGValidityErrorFunc) fprintf,
1078 (xmlRelaxNGValidityWarningFunc) fprintf,
1079 stderr);
1080 ret = xmlRelaxNGValidateDoc(ctxt, doc);
1081 if (ret == 0) {
1082 printf("%s validates\n", filename);
1083 } else if (ret > 0) {
1084 printf("%s fails to validate\n", filename);
1085 } else {
1086 printf("%s validation generated an internal error\n",
1087 filename);
1088 }
1089 xmlRelaxNGFreeValidCtxt(ctxt);
Daniel Veillard42f12e92003-03-07 18:32:59 +00001090 if ((timing) && (!repeat)) {
1091 endTimer("Validating");
1092 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001093#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001094 }
1095
1096#ifdef LIBXML_DEBUG_ENABLED
1097 if ((debugent) && (!html))
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001098 xmlDebugDumpEntities(stderr, doc);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001099#endif
1100
1101 /*
1102 * free it.
1103 */
Daniel Veillard48b2f892001-02-25 16:11:03 +00001104 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001105 startTimer();
Daniel Veillard48b2f892001-02-25 16:11:03 +00001106 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001107 xmlFreeDoc(doc);
Daniel Veillard48b2f892001-02-25 16:11:03 +00001108 if ((timing) && (!repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001109 endTimer("Freeing");
Daniel Veillard48b2f892001-02-25 16:11:03 +00001110 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001111}
1112
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001113/************************************************************************
1114 * *
1115 * Usage and Main *
1116 * *
1117 ************************************************************************/
1118
Daniel Veillard0f04f8e2002-09-17 23:04:40 +00001119static void showVersion(const char *name) {
1120 fprintf(stderr, "%s: using libxml version %s\n", name, xmlParserVersion);
1121 fprintf(stderr, " compiled with: ");
1122#ifdef LIBXML_FTP_ENABLED
1123 fprintf(stderr, "FTP ");
1124#endif
1125#ifdef LIBXML_HTTP_ENABLED
1126 fprintf(stderr, "HTTP ");
1127#endif
1128#ifdef LIBXML_HTML_ENABLED
1129 fprintf(stderr, "HTML ");
1130#endif
1131#ifdef LIBXML_C14N_ENABLED
1132 fprintf(stderr, "C14N ");
1133#endif
1134#ifdef LIBXML_CATALOG_ENABLED
1135 fprintf(stderr, "Catalog ");
1136#endif
1137#ifdef LIBXML_DOCB_ENABLED
1138 fprintf(stderr, "DocBook ");
1139#endif
1140#ifdef LIBXML_XPATH_ENABLED
1141 fprintf(stderr, "XPath ");
1142#endif
1143#ifdef LIBXML_XPTR_ENABLED
1144 fprintf(stderr, "XPointer ");
1145#endif
1146#ifdef LIBXML_XINCLUDE_ENABLED
1147 fprintf(stderr, "XInclude ");
1148#endif
1149#ifdef LIBXML_ICONV_ENABLED
1150 fprintf(stderr, "Iconv ");
1151#endif
1152#ifdef DEBUG_MEMORY_LOCATION
1153 fprintf(stderr, "MemDebug ");
1154#endif
1155#ifdef LIBXML_UNICODE_ENABLED
1156 fprintf(stderr, "Unicode ");
1157#endif
1158#ifdef LIBXML_REGEXP_ENABLED
1159 fprintf(stderr, "Regexps ");
1160#endif
1161#ifdef LIBXML_AUTOMATA_ENABLED
1162 fprintf(stderr, "Automata ");
1163#endif
1164#ifdef LIBXML_SCHEMAS_ENABLED
1165 fprintf(stderr, "Schemas ");
1166#endif
1167 fprintf(stderr, "\n");
1168}
1169
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001170static void usage(const char *name) {
1171 printf("Usage : %s [options] XMLfiles ...\n", name);
1172 printf("\tParse the XML files and output the result of the parsing\n");
1173 printf("\t--version : display the version of the XML library used\n");
1174#ifdef LIBXML_DEBUG_ENABLED
1175 printf("\t--debug : dump a debug tree of the in-memory document\n");
1176 printf("\t--shell : run a navigating shell\n");
1177 printf("\t--debugent : debug the entities defined in the document\n");
Daniel Veillard8326e732003-01-07 00:19:07 +00001178#else
1179 printf("\t--debug : dump the nodes content when using --stream\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001180#endif
1181 printf("\t--copy : used to test the internal copy implementation\n");
1182 printf("\t--recover : output what was parsable on broken XML documents\n");
1183 printf("\t--noent : substitute entity references by their value\n");
1184 printf("\t--noout : don't output the result tree\n");
1185 printf("\t--htmlout : output results as HTML\n");
Daniel Veillard05c13a22001-09-09 08:38:09 +00001186 printf("\t--nowrap : do not put HTML doc wrapper\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001187 printf("\t--valid : validate the document in addition to std well-formed check\n");
1188 printf("\t--postvalid : do a posteriori validation, i.e after parsing\n");
1189 printf("\t--dtdvalid URL : do a posteriori validation against a given DTD\n");
1190 printf("\t--timing : print some timings\n");
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001191 printf("\t--output file or -o file: save to a given file\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001192 printf("\t--repeat : repeat 100 times, for timing or profiling\n");
1193 printf("\t--insert : ad-hoc test for valid insertions\n");
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001194#ifdef HAVE_ZLIB_H
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001195 printf("\t--compress : turn on gzip compression of output\n");
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001196#endif
Daniel Veillard89cad532001-10-22 09:46:13 +00001197#ifdef LIBXML_DOCB_ENABLED
1198 printf("\t--sgml : use the DocBook SGML parser\n");
1199#endif
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001200#ifdef LIBXML_HTML_ENABLED
1201 printf("\t--html : use the HTML parser\n");
1202#endif
1203 printf("\t--push : use the push mode of the parser\n");
1204#ifdef HAVE_SYS_MMAN_H
1205 printf("\t--memory : parse from memory\n");
1206#endif
1207 printf("\t--nowarning : do not emit warnings from parser/validator\n");
1208 printf("\t--noblanks : drop (ignorable?) blanks spaces\n");
Daniel Veillard90493a92001-08-14 14:12:47 +00001209 printf("\t--format : reformat/reindent the input\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001210 printf("\t--testIO : test user I/O support\n");
1211 printf("\t--encode encoding : output in the given encoding\n");
1212#ifdef LIBXML_CATALOG_ENABLED
Daniel Veillardbd9b0e82001-11-26 10:32:08 +00001213 printf("\t--catalogs : use SGML catalogs from $SGML_CATALOG_FILES\n");
1214 printf("\t otherwise XML Catalogs starting from \n");
Daniel Veillard3be27512003-01-26 19:49:04 +00001215 printf("\t " XML_XML_DEFAULT_CATALOG " are activated by default\n");
Daniel Veillard05c13a22001-09-09 08:38:09 +00001216 printf("\t--nocatalogs: deactivate all catalogs\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001217#endif
1218 printf("\t--auto : generate a small doc on the fly\n");
1219#ifdef LIBXML_XINCLUDE_ENABLED
1220 printf("\t--xinclude : do XInclude processing\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001221#endif
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001222 printf("\t--loaddtd : fetch external DTD\n");
Daniel Veillard48da9102001-08-07 01:10:10 +00001223 printf("\t--dtdattr : loaddtd + populate the tree with inherited attributes \n");
Daniel Veillard29e43992001-12-13 22:21:58 +00001224 printf("\t--dropdtd : remove the DOCTYPE of the input docs\n");
Daniel Veillard7704fb12003-01-03 16:19:51 +00001225 printf("\t--stream : use the streaming interface to process very large files\n");
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001226 printf("\t--chkregister : verify the node registration code\n");
Daniel Veillardef4d3bc2003-02-07 12:38:22 +00001227#ifdef LIBXML_SCHEMAS_ENABLED
Daniel Veillard71531f32003-02-05 13:19:53 +00001228 printf("\t--relaxng schema : do RelaxNG validation against the schema\n");
1229#endif
Daniel Veillarda42f25f2002-01-25 14:15:40 +00001230 printf("\nLibxml project home page: http://xmlsoft.org/\n");
1231 printf("To report bugs or get some help check: http://xmlsoft.org/bugs.html\n");
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001232}
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001233
1234static void registerNode(xmlNodePtr node)
1235{
1236 node->_private = malloc(sizeof(long));
1237 *(long*)node->_private = (long) 0x81726354;
1238}
1239
1240static void deregisterNode(xmlNodePtr node)
1241{
1242 assert(node->_private != NULL);
1243 assert(*(long*)node->_private == (long) 0x81726354);
1244 free(node->_private);
1245}
1246
Daniel Veillard4a6845d2001-01-03 13:32:39 +00001247int
1248main(int argc, char **argv) {
Daniel Veillard7704fb12003-01-03 16:19:51 +00001249 int i, acount;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001250 int files = 0;
Daniel Veillard845cce42002-01-09 11:51:37 +00001251 int version = 0;
Aleksey Sanin693c9bc2003-03-09 22:36:52 +00001252 const char* indent;
1253
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001254 if (argc <= 1) {
1255 usage(argv[0]);
1256 return(1);
1257 }
Daniel Veillardbe803962000-06-28 23:40:59 +00001258 LIBXML_TEST_VERSION
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001259 for (i = 1; i < argc ; i++) {
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001260 if (!strcmp(argv[i], "-"))
1261 break;
1262
1263 if (argv[i][0] != '-')
1264 continue;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001265 if ((!strcmp(argv[i], "-debug")) || (!strcmp(argv[i], "--debug")))
1266 debug++;
Daniel Veillard56ada1d2003-01-07 11:17:25 +00001267 else
1268#ifdef LIBXML_DEBUG_ENABLED
1269 if ((!strcmp(argv[i], "-shell")) ||
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001270 (!strcmp(argv[i], "--shell"))) {
1271 shell++;
1272 noout = 1;
1273 } else
1274#endif
1275 if ((!strcmp(argv[i], "-copy")) || (!strcmp(argv[i], "--copy")))
1276 copy++;
1277 else if ((!strcmp(argv[i], "-recover")) ||
1278 (!strcmp(argv[i], "--recover")))
1279 recovery++;
1280 else if ((!strcmp(argv[i], "-noent")) ||
1281 (!strcmp(argv[i], "--noent")))
1282 noent++;
Daniel Veillard4ec885a2001-06-17 10:31:07 +00001283 else if ((!strcmp(argv[i], "-version")) ||
Daniel Veillard845cce42002-01-09 11:51:37 +00001284 (!strcmp(argv[i], "--version"))) {
Daniel Veillard0f04f8e2002-09-17 23:04:40 +00001285 showVersion(argv[0]);
Daniel Veillard845cce42002-01-09 11:51:37 +00001286 version = 1;
1287 } else if ((!strcmp(argv[i], "-noout")) ||
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001288 (!strcmp(argv[i], "--noout")))
1289 noout++;
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001290 else if ((!strcmp(argv[i], "-o")) ||
1291 (!strcmp(argv[i], "-output")) ||
1292 (!strcmp(argv[i], "--output"))) {
1293 i++;
Daniel Veillard6e4f1c02002-04-09 09:55:20 +00001294 output = argv[i];
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001295 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001296 else if ((!strcmp(argv[i], "-htmlout")) ||
1297 (!strcmp(argv[i], "--htmlout")))
1298 htmlout++;
Daniel Veillard89cad532001-10-22 09:46:13 +00001299#ifdef LIBXML_DOCB_ENABLED
1300 else if ((!strcmp(argv[i], "-sgml")) ||
1301 (!strcmp(argv[i], "--sgml"))) {
1302 sgml++;
1303 }
1304#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001305#ifdef LIBXML_HTML_ENABLED
1306 else if ((!strcmp(argv[i], "-html")) ||
1307 (!strcmp(argv[i], "--html"))) {
1308 html++;
1309 }
1310#endif /* LIBXML_HTML_ENABLED */
1311 else if ((!strcmp(argv[i], "-nowrap")) ||
1312 (!strcmp(argv[i], "--nowrap")))
1313 nowrap++;
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001314 else if ((!strcmp(argv[i], "-loaddtd")) ||
1315 (!strcmp(argv[i], "--loaddtd")))
1316 loaddtd++;
Daniel Veillard48da9102001-08-07 01:10:10 +00001317 else if ((!strcmp(argv[i], "-dtdattr")) ||
1318 (!strcmp(argv[i], "--dtdattr"))) {
1319 loaddtd++;
1320 dtdattrs++;
1321 } else if ((!strcmp(argv[i], "-valid")) ||
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001322 (!strcmp(argv[i], "--valid")))
1323 valid++;
1324 else if ((!strcmp(argv[i], "-postvalid")) ||
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001325 (!strcmp(argv[i], "--postvalid"))) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001326 postvalid++;
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001327 loaddtd++;
1328 } else if ((!strcmp(argv[i], "-dtdvalid")) ||
Daniel Veillardcd429612000-10-11 15:57:05 +00001329 (!strcmp(argv[i], "--dtdvalid"))) {
1330 i++;
1331 dtdvalid = argv[i];
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001332 loaddtd++;
Daniel Veillardcd429612000-10-11 15:57:05 +00001333 }
Daniel Veillard29e43992001-12-13 22:21:58 +00001334 else if ((!strcmp(argv[i], "-dropdtd")) ||
1335 (!strcmp(argv[i], "--dropdtd")))
1336 dropdtd++;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001337 else if ((!strcmp(argv[i], "-insert")) ||
1338 (!strcmp(argv[i], "--insert")))
1339 insert++;
Daniel Veillard48b2f892001-02-25 16:11:03 +00001340 else if ((!strcmp(argv[i], "-timing")) ||
1341 (!strcmp(argv[i], "--timing")))
1342 timing++;
Daniel Veillardd2f3ec72001-04-11 07:50:02 +00001343 else if ((!strcmp(argv[i], "-auto")) ||
1344 (!strcmp(argv[i], "--auto")))
1345 generate++;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001346 else if ((!strcmp(argv[i], "-repeat")) ||
1347 (!strcmp(argv[i], "--repeat")))
1348 repeat++;
1349 else if ((!strcmp(argv[i], "-push")) ||
1350 (!strcmp(argv[i], "--push")))
1351 push++;
Daniel Veillard46e370e2000-07-21 20:32:03 +00001352#ifdef HAVE_SYS_MMAN_H
1353 else if ((!strcmp(argv[i], "-memory")) ||
1354 (!strcmp(argv[i], "--memory")))
1355 memory++;
1356#endif
Daniel Veillard5e873c42000-04-12 13:27:38 +00001357 else if ((!strcmp(argv[i], "-testIO")) ||
1358 (!strcmp(argv[i], "--testIO")))
1359 testIO++;
Daniel Veillard9e8bfae2000-11-06 16:43:11 +00001360#ifdef LIBXML_XINCLUDE_ENABLED
1361 else if ((!strcmp(argv[i], "-xinclude")) ||
1362 (!strcmp(argv[i], "--xinclude")))
1363 xinclude++;
1364#endif
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001365#ifdef HAVE_ZLIB_H
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001366 else if ((!strcmp(argv[i], "-compress")) ||
1367 (!strcmp(argv[i], "--compress"))) {
1368 compress++;
1369 xmlSetCompressMode(9);
1370 }
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001371#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001372 else if ((!strcmp(argv[i], "-nowarning")) ||
1373 (!strcmp(argv[i], "--nowarning"))) {
1374 xmlGetWarningsDefaultValue = 0;
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001375 xmlPedanticParserDefault(0);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001376 }
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001377 else if ((!strcmp(argv[i], "-pedantic")) ||
1378 (!strcmp(argv[i], "--pedantic"))) {
1379 xmlGetWarningsDefaultValue = 1;
1380 xmlPedanticParserDefault(1);
1381 }
Daniel Veillard64c20ed2000-09-22 16:07:02 +00001382#ifdef LIBXML_DEBUG_ENABLED
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001383 else if ((!strcmp(argv[i], "-debugent")) ||
1384 (!strcmp(argv[i], "--debugent"))) {
1385 debugent++;
1386 xmlParserDebugEntities = 1;
1387 }
Daniel Veillard64c20ed2000-09-22 16:07:02 +00001388#endif
Daniel Veillard81418e32001-05-22 15:08:55 +00001389#ifdef LIBXML_CATALOG_ENABLED
1390 else if ((!strcmp(argv[i], "-catalogs")) ||
1391 (!strcmp(argv[i], "--catalogs"))) {
Daniel Veillarde2940dd2001-08-22 00:06:49 +00001392 catalogs++;
1393 } else if ((!strcmp(argv[i], "-nocatalogs")) ||
1394 (!strcmp(argv[i], "--nocatalogs"))) {
1395 nocatalogs++;
Daniel Veillard81418e32001-05-22 15:08:55 +00001396 }
1397#endif
Daniel Veillardbe803962000-06-28 23:40:59 +00001398 else if ((!strcmp(argv[i], "-encode")) ||
1399 (!strcmp(argv[i], "--encode"))) {
1400 i++;
1401 encoding = argv[i];
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00001402 /*
1403 * OK it's for testing purposes
1404 */
1405 xmlAddEncodingAlias("UTF-8", "DVEnc");
Daniel Veillardbe803962000-06-28 23:40:59 +00001406 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001407 else if ((!strcmp(argv[i], "-noblanks")) ||
1408 (!strcmp(argv[i], "--noblanks"))) {
1409 noblanks++;
1410 xmlKeepBlanksDefault(0);
Daniel Veillard90493a92001-08-14 14:12:47 +00001411 }
1412 else if ((!strcmp(argv[i], "-format")) ||
1413 (!strcmp(argv[i], "--format"))) {
1414 noblanks++;
1415 format++;
1416 xmlKeepBlanksDefault(0);
Daniel Veillard7704fb12003-01-03 16:19:51 +00001417 }
1418 else if ((!strcmp(argv[i], "-stream")) ||
1419 (!strcmp(argv[i], "--stream"))) {
1420 stream++;
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001421 }
1422 else if ((!strcmp(argv[i], "-chkregister")) ||
1423 (!strcmp(argv[i], "--chkregister"))) {
1424 chkregister++;
Daniel Veillard71531f32003-02-05 13:19:53 +00001425#ifdef LIBXML_SCHEMAS_ENABLED
1426 } else if ((!strcmp(argv[i], "-relaxng")) ||
1427 (!strcmp(argv[i], "--relaxng"))) {
1428 i++;
1429 relaxng = argv[i];
1430 noent++;
1431#endif
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001432 } else {
1433 fprintf(stderr, "Unknown option %s\n", argv[i]);
1434 usage(argv[0]);
1435 return(1);
1436 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001437 }
Daniel Veillarde2940dd2001-08-22 00:06:49 +00001438
1439#ifdef LIBXML_CATALOG_ENABLED
1440 if (nocatalogs == 0) {
1441 if (catalogs) {
1442 const char *catal;
1443
1444 catal = getenv("SGML_CATALOG_FILES");
Daniel Veillard6c5f9d12001-08-25 13:33:14 +00001445 if (catal != NULL) {
1446 xmlLoadCatalogs(catal);
1447 } else {
1448 fprintf(stderr, "Variable $SGML_CATALOG_FILES not set\n");
1449 }
Daniel Veillarde2940dd2001-08-22 00:06:49 +00001450 }
1451 }
1452#endif
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001453
1454 if (chkregister) {
1455 xmlRegisterNodeDefault(registerNode);
1456 xmlDeregisterNodeDefault(deregisterNode);
1457 }
Aleksey Sanin693c9bc2003-03-09 22:36:52 +00001458
1459 indent = getenv("XMLLINT_INDENT");
1460 if(indent != NULL) {
1461 xmlTreeIndentString = indent;
1462 }
1463
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001464
Daniel Veillardd9bad132001-07-23 19:39:43 +00001465 xmlLineNumbersDefault(1);
Daniel Veillard48da9102001-08-07 01:10:10 +00001466 if (loaddtd != 0)
1467 xmlLoadExtDtdDefaultValue |= XML_DETECT_IDS;
1468 if (dtdattrs)
1469 xmlLoadExtDtdDefaultValue |= XML_COMPLETE_ATTRS;
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001470 if (noent != 0) xmlSubstituteEntitiesDefault(1);
1471 if (valid != 0) xmlDoValidityCheckingDefaultValue = 1;
1472 if ((htmlout) && (!nowrap)) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001473 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001474 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"\n");
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001475 xmlGenericError(xmlGenericErrorContext,
1476 "\t\"http://www.w3.org/TR/REC-html40/loose.dtd\">\n");
1477 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001478 "<html><head><title>%s output</title></head>\n",
1479 argv[0]);
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001480 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001481 "<body bgcolor=\"#ffffff\"><h1 align=\"center\">%s output</h1>\n",
1482 argv[0]);
1483 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001484
1485#ifdef LIBXML_SCHEMAS_ENABLED
1486 if (relaxng != NULL) {
1487 xmlRelaxNGParserCtxtPtr ctxt;
1488
Daniel Veillard42f12e92003-03-07 18:32:59 +00001489 if (timing) {
1490 startTimer();
1491 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001492 ctxt = xmlRelaxNGNewParserCtxt(relaxng);
1493 xmlRelaxNGSetParserErrors(ctxt,
1494 (xmlRelaxNGValidityErrorFunc) fprintf,
1495 (xmlRelaxNGValidityWarningFunc) fprintf,
1496 stderr);
1497 relaxngschemas = xmlRelaxNGParse(ctxt);
1498 xmlRelaxNGFreeParserCtxt(ctxt);
Daniel Veillard42f12e92003-03-07 18:32:59 +00001499 if (timing) {
1500 endTimer("Compiling the schemas");
1501 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001502 }
1503#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001504 for (i = 1; i < argc ; i++) {
Daniel Veillardbe803962000-06-28 23:40:59 +00001505 if ((!strcmp(argv[i], "-encode")) ||
1506 (!strcmp(argv[i], "--encode"))) {
1507 i++;
1508 continue;
Daniel Veillard1df3dfc2001-12-18 11:14:16 +00001509 } else if ((!strcmp(argv[i], "-o")) ||
1510 (!strcmp(argv[i], "-output")) ||
1511 (!strcmp(argv[i], "--output"))) {
1512 i++;
1513 continue;
Daniel Veillardbe803962000-06-28 23:40:59 +00001514 }
Daniel Veillardcd429612000-10-11 15:57:05 +00001515 if ((!strcmp(argv[i], "-dtdvalid")) ||
1516 (!strcmp(argv[i], "--dtdvalid"))) {
1517 i++;
1518 continue;
1519 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001520 if ((!strcmp(argv[i], "-relaxng")) ||
1521 (!strcmp(argv[i], "--relaxng"))) {
1522 i++;
1523 continue;
1524 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001525 if ((timing) && (repeat))
Daniel Veillard01db67c2001-12-18 07:09:59 +00001526 startTimer();
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001527 /* Remember file names. "-" means stdin. <sven@zen.org> */
Daniel Veillard4a6845d2001-01-03 13:32:39 +00001528 if ((argv[i][0] != '-') || (strcmp(argv[i], "-") == 0)) {
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001529 if (repeat) {
Daniel Veillard7704fb12003-01-03 16:19:51 +00001530 for (acount = 0;acount < 100 * repeat;acount++)
1531 if (stream != 0)
1532 streamFile(argv[i]);
1533 else
1534 parseAndPrintFile(argv[i]);
1535 } else {
1536 if (stream != 0)
1537 streamFile(argv[i]);
1538 else
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001539 parseAndPrintFile(argv[i]);
Daniel Veillard7704fb12003-01-03 16:19:51 +00001540 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001541 files ++;
Daniel Veillarda7866932001-12-04 13:14:44 +00001542 if ((timing) && (repeat)) {
Daniel Veillard01db67c2001-12-18 07:09:59 +00001543 endTimer("100 iterations");
Daniel Veillarda7866932001-12-04 13:14:44 +00001544 }
Daniel Veillard48b2f892001-02-25 16:11:03 +00001545 }
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001546 }
Daniel Veillardd2f3ec72001-04-11 07:50:02 +00001547 if (generate)
1548 parseAndPrintFile(NULL);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001549 if ((htmlout) && (!nowrap)) {
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00001550 xmlGenericError(xmlGenericErrorContext, "</body></html>\n");
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001551 }
Daniel Veillard845cce42002-01-09 11:51:37 +00001552 if ((files == 0) && (!generate) && (version == 0)) {
Daniel Veillard10ea86c2001-06-20 13:55:33 +00001553 usage(argv[0]);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001554 }
Daniel Veillard71531f32003-02-05 13:19:53 +00001555#ifdef LIBXML_SCHEMAS_ENABLED
1556 if (relaxngschemas != NULL)
1557 xmlRelaxNGFree(relaxngschemas);
1558 xmlRelaxNGCleanupTypes();
1559#endif
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001560 xmlCleanupParser();
1561 xmlMemoryDump();
1562
Daniel Veillardf7cd4812001-02-23 18:44:52 +00001563 return(progresult);
Daniel Veillardce8b83b2000-04-05 18:38:42 +00001564}
Daniel Veillard88a172f2000-08-04 18:23:10 +00001565