blob: 6fddcfbf3bf408233e783373aa8dd37cf1477d63 [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
2 * xmlIO.c : implementation of the I/O interfaces used by the parser
3 *
4 * See Copyright for the status of this software.
5 *
Daniel Veillard344cee72001-08-20 00:08:40 +00006 * daniel@veillard.com
Owen Taylor3473f882001-02-23 17:55:21 +00007 *
8 * 14 Nov 2000 ht - for VMS, truncated name of long functions to under 32 char
9 */
10
Daniel Veillard34ce8be2002-03-18 19:37:11 +000011#define IN_LIBXML
Bjorn Reese70a9da52001-04-21 16:57:29 +000012#include "libxml.h"
Owen Taylor3473f882001-02-23 17:55:21 +000013
Owen Taylor3473f882001-02-23 17:55:21 +000014#include <string.h>
Daniel Veillard92727042002-09-17 17:59:20 +000015#ifdef HAVE_ERRNO_H
Owen Taylor3473f882001-02-23 17:55:21 +000016#include <errno.h>
Daniel Veillard92727042002-09-17 17:59:20 +000017#endif
18
Owen Taylor3473f882001-02-23 17:55:21 +000019
20#ifdef HAVE_SYS_TYPES_H
21#include <sys/types.h>
22#endif
23#ifdef HAVE_SYS_STAT_H
24#include <sys/stat.h>
25#endif
26#ifdef HAVE_FCNTL_H
27#include <fcntl.h>
28#endif
29#ifdef HAVE_UNISTD_H
30#include <unistd.h>
31#endif
32#ifdef HAVE_STDLIB_H
33#include <stdlib.h>
34#endif
35#ifdef HAVE_ZLIB_H
36#include <zlib.h>
37#endif
38
39/* Figure a portable way to know if a file is a directory. */
40#ifndef HAVE_STAT
41# ifdef HAVE__STAT
Daniel Veillard50f34372001-08-03 12:06:36 +000042 /* MS C library seems to define stat and _stat. The definition
43 is identical. Still, mapping them to each other causes a warning. */
44# ifndef _MSC_VER
45# define stat(x,y) _stat(x,y)
46# endif
Owen Taylor3473f882001-02-23 17:55:21 +000047# define HAVE_STAT
48# endif
49#endif
50#ifdef HAVE_STAT
51# ifndef S_ISDIR
52# ifdef _S_ISDIR
53# define S_ISDIR(x) _S_ISDIR(x)
54# else
55# ifdef S_IFDIR
56# ifndef S_IFMT
57# ifdef _S_IFMT
58# define S_IFMT _S_IFMT
59# endif
60# endif
61# ifdef S_IFMT
62# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
63# endif
64# endif
65# endif
66# endif
67#endif
68
69#include <libxml/xmlmemory.h>
70#include <libxml/parser.h>
71#include <libxml/parserInternals.h>
72#include <libxml/xmlIO.h>
Daniel Veillard388236f2001-07-08 18:35:48 +000073#include <libxml/uri.h>
Owen Taylor3473f882001-02-23 17:55:21 +000074#include <libxml/nanohttp.h>
75#include <libxml/nanoftp.h>
76#include <libxml/xmlerror.h>
Daniel Veillard7d6fd212001-05-10 15:34:11 +000077#ifdef LIBXML_CATALOG_ENABLED
78#include <libxml/catalog.h>
79#endif
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000080#include <libxml/globals.h>
Owen Taylor3473f882001-02-23 17:55:21 +000081
Daniel Veillardf012a642001-07-23 19:10:52 +000082/* #define VERBOSE_FAILURE */
Daniel Veillard1fd36d22001-07-04 22:54:28 +000083/* #define DEBUG_EXTERNAL_ENTITIES */
Owen Taylor3473f882001-02-23 17:55:21 +000084/* #define DEBUG_INPUT */
85
86#ifdef DEBUG_INPUT
87#define MINLEN 40
88#else
89#define MINLEN 4000
90#endif
91
92/*
93 * Input I/O callback sets
94 */
95typedef struct _xmlInputCallback {
96 xmlInputMatchCallback matchcallback;
97 xmlInputOpenCallback opencallback;
98 xmlInputReadCallback readcallback;
99 xmlInputCloseCallback closecallback;
100} xmlInputCallback;
101
102#define MAX_INPUT_CALLBACK 15
103
Daniel Veillard22090732001-07-16 00:06:07 +0000104static xmlInputCallback xmlInputCallbackTable[MAX_INPUT_CALLBACK];
105static int xmlInputCallbackNr = 0;
106static int xmlInputCallbackInitialized = 0;
Owen Taylor3473f882001-02-23 17:55:21 +0000107
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000108#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +0000109/*
110 * Output I/O callback sets
111 */
112typedef struct _xmlOutputCallback {
113 xmlOutputMatchCallback matchcallback;
114 xmlOutputOpenCallback opencallback;
115 xmlOutputWriteCallback writecallback;
116 xmlOutputCloseCallback closecallback;
117} xmlOutputCallback;
118
119#define MAX_OUTPUT_CALLBACK 15
120
Daniel Veillard22090732001-07-16 00:06:07 +0000121static xmlOutputCallback xmlOutputCallbackTable[MAX_OUTPUT_CALLBACK];
122static int xmlOutputCallbackNr = 0;
123static int xmlOutputCallbackInitialized = 0;
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000124#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +0000125
Daniel Veillard05d987b2003-10-08 11:54:57 +0000126/************************************************************************
127 * *
128 * Tree memory error handler *
129 * *
130 ************************************************************************/
Daniel Veillardf4862f02002-09-10 11:13:43 +0000131
Daniel Veillard05d987b2003-10-08 11:54:57 +0000132static const char *IOerr[] = {
Daniel Veillarda8856222003-10-08 19:26:03 +0000133 "Unknown IO error", /* UNKNOWN */
Daniel Veillard05d987b2003-10-08 11:54:57 +0000134 "Permission denied", /* EACCES */
135 "Resource temporarily unavailable",/* EAGAIN */
136 "Bad file descriptor", /* EBADF */
137 "Bad message", /* EBADMSG */
138 "Resource busy", /* EBUSY */
139 "Operation canceled", /* ECANCELED */
140 "No child processes", /* ECHILD */
141 "Resource deadlock avoided",/* EDEADLK */
142 "Domain error", /* EDOM */
143 "File exists", /* EEXIST */
144 "Bad address", /* EFAULT */
145 "File too large", /* EFBIG */
146 "Operation in progress", /* EINPROGRESS */
147 "Interrupted function call",/* EINTR */
148 "Invalid argument", /* EINVAL */
149 "Input/output error", /* EIO */
150 "Is a directory", /* EISDIR */
151 "Too many open files", /* EMFILE */
152 "Too many links", /* EMLINK */
153 "Inappropriate message buffer length",/* EMSGSIZE */
154 "Filename too long", /* ENAMETOOLONG */
155 "Too many open files in system",/* ENFILE */
156 "No such device", /* ENODEV */
157 "No such file or directory",/* ENOENT */
158 "Exec format error", /* ENOEXEC */
159 "No locks available", /* ENOLCK */
160 "Not enough space", /* ENOMEM */
161 "No space left on device", /* ENOSPC */
162 "Function not implemented", /* ENOSYS */
163 "Not a directory", /* ENOTDIR */
164 "Directory not empty", /* ENOTEMPTY */
165 "Not supported", /* ENOTSUP */
166 "Inappropriate I/O control operation",/* ENOTTY */
167 "No such device or address",/* ENXIO */
168 "Operation not permitted", /* EPERM */
169 "Broken pipe", /* EPIPE */
170 "Result too large", /* ERANGE */
171 "Read-only file system", /* EROFS */
172 "Invalid seek", /* ESPIPE */
173 "No such process", /* ESRCH */
174 "Operation timed out", /* ETIMEDOUT */
175 "Improper link", /* EXDEV */
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000176 "Attempt to load network entity %s", /* XML_IO_NETWORK_ATTEMPT */
Daniel Veillard05d987b2003-10-08 11:54:57 +0000177 "encoder error", /* XML_IO_ENCODER */
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000178 "flush error",
179 "write error",
180 "no input",
181 "buffer full",
182 "loading error",
183 "not a socket", /* ENOTSOCK */
184 "already connected", /* EISCONN */
185 "connection refuxed", /* ECONNREFUSED */
186 "unreachable network", /* ENETUNREACH */
187 "adddress in use", /* EADDRINUSE */
188 "already in use", /* EALREADY */
189 "unknown address familly", /* EAFNOSUPPORT */
Daniel Veillard05d987b2003-10-08 11:54:57 +0000190};
191
192/**
193 * xmlIOErrMemory:
194 * @extra: extra informations
195 *
196 * Handle an out of memory condition
197 */
198static void
199xmlIOErrMemory(const char *extra)
200{
201 __xmlSimpleError(XML_FROM_IO, XML_ERR_NO_MEMORY, NULL, NULL, extra);
202}
203
204/**
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000205 * __xmlIOErr:
Daniel Veillard05d987b2003-10-08 11:54:57 +0000206 * @code: the error number
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000207 * @
Daniel Veillard05d987b2003-10-08 11:54:57 +0000208 * @extra: extra informations
209 *
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000210 * Handle an I/O error
Daniel Veillard05d987b2003-10-08 11:54:57 +0000211 */
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000212void
213__xmlIOErr(int domain, int code, const char *extra)
Daniel Veillard05d987b2003-10-08 11:54:57 +0000214{
215 unsigned int idx;
216
217 if (code == 0) {
218#ifdef HAVE_ERRNO_H
219 if (errno == 0) code = 0;
220#ifdef EACCES
221 else if (errno == EACCES) code = XML_IO_EACCES;
222#endif
223#ifdef EAGAIN
224 else if (errno == EAGAIN) code = XML_IO_EAGAIN;
225#endif
226#ifdef EBADF
227 else if (errno == EBADF) code = XML_IO_EBADF;
228#endif
229#ifdef EBADMSG
230 else if (errno == EBADMSG) code = XML_IO_EBADMSG;
231#endif
232#ifdef EBUSY
233 else if (errno == EBUSY) code = XML_IO_EBUSY;
234#endif
235#ifdef ECANCELED
236 else if (errno == ECANCELED) code = XML_IO_ECANCELED;
237#endif
238#ifdef ECHILD
239 else if (errno == ECHILD) code = XML_IO_ECHILD;
240#endif
241#ifdef EDEADLK
242 else if (errno == EDEADLK) code = XML_IO_EDEADLK;
243#endif
244#ifdef EDOM
245 else if (errno == EDOM) code = XML_IO_EDOM;
246#endif
247#ifdef EEXIST
248 else if (errno == EEXIST) code = XML_IO_EEXIST;
249#endif
250#ifdef EFAULT
251 else if (errno == EFAULT) code = XML_IO_EFAULT;
252#endif
253#ifdef EFBIG
254 else if (errno == EFBIG) code = XML_IO_EFBIG;
255#endif
256#ifdef EINPROGRESS
257 else if (errno == EINPROGRESS) code = XML_IO_EINPROGRESS;
258#endif
259#ifdef EINTR
260 else if (errno == EINTR) code = XML_IO_EINTR;
261#endif
262#ifdef EINVAL
263 else if (errno == EINVAL) code = XML_IO_EINVAL;
264#endif
265#ifdef EIO
266 else if (errno == EIO) code = XML_IO_EIO;
267#endif
268#ifdef EISDIR
269 else if (errno == EISDIR) code = XML_IO_EISDIR;
270#endif
271#ifdef EMFILE
272 else if (errno == EMFILE) code = XML_IO_EMFILE;
273#endif
274#ifdef EMLINK
275 else if (errno == EMLINK) code = XML_IO_EMLINK;
276#endif
277#ifdef EMSGSIZE
278 else if (errno == EMSGSIZE) code = XML_IO_EMSGSIZE;
279#endif
280#ifdef ENAMETOOLONG
281 else if (errno == ENAMETOOLONG) code = XML_IO_ENAMETOOLONG;
282#endif
283#ifdef ENFILE
284 else if (errno == ENFILE) code = XML_IO_ENFILE;
285#endif
286#ifdef ENODEV
287 else if (errno == ENODEV) code = XML_IO_ENODEV;
288#endif
289#ifdef ENOENT
290 else if (errno == ENOENT) code = XML_IO_ENOENT;
291#endif
292#ifdef ENOEXEC
293 else if (errno == ENOEXEC) code = XML_IO_ENOEXEC;
294#endif
295#ifdef ENOLCK
296 else if (errno == ENOLCK) code = XML_IO_ENOLCK;
297#endif
298#ifdef ENOMEM
299 else if (errno == ENOMEM) code = XML_IO_ENOMEM;
300#endif
301#ifdef ENOSPC
302 else if (errno == ENOSPC) code = XML_IO_ENOSPC;
303#endif
304#ifdef ENOSYS
305 else if (errno == ENOSYS) code = XML_IO_ENOSYS;
306#endif
307#ifdef ENOTDIR
308 else if (errno == ENOTDIR) code = XML_IO_ENOTDIR;
309#endif
310#ifdef ENOTEMPTY
311 else if (errno == ENOTEMPTY) code = XML_IO_ENOTEMPTY;
312#endif
313#ifdef ENOTSUP
314 else if (errno == ENOTSUP) code = XML_IO_ENOTSUP;
315#endif
316#ifdef ENOTTY
317 else if (errno == ENOTTY) code = XML_IO_ENOTTY;
318#endif
319#ifdef ENXIO
320 else if (errno == ENXIO) code = XML_IO_ENXIO;
321#endif
322#ifdef EPERM
323 else if (errno == EPERM) code = XML_IO_EPERM;
324#endif
325#ifdef EPIPE
326 else if (errno == EPIPE) code = XML_IO_EPIPE;
327#endif
328#ifdef ERANGE
329 else if (errno == ERANGE) code = XML_IO_ERANGE;
330#endif
331#ifdef EROFS
332 else if (errno == EROFS) code = XML_IO_EROFS;
333#endif
334#ifdef ESPIPE
335 else if (errno == ESPIPE) code = XML_IO_ESPIPE;
336#endif
337#ifdef ESRCH
338 else if (errno == ESRCH) code = XML_IO_ESRCH;
339#endif
340#ifdef ETIMEDOUT
341 else if (errno == ETIMEDOUT) code = XML_IO_ETIMEDOUT;
342#endif
343#ifdef EXDEV
344 else if (errno == EXDEV) code = XML_IO_EXDEV;
345#endif
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000346#ifdef ENOTSOCK
347 else if (errno == ENOTSOCK) code = XML_IO_ENOTSOCK;
348#endif
349#ifdef EISCONN
350 else if (errno == EISCONN) code = XML_IO_EISCONN;
351#endif
352#ifdef ECONNREFUSED
353 else if (errno == ECONNREFUSED) code = XML_IO_ECONNREFUSED;
354#endif
355#ifdef ETIMEDOUT
356 else if (errno == ETIMEDOUT) code = XML_IO_ETIMEDOUT;
357#endif
358#ifdef ENETUNREACH
359 else if (errno == ENETUNREACH) code = XML_IO_ENETUNREACH;
360#endif
361#ifdef EADDRINUSE
362 else if (errno == EADDRINUSE) code = XML_IO_EADDRINUSE;
363#endif
364#ifdef EINPROGRESS
365 else if (errno == EINPROGRESS) code = XML_IO_EINPROGRESS;
366#endif
367#ifdef EALREADY
368 else if (errno == EALREADY) code = XML_IO_EALREADY;
369#endif
370#ifdef EAFNOSUPPORT
371 else if (errno == EAFNOSUPPORT) code = XML_IO_EAFNOSUPPORT;
372#endif
Daniel Veillard05d987b2003-10-08 11:54:57 +0000373 else code = XML_IO_UNKNOWN;
374#endif /* HAVE_ERRNO_H */
375 }
376 idx = 0;
377 if (code >= XML_IO_UNKNOWN) idx = code - XML_IO_UNKNOWN;
378 if (idx >= (sizeof(IOerr) / sizeof(IOerr[0]))) idx = 0;
379
Daniel Veillard2b0f8792003-10-10 19:36:36 +0000380 __xmlSimpleError(domain, code, NULL, IOerr[idx], extra);
381}
382
383/**
384 * xmlIOErr:
385 * @code: the error number
386 * @extra: extra informations
387 *
388 * Handle an I/O error
389 */
390static void
391xmlIOErr(int code, const char *extra)
392{
393 __xmlIOErr(XML_FROM_IO, code, extra);
Daniel Veillard05d987b2003-10-08 11:54:57 +0000394}
395
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000396/**
Daniel Veillarde8039df2003-10-27 11:25:13 +0000397 * __xmlLoaderErr:
398 * @ctx: the parser context
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000399 * @extra: extra informations
400 *
401 * Handle a resource access error
402 */
Daniel Veillarde8039df2003-10-27 11:25:13 +0000403void
404__xmlLoaderErr(void *ctx, const char *msg, const char *filename)
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000405{
Daniel Veillarde8039df2003-10-27 11:25:13 +0000406 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000407 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000408 xmlGenericErrorFunc channel = NULL;
409 void *data = NULL;
410 xmlErrorLevel level = XML_ERR_ERROR;
411
Daniel Veillard157fee02003-10-31 10:36:03 +0000412 if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
413 (ctxt->instate == XML_PARSER_EOF))
414 return;
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000415 if ((ctxt != NULL) && (ctxt->sax != NULL)) {
416 if (ctxt->validate) {
417 channel = ctxt->sax->error;
418 level = XML_ERR_ERROR;
419 } else {
420 channel = ctxt->sax->warning;
421 level = XML_ERR_WARNING;
422 }
Daniel Veillard659e71e2003-10-10 14:10:40 +0000423 schannel = ctxt->sax->serror;
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000424 data = ctxt->userData;
425 }
Daniel Veillard659e71e2003-10-10 14:10:40 +0000426 __xmlRaiseError(schannel, channel, data, ctxt, NULL, XML_FROM_IO,
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000427 XML_IO_LOAD_ERROR, level, NULL, 0,
428 filename, NULL, NULL, 0, 0,
429 msg, filename);
430
431}
432
Daniel Veillard05d987b2003-10-08 11:54:57 +0000433/************************************************************************
434 * *
435 * Tree memory error handler *
436 * *
437 ************************************************************************/
Daniel Veillardf4862f02002-09-10 11:13:43 +0000438/**
Daniel Veillard01c13b52002-12-10 15:19:08 +0000439 * xmlNormalizeWindowsPath:
Daniel Veillard33300b42003-04-17 09:09:19 +0000440 * @path: the input file path
Daniel Veillardf4862f02002-09-10 11:13:43 +0000441 *
Igor Zlatkovic5f9fada2003-02-19 14:51:00 +0000442 * This function is obsolete. Please see xmlURIFromPath in uri.c for
443 * a better solution.
Daniel Veillard33300b42003-04-17 09:09:19 +0000444 *
445 * Returns a canonicalized version of the path
Daniel Veillardf4862f02002-09-10 11:13:43 +0000446 */
447xmlChar *
448xmlNormalizeWindowsPath(const xmlChar *path)
449{
Igor Zlatkovic5f9fada2003-02-19 14:51:00 +0000450 return xmlCanonicPath(path);
Daniel Veillardf4862f02002-09-10 11:13:43 +0000451}
452
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000453/**
454 * xmlCleanupInputCallbacks:
455 *
456 * clears the entire input callback table. this includes the
457 * compiled-in I/O.
458 */
459void
460xmlCleanupInputCallbacks(void)
461{
462 int i;
463
464 if (!xmlInputCallbackInitialized)
465 return;
466
Daniel Veillard107ccaa2001-11-27 16:23:50 +0000467 for (i = xmlInputCallbackNr - 1; i >= 0; i--) {
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000468 xmlInputCallbackTable[i].matchcallback = NULL;
469 xmlInputCallbackTable[i].opencallback = NULL;
470 xmlInputCallbackTable[i].readcallback = NULL;
471 xmlInputCallbackTable[i].closecallback = NULL;
472 }
473
474 xmlInputCallbackNr = 0;
Aleksey Sanin9c45ba82002-06-06 21:46:13 +0000475 xmlInputCallbackInitialized = 0;
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000476}
477
Daniel Veillardaecc0dc2004-05-08 02:32:07 +0000478/**
479 * xmlPopInputCallback:
480 *
481 * Clear the top input callback from the input stack. this includes the
482 * compiled-in I/O.
483 *
484 * Returns the number of input callback registered or -1 in case of error.
485 */
486int
487xmlPopInputCallbacks(void)
488{
489 if (!xmlInputCallbackInitialized)
490 return(-1);
491
492 if (xmlInputCallbackNr <= 0)
493 return(-1);
494
495 xmlInputCallbackNr--;
496 xmlInputCallbackTable[xmlInputCallbackNr].matchcallback = NULL;
497 xmlInputCallbackTable[xmlInputCallbackNr].opencallback = NULL;
498 xmlInputCallbackTable[xmlInputCallbackNr].readcallback = NULL;
499 xmlInputCallbackTable[xmlInputCallbackNr].closecallback = NULL;
500
501 return(xmlInputCallbackNr);
502}
503
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000504#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000505/**
506 * xmlCleanupOutputCallbacks:
507 *
508 * clears the entire output callback table. this includes the
509 * compiled-in I/O callbacks.
510 */
511void
512xmlCleanupOutputCallbacks(void)
513{
514 int i;
515
516 if (!xmlOutputCallbackInitialized)
517 return;
518
Daniel Veillard107ccaa2001-11-27 16:23:50 +0000519 for (i = xmlOutputCallbackNr - 1; i >= 0; i--) {
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000520 xmlOutputCallbackTable[i].matchcallback = NULL;
521 xmlOutputCallbackTable[i].opencallback = NULL;
522 xmlOutputCallbackTable[i].writecallback = NULL;
523 xmlOutputCallbackTable[i].closecallback = NULL;
524 }
525
526 xmlOutputCallbackNr = 0;
Aleksey Sanin9c45ba82002-06-06 21:46:13 +0000527 xmlOutputCallbackInitialized = 0;
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000528}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000529#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardacf7ff02001-10-29 20:21:47 +0000530
Owen Taylor3473f882001-02-23 17:55:21 +0000531/************************************************************************
532 * *
533 * Standard I/O for file accesses *
534 * *
535 ************************************************************************/
536
537/**
Daniel Veillarda9b66d02002-12-11 14:23:49 +0000538 * xmlCheckFilename:
Owen Taylor3473f882001-02-23 17:55:21 +0000539 * @path: the path to check
540 *
541 * function checks to see if @path is a valid source
542 * (file, socket...) for XML.
543 *
544 * if stat is not available on the target machine,
545 * returns 1. if stat fails, returns 0 (if calling
546 * stat on the filename fails, it can't be right).
547 * if stat succeeds and the file is a directory,
Daniel Veillard819d5cb2002-10-14 11:15:18 +0000548 * returns 2. otherwise returns 1.
Owen Taylor3473f882001-02-23 17:55:21 +0000549 */
550
Daniel Veillard819d5cb2002-10-14 11:15:18 +0000551int
Owen Taylor3473f882001-02-23 17:55:21 +0000552xmlCheckFilename (const char *path)
553{
554#ifdef HAVE_STAT
Owen Taylor3473f882001-02-23 17:55:21 +0000555 struct stat stat_buffer;
556
557 if (stat(path, &stat_buffer) == -1)
558 return 0;
559
Daniel Veillard819d5cb2002-10-14 11:15:18 +0000560#ifdef S_ISDIR
Owen Taylor3473f882001-02-23 17:55:21 +0000561 if (S_ISDIR(stat_buffer.st_mode)) {
Daniel Veillard819d5cb2002-10-14 11:15:18 +0000562 return 2;
Owen Taylor3473f882001-02-23 17:55:21 +0000563 }
Owen Taylor3473f882001-02-23 17:55:21 +0000564#endif
565#endif
566 return 1;
567}
568
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000569static int
Owen Taylor3473f882001-02-23 17:55:21 +0000570xmlNop(void) {
571 return(0);
572}
573
574/**
Owen Taylor3473f882001-02-23 17:55:21 +0000575 * xmlFdRead:
576 * @context: the I/O context
577 * @buffer: where to drop data
578 * @len: number of bytes to read
579 *
580 * Read @len bytes to @buffer from the I/O channel.
581 *
582 * Returns the number of bytes written
583 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000584static int
Owen Taylor3473f882001-02-23 17:55:21 +0000585xmlFdRead (void * context, char * buffer, int len) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000586 int ret;
587
588 ret = read((int) (long) context, &buffer[0], len);
589 if (ret < 0) xmlIOErr(0, "read()");
590 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000591}
592
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000593#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +0000594/**
595 * xmlFdWrite:
596 * @context: the I/O context
597 * @buffer: where to get data
598 * @len: number of bytes to write
599 *
600 * Write @len bytes from @buffer to the I/O channel.
601 *
602 * Returns the number of bytes written
603 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000604static int
Owen Taylor3473f882001-02-23 17:55:21 +0000605xmlFdWrite (void * context, const char * buffer, int len) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000606 int ret;
607
608 ret = write((int) (long) context, &buffer[0], len);
609 if (ret < 0) xmlIOErr(0, "write()");
610 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000611}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000612#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +0000613
614/**
615 * xmlFdClose:
616 * @context: the I/O context
617 *
618 * Close an I/O channel
Daniel Veillardf012a642001-07-23 19:10:52 +0000619 *
620 * Returns 0 in case of success and error code otherwise
Owen Taylor3473f882001-02-23 17:55:21 +0000621 */
Daniel Veillardf012a642001-07-23 19:10:52 +0000622static int
Owen Taylor3473f882001-02-23 17:55:21 +0000623xmlFdClose (void * context) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000624 int ret;
625 ret = close((int) (long) context);
626 if (ret < 0) xmlIOErr(0, "close()");
627 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000628}
629
630/**
631 * xmlFileMatch:
632 * @filename: the URI for matching
633 *
634 * input from FILE *
635 *
636 * Returns 1 if matches, 0 otherwise
637 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000638int
Daniel Veillardc86a4fa2001-03-26 16:28:29 +0000639xmlFileMatch (const char *filename ATTRIBUTE_UNUSED) {
Owen Taylor3473f882001-02-23 17:55:21 +0000640 return(1);
641}
642
643/**
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000644 * xmlFileOpen_real:
Owen Taylor3473f882001-02-23 17:55:21 +0000645 * @filename: the URI for matching
646 *
647 * input from FILE *, supports compressed input
648 * if @filename is " " then the standard input is used
649 *
650 * Returns an I/O context or NULL in case of error
651 */
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000652static void *
653xmlFileOpen_real (const char *filename) {
Owen Taylor3473f882001-02-23 17:55:21 +0000654 const char *path = NULL;
655 FILE *fd;
656
657 if (!strcmp(filename, "-")) {
658 fd = stdin;
659 return((void *) fd);
660 }
661
Daniel Veillardf4862f02002-09-10 11:13:43 +0000662 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17))
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000663#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardb212bbb2002-08-25 14:39:16 +0000664 path = &filename[17];
665#else
Owen Taylor3473f882001-02-23 17:55:21 +0000666 path = &filename[16];
Daniel Veillardb212bbb2002-08-25 14:39:16 +0000667#endif
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000668 else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) {
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000669#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardfe703322001-08-14 12:18:09 +0000670 path = &filename[8];
671#else
Daniel Veillard3c2758d2001-05-31 18:43:43 +0000672 path = &filename[7];
Daniel Veillardfe703322001-08-14 12:18:09 +0000673#endif
674 } else
Owen Taylor3473f882001-02-23 17:55:21 +0000675 path = filename;
676
677 if (path == NULL)
678 return(NULL);
679 if (!xmlCheckFilename(path))
680 return(NULL);
681
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000682#if defined(WIN32) || defined (__DJGPP__) && !defined (__CYGWIN__)
Owen Taylor3473f882001-02-23 17:55:21 +0000683 fd = fopen(path, "rb");
684#else
685 fd = fopen(path, "r");
686#endif /* WIN32 */
Daniel Veillard05d987b2003-10-08 11:54:57 +0000687 if (fd == NULL) xmlIOErr(0, path);
Owen Taylor3473f882001-02-23 17:55:21 +0000688 return((void *) fd);
689}
690
691/**
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000692 * xmlFileOpen:
693 * @filename: the URI for matching
694 *
695 * Wrapper around xmlFileOpen_real that try it with an unescaped
696 * version of @filename, if this fails fallback to @filename
Daniel Veillard71531f32003-02-05 13:19:53 +0000697 *
698 * Returns a handler or NULL in case or failure
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000699 */
700void *
701xmlFileOpen (const char *filename) {
702 char *unescaped;
703 void *retval;
704 unescaped = xmlURIUnescapeString(filename, 0, NULL);
705 if (unescaped != NULL) {
706 retval = xmlFileOpen_real(unescaped);
707 } else {
708 retval = xmlFileOpen_real(filename);
709 }
710 xmlFree(unescaped);
711 return retval;
712}
713
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000714#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000715/**
Owen Taylor3473f882001-02-23 17:55:21 +0000716 * xmlFileOpenW:
717 * @filename: the URI for matching
718 *
719 * output to from FILE *,
720 * if @filename is "-" then the standard output is used
721 *
722 * Returns an I/O context or NULL in case of error
723 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000724static void *
Owen Taylor3473f882001-02-23 17:55:21 +0000725xmlFileOpenW (const char *filename) {
726 const char *path = NULL;
727 FILE *fd;
728
729 if (!strcmp(filename, "-")) {
730 fd = stdout;
731 return((void *) fd);
732 }
733
Daniel Veillardf4862f02002-09-10 11:13:43 +0000734 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17))
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000735#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardf4862f02002-09-10 11:13:43 +0000736 path = &filename[17];
737#else
Owen Taylor3473f882001-02-23 17:55:21 +0000738 path = &filename[16];
Daniel Veillardf4862f02002-09-10 11:13:43 +0000739#endif
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000740 else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) {
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000741#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardfe703322001-08-14 12:18:09 +0000742 path = &filename[8];
743#else
Daniel Veillard3c2758d2001-05-31 18:43:43 +0000744 path = &filename[7];
Daniel Veillardfe703322001-08-14 12:18:09 +0000745#endif
746 } else
Owen Taylor3473f882001-02-23 17:55:21 +0000747 path = filename;
748
749 if (path == NULL)
750 return(NULL);
751
Daniel Veillardcbbd78d2003-07-20 15:21:30 +0000752 fd = fopen(path, "wb");
Daniel Veillard05d987b2003-10-08 11:54:57 +0000753 if (fd == NULL) xmlIOErr(0, path);
Owen Taylor3473f882001-02-23 17:55:21 +0000754 return((void *) fd);
755}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000756#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +0000757
758/**
759 * xmlFileRead:
760 * @context: the I/O context
761 * @buffer: where to drop data
762 * @len: number of bytes to write
763 *
764 * Read @len bytes to @buffer from the I/O channel.
765 *
766 * Returns the number of bytes written
767 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000768int
Owen Taylor3473f882001-02-23 17:55:21 +0000769xmlFileRead (void * context, char * buffer, int len) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000770 int ret;
771 ret = fread(&buffer[0], 1, len, (FILE *) context);
772 if (ret < 0) xmlIOErr(0, "fread()");
773 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000774}
775
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000776#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +0000777/**
778 * xmlFileWrite:
779 * @context: the I/O context
780 * @buffer: where to drop data
781 * @len: number of bytes to write
782 *
783 * Write @len bytes from @buffer to the I/O channel.
784 *
785 * Returns the number of bytes written
786 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000787static int
Owen Taylor3473f882001-02-23 17:55:21 +0000788xmlFileWrite (void * context, const char * buffer, int len) {
Daniel Veillard4a6d39b2002-12-17 18:33:01 +0000789 int items;
790
791 items = fwrite(&buffer[0], len, 1, (FILE *) context);
Daniel Veillard97bf4d02003-10-08 18:58:28 +0000792 if ((items == 0) && (ferror((FILE *) context))) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000793 xmlIOErr(0, "fwrite()");
Daniel Veillard97bf4d02003-10-08 18:58:28 +0000794 return(-1);
795 }
Daniel Veillard4a6d39b2002-12-17 18:33:01 +0000796 return(items * len);
Owen Taylor3473f882001-02-23 17:55:21 +0000797}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000798#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +0000799
800/**
801 * xmlFileClose:
802 * @context: the I/O context
803 *
804 * Close an I/O channel
Daniel Veillarda9b66d02002-12-11 14:23:49 +0000805 *
806 * Returns 0 or -1 in case of error
Owen Taylor3473f882001-02-23 17:55:21 +0000807 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000808int
Owen Taylor3473f882001-02-23 17:55:21 +0000809xmlFileClose (void * context) {
Daniel Veillarda9e65e82001-10-30 10:32:36 +0000810 FILE *fil;
Daniel Veillard05d987b2003-10-08 11:54:57 +0000811 int ret;
Daniel Veillarda9e65e82001-10-30 10:32:36 +0000812
813 fil = (FILE *) context;
Daniel Veillard500a1de2004-03-22 15:22:58 +0000814 if ((fil == stdout) || (fil == stderr)) {
815 ret = fflush(fil);
816 if (ret < 0)
817 xmlIOErr(0, "fflush()");
818 return(0);
819 }
Daniel Veillarda9e65e82001-10-30 10:32:36 +0000820 if (fil == stdin)
821 return(0);
Daniel Veillard05d987b2003-10-08 11:54:57 +0000822 ret = ( fclose((FILE *) context) == EOF ) ? -1 : 0;
823 if (ret < 0)
824 xmlIOErr(0, "fclose()");
825 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000826}
827
828/**
829 * xmlFileFlush:
830 * @context: the I/O context
831 *
832 * Flush an I/O channel
833 */
Daniel Veillardf012a642001-07-23 19:10:52 +0000834static int
Owen Taylor3473f882001-02-23 17:55:21 +0000835xmlFileFlush (void * context) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000836 int ret;
837 ret = ( fflush((FILE *) context) == EOF ) ? -1 : 0;
838 if (ret < 0)
839 xmlIOErr(0, "fflush()");
840 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000841}
842
843#ifdef HAVE_ZLIB_H
844/************************************************************************
845 * *
846 * I/O for compressed file accesses *
847 * *
848 ************************************************************************/
849/**
850 * xmlGzfileMatch:
851 * @filename: the URI for matching
852 *
853 * input from compressed file test
854 *
855 * Returns 1 if matches, 0 otherwise
856 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000857static int
Daniel Veillardc86a4fa2001-03-26 16:28:29 +0000858xmlGzfileMatch (const char *filename ATTRIBUTE_UNUSED) {
Owen Taylor3473f882001-02-23 17:55:21 +0000859 return(1);
860}
861
862/**
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000863 * xmlGzfileOpen_real:
Owen Taylor3473f882001-02-23 17:55:21 +0000864 * @filename: the URI for matching
865 *
866 * input from compressed file open
867 * if @filename is " " then the standard input is used
868 *
869 * Returns an I/O context or NULL in case of error
870 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000871static void *
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000872xmlGzfileOpen_real (const char *filename) {
Owen Taylor3473f882001-02-23 17:55:21 +0000873 const char *path = NULL;
874 gzFile fd;
875
876 if (!strcmp(filename, "-")) {
Daniel Veillarda9e65e82001-10-30 10:32:36 +0000877 fd = gzdopen(dup(0), "rb");
Owen Taylor3473f882001-02-23 17:55:21 +0000878 return((void *) fd);
879 }
880
Daniel Veillardf4862f02002-09-10 11:13:43 +0000881 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17))
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000882#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardf4862f02002-09-10 11:13:43 +0000883 path = &filename[17];
884#else
Owen Taylor3473f882001-02-23 17:55:21 +0000885 path = &filename[16];
Daniel Veillardf4862f02002-09-10 11:13:43 +0000886#endif
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000887 else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) {
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000888#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardfe703322001-08-14 12:18:09 +0000889 path = &filename[8];
890#else
Owen Taylor3473f882001-02-23 17:55:21 +0000891 path = &filename[7];
Daniel Veillardfe703322001-08-14 12:18:09 +0000892#endif
893 } else
Owen Taylor3473f882001-02-23 17:55:21 +0000894 path = filename;
895
896 if (path == NULL)
897 return(NULL);
898 if (!xmlCheckFilename(path))
899 return(NULL);
900
901 fd = gzopen(path, "rb");
902 return((void *) fd);
903}
904
905/**
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000906 * xmlGzfileOpen:
907 * @filename: the URI for matching
908 *
Daniel Veillard4e9b1bc2003-06-09 10:30:33 +0000909 * Wrapper around xmlGzfileOpen if the open fais, it will
910 * try to unescape @filename
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000911 */
912static void *
913xmlGzfileOpen (const char *filename) {
914 char *unescaped;
915 void *retval;
Daniel Veillard4e9b1bc2003-06-09 10:30:33 +0000916
917 retval = xmlGzfileOpen_real(filename);
918 if (retval == NULL) {
919 unescaped = xmlURIUnescapeString(filename, 0, NULL);
920 if (unescaped != NULL) {
921 retval = xmlGzfileOpen_real(unescaped);
922 }
923 xmlFree(unescaped);
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000924 }
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000925 return retval;
926}
927
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000928#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardcacbe5d2003-01-10 16:09:51 +0000929/**
Owen Taylor3473f882001-02-23 17:55:21 +0000930 * xmlGzfileOpenW:
931 * @filename: the URI for matching
932 * @compression: the compression factor (0 - 9 included)
933 *
934 * input from compressed file open
935 * if @filename is " " then the standard input is used
936 *
937 * Returns an I/O context or NULL in case of error
938 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000939static void *
Owen Taylor3473f882001-02-23 17:55:21 +0000940xmlGzfileOpenW (const char *filename, int compression) {
941 const char *path = NULL;
942 char mode[15];
943 gzFile fd;
944
Aleksey Sanin49cc9752002-06-14 17:07:10 +0000945 snprintf(mode, sizeof(mode), "wb%d", compression);
Owen Taylor3473f882001-02-23 17:55:21 +0000946 if (!strcmp(filename, "-")) {
Daniel Veillarda9e65e82001-10-30 10:32:36 +0000947 fd = gzdopen(dup(1), mode);
Owen Taylor3473f882001-02-23 17:55:21 +0000948 return((void *) fd);
949 }
950
Daniel Veillardf4862f02002-09-10 11:13:43 +0000951 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file://localhost/", 17))
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000952#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardf4862f02002-09-10 11:13:43 +0000953 path = &filename[17];
954#else
Owen Taylor3473f882001-02-23 17:55:21 +0000955 path = &filename[16];
Daniel Veillardf4862f02002-09-10 11:13:43 +0000956#endif
Aleksey Sanin5aac8b82002-05-01 18:32:28 +0000957 else if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "file:///", 8)) {
Daniel Veillard1997c3e2003-07-05 20:43:43 +0000958#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardfe703322001-08-14 12:18:09 +0000959 path = &filename[8];
960#else
Daniel Veillard3c2758d2001-05-31 18:43:43 +0000961 path = &filename[7];
Daniel Veillardfe703322001-08-14 12:18:09 +0000962#endif
963 } else
Owen Taylor3473f882001-02-23 17:55:21 +0000964 path = filename;
965
966 if (path == NULL)
967 return(NULL);
968
969 fd = gzopen(path, mode);
970 return((void *) fd);
971}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000972#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +0000973
974/**
975 * xmlGzfileRead:
976 * @context: the I/O context
977 * @buffer: where to drop data
978 * @len: number of bytes to write
979 *
980 * Read @len bytes to @buffer from the compressed I/O channel.
981 *
982 * Returns the number of bytes written
983 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000984static int
Owen Taylor3473f882001-02-23 17:55:21 +0000985xmlGzfileRead (void * context, char * buffer, int len) {
Daniel Veillard05d987b2003-10-08 11:54:57 +0000986 int ret;
987
988 ret = gzread((gzFile) context, &buffer[0], len);
989 if (ret < 0) xmlIOErr(0, "gzread()");
990 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +0000991}
992
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000993#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +0000994/**
995 * xmlGzfileWrite:
996 * @context: the I/O context
997 * @buffer: where to drop data
998 * @len: number of bytes to write
999 *
1000 * Write @len bytes from @buffer to the compressed I/O channel.
1001 *
1002 * Returns the number of bytes written
1003 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001004static int
Owen Taylor3473f882001-02-23 17:55:21 +00001005xmlGzfileWrite (void * context, const char * buffer, int len) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001006 int ret;
1007
1008 ret = gzwrite((gzFile) context, (char *) &buffer[0], len);
1009 if (ret < 0) xmlIOErr(0, "gzwrite()");
1010 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +00001011}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001012#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001013
1014/**
1015 * xmlGzfileClose:
1016 * @context: the I/O context
1017 *
1018 * Close a compressed I/O channel
1019 */
Daniel Veillardf012a642001-07-23 19:10:52 +00001020static int
Owen Taylor3473f882001-02-23 17:55:21 +00001021xmlGzfileClose (void * context) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001022 int ret;
1023
1024 ret = (gzclose((gzFile) context) == Z_OK ) ? 0 : -1;
1025 if (ret < 0) xmlIOErr(0, "gzclose()");
1026 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +00001027}
1028#endif /* HAVE_ZLIB_H */
1029
1030#ifdef LIBXML_HTTP_ENABLED
1031/************************************************************************
1032 * *
1033 * I/O for HTTP file accesses *
1034 * *
1035 ************************************************************************/
Daniel Veillardf012a642001-07-23 19:10:52 +00001036
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001037#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardf012a642001-07-23 19:10:52 +00001038typedef struct xmlIOHTTPWriteCtxt_
1039{
1040 int compression;
1041
1042 char * uri;
1043
1044 void * doc_buff;
1045
1046} xmlIOHTTPWriteCtxt, *xmlIOHTTPWriteCtxtPtr;
1047
1048#ifdef HAVE_ZLIB_H
1049
1050#define DFLT_WBITS ( -15 )
1051#define DFLT_MEM_LVL ( 8 )
1052#define GZ_MAGIC1 ( 0x1f )
1053#define GZ_MAGIC2 ( 0x8b )
1054#define LXML_ZLIB_OS_CODE ( 0x03 )
1055#define INIT_HTTP_BUFF_SIZE ( 32768 )
1056#define DFLT_ZLIB_RATIO ( 5 )
1057
1058/*
1059** Data structure and functions to work with sending compressed data
1060** via HTTP.
1061*/
1062
1063typedef struct xmlZMemBuff_
1064{
1065 unsigned long size;
1066 unsigned long crc;
1067
1068 unsigned char * zbuff;
1069 z_stream zctrl;
1070
1071} xmlZMemBuff, *xmlZMemBuffPtr;
1072
1073/**
1074 * append_reverse_ulong
1075 * @buff: Compressed memory buffer
1076 * @data: Unsigned long to append
1077 *
1078 * Append a unsigned long in reverse byte order to the end of the
1079 * memory buffer.
1080 */
1081static void
1082append_reverse_ulong( xmlZMemBuff * buff, unsigned long data ) {
1083
1084 int idx;
1085
1086 if ( buff == NULL )
1087 return;
1088
1089 /*
1090 ** This is plagiarized from putLong in gzio.c (zlib source) where
1091 ** the number "4" is hardcoded. If zlib is ever patched to
1092 ** support 64 bit file sizes, this code would need to be patched
1093 ** as well.
1094 */
1095
1096 for ( idx = 0; idx < 4; idx++ ) {
1097 *buff->zctrl.next_out = ( data & 0xff );
1098 data >>= 8;
1099 buff->zctrl.next_out++;
1100 }
1101
1102 return;
1103}
1104
1105/**
1106 *
1107 * xmlFreeZMemBuff
1108 * @buff: The memory buffer context to clear
1109 *
1110 * Release all the resources associated with the compressed memory buffer.
1111 */
1112static void
1113xmlFreeZMemBuff( xmlZMemBuffPtr buff ) {
William M. Brack78637da2003-07-31 14:47:38 +00001114
1115#ifdef DEBUG_HTTP
Daniel Veillardf012a642001-07-23 19:10:52 +00001116 int z_err;
William M. Brack78637da2003-07-31 14:47:38 +00001117#endif
Daniel Veillardf012a642001-07-23 19:10:52 +00001118
1119 if ( buff == NULL )
1120 return;
1121
1122 xmlFree( buff->zbuff );
Daniel Veillardf012a642001-07-23 19:10:52 +00001123#ifdef DEBUG_HTTP
William M. Brack78637da2003-07-31 14:47:38 +00001124 z_err = deflateEnd( &buff->zctrl );
Daniel Veillardf012a642001-07-23 19:10:52 +00001125 if ( z_err != Z_OK )
1126 xmlGenericError( xmlGenericErrorContext,
1127 "xmlFreeZMemBuff: Error releasing zlib context: %d\n",
1128 z_err );
William M. Brack78637da2003-07-31 14:47:38 +00001129#else
1130 deflateEnd( &buff->zctrl );
William M. Brack779af002003-08-01 15:55:39 +00001131#endif
Daniel Veillardf012a642001-07-23 19:10:52 +00001132
1133 xmlFree( buff );
1134 return;
1135}
1136
1137/**
1138 * xmlCreateZMemBuff
1139 *@compression: Compression value to use
1140 *
1141 * Create a memory buffer to hold the compressed XML document. The
1142 * compressed document in memory will end up being identical to what
1143 * would be created if gzopen/gzwrite/gzclose were being used to
1144 * write the document to disk. The code for the header/trailer data to
1145 * the compression is plagiarized from the zlib source files.
1146 */
1147static void *
1148xmlCreateZMemBuff( int compression ) {
1149
1150 int z_err;
1151 int hdr_lgth;
1152 xmlZMemBuffPtr buff = NULL;
1153
1154 if ( ( compression < 1 ) || ( compression > 9 ) )
1155 return ( NULL );
1156
1157 /* Create the control and data areas */
1158
1159 buff = xmlMalloc( sizeof( xmlZMemBuff ) );
1160 if ( buff == NULL ) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001161 xmlIOErrMemory("creating buffer context");
Daniel Veillardf012a642001-07-23 19:10:52 +00001162 return ( NULL );
1163 }
1164
1165 (void)memset( buff, 0, sizeof( xmlZMemBuff ) );
1166 buff->size = INIT_HTTP_BUFF_SIZE;
1167 buff->zbuff = xmlMalloc( buff->size );
1168 if ( buff->zbuff == NULL ) {
1169 xmlFreeZMemBuff( buff );
Daniel Veillard05d987b2003-10-08 11:54:57 +00001170 xmlIOErrMemory("creating buffer");
Daniel Veillardf012a642001-07-23 19:10:52 +00001171 return ( NULL );
1172 }
1173
1174 z_err = deflateInit2( &buff->zctrl, compression, Z_DEFLATED,
1175 DFLT_WBITS, DFLT_MEM_LVL, Z_DEFAULT_STRATEGY );
1176 if ( z_err != Z_OK ) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001177 xmlChar msg[500];
Daniel Veillardf012a642001-07-23 19:10:52 +00001178 xmlFreeZMemBuff( buff );
1179 buff = NULL;
Daniel Veillard05d987b2003-10-08 11:54:57 +00001180 xmlStrPrintf(msg, 500,
1181 (const xmlChar *) "xmlCreateZMemBuff: %s %d\n",
1182 "Error initializing compression context. ZLIB error:",
1183 z_err );
1184 xmlIOErr(XML_IO_WRITE, (const char *) msg);
Daniel Veillardf012a642001-07-23 19:10:52 +00001185 return ( NULL );
1186 }
1187
1188 /* Set the header data. The CRC will be needed for the trailer */
Daniel Veillardf012a642001-07-23 19:10:52 +00001189 buff->crc = crc32( 0L, Z_NULL, 0 );
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001190 hdr_lgth = snprintf( (char *)buff->zbuff, buff->size,
1191 "%c%c%c%c%c%c%c%c%c%c",
Daniel Veillardf012a642001-07-23 19:10:52 +00001192 GZ_MAGIC1, GZ_MAGIC2, Z_DEFLATED,
1193 0, 0, 0, 0, 0, 0, LXML_ZLIB_OS_CODE );
1194 buff->zctrl.next_out = buff->zbuff + hdr_lgth;
1195 buff->zctrl.avail_out = buff->size - hdr_lgth;
1196
1197 return ( buff );
1198}
1199
1200/**
1201 * xmlZMemBuffExtend
1202 * @buff: Buffer used to compress and consolidate data.
1203 * @ext_amt: Number of bytes to extend the buffer.
1204 *
1205 * Extend the internal buffer used to store the compressed data by the
1206 * specified amount.
1207 *
1208 * Returns 0 on success or -1 on failure to extend the buffer. On failure
1209 * the original buffer still exists at the original size.
1210 */
1211static int
1212xmlZMemBuffExtend( xmlZMemBuffPtr buff, size_t ext_amt ) {
1213
1214 int rc = -1;
1215 size_t new_size;
1216 size_t cur_used;
1217
1218 unsigned char * tmp_ptr = NULL;
1219
1220 if ( buff == NULL )
1221 return ( -1 );
1222
1223 else if ( ext_amt == 0 )
1224 return ( 0 );
1225
1226 cur_used = buff->zctrl.next_out - buff->zbuff;
1227 new_size = buff->size + ext_amt;
1228
1229#ifdef DEBUG_HTTP
1230 if ( cur_used > new_size )
1231 xmlGenericError( xmlGenericErrorContext,
1232 "xmlZMemBuffExtend: %s\n%s %d bytes.\n",
1233 "Buffer overwrite detected during compressed memory",
1234 "buffer extension. Overflowed by",
1235 (cur_used - new_size ) );
1236#endif
1237
1238 tmp_ptr = xmlRealloc( buff->zbuff, new_size );
1239 if ( tmp_ptr != NULL ) {
1240 rc = 0;
1241 buff->size = new_size;
1242 buff->zbuff = tmp_ptr;
1243 buff->zctrl.next_out = tmp_ptr + cur_used;
1244 buff->zctrl.avail_out = new_size - cur_used;
1245 }
1246 else {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001247 xmlChar msg[500];
1248 xmlStrPrintf(msg, 500,
1249 (const xmlChar *) "xmlZMemBuffExtend: %s %lu bytes.\n",
1250 "Allocation failure extending output buffer to",
1251 new_size );
1252 xmlIOErr(XML_IO_WRITE, (const char *) msg);
Daniel Veillardf012a642001-07-23 19:10:52 +00001253 }
1254
1255 return ( rc );
1256}
1257
1258/**
1259 * xmlZMemBuffAppend
1260 * @buff: Buffer used to compress and consolidate data
1261 * @src: Uncompressed source content to append to buffer
1262 * @len: Length of source data to append to buffer
1263 *
1264 * Compress and append data to the internal buffer. The data buffer
1265 * will be expanded if needed to store the additional data.
1266 *
1267 * Returns the number of bytes appended to the buffer or -1 on error.
1268 */
1269static int
1270xmlZMemBuffAppend( xmlZMemBuffPtr buff, const char * src, int len ) {
1271
1272 int z_err;
1273 size_t min_accept;
1274
1275 if ( ( buff == NULL ) || ( src == NULL ) )
1276 return ( -1 );
1277
1278 buff->zctrl.avail_in = len;
1279 buff->zctrl.next_in = (unsigned char *)src;
1280 while ( buff->zctrl.avail_in > 0 ) {
1281 /*
1282 ** Extend the buffer prior to deflate call if a reasonable amount
1283 ** of output buffer space is not available.
1284 */
1285 min_accept = buff->zctrl.avail_in / DFLT_ZLIB_RATIO;
1286 if ( buff->zctrl.avail_out <= min_accept ) {
1287 if ( xmlZMemBuffExtend( buff, buff->size ) == -1 )
1288 return ( -1 );
1289 }
1290
1291 z_err = deflate( &buff->zctrl, Z_NO_FLUSH );
1292 if ( z_err != Z_OK ) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001293 xmlChar msg[500];
1294 xmlStrPrintf(msg, 500,
1295 (const xmlChar *) "xmlZMemBuffAppend: %s %d %s - %d",
Daniel Veillardf012a642001-07-23 19:10:52 +00001296 "Compression error while appending",
1297 len, "bytes to buffer. ZLIB error", z_err );
Daniel Veillard05d987b2003-10-08 11:54:57 +00001298 xmlIOErr(XML_IO_WRITE, (const char *) msg);
Daniel Veillardf012a642001-07-23 19:10:52 +00001299 return ( -1 );
1300 }
1301 }
1302
1303 buff->crc = crc32( buff->crc, (unsigned char *)src, len );
1304
1305 return ( len );
1306}
1307
1308/**
1309 * xmlZMemBuffGetContent
1310 * @buff: Compressed memory content buffer
1311 * @data_ref: Pointer reference to point to compressed content
1312 *
1313 * Flushes the compression buffers, appends gzip file trailers and
1314 * returns the compressed content and length of the compressed data.
1315 * NOTE: The gzip trailer code here is plagiarized from zlib source.
1316 *
1317 * Returns the length of the compressed data or -1 on error.
1318 */
1319static int
1320xmlZMemBuffGetContent( xmlZMemBuffPtr buff, char ** data_ref ) {
1321
1322 int zlgth = -1;
1323 int z_err;
1324
1325 if ( ( buff == NULL ) || ( data_ref == NULL ) )
1326 return ( -1 );
1327
1328 /* Need to loop until compression output buffers are flushed */
1329
1330 do
1331 {
1332 z_err = deflate( &buff->zctrl, Z_FINISH );
1333 if ( z_err == Z_OK ) {
1334 /* In this case Z_OK means more buffer space needed */
1335
1336 if ( xmlZMemBuffExtend( buff, buff->size ) == -1 )
1337 return ( -1 );
1338 }
1339 }
1340 while ( z_err == Z_OK );
1341
1342 /* If the compression state is not Z_STREAM_END, some error occurred */
1343
1344 if ( z_err == Z_STREAM_END ) {
1345
1346 /* Need to append the gzip data trailer */
1347
1348 if ( buff->zctrl.avail_out < ( 2 * sizeof( unsigned long ) ) ) {
1349 if ( xmlZMemBuffExtend(buff, (2 * sizeof(unsigned long))) == -1 )
1350 return ( -1 );
1351 }
1352
1353 /*
1354 ** For whatever reason, the CRC and length data are pushed out
1355 ** in reverse byte order. So a memcpy can't be used here.
1356 */
1357
1358 append_reverse_ulong( buff, buff->crc );
1359 append_reverse_ulong( buff, buff->zctrl.total_in );
1360
1361 zlgth = buff->zctrl.next_out - buff->zbuff;
1362 *data_ref = (char *)buff->zbuff;
1363 }
1364
Daniel Veillard05d987b2003-10-08 11:54:57 +00001365 else {
1366 xmlChar msg[500];
1367 xmlStrPrintf(msg, 500,
1368 (const xmlChar *) "xmlZMemBuffGetContent: %s - %d\n",
1369 "Error flushing zlib buffers. Error code", z_err );
1370 xmlIOErr(XML_IO_WRITE, (const char *) msg);
1371 }
Daniel Veillardf012a642001-07-23 19:10:52 +00001372
1373 return ( zlgth );
1374}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001375#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001376#endif /* HAVE_ZLIB_H */
1377
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001378#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardf012a642001-07-23 19:10:52 +00001379/**
1380 * xmlFreeHTTPWriteCtxt
1381 * @ctxt: Context to cleanup
1382 *
1383 * Free allocated memory and reclaim system resources.
1384 *
1385 * No return value.
1386 */
1387static void
1388xmlFreeHTTPWriteCtxt( xmlIOHTTPWriteCtxtPtr ctxt )
1389{
1390 if ( ctxt->uri != NULL )
Daniel Veillard819d5cb2002-10-14 11:15:18 +00001391 xmlFree( ctxt->uri );
Daniel Veillardf012a642001-07-23 19:10:52 +00001392
1393 if ( ctxt->doc_buff != NULL ) {
1394
1395#ifdef HAVE_ZLIB_H
1396 if ( ctxt->compression > 0 ) {
1397 xmlFreeZMemBuff( ctxt->doc_buff );
1398 }
1399 else
1400#endif
1401 {
1402 xmlOutputBufferClose( ctxt->doc_buff );
1403 }
1404 }
1405
Daniel Veillard819d5cb2002-10-14 11:15:18 +00001406 xmlFree( ctxt );
Daniel Veillardf012a642001-07-23 19:10:52 +00001407 return;
1408}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001409#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001410
1411
Owen Taylor3473f882001-02-23 17:55:21 +00001412/**
1413 * xmlIOHTTPMatch:
1414 * @filename: the URI for matching
1415 *
1416 * check if the URI matches an HTTP one
1417 *
1418 * Returns 1 if matches, 0 otherwise
1419 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001420int
Owen Taylor3473f882001-02-23 17:55:21 +00001421xmlIOHTTPMatch (const char *filename) {
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001422 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "http://", 7))
Owen Taylor3473f882001-02-23 17:55:21 +00001423 return(1);
1424 return(0);
1425}
1426
1427/**
1428 * xmlIOHTTPOpen:
1429 * @filename: the URI for matching
1430 *
1431 * open an HTTP I/O channel
1432 *
1433 * Returns an I/O context or NULL in case of error
1434 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001435void *
Owen Taylor3473f882001-02-23 17:55:21 +00001436xmlIOHTTPOpen (const char *filename) {
1437 return(xmlNanoHTTPOpen(filename, NULL));
1438}
1439
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001440#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001441/**
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001442 * xmlIOHTTPOpenW:
Daniel Veillardf012a642001-07-23 19:10:52 +00001443 * @post_uri: The destination URI for the document
1444 * @compression: The compression desired for the document.
1445 *
1446 * Open a temporary buffer to collect the document for a subsequent HTTP POST
1447 * request. Non-static as is called from the output buffer creation routine.
1448 *
1449 * Returns an I/O context or NULL in case of error.
1450 */
1451
1452void *
Daniel Veillard572577e2002-01-18 16:23:55 +00001453xmlIOHTTPOpenW(const char *post_uri, int compression)
1454{
Daniel Veillardf012a642001-07-23 19:10:52 +00001455
Daniel Veillard572577e2002-01-18 16:23:55 +00001456 xmlIOHTTPWriteCtxtPtr ctxt = NULL;
Daniel Veillardf012a642001-07-23 19:10:52 +00001457
Daniel Veillard572577e2002-01-18 16:23:55 +00001458 if (post_uri == NULL)
1459 return (NULL);
Daniel Veillardf012a642001-07-23 19:10:52 +00001460
Daniel Veillard572577e2002-01-18 16:23:55 +00001461 ctxt = xmlMalloc(sizeof(xmlIOHTTPWriteCtxt));
1462 if (ctxt == NULL) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001463 xmlIOErrMemory("creating HTTP output context");
Daniel Veillard572577e2002-01-18 16:23:55 +00001464 return (NULL);
Daniel Veillardf012a642001-07-23 19:10:52 +00001465 }
1466
Daniel Veillard572577e2002-01-18 16:23:55 +00001467 (void) memset(ctxt, 0, sizeof(xmlIOHTTPWriteCtxt));
Daniel Veillardf012a642001-07-23 19:10:52 +00001468
Daniel Veillard572577e2002-01-18 16:23:55 +00001469 ctxt->uri = (char *) xmlStrdup((const xmlChar *)post_uri);
1470 if (ctxt->uri == NULL) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001471 xmlIOErrMemory("copying URI");
Daniel Veillard572577e2002-01-18 16:23:55 +00001472 xmlFreeHTTPWriteCtxt(ctxt);
1473 return (NULL);
Daniel Veillardf012a642001-07-23 19:10:52 +00001474 }
1475
1476 /*
Daniel Veillard572577e2002-01-18 16:23:55 +00001477 * ** Since the document length is required for an HTTP post,
1478 * ** need to put the document into a buffer. A memory buffer
1479 * ** is being used to avoid pushing the data to disk and back.
1480 */
Daniel Veillardf012a642001-07-23 19:10:52 +00001481
1482#ifdef HAVE_ZLIB_H
Daniel Veillard572577e2002-01-18 16:23:55 +00001483 if ((compression > 0) && (compression <= 9)) {
1484
1485 ctxt->compression = compression;
1486 ctxt->doc_buff = xmlCreateZMemBuff(compression);
1487 } else
Daniel Veillardf012a642001-07-23 19:10:52 +00001488#endif
1489 {
Daniel Veillard572577e2002-01-18 16:23:55 +00001490 /* Any character conversions should have been done before this */
Daniel Veillardf012a642001-07-23 19:10:52 +00001491
Daniel Veillard572577e2002-01-18 16:23:55 +00001492 ctxt->doc_buff = xmlAllocOutputBuffer(NULL);
Daniel Veillardf012a642001-07-23 19:10:52 +00001493 }
1494
Daniel Veillard572577e2002-01-18 16:23:55 +00001495 if (ctxt->doc_buff == NULL) {
1496 xmlFreeHTTPWriteCtxt(ctxt);
1497 ctxt = NULL;
Daniel Veillardf012a642001-07-23 19:10:52 +00001498 }
1499
Daniel Veillard572577e2002-01-18 16:23:55 +00001500 return (ctxt);
Daniel Veillardf012a642001-07-23 19:10:52 +00001501}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001502#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001503
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001504#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardf012a642001-07-23 19:10:52 +00001505/**
1506 * xmlIOHTTPDfltOpenW
1507 * @post_uri: The destination URI for this document.
1508 *
1509 * Calls xmlIOHTTPOpenW with no compression to set up for a subsequent
1510 * HTTP post command. This function should generally not be used as
1511 * the open callback is short circuited in xmlOutputBufferCreateFile.
1512 *
1513 * Returns a pointer to the new IO context.
1514 */
1515static void *
1516xmlIOHTTPDfltOpenW( const char * post_uri ) {
1517 return ( xmlIOHTTPOpenW( post_uri, 0 ) );
1518}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001519#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001520
1521/**
Owen Taylor3473f882001-02-23 17:55:21 +00001522 * xmlIOHTTPRead:
1523 * @context: the I/O context
1524 * @buffer: where to drop data
1525 * @len: number of bytes to write
1526 *
1527 * Read @len bytes to @buffer from the I/O channel.
1528 *
1529 * Returns the number of bytes written
1530 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001531int
Owen Taylor3473f882001-02-23 17:55:21 +00001532xmlIOHTTPRead(void * context, char * buffer, int len) {
1533 return(xmlNanoHTTPRead(context, &buffer[0], len));
1534}
1535
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001536#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001537/**
Daniel Veillardf012a642001-07-23 19:10:52 +00001538 * xmlIOHTTPWrite
1539 * @context: previously opened writing context
1540 * @buffer: data to output to temporary buffer
1541 * @len: bytes to output
1542 *
1543 * Collect data from memory buffer into a temporary file for later
1544 * processing.
1545 *
1546 * Returns number of bytes written.
1547 */
1548
1549static int
1550xmlIOHTTPWrite( void * context, const char * buffer, int len ) {
1551
1552 xmlIOHTTPWriteCtxtPtr ctxt = context;
1553
1554 if ( ( ctxt == NULL ) || ( ctxt->doc_buff == NULL ) || ( buffer == NULL ) )
1555 return ( -1 );
1556
1557 if ( len > 0 ) {
1558
1559 /* Use gzwrite or fwrite as previously setup in the open call */
1560
1561#ifdef HAVE_ZLIB_H
1562 if ( ctxt->compression > 0 )
1563 len = xmlZMemBuffAppend( ctxt->doc_buff, buffer, len );
1564
1565 else
1566#endif
1567 len = xmlOutputBufferWrite( ctxt->doc_buff, len, buffer );
1568
1569 if ( len < 0 ) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001570 xmlChar msg[500];
1571 xmlStrPrintf(msg, 500,
1572 (const xmlChar *) "xmlIOHTTPWrite: %s\n%s '%s'.\n",
Daniel Veillardf012a642001-07-23 19:10:52 +00001573 "Error appending to internal buffer.",
1574 "Error sending document to URI",
1575 ctxt->uri );
Daniel Veillard05d987b2003-10-08 11:54:57 +00001576 xmlIOErr(XML_IO_WRITE, (const char *) msg);
Daniel Veillardf012a642001-07-23 19:10:52 +00001577 }
1578 }
1579
1580 return ( len );
1581}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001582#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001583
1584
1585/**
Owen Taylor3473f882001-02-23 17:55:21 +00001586 * xmlIOHTTPClose:
1587 * @context: the I/O context
1588 *
1589 * Close an HTTP I/O channel
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001590 *
1591 * Returns 0
Owen Taylor3473f882001-02-23 17:55:21 +00001592 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001593int
Owen Taylor3473f882001-02-23 17:55:21 +00001594xmlIOHTTPClose (void * context) {
1595 xmlNanoHTTPClose(context);
Daniel Veillardf012a642001-07-23 19:10:52 +00001596 return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001597}
Daniel Veillardf012a642001-07-23 19:10:52 +00001598
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001599#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardf012a642001-07-23 19:10:52 +00001600/**
1601 * xmlIOHTTCloseWrite
1602 * @context: The I/O context
1603 * @http_mthd: The HTTP method to be used when sending the data
1604 *
1605 * Close the transmit HTTP I/O channel and actually send the data.
1606 */
1607static int
1608xmlIOHTTPCloseWrite( void * context, const char * http_mthd ) {
1609
1610 int close_rc = -1;
1611 int http_rtn = 0;
1612 int content_lgth = 0;
1613 xmlIOHTTPWriteCtxtPtr ctxt = context;
1614
1615 char * http_content = NULL;
1616 char * content_encoding = NULL;
1617 char * content_type = (char *) "text/xml";
1618 void * http_ctxt = NULL;
1619
1620 if ( ( ctxt == NULL ) || ( http_mthd == NULL ) )
1621 return ( -1 );
1622
1623 /* Retrieve the content from the appropriate buffer */
1624
1625#ifdef HAVE_ZLIB_H
1626
1627 if ( ctxt->compression > 0 ) {
1628 content_lgth = xmlZMemBuffGetContent( ctxt->doc_buff, &http_content );
1629 content_encoding = (char *) "Content-Encoding: gzip";
1630 }
1631 else
1632#endif
1633 {
1634 /* Pull the data out of the memory output buffer */
1635
1636 xmlOutputBufferPtr dctxt = ctxt->doc_buff;
1637 http_content = (char *)dctxt->buffer->content;
1638 content_lgth = dctxt->buffer->use;
1639 }
1640
1641 if ( http_content == NULL ) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001642 xmlChar msg[500];
1643 xmlStrPrintf(msg, 500,
1644 (const xmlChar *) "xmlIOHTTPCloseWrite: %s '%s' %s '%s'.\n",
1645 "Error retrieving content.\nUnable to",
1646 http_mthd, "data to URI", ctxt->uri );
1647 xmlIOErr(XML_IO_WRITE, (const char *) msg);
Daniel Veillardf012a642001-07-23 19:10:52 +00001648 }
1649
1650 else {
1651
1652 http_ctxt = xmlNanoHTTPMethod( ctxt->uri, http_mthd, http_content,
1653 &content_type, content_encoding,
1654 content_lgth );
1655
1656 if ( http_ctxt != NULL ) {
1657#ifdef DEBUG_HTTP
1658 /* If testing/debugging - dump reply with request content */
1659
1660 FILE * tst_file = NULL;
1661 char buffer[ 4096 ];
1662 char * dump_name = NULL;
1663 int avail;
1664
1665 xmlGenericError( xmlGenericErrorContext,
1666 "xmlNanoHTTPCloseWrite: HTTP %s to\n%s returned %d.\n",
1667 http_mthd, ctxt->uri,
1668 xmlNanoHTTPReturnCode( http_ctxt ) );
1669
1670 /*
1671 ** Since either content or reply may be gzipped,
1672 ** dump them to separate files instead of the
1673 ** standard error context.
1674 */
1675
1676 dump_name = tempnam( NULL, "lxml" );
1677 if ( dump_name != NULL ) {
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001678 (void)snprintf( buffer, sizeof(buffer), "%s.content", dump_name );
Daniel Veillardf012a642001-07-23 19:10:52 +00001679
Daniel Veillardcbbd78d2003-07-20 15:21:30 +00001680 tst_file = fopen( buffer, "wb" );
Daniel Veillardf012a642001-07-23 19:10:52 +00001681 if ( tst_file != NULL ) {
1682 xmlGenericError( xmlGenericErrorContext,
1683 "Transmitted content saved in file: %s\n", buffer );
1684
1685 fwrite( http_content, sizeof( char ),
1686 content_lgth, tst_file );
1687 fclose( tst_file );
1688 }
1689
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001690 (void)snprintf( buffer, sizeof(buffer), "%s.reply", dump_name );
Daniel Veillardcbbd78d2003-07-20 15:21:30 +00001691 tst_file = fopen( buffer, "wb" );
Daniel Veillardf012a642001-07-23 19:10:52 +00001692 if ( tst_file != NULL ) {
1693 xmlGenericError( xmlGenericErrorContext,
1694 "Reply content saved in file: %s\n", buffer );
1695
1696
1697 while ( (avail = xmlNanoHTTPRead( http_ctxt,
1698 buffer, sizeof( buffer ) )) > 0 ) {
1699
1700 fwrite( buffer, sizeof( char ), avail, tst_file );
1701 }
1702
1703 fclose( tst_file );
1704 }
1705
1706 free( dump_name );
1707 }
1708#endif /* DEBUG_HTTP */
1709
1710 http_rtn = xmlNanoHTTPReturnCode( http_ctxt );
1711 if ( ( http_rtn >= 200 ) && ( http_rtn < 300 ) )
1712 close_rc = 0;
Daniel Veillard05d987b2003-10-08 11:54:57 +00001713 else {
1714 xmlChar msg[500];
1715 xmlStrPrintf(msg, 500,
1716 (const xmlChar *) "xmlIOHTTPCloseWrite: HTTP '%s' of %d %s\n'%s' %s %d\n",
Daniel Veillardf012a642001-07-23 19:10:52 +00001717 http_mthd, content_lgth,
1718 "bytes to URI", ctxt->uri,
1719 "failed. HTTP return code:", http_rtn );
Daniel Veillard05d987b2003-10-08 11:54:57 +00001720 xmlIOErr(XML_IO_WRITE, (const char *) msg);
1721 }
Daniel Veillardf012a642001-07-23 19:10:52 +00001722
1723 xmlNanoHTTPClose( http_ctxt );
1724 xmlFree( content_type );
1725 }
1726 }
1727
1728 /* Final cleanups */
1729
1730 xmlFreeHTTPWriteCtxt( ctxt );
1731
1732 return ( close_rc );
1733}
1734
1735/**
1736 * xmlIOHTTPClosePut
1737 *
1738 * @context: The I/O context
1739 *
1740 * Close the transmit HTTP I/O channel and actually send data using a PUT
1741 * HTTP method.
1742 */
1743static int
1744xmlIOHTTPClosePut( void * ctxt ) {
1745 return ( xmlIOHTTPCloseWrite( ctxt, "PUT" ) );
1746}
1747
1748
1749/**
1750 * xmlIOHTTPClosePost
1751 *
1752 * @context: The I/O context
1753 *
1754 * Close the transmit HTTP I/O channel and actually send data using a POST
1755 * HTTP method.
1756 */
1757static int
1758xmlIOHTTPClosePost( void * ctxt ) {
1759 return ( xmlIOHTTPCloseWrite( ctxt, "POST" ) );
1760}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001761#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001762
Owen Taylor3473f882001-02-23 17:55:21 +00001763#endif /* LIBXML_HTTP_ENABLED */
1764
1765#ifdef LIBXML_FTP_ENABLED
1766/************************************************************************
1767 * *
1768 * I/O for FTP file accesses *
1769 * *
1770 ************************************************************************/
1771/**
1772 * xmlIOFTPMatch:
1773 * @filename: the URI for matching
1774 *
1775 * check if the URI matches an FTP one
1776 *
1777 * Returns 1 if matches, 0 otherwise
1778 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001779int
Owen Taylor3473f882001-02-23 17:55:21 +00001780xmlIOFTPMatch (const char *filename) {
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001781 if (!xmlStrncasecmp(BAD_CAST filename, BAD_CAST "ftp://", 6))
Owen Taylor3473f882001-02-23 17:55:21 +00001782 return(1);
1783 return(0);
1784}
1785
1786/**
1787 * xmlIOFTPOpen:
1788 * @filename: the URI for matching
1789 *
1790 * open an FTP I/O channel
1791 *
1792 * Returns an I/O context or NULL in case of error
1793 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001794void *
Owen Taylor3473f882001-02-23 17:55:21 +00001795xmlIOFTPOpen (const char *filename) {
1796 return(xmlNanoFTPOpen(filename));
1797}
1798
1799/**
1800 * xmlIOFTPRead:
1801 * @context: the I/O context
1802 * @buffer: where to drop data
1803 * @len: number of bytes to write
1804 *
1805 * Read @len bytes to @buffer from the I/O channel.
1806 *
1807 * Returns the number of bytes written
1808 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001809int
Owen Taylor3473f882001-02-23 17:55:21 +00001810xmlIOFTPRead(void * context, char * buffer, int len) {
1811 return(xmlNanoFTPRead(context, &buffer[0], len));
1812}
1813
1814/**
1815 * xmlIOFTPClose:
1816 * @context: the I/O context
1817 *
1818 * Close an FTP I/O channel
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001819 *
1820 * Returns 0
Owen Taylor3473f882001-02-23 17:55:21 +00001821 */
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00001822int
Owen Taylor3473f882001-02-23 17:55:21 +00001823xmlIOFTPClose (void * context) {
Daniel Veillardf012a642001-07-23 19:10:52 +00001824 return ( xmlNanoFTPClose(context) );
Owen Taylor3473f882001-02-23 17:55:21 +00001825}
1826#endif /* LIBXML_FTP_ENABLED */
1827
1828
1829/**
1830 * xmlRegisterInputCallbacks:
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001831 * @matchFunc: the xmlInputMatchCallback
1832 * @openFunc: the xmlInputOpenCallback
1833 * @readFunc: the xmlInputReadCallback
1834 * @closeFunc: the xmlInputCloseCallback
Owen Taylor3473f882001-02-23 17:55:21 +00001835 *
1836 * Register a new set of I/O callback for handling parser input.
1837 *
1838 * Returns the registered handler number or -1 in case of error
1839 */
1840int
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001841xmlRegisterInputCallbacks(xmlInputMatchCallback matchFunc,
1842 xmlInputOpenCallback openFunc, xmlInputReadCallback readFunc,
1843 xmlInputCloseCallback closeFunc) {
Owen Taylor3473f882001-02-23 17:55:21 +00001844 if (xmlInputCallbackNr >= MAX_INPUT_CALLBACK) {
1845 return(-1);
1846 }
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001847 xmlInputCallbackTable[xmlInputCallbackNr].matchcallback = matchFunc;
1848 xmlInputCallbackTable[xmlInputCallbackNr].opencallback = openFunc;
1849 xmlInputCallbackTable[xmlInputCallbackNr].readcallback = readFunc;
1850 xmlInputCallbackTable[xmlInputCallbackNr].closecallback = closeFunc;
Daniel Veillard9ec26532003-09-23 07:43:19 +00001851 xmlInputCallbackInitialized = 1;
Owen Taylor3473f882001-02-23 17:55:21 +00001852 return(xmlInputCallbackNr++);
1853}
1854
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001855#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001856/**
1857 * xmlRegisterOutputCallbacks:
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001858 * @matchFunc: the xmlOutputMatchCallback
1859 * @openFunc: the xmlOutputOpenCallback
1860 * @writeFunc: the xmlOutputWriteCallback
1861 * @closeFunc: the xmlOutputCloseCallback
Owen Taylor3473f882001-02-23 17:55:21 +00001862 *
1863 * Register a new set of I/O callback for handling output.
1864 *
1865 * Returns the registered handler number or -1 in case of error
1866 */
1867int
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001868xmlRegisterOutputCallbacks(xmlOutputMatchCallback matchFunc,
1869 xmlOutputOpenCallback openFunc, xmlOutputWriteCallback writeFunc,
1870 xmlOutputCloseCallback closeFunc) {
Owen Taylor3473f882001-02-23 17:55:21 +00001871 if (xmlOutputCallbackNr >= MAX_INPUT_CALLBACK) {
1872 return(-1);
1873 }
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001874 xmlOutputCallbackTable[xmlOutputCallbackNr].matchcallback = matchFunc;
1875 xmlOutputCallbackTable[xmlOutputCallbackNr].opencallback = openFunc;
1876 xmlOutputCallbackTable[xmlOutputCallbackNr].writecallback = writeFunc;
1877 xmlOutputCallbackTable[xmlOutputCallbackNr].closecallback = closeFunc;
Daniel Veillard9ec26532003-09-23 07:43:19 +00001878 xmlOutputCallbackInitialized = 1;
Owen Taylor3473f882001-02-23 17:55:21 +00001879 return(xmlOutputCallbackNr++);
1880}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001881#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001882
1883/**
1884 * xmlRegisterDefaultInputCallbacks:
1885 *
1886 * Registers the default compiled-in I/O handlers.
1887 */
1888void
Owen Taylor3473f882001-02-23 17:55:21 +00001889xmlRegisterDefaultInputCallbacks
Owen Taylor3473f882001-02-23 17:55:21 +00001890(void) {
1891 if (xmlInputCallbackInitialized)
1892 return;
1893
1894 xmlRegisterInputCallbacks(xmlFileMatch, xmlFileOpen,
1895 xmlFileRead, xmlFileClose);
1896#ifdef HAVE_ZLIB_H
1897 xmlRegisterInputCallbacks(xmlGzfileMatch, xmlGzfileOpen,
1898 xmlGzfileRead, xmlGzfileClose);
1899#endif /* HAVE_ZLIB_H */
1900
1901#ifdef LIBXML_HTTP_ENABLED
1902 xmlRegisterInputCallbacks(xmlIOHTTPMatch, xmlIOHTTPOpen,
1903 xmlIOHTTPRead, xmlIOHTTPClose);
1904#endif /* LIBXML_HTTP_ENABLED */
1905
1906#ifdef LIBXML_FTP_ENABLED
1907 xmlRegisterInputCallbacks(xmlIOFTPMatch, xmlIOFTPOpen,
1908 xmlIOFTPRead, xmlIOFTPClose);
1909#endif /* LIBXML_FTP_ENABLED */
1910 xmlInputCallbackInitialized = 1;
1911}
1912
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001913#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001914/**
1915 * xmlRegisterDefaultOutputCallbacks:
1916 *
1917 * Registers the default compiled-in I/O handlers.
1918 */
1919void
Owen Taylor3473f882001-02-23 17:55:21 +00001920xmlRegisterDefaultOutputCallbacks
Owen Taylor3473f882001-02-23 17:55:21 +00001921(void) {
1922 if (xmlOutputCallbackInitialized)
1923 return;
1924
1925 xmlRegisterOutputCallbacks(xmlFileMatch, xmlFileOpenW,
1926 xmlFileWrite, xmlFileClose);
Daniel Veillardf012a642001-07-23 19:10:52 +00001927
1928#ifdef LIBXML_HTTP_ENABLED
1929 xmlRegisterOutputCallbacks(xmlIOHTTPMatch, xmlIOHTTPDfltOpenW,
1930 xmlIOHTTPWrite, xmlIOHTTPClosePut);
1931#endif
1932
Owen Taylor3473f882001-02-23 17:55:21 +00001933/*********************************
1934 No way a-priori to distinguish between gzipped files from
1935 uncompressed ones except opening if existing then closing
1936 and saving with same compression ratio ... a pain.
1937
1938#ifdef HAVE_ZLIB_H
1939 xmlRegisterOutputCallbacks(xmlGzfileMatch, xmlGzfileOpen,
1940 xmlGzfileWrite, xmlGzfileClose);
1941#endif
Owen Taylor3473f882001-02-23 17:55:21 +00001942
1943 Nor FTP PUT ....
1944#ifdef LIBXML_FTP_ENABLED
1945 xmlRegisterOutputCallbacks(xmlIOFTPMatch, xmlIOFTPOpen,
1946 xmlIOFTPWrite, xmlIOFTPClose);
1947#endif
1948 **********************************/
1949 xmlOutputCallbackInitialized = 1;
1950}
1951
Daniel Veillardf012a642001-07-23 19:10:52 +00001952#ifdef LIBXML_HTTP_ENABLED
1953/**
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001954 * xmlRegisterHTTPPostCallbacks:
Daniel Veillardf012a642001-07-23 19:10:52 +00001955 *
1956 * By default, libxml submits HTTP output requests using the "PUT" method.
1957 * Calling this method changes the HTTP output method to use the "POST"
1958 * method instead.
1959 *
1960 */
1961void
1962xmlRegisterHTTPPostCallbacks( void ) {
1963
1964 /* Register defaults if not done previously */
1965
1966 if ( xmlOutputCallbackInitialized == 0 )
1967 xmlRegisterDefaultOutputCallbacks( );
1968
1969 xmlRegisterOutputCallbacks(xmlIOHTTPMatch, xmlIOHTTPDfltOpenW,
1970 xmlIOHTTPWrite, xmlIOHTTPClosePost);
1971 return;
1972}
1973#endif
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001974#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardf012a642001-07-23 19:10:52 +00001975
Owen Taylor3473f882001-02-23 17:55:21 +00001976/**
1977 * xmlAllocParserInputBuffer:
1978 * @enc: the charset encoding if known
1979 *
1980 * Create a buffered parser input for progressive parsing
1981 *
1982 * Returns the new parser input or NULL
1983 */
1984xmlParserInputBufferPtr
1985xmlAllocParserInputBuffer(xmlCharEncoding enc) {
1986 xmlParserInputBufferPtr ret;
1987
1988 ret = (xmlParserInputBufferPtr) xmlMalloc(sizeof(xmlParserInputBuffer));
1989 if (ret == NULL) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00001990 xmlIOErrMemory("creating input buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00001991 return(NULL);
1992 }
1993 memset(ret, 0, (size_t) sizeof(xmlParserInputBuffer));
Daniel Veillard6155d8a2003-08-19 15:01:28 +00001994 ret->buffer = xmlBufferCreateSize(2 * xmlDefaultBufferSize);
Owen Taylor3473f882001-02-23 17:55:21 +00001995 if (ret->buffer == NULL) {
1996 xmlFree(ret);
1997 return(NULL);
1998 }
1999 ret->buffer->alloc = XML_BUFFER_ALLOC_DOUBLEIT;
2000 ret->encoder = xmlGetCharEncodingHandler(enc);
2001 if (ret->encoder != NULL)
Daniel Veillard6155d8a2003-08-19 15:01:28 +00002002 ret->raw = xmlBufferCreateSize(2 * xmlDefaultBufferSize);
Owen Taylor3473f882001-02-23 17:55:21 +00002003 else
2004 ret->raw = NULL;
2005 ret->readcallback = NULL;
2006 ret->closecallback = NULL;
2007 ret->context = NULL;
William M. Brackc07329e2003-09-08 01:57:30 +00002008 ret->compressed = -1;
Daniel Veillard36711902004-02-11 13:25:26 +00002009 ret->rawconsumed = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00002010
2011 return(ret);
2012}
2013
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002014#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002015/**
2016 * xmlAllocOutputBuffer:
2017 * @encoder: the encoding converter or NULL
2018 *
2019 * Create a buffered parser output
2020 *
2021 * Returns the new parser output or NULL
2022 */
2023xmlOutputBufferPtr
2024xmlAllocOutputBuffer(xmlCharEncodingHandlerPtr encoder) {
2025 xmlOutputBufferPtr ret;
2026
2027 ret = (xmlOutputBufferPtr) xmlMalloc(sizeof(xmlOutputBuffer));
2028 if (ret == NULL) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002029 xmlIOErrMemory("creating output buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00002030 return(NULL);
2031 }
2032 memset(ret, 0, (size_t) sizeof(xmlOutputBuffer));
2033 ret->buffer = xmlBufferCreate();
2034 if (ret->buffer == NULL) {
2035 xmlFree(ret);
2036 return(NULL);
2037 }
2038 ret->buffer->alloc = XML_BUFFER_ALLOC_DOUBLEIT;
2039 ret->encoder = encoder;
2040 if (encoder != NULL) {
2041 ret->conv = xmlBufferCreateSize(4000);
2042 /*
2043 * This call is designed to initiate the encoder state
2044 */
2045 xmlCharEncOutFunc(encoder, ret->conv, NULL);
2046 } else
2047 ret->conv = NULL;
2048 ret->writecallback = NULL;
2049 ret->closecallback = NULL;
2050 ret->context = NULL;
2051 ret->written = 0;
2052
2053 return(ret);
2054}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002055#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002056
2057/**
2058 * xmlFreeParserInputBuffer:
2059 * @in: a buffered parser input
2060 *
2061 * Free up the memory used by a buffered parser input
2062 */
2063void
2064xmlFreeParserInputBuffer(xmlParserInputBufferPtr in) {
Daniel Veillard8d8bf2c2003-09-17 19:36:25 +00002065 if (in == NULL) return;
2066
Owen Taylor3473f882001-02-23 17:55:21 +00002067 if (in->raw) {
2068 xmlBufferFree(in->raw);
2069 in->raw = NULL;
2070 }
2071 if (in->encoder != NULL) {
2072 xmlCharEncCloseFunc(in->encoder);
2073 }
2074 if (in->closecallback != NULL) {
2075 in->closecallback(in->context);
2076 }
2077 if (in->buffer != NULL) {
2078 xmlBufferFree(in->buffer);
2079 in->buffer = NULL;
2080 }
2081
Owen Taylor3473f882001-02-23 17:55:21 +00002082 xmlFree(in);
2083}
2084
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002085#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002086/**
2087 * xmlOutputBufferClose:
2088 * @out: a buffered output
2089 *
2090 * flushes and close the output I/O channel
2091 * and free up all the associated resources
2092 *
2093 * Returns the number of byte written or -1 in case of error.
2094 */
2095int
Daniel Veillard828ce832003-10-08 19:19:10 +00002096xmlOutputBufferClose(xmlOutputBufferPtr out)
2097{
Owen Taylor3473f882001-02-23 17:55:21 +00002098 int written;
Daniel Veillardf012a642001-07-23 19:10:52 +00002099 int err_rc = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00002100
2101 if (out == NULL)
Daniel Veillard828ce832003-10-08 19:19:10 +00002102 return (-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002103 if (out->writecallback != NULL)
Daniel Veillard828ce832003-10-08 19:19:10 +00002104 xmlOutputBufferFlush(out);
Owen Taylor3473f882001-02-23 17:55:21 +00002105 if (out->closecallback != NULL) {
Daniel Veillard828ce832003-10-08 19:19:10 +00002106 err_rc = out->closecallback(out->context);
Owen Taylor3473f882001-02-23 17:55:21 +00002107 }
2108 written = out->written;
2109 if (out->conv) {
2110 xmlBufferFree(out->conv);
Daniel Veillard828ce832003-10-08 19:19:10 +00002111 out->conv = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00002112 }
2113 if (out->encoder != NULL) {
2114 xmlCharEncCloseFunc(out->encoder);
2115 }
2116 if (out->buffer != NULL) {
2117 xmlBufferFree(out->buffer);
Daniel Veillard828ce832003-10-08 19:19:10 +00002118 out->buffer = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00002119 }
2120
Daniel Veillard828ce832003-10-08 19:19:10 +00002121 if (out->error)
2122 err_rc = -1;
Owen Taylor3473f882001-02-23 17:55:21 +00002123 xmlFree(out);
Daniel Veillard828ce832003-10-08 19:19:10 +00002124 return ((err_rc == 0) ? written : err_rc);
Owen Taylor3473f882001-02-23 17:55:21 +00002125}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002126#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002127
Daniel Veillard0335a842004-06-02 16:18:40 +00002128static xmlParserInputBufferPtr
2129__xmlParserInputBufferCreateFilename(const char *URI, xmlCharEncoding enc) {
Owen Taylor3473f882001-02-23 17:55:21 +00002130 xmlParserInputBufferPtr ret;
Daniel Veillard388236f2001-07-08 18:35:48 +00002131 int i = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00002132 void *context = NULL;
2133
2134 if (xmlInputCallbackInitialized == 0)
2135 xmlRegisterDefaultInputCallbacks();
2136
2137 if (URI == NULL) return(NULL);
2138
2139 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002140 * Try to find one of the input accept method accepting that scheme
Owen Taylor3473f882001-02-23 17:55:21 +00002141 * Go in reverse to give precedence to user defined handlers.
Daniel Veillard388236f2001-07-08 18:35:48 +00002142 */
2143 if (context == NULL) {
2144 for (i = xmlInputCallbackNr - 1;i >= 0;i--) {
2145 if ((xmlInputCallbackTable[i].matchcallback != NULL) &&
2146 (xmlInputCallbackTable[i].matchcallback(URI) != 0)) {
Igor Zlatkovic5f9fada2003-02-19 14:51:00 +00002147 context = xmlInputCallbackTable[i].opencallback(URI);
Daniel Veillard847332a2003-10-18 11:29:40 +00002148 if (context != NULL) {
Daniel Veillard388236f2001-07-08 18:35:48 +00002149 break;
Daniel Veillard847332a2003-10-18 11:29:40 +00002150 }
Daniel Veillard388236f2001-07-08 18:35:48 +00002151 }
Owen Taylor3473f882001-02-23 17:55:21 +00002152 }
2153 }
2154 if (context == NULL) {
2155 return(NULL);
2156 }
2157
2158 /*
2159 * Allocate the Input buffer front-end.
2160 */
2161 ret = xmlAllocParserInputBuffer(enc);
2162 if (ret != NULL) {
2163 ret->context = context;
2164 ret->readcallback = xmlInputCallbackTable[i].readcallback;
2165 ret->closecallback = xmlInputCallbackTable[i].closecallback;
William M. Brackc07329e2003-09-08 01:57:30 +00002166#ifdef HAVE_ZLIB_H
William M. Brackc5cbf992003-10-29 22:15:13 +00002167 if ((xmlInputCallbackTable[i].opencallback == xmlGzfileOpen) &&
2168 (strcmp(URI, "-") != 0)) {
William M. Brackc07329e2003-09-08 01:57:30 +00002169 if (((z_stream *)context)->avail_in > 4) {
2170 char *cptr, buff4[4];
Daniel Veillard07cb8222003-09-10 10:51:05 +00002171 cptr = (char *) ((z_stream *)context)->next_in;
William M. Brackc07329e2003-09-08 01:57:30 +00002172 if (gzread(context, buff4, 4) == 4) {
2173 if (strncmp(buff4, cptr, 4) == 0)
2174 ret->compressed = 0;
2175 else
2176 ret->compressed = 1;
2177 gzrewind(context);
2178 }
2179 }
2180 }
2181#endif
Owen Taylor3473f882001-02-23 17:55:21 +00002182 }
2183 return(ret);
2184}
2185
2186/**
Daniel Veillard0335a842004-06-02 16:18:40 +00002187 * xmlParserInputBufferCreateFilename:
Owen Taylor3473f882001-02-23 17:55:21 +00002188 * @URI: a C string containing the URI or filename
Daniel Veillard0335a842004-06-02 16:18:40 +00002189 * @enc: the charset encoding if known
Owen Taylor3473f882001-02-23 17:55:21 +00002190 *
Daniel Veillard0335a842004-06-02 16:18:40 +00002191 * Create a buffered parser input for the progressive parsing of a file
2192 * If filename is "-' then we use stdin as the input.
Owen Taylor3473f882001-02-23 17:55:21 +00002193 * Automatic support for ZLIB/Compress compressed document is provided
2194 * by default if found at compile-time.
Daniel Veillard0335a842004-06-02 16:18:40 +00002195 * Do an encoding check if enc == XML_CHAR_ENCODING_NONE
Owen Taylor3473f882001-02-23 17:55:21 +00002196 *
Daniel Veillard0335a842004-06-02 16:18:40 +00002197 * Returns the new parser input or NULL
Owen Taylor3473f882001-02-23 17:55:21 +00002198 */
Daniel Veillard0335a842004-06-02 16:18:40 +00002199xmlParserInputBufferPtr
2200xmlParserInputBufferCreateFilename(const char *URI, xmlCharEncoding enc) {
2201 if ((xmlParserInputBufferCreateFilenameValue)) {
2202 return xmlParserInputBufferCreateFilenameValue(URI, enc);
2203 }
2204 return __xmlParserInputBufferCreateFilename(URI, enc);
2205}
2206
2207#ifdef LIBXML_OUTPUT_ENABLED
2208static xmlOutputBufferPtr
2209__xmlOutputBufferCreateFilename(const char *URI,
Owen Taylor3473f882001-02-23 17:55:21 +00002210 xmlCharEncodingHandlerPtr encoder,
Daniel Veillard0335a842004-06-02 16:18:40 +00002211 int compression ATTRIBUTE_UNUSED) {
Owen Taylor3473f882001-02-23 17:55:21 +00002212 xmlOutputBufferPtr ret;
Daniel Veillard966a31e2004-05-09 02:58:44 +00002213 xmlURIPtr puri;
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002214 int i = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00002215 void *context = NULL;
Daniel Veillard966a31e2004-05-09 02:58:44 +00002216 char *unescaped = NULL;
2217 int is_file_uri = 1;
Daniel Veillardf012a642001-07-23 19:10:52 +00002218
Owen Taylor3473f882001-02-23 17:55:21 +00002219 if (xmlOutputCallbackInitialized == 0)
2220 xmlRegisterDefaultOutputCallbacks();
2221
2222 if (URI == NULL) return(NULL);
2223
Daniel Veillard966a31e2004-05-09 02:58:44 +00002224 puri = xmlParseURI(URI);
2225 if (puri != NULL) {
Daniel Veillard18a65092004-05-11 15:57:42 +00002226 if ((puri->scheme != NULL) &&
2227 (!xmlStrEqual(BAD_CAST puri->scheme, BAD_CAST "file")))
Daniel Veillard966a31e2004-05-09 02:58:44 +00002228 is_file_uri = 0;
2229 /*
2230 * try to limit the damages of the URI unescaping code.
2231 */
2232 if (puri->scheme != NULL)
2233 unescaped = xmlURIUnescapeString(URI, 0, NULL);
2234 xmlFreeURI(puri);
2235 }
Owen Taylor3473f882001-02-23 17:55:21 +00002236
2237 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002238 * Try to find one of the output accept method accepting that scheme
Owen Taylor3473f882001-02-23 17:55:21 +00002239 * Go in reverse to give precedence to user defined handlers.
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002240 * try with an unescaped version of the URI
Owen Taylor3473f882001-02-23 17:55:21 +00002241 */
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002242 if (unescaped != NULL) {
2243#ifdef HAVE_ZLIB_H
Daniel Veillard966a31e2004-05-09 02:58:44 +00002244 if ((compression > 0) && (compression <= 9) && (is_file_uri == 1)) {
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002245 context = xmlGzfileOpenW(unescaped, compression);
2246 if (context != NULL) {
2247 ret = xmlAllocOutputBuffer(encoder);
2248 if (ret != NULL) {
2249 ret->context = context;
2250 ret->writecallback = xmlGzfileWrite;
2251 ret->closecallback = xmlGzfileClose;
2252 }
2253 xmlFree(unescaped);
2254 return(ret);
2255 }
2256 }
Daniel Veillardf012a642001-07-23 19:10:52 +00002257#endif
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002258 for (i = xmlOutputCallbackNr - 1;i >= 0;i--) {
2259 if ((xmlOutputCallbackTable[i].matchcallback != NULL) &&
2260 (xmlOutputCallbackTable[i].matchcallback(unescaped) != 0)) {
2261#if defined(LIBXML_HTTP_ENABLED) && defined(HAVE_ZLIB_H)
2262 /* Need to pass compression parameter into HTTP open calls */
2263 if (xmlOutputCallbackTable[i].matchcallback == xmlIOHTTPMatch)
2264 context = xmlIOHTTPOpenW(unescaped, compression);
2265 else
2266#endif
2267 context = xmlOutputCallbackTable[i].opencallback(unescaped);
2268 if (context != NULL)
2269 break;
2270 }
2271 }
2272 xmlFree(unescaped);
2273 }
Daniel Veillardf012a642001-07-23 19:10:52 +00002274
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002275 /*
2276 * If this failed try with a non-escaped URI this may be a strange
2277 * filename
2278 */
2279 if (context == NULL) {
2280#ifdef HAVE_ZLIB_H
Daniel Veillard966a31e2004-05-09 02:58:44 +00002281 if ((compression > 0) && (compression <= 9) && (is_file_uri == 1)) {
Igor Zlatkovic5f9fada2003-02-19 14:51:00 +00002282 context = xmlGzfileOpenW(URI, compression);
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002283 if (context != NULL) {
2284 ret = xmlAllocOutputBuffer(encoder);
2285 if (ret != NULL) {
2286 ret->context = context;
2287 ret->writecallback = xmlGzfileWrite;
2288 ret->closecallback = xmlGzfileClose;
2289 }
2290 return(ret);
2291 }
2292 }
2293#endif
2294 for (i = xmlOutputCallbackNr - 1;i >= 0;i--) {
2295 if ((xmlOutputCallbackTable[i].matchcallback != NULL) &&
Igor Zlatkovic5f9fada2003-02-19 14:51:00 +00002296 (xmlOutputCallbackTable[i].matchcallback(URI) != 0)) {
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00002297#if defined(LIBXML_HTTP_ENABLED) && defined(HAVE_ZLIB_H)
2298 /* Need to pass compression parameter into HTTP open calls */
2299 if (xmlOutputCallbackTable[i].matchcallback == xmlIOHTTPMatch)
2300 context = xmlIOHTTPOpenW(URI, compression);
2301 else
2302#endif
2303 context = xmlOutputCallbackTable[i].opencallback(URI);
2304 if (context != NULL)
2305 break;
2306 }
Owen Taylor3473f882001-02-23 17:55:21 +00002307 }
2308 }
Daniel Veillardf012a642001-07-23 19:10:52 +00002309
Owen Taylor3473f882001-02-23 17:55:21 +00002310 if (context == NULL) {
2311 return(NULL);
2312 }
2313
2314 /*
2315 * Allocate the Output buffer front-end.
2316 */
2317 ret = xmlAllocOutputBuffer(encoder);
2318 if (ret != NULL) {
2319 ret->context = context;
2320 ret->writecallback = xmlOutputCallbackTable[i].writecallback;
2321 ret->closecallback = xmlOutputCallbackTable[i].closecallback;
2322 }
2323 return(ret);
2324}
Daniel Veillard0335a842004-06-02 16:18:40 +00002325
2326/**
2327 * xmlOutputBufferCreateFilename:
2328 * @URI: a C string containing the URI or filename
2329 * @encoder: the encoding converter or NULL
2330 * @compression: the compression ration (0 none, 9 max).
2331 *
2332 * Create a buffered output for the progressive saving of a file
2333 * If filename is "-' then we use stdout as the output.
2334 * Automatic support for ZLIB/Compress compressed document is provided
2335 * by default if found at compile-time.
2336 * TODO: currently if compression is set, the library only support
2337 * writing to a local file.
2338 *
2339 * Returns the new output or NULL
2340 */
2341xmlOutputBufferPtr
2342xmlOutputBufferCreateFilename(const char *URI,
2343 xmlCharEncodingHandlerPtr encoder,
2344 int compression ATTRIBUTE_UNUSED) {
2345 if ((xmlOutputBufferCreateFilenameValue)) {
2346 return xmlOutputBufferCreateFilenameValue(URI, encoder, compression);
2347 }
2348 return __xmlOutputBufferCreateFilename(URI, encoder, compression);
2349}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002350#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002351
2352/**
2353 * xmlParserInputBufferCreateFile:
2354 * @file: a FILE*
2355 * @enc: the charset encoding if known
2356 *
2357 * Create a buffered parser input for the progressive parsing of a FILE *
2358 * buffered C I/O
2359 *
2360 * Returns the new parser input or NULL
2361 */
2362xmlParserInputBufferPtr
2363xmlParserInputBufferCreateFile(FILE *file, xmlCharEncoding enc) {
2364 xmlParserInputBufferPtr ret;
2365
2366 if (xmlInputCallbackInitialized == 0)
2367 xmlRegisterDefaultInputCallbacks();
2368
2369 if (file == NULL) return(NULL);
2370
2371 ret = xmlAllocParserInputBuffer(enc);
2372 if (ret != NULL) {
2373 ret->context = file;
2374 ret->readcallback = xmlFileRead;
2375 ret->closecallback = xmlFileFlush;
2376 }
2377
2378 return(ret);
2379}
2380
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002381#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002382/**
2383 * xmlOutputBufferCreateFile:
2384 * @file: a FILE*
2385 * @encoder: the encoding converter or NULL
2386 *
2387 * Create a buffered output for the progressive saving to a FILE *
2388 * buffered C I/O
2389 *
2390 * Returns the new parser output or NULL
2391 */
2392xmlOutputBufferPtr
2393xmlOutputBufferCreateFile(FILE *file, xmlCharEncodingHandlerPtr encoder) {
2394 xmlOutputBufferPtr ret;
2395
2396 if (xmlOutputCallbackInitialized == 0)
2397 xmlRegisterDefaultOutputCallbacks();
2398
2399 if (file == NULL) return(NULL);
2400
2401 ret = xmlAllocOutputBuffer(encoder);
2402 if (ret != NULL) {
2403 ret->context = file;
2404 ret->writecallback = xmlFileWrite;
2405 ret->closecallback = xmlFileFlush;
2406 }
2407
2408 return(ret);
2409}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002410#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002411
2412/**
2413 * xmlParserInputBufferCreateFd:
2414 * @fd: a file descriptor number
2415 * @enc: the charset encoding if known
2416 *
2417 * Create a buffered parser input for the progressive parsing for the input
2418 * from a file descriptor
2419 *
2420 * Returns the new parser input or NULL
2421 */
2422xmlParserInputBufferPtr
2423xmlParserInputBufferCreateFd(int fd, xmlCharEncoding enc) {
2424 xmlParserInputBufferPtr ret;
2425
2426 if (fd < 0) return(NULL);
2427
2428 ret = xmlAllocParserInputBuffer(enc);
2429 if (ret != NULL) {
Daniel Veillard8fcc4942001-07-17 20:07:33 +00002430 ret->context = (void *) (long) fd;
Owen Taylor3473f882001-02-23 17:55:21 +00002431 ret->readcallback = xmlFdRead;
2432 ret->closecallback = xmlFdClose;
2433 }
2434
2435 return(ret);
2436}
2437
2438/**
2439 * xmlParserInputBufferCreateMem:
2440 * @mem: the memory input
2441 * @size: the length of the memory block
2442 * @enc: the charset encoding if known
2443 *
2444 * Create a buffered parser input for the progressive parsing for the input
2445 * from a memory area.
2446 *
2447 * Returns the new parser input or NULL
2448 */
2449xmlParserInputBufferPtr
2450xmlParserInputBufferCreateMem(const char *mem, int size, xmlCharEncoding enc) {
2451 xmlParserInputBufferPtr ret;
2452
2453 if (size <= 0) return(NULL);
2454 if (mem == NULL) return(NULL);
2455
2456 ret = xmlAllocParserInputBuffer(enc);
2457 if (ret != NULL) {
2458 ret->context = (void *) mem;
2459 ret->readcallback = (xmlInputReadCallback) xmlNop;
2460 ret->closecallback = NULL;
2461 xmlBufferAdd(ret->buffer, (const xmlChar *) mem, size);
2462 }
2463
2464 return(ret);
2465}
2466
2467/**
Daniel Veillard53350552003-09-18 13:35:51 +00002468 * xmlParserInputBufferCreateStatic:
2469 * @mem: the memory input
2470 * @size: the length of the memory block
2471 * @enc: the charset encoding if known
2472 *
2473 * Create a buffered parser input for the progressive parsing for the input
2474 * from an immutable memory area. This will not copy the memory area to
2475 * the buffer, but the memory is expected to be available until the end of
2476 * the parsing, this is useful for example when using mmap'ed file.
2477 *
2478 * Returns the new parser input or NULL
2479 */
2480xmlParserInputBufferPtr
2481xmlParserInputBufferCreateStatic(const char *mem, int size,
2482 xmlCharEncoding enc) {
2483 xmlParserInputBufferPtr ret;
2484
2485 if (size <= 0) return(NULL);
2486 if (mem == NULL) return(NULL);
2487
2488 ret = (xmlParserInputBufferPtr) xmlMalloc(sizeof(xmlParserInputBuffer));
2489 if (ret == NULL) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002490 xmlIOErrMemory("creating input buffer");
Daniel Veillard53350552003-09-18 13:35:51 +00002491 return(NULL);
2492 }
2493 memset(ret, 0, (size_t) sizeof(xmlParserInputBuffer));
Daniel Veillarde72c5082003-09-19 12:44:05 +00002494 ret->buffer = xmlBufferCreateStatic((void *)mem, (size_t) size);
Daniel Veillard53350552003-09-18 13:35:51 +00002495 if (ret->buffer == NULL) {
2496 xmlFree(ret);
2497 return(NULL);
2498 }
2499 ret->encoder = xmlGetCharEncodingHandler(enc);
2500 if (ret->encoder != NULL)
2501 ret->raw = xmlBufferCreateSize(2 * xmlDefaultBufferSize);
2502 else
2503 ret->raw = NULL;
2504 ret->compressed = -1;
2505 ret->context = (void *) mem;
2506 ret->readcallback = NULL;
2507 ret->closecallback = NULL;
2508
2509 return(ret);
2510}
2511
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002512#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillard53350552003-09-18 13:35:51 +00002513/**
Owen Taylor3473f882001-02-23 17:55:21 +00002514 * xmlOutputBufferCreateFd:
2515 * @fd: a file descriptor number
2516 * @encoder: the encoding converter or NULL
2517 *
2518 * Create a buffered output for the progressive saving
2519 * to a file descriptor
2520 *
2521 * Returns the new parser output or NULL
2522 */
2523xmlOutputBufferPtr
2524xmlOutputBufferCreateFd(int fd, xmlCharEncodingHandlerPtr encoder) {
2525 xmlOutputBufferPtr ret;
2526
2527 if (fd < 0) return(NULL);
2528
2529 ret = xmlAllocOutputBuffer(encoder);
2530 if (ret != NULL) {
Daniel Veillard8fcc4942001-07-17 20:07:33 +00002531 ret->context = (void *) (long) fd;
Owen Taylor3473f882001-02-23 17:55:21 +00002532 ret->writecallback = xmlFdWrite;
Daniel Veillard7db38712002-02-07 16:39:11 +00002533 ret->closecallback = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00002534 }
2535
2536 return(ret);
2537}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002538#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002539
2540/**
2541 * xmlParserInputBufferCreateIO:
2542 * @ioread: an I/O read function
2543 * @ioclose: an I/O close function
2544 * @ioctx: an I/O handler
2545 * @enc: the charset encoding if known
2546 *
2547 * Create a buffered parser input for the progressive parsing for the input
2548 * from an I/O handler
2549 *
2550 * Returns the new parser input or NULL
2551 */
2552xmlParserInputBufferPtr
2553xmlParserInputBufferCreateIO(xmlInputReadCallback ioread,
2554 xmlInputCloseCallback ioclose, void *ioctx, xmlCharEncoding enc) {
2555 xmlParserInputBufferPtr ret;
2556
2557 if (ioread == NULL) return(NULL);
2558
2559 ret = xmlAllocParserInputBuffer(enc);
2560 if (ret != NULL) {
2561 ret->context = (void *) ioctx;
2562 ret->readcallback = ioread;
2563 ret->closecallback = ioclose;
2564 }
2565
2566 return(ret);
2567}
2568
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002569#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002570/**
2571 * xmlOutputBufferCreateIO:
2572 * @iowrite: an I/O write function
2573 * @ioclose: an I/O close function
2574 * @ioctx: an I/O handler
Daniel Veillard9d06d302002-01-22 18:15:52 +00002575 * @encoder: the charset encoding if known
Owen Taylor3473f882001-02-23 17:55:21 +00002576 *
2577 * Create a buffered output for the progressive saving
2578 * to an I/O handler
2579 *
2580 * Returns the new parser output or NULL
2581 */
2582xmlOutputBufferPtr
2583xmlOutputBufferCreateIO(xmlOutputWriteCallback iowrite,
2584 xmlOutputCloseCallback ioclose, void *ioctx,
2585 xmlCharEncodingHandlerPtr encoder) {
2586 xmlOutputBufferPtr ret;
2587
2588 if (iowrite == NULL) return(NULL);
2589
2590 ret = xmlAllocOutputBuffer(encoder);
2591 if (ret != NULL) {
2592 ret->context = (void *) ioctx;
2593 ret->writecallback = iowrite;
2594 ret->closecallback = ioclose;
2595 }
2596
2597 return(ret);
2598}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002599#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002600
2601/**
2602 * xmlParserInputBufferPush:
2603 * @in: a buffered parser input
2604 * @len: the size in bytes of the array.
2605 * @buf: an char array
2606 *
2607 * Push the content of the arry in the input buffer
2608 * This routine handle the I18N transcoding to internal UTF-8
2609 * This is used when operating the parser in progressive (push) mode.
2610 *
2611 * Returns the number of chars read and stored in the buffer, or -1
2612 * in case of error.
2613 */
2614int
2615xmlParserInputBufferPush(xmlParserInputBufferPtr in,
2616 int len, const char *buf) {
2617 int nbchars = 0;
2618
2619 if (len < 0) return(0);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002620 if ((in == NULL) || (in->error)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002621 if (in->encoder != NULL) {
Daniel Veillard36711902004-02-11 13:25:26 +00002622 unsigned int use;
2623
Owen Taylor3473f882001-02-23 17:55:21 +00002624 /*
2625 * Store the data in the incoming raw buffer
2626 */
2627 if (in->raw == NULL) {
2628 in->raw = xmlBufferCreate();
2629 }
2630 xmlBufferAdd(in->raw, (const xmlChar *) buf, len);
2631
2632 /*
2633 * convert as much as possible to the parser reading buffer.
2634 */
Daniel Veillard36711902004-02-11 13:25:26 +00002635 use = in->raw->use;
Owen Taylor3473f882001-02-23 17:55:21 +00002636 nbchars = xmlCharEncInFunc(in->encoder, in->buffer, in->raw);
2637 if (nbchars < 0) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002638 xmlIOErr(XML_IO_ENCODER, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002639 in->error = XML_IO_ENCODER;
Owen Taylor3473f882001-02-23 17:55:21 +00002640 return(-1);
2641 }
Daniel Veillard36711902004-02-11 13:25:26 +00002642 in->rawconsumed += (use - in->raw->use);
Owen Taylor3473f882001-02-23 17:55:21 +00002643 } else {
2644 nbchars = len;
2645 xmlBufferAdd(in->buffer, (xmlChar *) buf, nbchars);
2646 }
2647#ifdef DEBUG_INPUT
2648 xmlGenericError(xmlGenericErrorContext,
2649 "I/O: pushed %d chars, buffer %d/%d\n",
2650 nbchars, in->buffer->use, in->buffer->size);
2651#endif
2652 return(nbchars);
2653}
2654
2655/**
Daniel Veillardddffd2a2002-03-05 20:28:20 +00002656 * endOfInput:
2657 *
2658 * When reading from an Input channel indicated end of file or error
2659 * don't reread from it again.
2660 */
2661static int
2662endOfInput (void * context ATTRIBUTE_UNUSED,
2663 char * buffer ATTRIBUTE_UNUSED,
2664 int len ATTRIBUTE_UNUSED) {
2665 return(0);
2666}
2667
2668/**
Owen Taylor3473f882001-02-23 17:55:21 +00002669 * xmlParserInputBufferGrow:
2670 * @in: a buffered parser input
2671 * @len: indicative value of the amount of chars to read
2672 *
2673 * Grow up the content of the input buffer, the old data are preserved
2674 * This routine handle the I18N transcoding to internal UTF-8
2675 * This routine is used when operating the parser in normal (pull) mode
2676 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002677 * TODO: one should be able to remove one extra copy by copying directly
Owen Taylor3473f882001-02-23 17:55:21 +00002678 * onto in->buffer or in->raw
2679 *
2680 * Returns the number of chars read and stored in the buffer, or -1
2681 * in case of error.
2682 */
2683int
2684xmlParserInputBufferGrow(xmlParserInputBufferPtr in, int len) {
2685 char *buffer = NULL;
2686 int res = 0;
2687 int nbchars = 0;
2688 int buffree;
Daniel Veillard9e412302002-06-10 15:59:44 +00002689 unsigned int needSize;
Owen Taylor3473f882001-02-23 17:55:21 +00002690
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002691 if ((in == NULL) || (in->error)) return(-1);
Daniel Veillard6155d8a2003-08-19 15:01:28 +00002692 if ((len <= MINLEN) && (len != 4))
Owen Taylor3473f882001-02-23 17:55:21 +00002693 len = MINLEN;
Daniel Veillard6155d8a2003-08-19 15:01:28 +00002694
Owen Taylor3473f882001-02-23 17:55:21 +00002695 buffree = in->buffer->size - in->buffer->use;
2696 if (buffree <= 0) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002697 xmlIOErr(XML_IO_BUFFER_FULL, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002698 in->error = XML_IO_BUFFER_FULL;
Owen Taylor3473f882001-02-23 17:55:21 +00002699 return(0);
2700 }
Owen Taylor3473f882001-02-23 17:55:21 +00002701
Daniel Veillarde5354492002-05-16 08:43:22 +00002702 needSize = in->buffer->use + len + 1;
2703 if (needSize > in->buffer->size){
2704 if (!xmlBufferResize(in->buffer, needSize)){
Daniel Veillard05d987b2003-10-08 11:54:57 +00002705 xmlIOErrMemory("growing input buffer");
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002706 in->error = XML_ERR_NO_MEMORY;
Daniel Veillarde5354492002-05-16 08:43:22 +00002707 return(0);
2708 }
Owen Taylor3473f882001-02-23 17:55:21 +00002709 }
Daniel Veillarde5354492002-05-16 08:43:22 +00002710 buffer = (char *)&in->buffer->content[in->buffer->use];
Owen Taylor3473f882001-02-23 17:55:21 +00002711
2712 /*
2713 * Call the read method for this I/O type.
2714 */
2715 if (in->readcallback != NULL) {
2716 res = in->readcallback(in->context, &buffer[0], len);
Daniel Veillardddffd2a2002-03-05 20:28:20 +00002717 if (res <= 0)
2718 in->readcallback = endOfInput;
Owen Taylor3473f882001-02-23 17:55:21 +00002719 } else {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002720 xmlIOErr(XML_IO_NO_INPUT, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002721 in->error = XML_IO_NO_INPUT;
Owen Taylor3473f882001-02-23 17:55:21 +00002722 return(-1);
2723 }
2724 if (res < 0) {
Owen Taylor3473f882001-02-23 17:55:21 +00002725 return(-1);
2726 }
2727 len = res;
2728 if (in->encoder != NULL) {
Daniel Veillard36711902004-02-11 13:25:26 +00002729 unsigned int use;
2730
Owen Taylor3473f882001-02-23 17:55:21 +00002731 /*
2732 * Store the data in the incoming raw buffer
2733 */
2734 if (in->raw == NULL) {
2735 in->raw = xmlBufferCreate();
2736 }
2737 xmlBufferAdd(in->raw, (const xmlChar *) buffer, len);
2738
2739 /*
2740 * convert as much as possible to the parser reading buffer.
2741 */
Daniel Veillard36711902004-02-11 13:25:26 +00002742 use = in->raw->use;
Owen Taylor3473f882001-02-23 17:55:21 +00002743 nbchars = xmlCharEncInFunc(in->encoder, in->buffer, in->raw);
2744 if (nbchars < 0) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002745 xmlIOErr(XML_IO_ENCODER, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002746 in->error = XML_IO_ENCODER;
Owen Taylor3473f882001-02-23 17:55:21 +00002747 return(-1);
2748 }
Daniel Veillard36711902004-02-11 13:25:26 +00002749 in->rawconsumed += (use - in->raw->use);
Owen Taylor3473f882001-02-23 17:55:21 +00002750 } else {
2751 nbchars = len;
Daniel Veillarde5354492002-05-16 08:43:22 +00002752 in->buffer->use += nbchars;
2753 buffer[nbchars] = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00002754 }
2755#ifdef DEBUG_INPUT
2756 xmlGenericError(xmlGenericErrorContext,
2757 "I/O: read %d chars, buffer %d/%d\n",
2758 nbchars, in->buffer->use, in->buffer->size);
2759#endif
Owen Taylor3473f882001-02-23 17:55:21 +00002760 return(nbchars);
2761}
2762
2763/**
2764 * xmlParserInputBufferRead:
2765 * @in: a buffered parser input
2766 * @len: indicative value of the amount of chars to read
2767 *
2768 * Refresh the content of the input buffer, the old data are considered
2769 * consumed
2770 * This routine handle the I18N transcoding to internal UTF-8
2771 *
2772 * Returns the number of chars read and stored in the buffer, or -1
2773 * in case of error.
2774 */
2775int
2776xmlParserInputBufferRead(xmlParserInputBufferPtr in, int len) {
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002777 if ((in == NULL) || (in->error)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002778 if (in->readcallback != NULL)
2779 return(xmlParserInputBufferGrow(in, len));
Daniel Veillard53350552003-09-18 13:35:51 +00002780 else if ((in->buffer != NULL) &&
2781 (in->buffer->alloc == XML_BUFFER_ALLOC_IMMUTABLE))
2782 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00002783 else
2784 return(-1);
2785}
2786
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002787#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002788/**
2789 * xmlOutputBufferWrite:
2790 * @out: a buffered parser output
2791 * @len: the size in bytes of the array.
2792 * @buf: an char array
2793 *
2794 * Write the content of the array in the output I/O buffer
2795 * This routine handle the I18N transcoding from internal UTF-8
2796 * The buffer is lossless, i.e. will store in case of partial
2797 * or delayed writes.
2798 *
2799 * Returns the number of chars immediately written, or -1
2800 * in case of error.
2801 */
2802int
2803xmlOutputBufferWrite(xmlOutputBufferPtr out, int len, const char *buf) {
2804 int nbchars = 0; /* number of chars to output to I/O */
2805 int ret; /* return from function call */
2806 int written = 0; /* number of char written to I/O so far */
2807 int chunk; /* number of byte curreent processed from buf */
2808
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002809 if ((out == NULL) || (out->error)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002810 if (len < 0) return(0);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002811 if (out->error) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002812
2813 do {
2814 chunk = len;
2815 if (chunk > 4 * MINLEN)
2816 chunk = 4 * MINLEN;
2817
2818 /*
2819 * first handle encoding stuff.
2820 */
2821 if (out->encoder != NULL) {
2822 /*
2823 * Store the data in the incoming raw buffer
2824 */
2825 if (out->conv == NULL) {
2826 out->conv = xmlBufferCreate();
2827 }
2828 xmlBufferAdd(out->buffer, (const xmlChar *) buf, chunk);
2829
2830 if ((out->buffer->use < MINLEN) && (chunk == len))
2831 goto done;
2832
2833 /*
2834 * convert as much as possible to the parser reading buffer.
2835 */
2836 ret = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
Daniel Veillard809faa52003-02-10 15:43:53 +00002837 if ((ret < 0) && (ret != -3)) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002838 xmlIOErr(XML_IO_ENCODER, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002839 out->error = XML_IO_ENCODER;
Owen Taylor3473f882001-02-23 17:55:21 +00002840 return(-1);
2841 }
2842 nbchars = out->conv->use;
2843 } else {
2844 xmlBufferAdd(out->buffer, (const xmlChar *) buf, chunk);
2845 nbchars = out->buffer->use;
2846 }
2847 buf += chunk;
2848 len -= chunk;
2849
2850 if ((nbchars < MINLEN) && (len <= 0))
2851 goto done;
2852
2853 if (out->writecallback) {
2854 /*
2855 * second write the stuff to the I/O channel
2856 */
2857 if (out->encoder != NULL) {
2858 ret = out->writecallback(out->context,
2859 (const char *)out->conv->content, nbchars);
2860 if (ret >= 0)
Daniel Veillardedddff92001-05-02 10:58:52 +00002861 xmlBufferShrink(out->conv, ret);
Owen Taylor3473f882001-02-23 17:55:21 +00002862 } else {
2863 ret = out->writecallback(out->context,
2864 (const char *)out->buffer->content, nbchars);
2865 if (ret >= 0)
Daniel Veillardedddff92001-05-02 10:58:52 +00002866 xmlBufferShrink(out->buffer, ret);
Owen Taylor3473f882001-02-23 17:55:21 +00002867 }
2868 if (ret < 0) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00002869 xmlIOErr(XML_IO_WRITE, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00002870 out->error = XML_IO_WRITE;
Owen Taylor3473f882001-02-23 17:55:21 +00002871 return(ret);
2872 }
2873 out->written += ret;
2874 }
2875 written += nbchars;
2876 } while (len > 0);
2877
2878done:
2879#ifdef DEBUG_INPUT
2880 xmlGenericError(xmlGenericErrorContext,
2881 "I/O: wrote %d chars\n", written);
2882#endif
2883 return(written);
2884}
2885
2886/**
Daniel Veillard5d1a4d82004-05-13 14:31:25 +00002887 * xmlEscapeContent:
2888 * @out: a pointer to an array of bytes to store the result
2889 * @outlen: the length of @out
2890 * @in: a pointer to an array of unescaped UTF-8 bytes
2891 * @inlen: the length of @in
2892 *
2893 * Take a block of UTF-8 chars in and escape them.
2894 * Returns 0 if success, or -1 otherwise
2895 * The value of @inlen after return is the number of octets consumed
2896 * if the return value is positive, else unpredictable.
2897 * The value of @outlen after return is the number of octets consumed.
2898 */
2899static int
2900xmlEscapeContent(unsigned char* out, int *outlen,
2901 const xmlChar* in, int *inlen) {
2902 unsigned char* outstart = out;
2903 const unsigned char* base = in;
2904 unsigned char* outend = out + *outlen;
2905 const unsigned char* inend;
2906
2907 inend = in + (*inlen);
2908
2909 while ((in < inend) && (out < outend)) {
2910 if (*in == '<') {
2911 if (outend - out < 4) break;
2912 *out++ = '&';
2913 *out++ = 'l';
2914 *out++ = 't';
2915 *out++ = ';';
2916 } else if (*in == '>') {
2917 if (outend - out < 4) break;
2918 *out++ = '&';
2919 *out++ = 'g';
2920 *out++ = 't';
2921 *out++ = ';';
2922 } else if (*in == '&') {
2923 if (outend - out < 5) break;
2924 *out++ = '&';
2925 *out++ = 'a';
2926 *out++ = 'm';
2927 *out++ = 'p';
2928 *out++ = ';';
2929 } else if (*in == '\r') {
2930 if (outend - out < 5) break;
2931 *out++ = '&';
2932 *out++ = '#';
2933 *out++ = '1';
2934 *out++ = '3';
2935 *out++ = ';';
2936 } else {
2937 *out++ = (unsigned char) *in;
2938 }
2939 ++in;
2940 }
2941 *outlen = out - outstart;
2942 *inlen = in - base;
2943 return(0);
2944}
2945
2946/**
2947 * xmlOutputBufferWriteEscape:
2948 * @out: a buffered parser output
2949 * @str: a zero terminated UTF-8 string
Daniel Veillardee8960b2004-05-14 03:25:14 +00002950 * @escaping: an optional escaping function (or NULL)
Daniel Veillard5d1a4d82004-05-13 14:31:25 +00002951 *
2952 * Write the content of the string in the output I/O buffer
2953 * This routine escapes the caracters and then handle the I18N
2954 * transcoding from internal UTF-8
2955 * The buffer is lossless, i.e. will store in case of partial
2956 * or delayed writes.
2957 *
2958 * Returns the number of chars immediately written, or -1
2959 * in case of error.
2960 */
2961int
Daniel Veillardee8960b2004-05-14 03:25:14 +00002962xmlOutputBufferWriteEscape(xmlOutputBufferPtr out, const xmlChar *str,
2963 xmlCharEncodingOutputFunc escaping) {
Daniel Veillard5d1a4d82004-05-13 14:31:25 +00002964 int nbchars = 0; /* number of chars to output to I/O */
2965 int ret; /* return from function call */
2966 int written = 0; /* number of char written to I/O so far */
2967 int chunk; /* number of byte currently processed from str */
2968 int len; /* number of bytes in str */
2969 int cons; /* byte from str consumed */
2970
2971 if ((out == NULL) || (out->error) || (str == NULL)) return(-1);
Daniel Veillardee8960b2004-05-14 03:25:14 +00002972 len = strlen((const char *)str);
Daniel Veillard5d1a4d82004-05-13 14:31:25 +00002973 if (len < 0) return(0);
2974 if (out->error) return(-1);
Daniel Veillardee8960b2004-05-14 03:25:14 +00002975 if (escaping == NULL) escaping = xmlEscapeContent;
Daniel Veillard5d1a4d82004-05-13 14:31:25 +00002976
2977 do {
2978 /*
2979 * how many bytes to consume and how many bytes to store.
2980 */
2981 cons = len;
2982 chunk = (out->buffer->size - out->buffer->use) - 1;
2983
2984 /*
2985 * first handle encoding stuff.
2986 */
2987 if (out->encoder != NULL) {
2988 /*
2989 * Store the data in the incoming raw buffer
2990 */
2991 if (out->conv == NULL) {
2992 out->conv = xmlBufferCreate();
2993 }
Daniel Veillardee8960b2004-05-14 03:25:14 +00002994 ret = escaping(out->buffer->content + out->buffer->use ,
2995 &chunk, str, &cons);
Daniel Veillard5d1a4d82004-05-13 14:31:25 +00002996 if (ret < 0)
2997 return(-1);
2998 out->buffer->use += chunk;
2999 out->buffer->content[out->buffer->use] = 0;
3000
3001 if ((out->buffer->use < MINLEN) && (cons == len))
3002 goto done;
3003
3004 /*
3005 * convert as much as possible to the output buffer.
3006 */
3007 ret = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
3008 if ((ret < 0) && (ret != -3)) {
3009 xmlIOErr(XML_IO_ENCODER, NULL);
3010 out->error = XML_IO_ENCODER;
3011 return(-1);
3012 }
3013 nbchars = out->conv->use;
3014 } else {
Daniel Veillardee8960b2004-05-14 03:25:14 +00003015 ret = escaping(out->buffer->content + out->buffer->use ,
3016 &chunk, str, &cons);
Daniel Veillard5d1a4d82004-05-13 14:31:25 +00003017 if (ret < 0)
3018 return(-1);
3019 out->buffer->use += chunk;
3020 out->buffer->content[out->buffer->use] = 0;
3021 nbchars = out->buffer->use;
3022 }
3023 str += cons;
3024 len -= cons;
3025
3026 if ((nbchars < MINLEN) && (len <= 0))
3027 goto done;
3028
3029 if (out->writecallback) {
3030 /*
3031 * second write the stuff to the I/O channel
3032 */
3033 if (out->encoder != NULL) {
3034 ret = out->writecallback(out->context,
3035 (const char *)out->conv->content, nbchars);
3036 if (ret >= 0)
3037 xmlBufferShrink(out->conv, ret);
3038 } else {
3039 ret = out->writecallback(out->context,
3040 (const char *)out->buffer->content, nbchars);
3041 if (ret >= 0)
3042 xmlBufferShrink(out->buffer, ret);
3043 }
3044 if (ret < 0) {
3045 xmlIOErr(XML_IO_WRITE, NULL);
3046 out->error = XML_IO_WRITE;
3047 return(ret);
3048 }
3049 out->written += ret;
Daniel Veillard83a75e02004-05-14 21:50:42 +00003050 } else if (out->buffer->size - out->buffer->use < MINLEN) {
3051 xmlBufferResize(out->buffer, out->buffer->size + MINLEN);
Daniel Veillard5d1a4d82004-05-13 14:31:25 +00003052 }
3053 written += nbchars;
3054 } while (len > 0);
3055
3056done:
3057#ifdef DEBUG_INPUT
3058 xmlGenericError(xmlGenericErrorContext,
3059 "I/O: wrote %d chars\n", written);
3060#endif
3061 return(written);
3062}
3063
3064/**
Owen Taylor3473f882001-02-23 17:55:21 +00003065 * xmlOutputBufferWriteString:
3066 * @out: a buffered parser output
3067 * @str: a zero terminated C string
3068 *
3069 * Write the content of the string in the output I/O buffer
3070 * This routine handle the I18N transcoding from internal UTF-8
3071 * The buffer is lossless, i.e. will store in case of partial
3072 * or delayed writes.
3073 *
3074 * Returns the number of chars immediately written, or -1
3075 * in case of error.
3076 */
3077int
3078xmlOutputBufferWriteString(xmlOutputBufferPtr out, const char *str) {
3079 int len;
3080
Daniel Veillard97bf4d02003-10-08 18:58:28 +00003081 if ((out == NULL) || (out->error)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00003082 if (str == NULL)
3083 return(-1);
3084 len = strlen(str);
3085
3086 if (len > 0)
3087 return(xmlOutputBufferWrite(out, len, str));
3088 return(len);
3089}
3090
3091/**
3092 * xmlOutputBufferFlush:
3093 * @out: a buffered output
3094 *
3095 * flushes the output I/O channel
3096 *
3097 * Returns the number of byte written or -1 in case of error.
3098 */
3099int
3100xmlOutputBufferFlush(xmlOutputBufferPtr out) {
3101 int nbchars = 0, ret = 0;
3102
Daniel Veillard97bf4d02003-10-08 18:58:28 +00003103 if ((out == NULL) || (out->error)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00003104 /*
3105 * first handle encoding stuff.
3106 */
3107 if ((out->conv != NULL) && (out->encoder != NULL)) {
3108 /*
3109 * convert as much as possible to the parser reading buffer.
3110 */
3111 nbchars = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
3112 if (nbchars < 0) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00003113 xmlIOErr(XML_IO_ENCODER, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00003114 out->error = XML_IO_ENCODER;
Owen Taylor3473f882001-02-23 17:55:21 +00003115 return(-1);
3116 }
3117 }
3118
3119 /*
3120 * second flush the stuff to the I/O channel
3121 */
3122 if ((out->conv != NULL) && (out->encoder != NULL) &&
3123 (out->writecallback != NULL)) {
3124 ret = out->writecallback(out->context,
3125 (const char *)out->conv->content, out->conv->use);
3126 if (ret >= 0)
3127 xmlBufferShrink(out->conv, ret);
3128 } else if (out->writecallback != NULL) {
3129 ret = out->writecallback(out->context,
3130 (const char *)out->buffer->content, out->buffer->use);
3131 if (ret >= 0)
3132 xmlBufferShrink(out->buffer, ret);
3133 }
3134 if (ret < 0) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00003135 xmlIOErr(XML_IO_FLUSH, NULL);
Daniel Veillard97bf4d02003-10-08 18:58:28 +00003136 out->error = XML_IO_FLUSH;
Owen Taylor3473f882001-02-23 17:55:21 +00003137 return(ret);
3138 }
3139 out->written += ret;
3140
3141#ifdef DEBUG_INPUT
3142 xmlGenericError(xmlGenericErrorContext,
3143 "I/O: flushed %d chars\n", ret);
3144#endif
3145 return(ret);
3146}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00003147#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00003148
Daniel Veillard5e2dace2001-07-18 19:30:27 +00003149/**
Owen Taylor3473f882001-02-23 17:55:21 +00003150 * xmlParserGetDirectory:
3151 * @filename: the path to a file
3152 *
3153 * lookup the directory for that file
3154 *
3155 * Returns a new allocated string containing the directory, or NULL.
3156 */
3157char *
3158xmlParserGetDirectory(const char *filename) {
3159 char *ret = NULL;
3160 char dir[1024];
3161 char *cur;
3162 char sep = '/';
3163
Igor Zlatkovic9181cc02002-09-29 17:51:06 +00003164#ifdef _WIN32_WCE /* easy way by now ... wince does not have dirs! */
3165 return NULL;
3166#endif
3167
Owen Taylor3473f882001-02-23 17:55:21 +00003168 if (xmlInputCallbackInitialized == 0)
3169 xmlRegisterDefaultInputCallbacks();
3170
3171 if (filename == NULL) return(NULL);
Daniel Veillard3c5ed912002-01-08 10:36:16 +00003172#if defined(WIN32) && !defined(__CYGWIN__)
Owen Taylor3473f882001-02-23 17:55:21 +00003173 sep = '\\';
3174#endif
3175
3176 strncpy(dir, filename, 1023);
3177 dir[1023] = 0;
3178 cur = &dir[strlen(dir)];
3179 while (cur > dir) {
3180 if (*cur == sep) break;
3181 cur --;
3182 }
3183 if (*cur == sep) {
3184 if (cur == dir) dir[1] = 0;
3185 else *cur = 0;
3186 ret = xmlMemStrdup(dir);
3187 } else {
3188 if (getcwd(dir, 1024) != NULL) {
3189 dir[1023] = 0;
3190 ret = xmlMemStrdup(dir);
3191 }
3192 }
3193 return(ret);
3194}
3195
3196/****************************************************************
3197 * *
3198 * External entities loading *
3199 * *
3200 ****************************************************************/
3201
Daniel Veillarda840b692003-10-19 13:35:37 +00003202/**
3203 * xmlCheckHTTPInput:
3204 * @ctxt: an XML parser context
3205 * @ret: an XML parser input
3206 *
3207 * Check an input in case it was created from an HTTP stream, in that
3208 * case it will handle encoding and update of the base URL in case of
3209 * redirection. It also checks for HTTP errors in which case the input
3210 * is cleanly freed up and an appropriate error is raised in context
3211 *
3212 * Returns the input or NULL in case of HTTP error.
3213 */
3214xmlParserInputPtr
3215xmlCheckHTTPInput(xmlParserCtxtPtr ctxt, xmlParserInputPtr ret) {
3216#ifdef LIBXML_HTTP_ENABLED
3217 if ((ret != NULL) && (ret->buf != NULL) &&
3218 (ret->buf->readcallback == xmlIOHTTPRead) &&
3219 (ret->buf->context != NULL)) {
3220 const char *encoding;
3221 const char *redir;
3222 const char *mime;
3223 int code;
3224
3225 code = xmlNanoHTTPReturnCode(ret->buf->context);
3226 if (code >= 400) {
3227 /* fatal error */
3228 if (ret->filename != NULL)
Daniel Veillarde8039df2003-10-27 11:25:13 +00003229 __xmlLoaderErr(ctxt, "failed to load HTTP resource \"%s\"\n",
Daniel Veillarda840b692003-10-19 13:35:37 +00003230 (const char *) ret->filename);
3231 else
Daniel Veillarde8039df2003-10-27 11:25:13 +00003232 __xmlLoaderErr(ctxt, "failed to load HTTP resource\n", NULL);
Daniel Veillarda840b692003-10-19 13:35:37 +00003233 xmlFreeInputStream(ret);
3234 ret = NULL;
3235 } else {
3236
3237 mime = xmlNanoHTTPMimeType(ret->buf->context);
3238 if ((xmlStrstr(BAD_CAST mime, BAD_CAST "/xml")) ||
3239 (xmlStrstr(BAD_CAST mime, BAD_CAST "+xml"))) {
3240 encoding = xmlNanoHTTPEncoding(ret->buf->context);
3241 if (encoding != NULL) {
3242 xmlCharEncodingHandlerPtr handler;
3243
3244 handler = xmlFindCharEncodingHandler(encoding);
3245 if (handler != NULL) {
3246 xmlSwitchInputEncoding(ctxt, ret, handler);
3247 } else {
3248 __xmlErrEncoding(ctxt, XML_ERR_UNKNOWN_ENCODING,
3249 "Unknown encoding %s",
3250 BAD_CAST encoding, NULL);
3251 }
3252 if (ret->encoding == NULL)
3253 ret->encoding = xmlStrdup(BAD_CAST encoding);
3254 }
3255#if 0
3256 } else if (xmlStrstr(BAD_CAST mime, BAD_CAST "html")) {
3257#endif
3258 }
3259 redir = xmlNanoHTTPRedir(ret->buf->context);
3260 if (redir != NULL) {
3261 if (ret->filename != NULL)
3262 xmlFree((xmlChar *) ret->filename);
3263 if (ret->directory != NULL) {
3264 xmlFree((xmlChar *) ret->directory);
3265 ret->directory = NULL;
3266 }
3267 ret->filename =
3268 (char *) xmlStrdup((const xmlChar *) redir);
3269 }
3270 }
3271 }
3272#endif
3273 return(ret);
3274}
3275
Daniel Veillard561b7f82002-03-20 21:55:57 +00003276static int xmlSysIDExists(const char *URL) {
Daniel Veillard6990bf32001-08-23 21:17:48 +00003277#ifdef HAVE_STAT
3278 int ret;
3279 struct stat info;
3280 const char *path;
3281
3282 if (URL == NULL)
3283 return(0);
3284
Daniel Veillardf4862f02002-09-10 11:13:43 +00003285 if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file://localhost/", 17))
Daniel Veillard1997c3e2003-07-05 20:43:43 +00003286#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardf4862f02002-09-10 11:13:43 +00003287 path = &URL[17];
3288#else
Daniel Veillard6990bf32001-08-23 21:17:48 +00003289 path = &URL[16];
Daniel Veillardf4862f02002-09-10 11:13:43 +00003290#endif
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00003291 else if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file:///", 8)) {
Daniel Veillard1997c3e2003-07-05 20:43:43 +00003292#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillard6990bf32001-08-23 21:17:48 +00003293 path = &URL[8];
3294#else
3295 path = &URL[7];
3296#endif
3297 } else
3298 path = URL;
3299 ret = stat(path, &info);
Daniel Veillard561b7f82002-03-20 21:55:57 +00003300 if (ret == 0)
3301 return(1);
Daniel Veillard6990bf32001-08-23 21:17:48 +00003302#endif
Daniel Veillard561b7f82002-03-20 21:55:57 +00003303 return(0);
Daniel Veillard6990bf32001-08-23 21:17:48 +00003304}
Daniel Veillard6990bf32001-08-23 21:17:48 +00003305
Daniel Veillard5e2dace2001-07-18 19:30:27 +00003306/**
Owen Taylor3473f882001-02-23 17:55:21 +00003307 * xmlDefaultExternalEntityLoader:
3308 * @URL: the URL for the entity to load
3309 * @ID: the System ID for the entity to load
3310 * @ctxt: the context in which the entity is called or NULL
3311 *
3312 * By default we don't load external entitites, yet.
3313 *
3314 * Returns a new allocated xmlParserInputPtr, or NULL.
3315 */
Daniel Veillarda840b692003-10-19 13:35:37 +00003316static xmlParserInputPtr
Owen Taylor3473f882001-02-23 17:55:21 +00003317xmlDefaultExternalEntityLoader(const char *URL, const char *ID,
Daniel Veillarda840b692003-10-19 13:35:37 +00003318 xmlParserCtxtPtr ctxt)
3319{
Owen Taylor3473f882001-02-23 17:55:21 +00003320 xmlParserInputPtr ret = NULL;
Daniel Veillarde2940dd2001-08-22 00:06:49 +00003321 xmlChar *resource = NULL;
Daniel Veillarda840b692003-10-19 13:35:37 +00003322
Daniel Veillarde2940dd2001-08-22 00:06:49 +00003323#ifdef LIBXML_CATALOG_ENABLED
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00003324 xmlCatalogAllow pref;
Daniel Veillarde2940dd2001-08-22 00:06:49 +00003325#endif
Owen Taylor3473f882001-02-23 17:55:21 +00003326
3327#ifdef DEBUG_EXTERNAL_ENTITIES
3328 xmlGenericError(xmlGenericErrorContext,
Daniel Veillarda840b692003-10-19 13:35:37 +00003329 "xmlDefaultExternalEntityLoader(%s, xxx)\n", URL);
Owen Taylor3473f882001-02-23 17:55:21 +00003330#endif
Daniel Veillard7d6fd212001-05-10 15:34:11 +00003331#ifdef LIBXML_CATALOG_ENABLED
Daniel Veillard61b93382003-11-03 14:28:31 +00003332 if ((ctxt != NULL) && (ctxt->options & XML_PARSE_NONET)) {
3333 int options = ctxt->options;
3334
3335 ctxt->options -= XML_PARSE_NONET;
3336 ret = xmlNoNetExternalEntityLoader(URL, ID, ctxt);
3337 ctxt->options = options;
3338 return(ret);
3339 }
3340
Daniel Veillard7d6fd212001-05-10 15:34:11 +00003341 /*
Daniel Veillarde2940dd2001-08-22 00:06:49 +00003342 * If the resource doesn't exists as a file,
Daniel Veillarddc2cee22001-08-22 16:30:37 +00003343 * try to load it from the resource pointed in the catalogs
Daniel Veillard7d6fd212001-05-10 15:34:11 +00003344 */
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00003345 pref = xmlCatalogGetDefaults();
3346
Daniel Veillard561b7f82002-03-20 21:55:57 +00003347 if ((pref != XML_CATA_ALLOW_NONE) && (!xmlSysIDExists(URL))) {
Daniel Veillarda840b692003-10-19 13:35:37 +00003348 /*
3349 * Do a local lookup
3350 */
3351 if ((ctxt->catalogs != NULL) &&
3352 ((pref == XML_CATA_ALLOW_ALL) ||
3353 (pref == XML_CATA_ALLOW_DOCUMENT))) {
3354 resource = xmlCatalogLocalResolve(ctxt->catalogs,
3355 (const xmlChar *) ID,
3356 (const xmlChar *) URL);
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00003357 }
Daniel Veillarda840b692003-10-19 13:35:37 +00003358 /*
3359 * Try a global lookup
3360 */
3361 if ((resource == NULL) &&
3362 ((pref == XML_CATA_ALLOW_ALL) ||
3363 (pref == XML_CATA_ALLOW_GLOBAL))) {
3364 resource = xmlCatalogResolve((const xmlChar *) ID,
3365 (const xmlChar *) URL);
3366 }
3367 if ((resource == NULL) && (URL != NULL))
3368 resource = xmlStrdup((const xmlChar *) URL);
Daniel Veillarddc2cee22001-08-22 16:30:37 +00003369
Daniel Veillarda840b692003-10-19 13:35:37 +00003370 /*
3371 * TODO: do an URI lookup on the reference
3372 */
3373 if ((resource != NULL)
3374 && (!xmlSysIDExists((const char *) resource))) {
3375 xmlChar *tmp = NULL;
Daniel Veillarddc2cee22001-08-22 16:30:37 +00003376
Daniel Veillarda840b692003-10-19 13:35:37 +00003377 if ((ctxt->catalogs != NULL) &&
3378 ((pref == XML_CATA_ALLOW_ALL) ||
3379 (pref == XML_CATA_ALLOW_DOCUMENT))) {
3380 tmp = xmlCatalogLocalResolveURI(ctxt->catalogs, resource);
3381 }
3382 if ((tmp == NULL) &&
3383 ((pref == XML_CATA_ALLOW_ALL) ||
3384 (pref == XML_CATA_ALLOW_GLOBAL))) {
3385 tmp = xmlCatalogResolveURI(resource);
3386 }
Daniel Veillarddc2cee22001-08-22 16:30:37 +00003387
Daniel Veillarda840b692003-10-19 13:35:37 +00003388 if (tmp != NULL) {
3389 xmlFree(resource);
3390 resource = tmp;
3391 }
3392 }
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00003393 }
Daniel Veillard7d6fd212001-05-10 15:34:11 +00003394#endif
3395
3396 if (resource == NULL)
Daniel Veillarda840b692003-10-19 13:35:37 +00003397 resource = (xmlChar *) URL;
Daniel Veillard7d6fd212001-05-10 15:34:11 +00003398
3399 if (resource == NULL) {
Daniel Veillarda840b692003-10-19 13:35:37 +00003400 if (ID == NULL)
3401 ID = "NULL";
Daniel Veillarde8039df2003-10-27 11:25:13 +00003402 __xmlLoaderErr(ctxt, "failed to load external entity \"%s\"\n", ID);
Daniel Veillarda840b692003-10-19 13:35:37 +00003403 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003404 }
Daniel Veillarda840b692003-10-19 13:35:37 +00003405 ret = xmlNewInputFromFile(ctxt, (const char *) resource);
Daniel Veillarddc2cee22001-08-22 16:30:37 +00003406 if ((resource != NULL) && (resource != (xmlChar *) URL))
Daniel Veillarda840b692003-10-19 13:35:37 +00003407 xmlFree(resource);
3408 return (ret);
Owen Taylor3473f882001-02-23 17:55:21 +00003409}
3410
3411static xmlExternalEntityLoader xmlCurrentExternalEntityLoader =
3412 xmlDefaultExternalEntityLoader;
3413
Daniel Veillard5e2dace2001-07-18 19:30:27 +00003414/**
Owen Taylor3473f882001-02-23 17:55:21 +00003415 * xmlSetExternalEntityLoader:
3416 * @f: the new entity resolver function
3417 *
3418 * Changes the defaultexternal entity resolver function for the application
3419 */
3420void
3421xmlSetExternalEntityLoader(xmlExternalEntityLoader f) {
3422 xmlCurrentExternalEntityLoader = f;
3423}
3424
Daniel Veillard5e2dace2001-07-18 19:30:27 +00003425/**
Owen Taylor3473f882001-02-23 17:55:21 +00003426 * xmlGetExternalEntityLoader:
3427 *
3428 * Get the default external entity resolver function for the application
3429 *
3430 * Returns the xmlExternalEntityLoader function pointer
3431 */
3432xmlExternalEntityLoader
3433xmlGetExternalEntityLoader(void) {
3434 return(xmlCurrentExternalEntityLoader);
3435}
3436
Daniel Veillard5e2dace2001-07-18 19:30:27 +00003437/**
Owen Taylor3473f882001-02-23 17:55:21 +00003438 * xmlLoadExternalEntity:
3439 * @URL: the URL for the entity to load
Daniel Veillard9f7b84b2001-08-23 15:31:19 +00003440 * @ID: the Public ID for the entity to load
Owen Taylor3473f882001-02-23 17:55:21 +00003441 * @ctxt: the context in which the entity is called or NULL
3442 *
3443 * Load an external entity, note that the use of this function for
3444 * unparsed entities may generate problems
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003445 * TODO: a more generic External entity API must be designed
Owen Taylor3473f882001-02-23 17:55:21 +00003446 *
3447 * Returns the xmlParserInputPtr or NULL
3448 */
3449xmlParserInputPtr
3450xmlLoadExternalEntity(const char *URL, const char *ID,
3451 xmlParserCtxtPtr ctxt) {
Daniel Veillard4e9b1bc2003-06-09 10:30:33 +00003452 if ((URL != NULL) && (xmlSysIDExists(URL) == 0)) {
3453 char *canonicFilename;
3454 xmlParserInputPtr ret;
3455
3456 canonicFilename = (char *) xmlCanonicPath((const xmlChar *) URL);
3457 if (canonicFilename == NULL) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00003458 xmlIOErrMemory("building canonical path\n");
Daniel Veillard4e9b1bc2003-06-09 10:30:33 +00003459 return(NULL);
3460 }
3461
3462 ret = xmlCurrentExternalEntityLoader(canonicFilename, ID, ctxt);
3463 xmlFree(canonicFilename);
3464 return(ret);
3465 }
Owen Taylor3473f882001-02-23 17:55:21 +00003466 return(xmlCurrentExternalEntityLoader(URL, ID, ctxt));
3467}
3468
Daniel Veillard8bdb91d2001-10-31 17:52:43 +00003469/************************************************************************
3470 * *
3471 * Disabling Network access *
3472 * *
3473 ************************************************************************/
3474
3475#ifdef LIBXML_CATALOG_ENABLED
3476static int
3477xmlNoNetExists(const char *URL)
3478{
3479#ifdef HAVE_STAT
3480 int ret;
3481 struct stat info;
3482 const char *path;
3483
3484 if (URL == NULL)
3485 return (0);
3486
Daniel Veillardf4862f02002-09-10 11:13:43 +00003487 if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file://localhost/", 17))
Daniel Veillard1997c3e2003-07-05 20:43:43 +00003488#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillardf4862f02002-09-10 11:13:43 +00003489 path = &URL[17];
3490#else
3491 path = &URL[16];
3492#endif
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00003493 else if (!xmlStrncasecmp(BAD_CAST URL, BAD_CAST "file:///", 8)) {
Daniel Veillard1997c3e2003-07-05 20:43:43 +00003494#if defined (_WIN32) || defined (__DJGPP__) && !defined(__CYGWIN__)
Daniel Veillard8bdb91d2001-10-31 17:52:43 +00003495 path = &URL[8];
3496#else
3497 path = &URL[7];
3498#endif
3499 } else
3500 path = URL;
3501 ret = stat(path, &info);
3502 if (ret == 0)
3503 return (1);
3504#endif
3505 return (0);
3506}
3507#endif
3508
3509/**
3510 * xmlNoNetExternalEntityLoader:
3511 * @URL: the URL for the entity to load
3512 * @ID: the System ID for the entity to load
3513 * @ctxt: the context in which the entity is called or NULL
3514 *
3515 * A specific entity loader disabling network accesses, though still
3516 * allowing local catalog accesses for resolution.
3517 *
3518 * Returns a new allocated xmlParserInputPtr, or NULL.
3519 */
3520xmlParserInputPtr
3521xmlNoNetExternalEntityLoader(const char *URL, const char *ID,
3522 xmlParserCtxtPtr ctxt) {
3523 xmlParserInputPtr input = NULL;
3524 xmlChar *resource = NULL;
3525
3526#ifdef LIBXML_CATALOG_ENABLED
3527 xmlCatalogAllow pref;
3528
3529 /*
3530 * If the resource doesn't exists as a file,
3531 * try to load it from the resource pointed in the catalogs
3532 */
3533 pref = xmlCatalogGetDefaults();
3534
3535 if ((pref != XML_CATA_ALLOW_NONE) && (!xmlNoNetExists(URL))) {
3536 /*
3537 * Do a local lookup
3538 */
3539 if ((ctxt->catalogs != NULL) &&
3540 ((pref == XML_CATA_ALLOW_ALL) ||
3541 (pref == XML_CATA_ALLOW_DOCUMENT))) {
3542 resource = xmlCatalogLocalResolve(ctxt->catalogs,
3543 (const xmlChar *)ID,
3544 (const xmlChar *)URL);
3545 }
3546 /*
3547 * Try a global lookup
3548 */
3549 if ((resource == NULL) &&
3550 ((pref == XML_CATA_ALLOW_ALL) ||
3551 (pref == XML_CATA_ALLOW_GLOBAL))) {
3552 resource = xmlCatalogResolve((const xmlChar *)ID,
3553 (const xmlChar *)URL);
3554 }
3555 if ((resource == NULL) && (URL != NULL))
3556 resource = xmlStrdup((const xmlChar *) URL);
3557
3558 /*
3559 * TODO: do an URI lookup on the reference
3560 */
3561 if ((resource != NULL) && (!xmlNoNetExists((const char *)resource))) {
3562 xmlChar *tmp = NULL;
3563
3564 if ((ctxt->catalogs != NULL) &&
3565 ((pref == XML_CATA_ALLOW_ALL) ||
3566 (pref == XML_CATA_ALLOW_DOCUMENT))) {
3567 tmp = xmlCatalogLocalResolveURI(ctxt->catalogs, resource);
3568 }
3569 if ((tmp == NULL) &&
3570 ((pref == XML_CATA_ALLOW_ALL) ||
3571 (pref == XML_CATA_ALLOW_GLOBAL))) {
3572 tmp = xmlCatalogResolveURI(resource);
3573 }
3574
3575 if (tmp != NULL) {
3576 xmlFree(resource);
3577 resource = tmp;
3578 }
3579 }
3580 }
3581#endif
3582 if (resource == NULL)
3583 resource = (xmlChar *) URL;
3584
3585 if (resource != NULL) {
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00003586 if ((!xmlStrncasecmp(BAD_CAST resource, BAD_CAST "ftp://", 6)) ||
3587 (!xmlStrncasecmp(BAD_CAST resource, BAD_CAST "http://", 7))) {
Daniel Veillard05d987b2003-10-08 11:54:57 +00003588 xmlIOErr(XML_IO_NETWORK_ATTEMPT, (const char *) resource);
Daniel Veillard8bdb91d2001-10-31 17:52:43 +00003589 if (resource != (xmlChar *) URL)
3590 xmlFree(resource);
3591 return(NULL);
3592 }
3593 }
3594 input = xmlDefaultExternalEntityLoader((const char *) resource, ID, ctxt);
3595 if (resource != (xmlChar *) URL)
3596 xmlFree(resource);
3597 return(input);
3598}
3599