blob: 571427dc8270479856a97ca2243a65414be10ffe [file] [log] [blame]
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001/*
2 * xmlsave.c: Implemetation of the document serializer
3 *
4 * See Copyright for the status of this software.
5 *
6 * daniel@veillard.com
7 */
8
9#define IN_LIBXML
10#include "libxml.h"
11
12#include <string.h>
13#include <libxml/xmlmemory.h>
14#include <libxml/parserInternals.h>
15#include <libxml/tree.h>
16#include <libxml/xmlsave.h>
Daniel Veillard1a8741c2004-03-04 13:40:59 +000017
Daniel Veillard753086a2004-03-28 16:12:44 +000018#define MAX_INDENT 60
19
Daniel Veillard656ce942004-04-30 23:11:45 +000020#include <libxml/HTMLtree.h>
21
Daniel Veillard1a8741c2004-03-04 13:40:59 +000022/************************************************************************
23 * *
24 * XHTML detection *
25 * *
26 ************************************************************************/
27#define XHTML_STRICT_PUBLIC_ID BAD_CAST \
28 "-//W3C//DTD XHTML 1.0 Strict//EN"
29#define XHTML_STRICT_SYSTEM_ID BAD_CAST \
30 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
31#define XHTML_FRAME_PUBLIC_ID BAD_CAST \
32 "-//W3C//DTD XHTML 1.0 Frameset//EN"
33#define XHTML_FRAME_SYSTEM_ID BAD_CAST \
34 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"
35#define XHTML_TRANS_PUBLIC_ID BAD_CAST \
36 "-//W3C//DTD XHTML 1.0 Transitional//EN"
37#define XHTML_TRANS_SYSTEM_ID BAD_CAST \
38 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
39
40#define XHTML_NS_NAME BAD_CAST "http://www.w3.org/1999/xhtml"
41/**
42 * xmlIsXHTML:
43 * @systemID: the system identifier
44 * @publicID: the public identifier
45 *
46 * Try to find if the document correspond to an XHTML DTD
47 *
48 * Returns 1 if true, 0 if not and -1 in case of error
49 */
50int
51xmlIsXHTML(const xmlChar *systemID, const xmlChar *publicID) {
52 if ((systemID == NULL) && (publicID == NULL))
53 return(-1);
54 if (publicID != NULL) {
55 if (xmlStrEqual(publicID, XHTML_STRICT_PUBLIC_ID)) return(1);
56 if (xmlStrEqual(publicID, XHTML_FRAME_PUBLIC_ID)) return(1);
57 if (xmlStrEqual(publicID, XHTML_TRANS_PUBLIC_ID)) return(1);
58 }
59 if (systemID != NULL) {
60 if (xmlStrEqual(systemID, XHTML_STRICT_SYSTEM_ID)) return(1);
61 if (xmlStrEqual(systemID, XHTML_FRAME_SYSTEM_ID)) return(1);
62 if (xmlStrEqual(systemID, XHTML_TRANS_SYSTEM_ID)) return(1);
63 }
64 return(0);
65}
Daniel Veillard1a8741c2004-03-04 13:40:59 +000066
67#ifdef LIBXML_OUTPUT_ENABLED
68
69#define TODO \
70 xmlGenericError(xmlGenericErrorContext, \
71 "Unimplemented block at %s:%d\n", \
72 __FILE__, __LINE__);
73
74struct _xmlSaveCtxt {
75 void *_private;
76 int type;
77 int fd;
78 const xmlChar *filename;
79 const xmlChar *encoding;
80 xmlCharEncodingHandlerPtr handler;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +000081 xmlOutputBufferPtr buf;
82 xmlDocPtr doc;
Daniel Veillard1a8741c2004-03-04 13:40:59 +000083 int options;
84 int level;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +000085 int format;
Daniel Veillard3995bc32004-05-15 18:57:31 +000086 char indent[MAX_INDENT + 1]; /* array for indenting output */
Daniel Veillard753086a2004-03-28 16:12:44 +000087 int indent_nr;
88 int indent_size;
Daniel Veillard3995bc32004-05-15 18:57:31 +000089 xmlCharEncodingOutputFunc escape; /* used for element content */
90 xmlCharEncodingOutputFunc escapeAttr;/* used for attribute content */
Daniel Veillard1a8741c2004-03-04 13:40:59 +000091};
92
93/************************************************************************
94 * *
95 * Output error handlers *
96 * *
97 ************************************************************************/
98/**
99 * xmlSaveErrMemory:
100 * @extra: extra informations
101 *
102 * Handle an out of memory condition
103 */
104static void
105xmlSaveErrMemory(const char *extra)
106{
107 __xmlSimpleError(XML_FROM_OUTPUT, XML_ERR_NO_MEMORY, NULL, NULL, extra);
108}
109
110/**
111 * xmlSaveErr:
112 * @code: the error number
113 * @node: the location of the error.
114 * @extra: extra informations
115 *
116 * Handle an out of memory condition
117 */
118static void
119xmlSaveErr(int code, xmlNodePtr node, const char *extra)
120{
121 const char *msg = NULL;
122
123 switch(code) {
124 case XML_SAVE_NOT_UTF8:
125 msg = "string is not in UTF-8";
126 break;
127 case XML_SAVE_CHAR_INVALID:
128 msg = "invalid character value";
129 break;
130 case XML_SAVE_UNKNOWN_ENCODING:
131 msg = "unknown encoding %s";
132 break;
133 case XML_SAVE_NO_DOCTYPE:
134 msg = "document has no DOCTYPE";
135 break;
136 default:
137 msg = "unexpected error number";
138 }
139 __xmlSimpleError(XML_FROM_OUTPUT, code, node, msg, extra);
140}
141
142/************************************************************************
143 * *
Daniel Veillard83a75e02004-05-14 21:50:42 +0000144 * Special escaping routines *
145 * *
146 ************************************************************************/
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000147static unsigned char *
148xmlSerializeHexCharRef(unsigned char *out, int val) {
149 unsigned char *ptr;
150
151 *out++ = '&';
152 *out++ = '#';
153 *out++ = 'x';
154 if (val < 0x10) ptr = out;
155 else if (val < 0x100) ptr = out + 1;
156 else if (val < 0x1000) ptr = out + 2;
157 else if (val < 0x10000) ptr = out + 3;
158 else if (val < 0x100000) ptr = out + 4;
159 else ptr = out + 5;
160 out = ptr + 1;
161 while (val > 0) {
162 switch (val & 0xF) {
163 case 0: *ptr-- = '0'; break;
164 case 1: *ptr-- = '1'; break;
165 case 2: *ptr-- = '2'; break;
166 case 3: *ptr-- = '3'; break;
167 case 4: *ptr-- = '4'; break;
168 case 5: *ptr-- = '5'; break;
169 case 6: *ptr-- = '6'; break;
170 case 7: *ptr-- = '7'; break;
171 case 8: *ptr-- = '8'; break;
172 case 9: *ptr-- = '9'; break;
173 case 0xA: *ptr-- = 'A'; break;
174 case 0xB: *ptr-- = 'B'; break;
175 case 0xC: *ptr-- = 'C'; break;
176 case 0xD: *ptr-- = 'D'; break;
177 case 0xE: *ptr-- = 'E'; break;
178 case 0xF: *ptr-- = 'F'; break;
179 default: *ptr-- = '0'; break;
180 }
181 val >>= 4;
182 }
183 *out++ = ';';
184 *out = 0;
185 return(out);
186}
187
Daniel Veillard83a75e02004-05-14 21:50:42 +0000188/**
189 * xmlEscapeEntities:
190 * @out: a pointer to an array of bytes to store the result
191 * @outlen: the length of @out
192 * @in: a pointer to an array of unescaped UTF-8 bytes
193 * @inlen: the length of @in
194 *
195 * Take a block of UTF-8 chars in and escape them. Used when there is no
196 * encoding specified.
197 *
198 * Returns 0 if success, or -1 otherwise
199 * The value of @inlen after return is the number of octets consumed
200 * if the return value is positive, else unpredictable.
201 * The value of @outlen after return is the number of octets consumed.
202 */
203static int
204xmlEscapeEntities(unsigned char* out, int *outlen,
205 const xmlChar* in, int *inlen) {
206 unsigned char* outstart = out;
207 const unsigned char* base = in;
208 unsigned char* outend = out + *outlen;
209 const unsigned char* inend;
210 int val;
211
212 inend = in + (*inlen);
213
214 while ((in < inend) && (out < outend)) {
215 if (*in == '<') {
216 if (outend - out < 4) break;
217 *out++ = '&';
218 *out++ = 'l';
219 *out++ = 't';
220 *out++ = ';';
221 in++;
222 continue;
223 } else if (*in == '>') {
224 if (outend - out < 4) break;
225 *out++ = '&';
226 *out++ = 'g';
227 *out++ = 't';
228 *out++ = ';';
229 in++;
230 continue;
231 } else if (*in == '&') {
232 if (outend - out < 5) break;
233 *out++ = '&';
234 *out++ = 'a';
235 *out++ = 'm';
236 *out++ = 'p';
237 *out++ = ';';
238 in++;
239 continue;
240 } else if (((*in >= 0x20) && (*in < 0x80)) ||
241 (*in == '\n') || (*in == '\t')) {
242 /*
243 * default case, just copy !
244 */
245 *out++ = *in++;
246 continue;
247 } else if (*in >= 0x80) {
248 /*
249 * We assume we have UTF-8 input.
250 */
Daniel Veillard83a75e02004-05-14 21:50:42 +0000251 if (outend - out < 10) break;
252
253 if (*in < 0xC0) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000254 xmlSaveErr(XML_SAVE_NOT_UTF8, NULL, NULL);
Daniel Veillard83a75e02004-05-14 21:50:42 +0000255 in++;
256 goto error;
257 } else if (*in < 0xE0) {
258 if (inend - in < 2) break;
259 val = (in[0]) & 0x1F;
260 val <<= 6;
261 val |= (in[1]) & 0x3F;
262 in += 2;
263 } else if (*in < 0xF0) {
264 if (inend - in < 3) break;
265 val = (in[0]) & 0x0F;
266 val <<= 6;
267 val |= (in[1]) & 0x3F;
268 val <<= 6;
269 val |= (in[2]) & 0x3F;
270 in += 3;
271 } else if (*in < 0xF8) {
272 if (inend - in < 4) break;
273 val = (in[0]) & 0x07;
274 val <<= 6;
275 val |= (in[1]) & 0x3F;
276 val <<= 6;
277 val |= (in[2]) & 0x3F;
278 val <<= 6;
279 val |= (in[3]) & 0x3F;
280 in += 4;
281 } else {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000282 xmlSaveErr(XML_SAVE_CHAR_INVALID, NULL, NULL);
Daniel Veillard83a75e02004-05-14 21:50:42 +0000283 in++;
284 goto error;
285 }
286 if (!IS_CHAR(val)) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000287 xmlSaveErr(XML_SAVE_CHAR_INVALID, NULL, NULL);
Daniel Veillard83a75e02004-05-14 21:50:42 +0000288 in++;
289 goto error;
290 }
291
292 /*
293 * We could do multiple things here. Just save as a char ref
294 */
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000295 out = xmlSerializeHexCharRef(out, val);
Daniel Veillard83a75e02004-05-14 21:50:42 +0000296 } else if (IS_BYTE_CHAR(*in)) {
297 if (outend - out < 6) break;
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000298 out = xmlSerializeHexCharRef(out, *in++);
Daniel Veillard83a75e02004-05-14 21:50:42 +0000299 } else {
300 xmlGenericError(xmlGenericErrorContext,
301 "xmlEscapeEntities : char out of range\n");
302 in++;
303 goto error;
304 }
305 }
306 *outlen = out - outstart;
307 *inlen = in - base;
308 return(0);
309error:
310 *outlen = out - outstart;
311 *inlen = in - base;
312 return(-1);
313}
314
315/************************************************************************
316 * *
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000317 * Allocation and deallocation *
318 * *
319 ************************************************************************/
Daniel Veillard753086a2004-03-28 16:12:44 +0000320/**
321 * xmlSaveCtxtInit:
322 * @ctxt: the saving context
323 *
324 * Initialize a saving context
325 */
326static void
327xmlSaveCtxtInit(xmlSaveCtxtPtr ctxt)
328{
329 int i;
William M. Brack12d37ab2005-02-21 13:54:07 +0000330 int len;
Daniel Veillard753086a2004-03-28 16:12:44 +0000331
332 if (ctxt == NULL) return;
Daniel Veillard3995bc32004-05-15 18:57:31 +0000333 if ((ctxt->encoding == NULL) && (ctxt->escape == NULL))
334 ctxt->escape = xmlEscapeEntities;
William M. Brack12d37ab2005-02-21 13:54:07 +0000335 len = xmlStrlen((xmlChar *)xmlTreeIndentString);
336 if ((xmlTreeIndentString == NULL) || (len == 0)) {
Daniel Veillard753086a2004-03-28 16:12:44 +0000337 memset(&ctxt->indent[0], 0, MAX_INDENT + 1);
338 } else {
William M. Brack12d37ab2005-02-21 13:54:07 +0000339 ctxt->indent_size = len;
Daniel Veillard753086a2004-03-28 16:12:44 +0000340 ctxt->indent_nr = MAX_INDENT / ctxt->indent_size;
341 for (i = 0;i < ctxt->indent_nr;i++)
342 memcpy(&ctxt->indent[i * ctxt->indent_size], xmlTreeIndentString,
343 ctxt->indent_size);
344 ctxt->indent[ctxt->indent_nr * ctxt->indent_size] = 0;
345 }
346}
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000347
348/**
349 * xmlFreeSaveCtxt:
350 *
351 * Free a saving context, destroying the ouptut in any remaining buffer
352 */
353static void
354xmlFreeSaveCtxt(xmlSaveCtxtPtr ctxt)
355{
356 if (ctxt == NULL) return;
357 if (ctxt->encoding != NULL)
358 xmlFree((char *) ctxt->encoding);
Daniel Veillarde2161a62004-04-29 17:14:25 +0000359 if (ctxt->buf != NULL)
360 xmlOutputBufferClose(ctxt->buf);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000361 xmlFree(ctxt);
362}
363
364/**
365 * xmlNewSaveCtxt:
366 *
367 * Create a new saving context
368 *
369 * Returns the new structure or NULL in case of error
370 */
371static xmlSaveCtxtPtr
372xmlNewSaveCtxt(const char *encoding, int options)
373{
374 xmlSaveCtxtPtr ret;
375
376 ret = (xmlSaveCtxtPtr) xmlMalloc(sizeof(xmlSaveCtxt));
377 if (ret == NULL) {
378 xmlSaveErrMemory("creating saving context");
379 return ( NULL );
380 }
381 memset(ret, 0, sizeof(xmlSaveCtxt));
Daniel Veillard6fc5db02005-01-16 00:05:58 +0000382
383 /*
384 * Use the options
385 */
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000386 ret->options = options;
Daniel Veillard6fc5db02005-01-16 00:05:58 +0000387 if (options & XML_SAVE_FORMAT)
388 ret->format = 1;
389
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000390 if (encoding != NULL) {
391 ret->handler = xmlFindCharEncodingHandler(encoding);
392 if (ret->handler == NULL) {
393 xmlSaveErr(XML_SAVE_UNKNOWN_ENCODING, NULL, encoding);
394 xmlFreeSaveCtxt(ret);
395 return(NULL);
396 }
397 ret->encoding = xmlStrdup((const xmlChar *)encoding);
Daniel Veillard3995bc32004-05-15 18:57:31 +0000398 ret->escape = xmlEscapeEntities;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000399 }
Daniel Veillard753086a2004-03-28 16:12:44 +0000400 xmlSaveCtxtInit(ret);
401
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000402 return(ret);
403}
404
405/************************************************************************
406 * *
407 * Dumping XML tree content to a simple buffer *
408 * *
409 ************************************************************************/
410/**
411 * xmlAttrSerializeContent:
412 * @buf: the XML buffer output
413 * @doc: the document
414 * @attr: the attribute pointer
415 *
416 * Serialize the attribute in the buffer
417 */
418static void
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000419xmlAttrSerializeContent(xmlOutputBufferPtr buf, xmlAttrPtr attr)
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000420{
421 xmlNodePtr children;
422
423 children = attr->children;
424 while (children != NULL) {
425 switch (children->type) {
426 case XML_TEXT_NODE:
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000427 xmlAttrSerializeTxtContent(buf->buffer, attr->doc,
428 attr, children->content);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000429 break;
430 case XML_ENTITY_REF_NODE:
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000431 xmlBufferAdd(buf->buffer, BAD_CAST "&", 1);
432 xmlBufferAdd(buf->buffer, children->name,
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000433 xmlStrlen(children->name));
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000434 xmlBufferAdd(buf->buffer, BAD_CAST ";", 1);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000435 break;
436 default:
437 /* should not happen unless we have a badly built tree */
438 break;
439 }
440 children = children->next;
441 }
442}
443
444/************************************************************************
445 * *
446 * Dumping XML tree content to an I/O output buffer *
447 * *
448 ************************************************************************/
449
450#ifdef LIBXML_HTML_ENABLED
451static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000452xhtmlNodeDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000453#endif
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000454static void xmlNodeListDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur);
455static void xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000456void xmlNsListDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur);
Daniel Veillardce244ad2004-11-05 10:03:46 +0000457static void xmlDocContentDumpOutput(xmlSaveCtxtPtr ctxt, xmlDocPtr cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000458
459/**
460 * xmlNsDumpOutput:
461 * @buf: the XML buffer output
462 * @cur: a namespace
463 *
464 * Dump a local Namespace definition.
465 * Should be called in the context of attributes dumps.
466 */
467static void
468xmlNsDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur) {
Daniel Veillardce244ad2004-11-05 10:03:46 +0000469 if ((cur == NULL) || (buf == NULL)) return;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000470 if ((cur->type == XML_LOCAL_NAMESPACE) && (cur->href != NULL)) {
471 if (xmlStrEqual(cur->prefix, BAD_CAST "xml"))
472 return;
473
474 /* Within the context of an element attributes */
475 if (cur->prefix != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000476 xmlOutputBufferWrite(buf, 7, " xmlns:");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000477 xmlOutputBufferWriteString(buf, (const char *)cur->prefix);
478 } else
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000479 xmlOutputBufferWrite(buf, 6, " xmlns");
480 xmlOutputBufferWrite(buf, 1, "=");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000481 xmlBufferWriteQuotedString(buf->buffer, cur->href);
482 }
483}
484
485/**
486 * xmlNsListDumpOutput:
487 * @buf: the XML buffer output
488 * @cur: the first namespace
489 *
490 * Dump a list of local Namespace definitions.
491 * Should be called in the context of attributes dumps.
492 */
493void
494xmlNsListDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur) {
495 while (cur != NULL) {
496 xmlNsDumpOutput(buf, cur);
497 cur = cur->next;
498 }
499}
500
501/**
502 * xmlDtdDumpOutput:
503 * @buf: the XML buffer output
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000504 * @dtd: the pointer to the DTD
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000505 *
506 * Dump the XML document DTD, if any.
507 */
508static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000509xmlDtdDumpOutput(xmlSaveCtxtPtr ctxt, xmlDtdPtr dtd) {
510 xmlOutputBufferPtr buf;
511 int format, level;
512 xmlDocPtr doc;
513
514 if (dtd == NULL) return;
515 if ((ctxt == NULL) || (ctxt->buf == NULL))
516 return;
517 buf = ctxt->buf;
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000518 xmlOutputBufferWrite(buf, 10, "<!DOCTYPE ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000519 xmlOutputBufferWriteString(buf, (const char *)dtd->name);
520 if (dtd->ExternalID != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000521 xmlOutputBufferWrite(buf, 8, " PUBLIC ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000522 xmlBufferWriteQuotedString(buf->buffer, dtd->ExternalID);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000523 xmlOutputBufferWrite(buf, 1, " ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000524 xmlBufferWriteQuotedString(buf->buffer, dtd->SystemID);
525 } else if (dtd->SystemID != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000526 xmlOutputBufferWrite(buf, 8, " SYSTEM ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000527 xmlBufferWriteQuotedString(buf->buffer, dtd->SystemID);
528 }
529 if ((dtd->entities == NULL) && (dtd->elements == NULL) &&
Daniel Veillard41c4a752004-09-08 20:55:38 +0000530 (dtd->attributes == NULL) && (dtd->notations == NULL) &&
531 (dtd->pentities == NULL)) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000532 xmlOutputBufferWrite(buf, 1, ">");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000533 return;
534 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000535 xmlOutputBufferWrite(buf, 3, " [\n");
Daniel Veillard41c4a752004-09-08 20:55:38 +0000536 /*
537 * Dump the notations first they are not in the DTD children list
538 * Do this only on a standalone DTD or on the internal subset though.
539 */
540 if ((dtd->notations != NULL) && ((dtd->doc == NULL) ||
541 (dtd->doc->intSubset == dtd))) {
Daniel Veillardda3b29a2004-08-14 11:15:13 +0000542 xmlDumpNotationTable(buf->buffer, (xmlNotationTablePtr) dtd->notations);
543 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000544 format = ctxt->format;
545 level = ctxt->level;
546 doc = ctxt->doc;
547 ctxt->format = 0;
548 ctxt->level = -1;
549 ctxt->doc = dtd->doc;
550 xmlNodeListDumpOutput(ctxt, dtd->children);
551 ctxt->format = format;
552 ctxt->level = level;
553 ctxt->doc = doc;
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000554 xmlOutputBufferWrite(buf, 2, "]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000555}
556
557/**
558 * xmlAttrDumpOutput:
559 * @buf: the XML buffer output
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000560 * @cur: the attribute pointer
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000561 *
562 * Dump an XML attribute
563 */
564static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000565xmlAttrDumpOutput(xmlSaveCtxtPtr ctxt, xmlAttrPtr cur) {
566 xmlOutputBufferPtr buf;
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000567
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000568 if (cur == NULL) return;
569 buf = ctxt->buf;
Daniel Veillardce244ad2004-11-05 10:03:46 +0000570 if (buf == NULL) return;
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000571 xmlOutputBufferWrite(buf, 1, " ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000572 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
573 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000574 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000575 }
576 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000577 xmlOutputBufferWrite(buf, 2, "=\"");
578 xmlAttrSerializeContent(buf, cur);
579 xmlOutputBufferWrite(buf, 1, "\"");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000580}
581
582/**
583 * xmlAttrListDumpOutput:
584 * @buf: the XML buffer output
585 * @doc: the document
586 * @cur: the first attribute pointer
587 * @encoding: an optional encoding string
588 *
589 * Dump a list of XML attributes
590 */
591static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000592xmlAttrListDumpOutput(xmlSaveCtxtPtr ctxt, xmlAttrPtr cur) {
593 if (cur == NULL) return;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000594 while (cur != NULL) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000595 xmlAttrDumpOutput(ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000596 cur = cur->next;
597 }
598}
599
600
601
602/**
603 * xmlNodeListDumpOutput:
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000604 * @cur: the first node
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000605 *
606 * Dump an XML node list, recursive behaviour, children are printed too.
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000607 */
608static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000609xmlNodeListDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000610 xmlOutputBufferPtr buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000611
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000612 if (cur == NULL) return;
613 buf = ctxt->buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000614 while (cur != NULL) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000615 if ((ctxt->format) && (xmlIndentTreeOutput) &&
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000616 (cur->type == XML_ELEMENT_NODE))
Daniel Veillard753086a2004-03-28 16:12:44 +0000617 xmlOutputBufferWrite(buf, ctxt->indent_size *
618 (ctxt->level > ctxt->indent_nr ?
619 ctxt->indent_nr : ctxt->level),
620 ctxt->indent);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000621 xmlNodeDumpOutputInternal(ctxt, cur);
622 if (ctxt->format) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000623 xmlOutputBufferWrite(buf, 1, "\n");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000624 }
625 cur = cur->next;
626 }
627}
628
629/**
630 * xmlNodeDumpOutputInternal:
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000631 * @cur: the current node
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000632 *
633 * Dump an XML node, recursive behaviour, children are printed too.
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000634 */
635static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000636xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
Daniel Veillard753086a2004-03-28 16:12:44 +0000637 int format;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000638 xmlNodePtr tmp;
639 xmlChar *start, *end;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000640 xmlOutputBufferPtr buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000641
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000642 if (cur == NULL) return;
643 buf = ctxt->buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000644 if (cur->type == XML_XINCLUDE_START)
645 return;
646 if (cur->type == XML_XINCLUDE_END)
647 return;
Daniel Veillardce244ad2004-11-05 10:03:46 +0000648 if ((cur->type == XML_DOCUMENT_NODE) ||
649 (cur->type == XML_HTML_DOCUMENT_NODE)) {
650 xmlDocContentDumpOutput(ctxt, (xmlDocPtr) cur);
651 return;
652 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000653 if (cur->type == XML_DTD_NODE) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000654 xmlDtdDumpOutput(ctxt, (xmlDtdPtr) cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000655 return;
656 }
657 if (cur->type == XML_DOCUMENT_FRAG_NODE) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000658 xmlNodeListDumpOutput(ctxt, cur->children);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000659 return;
660 }
661 if (cur->type == XML_ELEMENT_DECL) {
662 xmlDumpElementDecl(buf->buffer, (xmlElementPtr) cur);
663 return;
664 }
665 if (cur->type == XML_ATTRIBUTE_DECL) {
666 xmlDumpAttributeDecl(buf->buffer, (xmlAttributePtr) cur);
667 return;
668 }
669 if (cur->type == XML_ENTITY_DECL) {
670 xmlDumpEntityDecl(buf->buffer, (xmlEntityPtr) cur);
671 return;
672 }
673 if (cur->type == XML_TEXT_NODE) {
674 if (cur->content != NULL) {
William M. Brack4e1c2db2005-02-11 10:58:55 +0000675 if (cur->name != xmlStringTextNoenc) {
Daniel Veillard3995bc32004-05-15 18:57:31 +0000676 xmlOutputBufferWriteEscape(buf, cur->content, ctxt->escape);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000677 } else {
678 /*
679 * Disable escaping, needed for XSLT
680 */
681 xmlOutputBufferWriteString(buf, (const char *) cur->content);
682 }
683 }
684
685 return;
686 }
687 if (cur->type == XML_PI_NODE) {
688 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000689 xmlOutputBufferWrite(buf, 2, "<?");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000690 xmlOutputBufferWriteString(buf, (const char *)cur->name);
691 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000692 xmlOutputBufferWrite(buf, 1, " ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000693 xmlOutputBufferWriteString(buf, (const char *)cur->content);
694 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000695 xmlOutputBufferWrite(buf, 2, "?>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000696 } else {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000697 xmlOutputBufferWrite(buf, 2, "<?");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000698 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000699 xmlOutputBufferWrite(buf, 2, "?>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000700 }
701 return;
702 }
703 if (cur->type == XML_COMMENT_NODE) {
704 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000705 xmlOutputBufferWrite(buf, 4, "<!--");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000706 xmlOutputBufferWriteString(buf, (const char *)cur->content);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000707 xmlOutputBufferWrite(buf, 3, "-->");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000708 }
709 return;
710 }
711 if (cur->type == XML_ENTITY_REF_NODE) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000712 xmlOutputBufferWrite(buf, 1, "&");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000713 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000714 xmlOutputBufferWrite(buf, 1, ";");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000715 return;
716 }
717 if (cur->type == XML_CDATA_SECTION_NODE) {
Daniel Veillard7cd517c2005-05-20 18:47:22 +0000718 if (cur->content == NULL) {
719 xmlOutputBufferWrite(buf, 12, "<![CDATA[]]>");
720 } else {
721 start = end = cur->content;
722 while (*end != '\0') {
723 if ((*end == ']') && (*(end + 1) == ']') &&
724 (*(end + 2) == '>')) {
725 end = end + 2;
726 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
727 xmlOutputBufferWrite(buf, end - start, (const char *)start);
728 xmlOutputBufferWrite(buf, 3, "]]>");
729 start = end;
730 }
731 end++;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000732 }
Daniel Veillard7cd517c2005-05-20 18:47:22 +0000733 if (start != end) {
734 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
735 xmlOutputBufferWriteString(buf, (const char *)start);
736 xmlOutputBufferWrite(buf, 3, "]]>");
737 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000738 }
739 return;
740 }
741 if (cur->type == XML_ATTRIBUTE_NODE) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000742 xmlAttrDumpOutput(ctxt, (xmlAttrPtr) cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000743 return;
744 }
745 if (cur->type == XML_NAMESPACE_DECL) {
746 xmlNsDumpOutput(buf, (xmlNsPtr) cur);
747 return;
748 }
749
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000750 format = ctxt->format;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000751 if (format == 1) {
752 tmp = cur->children;
753 while (tmp != NULL) {
754 if ((tmp->type == XML_TEXT_NODE) ||
755 (tmp->type == XML_CDATA_SECTION_NODE) ||
756 (tmp->type == XML_ENTITY_REF_NODE)) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000757 ctxt->format = 0;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000758 break;
759 }
760 tmp = tmp->next;
761 }
762 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000763 xmlOutputBufferWrite(buf, 1, "<");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000764 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
765 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000766 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000767 }
768
769 xmlOutputBufferWriteString(buf, (const char *)cur->name);
770 if (cur->nsDef)
771 xmlNsListDumpOutput(buf, cur->nsDef);
772 if (cur->properties != NULL)
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000773 xmlAttrListDumpOutput(ctxt, cur->properties);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000774
775 if (((cur->type == XML_ELEMENT_NODE) || (cur->content == NULL)) &&
776 (cur->children == NULL) && (!xmlSaveNoEmptyTags)) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000777 xmlOutputBufferWrite(buf, 2, "/>");
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000778 ctxt->format = format;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000779 return;
780 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000781 xmlOutputBufferWrite(buf, 1, ">");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000782 if ((cur->type != XML_ELEMENT_NODE) && (cur->content != NULL)) {
Daniel Veillard3995bc32004-05-15 18:57:31 +0000783 xmlOutputBufferWriteEscape(buf, cur->content, ctxt->escape);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000784 }
785 if (cur->children != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000786 if (ctxt->format) xmlOutputBufferWrite(buf, 1, "\n");
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000787 if (ctxt->level >= 0) ctxt->level++;
788 xmlNodeListDumpOutput(ctxt, cur->children);
789 if (ctxt->level > 0) ctxt->level--;
790 if ((xmlIndentTreeOutput) && (ctxt->format))
Daniel Veillard753086a2004-03-28 16:12:44 +0000791 xmlOutputBufferWrite(buf, ctxt->indent_size *
792 (ctxt->level > ctxt->indent_nr ?
793 ctxt->indent_nr : ctxt->level),
794 ctxt->indent);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000795 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000796 xmlOutputBufferWrite(buf, 2, "</");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000797 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
798 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000799 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000800 }
801
802 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000803 xmlOutputBufferWrite(buf, 1, ">");
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000804 ctxt->format = format;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000805}
806
807/**
808 * xmlDocContentDumpOutput:
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000809 * @cur: the document
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000810 *
811 * Dump an XML document.
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000812 */
813static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000814xmlDocContentDumpOutput(xmlSaveCtxtPtr ctxt, xmlDocPtr cur) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000815#ifdef LIBXML_HTML_ENABLED
816 xmlDtdPtr dtd;
817 int is_xhtml = 0;
818#endif
819 const xmlChar *oldenc = cur->encoding;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000820 const xmlChar *encoding = ctxt->encoding;
821 xmlOutputBufferPtr buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000822
823 xmlInitParser();
824
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000825 if (ctxt->encoding != NULL)
826 cur->encoding = BAD_CAST ctxt->encoding;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000827
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000828 buf = ctxt->buf;
Daniel Veillard100e1802005-08-08 14:44:11 +0000829 if ((ctxt->options & XML_SAVE_NO_DECL) == 0) {
830 xmlOutputBufferWrite(buf, 14, "<?xml version=");
831 if (cur->version != NULL)
832 xmlBufferWriteQuotedString(buf->buffer, cur->version);
833 else
834 xmlOutputBufferWrite(buf, 5, "\"1.0\"");
835 if (ctxt->encoding == NULL) {
836 if (cur->encoding != NULL)
837 encoding = cur->encoding;
838 else if (cur->charset != XML_CHAR_ENCODING_UTF8)
839 encoding = (const xmlChar *)
840 xmlGetCharEncodingName((xmlCharEncoding) cur->charset);
841 }
842 if (encoding != NULL) {
843 xmlOutputBufferWrite(buf, 10, " encoding=");
844 xmlBufferWriteQuotedString(buf->buffer, (xmlChar *) encoding);
845 }
846 switch (cur->standalone) {
847 case 0:
848 xmlOutputBufferWrite(buf, 16, " standalone=\"no\"");
849 break;
850 case 1:
851 xmlOutputBufferWrite(buf, 17, " standalone=\"yes\"");
852 break;
853 }
854 xmlOutputBufferWrite(buf, 3, "?>\n");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000855 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000856
857#ifdef LIBXML_HTML_ENABLED
858 dtd = xmlGetIntSubset(cur);
859 if (dtd != NULL) {
860 is_xhtml = xmlIsXHTML(dtd->SystemID, dtd->ExternalID);
861 if (is_xhtml < 0) is_xhtml = 0;
862 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000863#endif
864 if (cur->children != NULL) {
865 xmlNodePtr child = cur->children;
866
867 while (child != NULL) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000868 ctxt->level = 0;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000869#ifdef LIBXML_HTML_ENABLED
870 if (is_xhtml)
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000871 xhtmlNodeDumpOutput(ctxt, child);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000872 else
873#endif
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000874 xmlNodeDumpOutputInternal(ctxt, child);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000875 xmlOutputBufferWrite(buf, 1, "\n");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000876 child = child->next;
877 }
878 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000879 if (ctxt->encoding != NULL)
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000880 cur->encoding = oldenc;
881}
882
883#ifdef LIBXML_HTML_ENABLED
884/************************************************************************
885 * *
886 * Functions specific to XHTML serialization *
887 * *
888 ************************************************************************/
889
890/**
891 * xhtmlIsEmpty:
892 * @node: the node
893 *
894 * Check if a node is an empty xhtml node
895 *
896 * Returns 1 if the node is an empty node, 0 if not and -1 in case of error
897 */
898static int
899xhtmlIsEmpty(xmlNodePtr node) {
900 if (node == NULL)
901 return(-1);
902 if (node->type != XML_ELEMENT_NODE)
903 return(0);
904 if ((node->ns != NULL) && (!xmlStrEqual(node->ns->href, XHTML_NS_NAME)))
905 return(0);
906 if (node->children != NULL)
907 return(0);
908 switch (node->name[0]) {
909 case 'a':
910 if (xmlStrEqual(node->name, BAD_CAST "area"))
911 return(1);
912 return(0);
913 case 'b':
914 if (xmlStrEqual(node->name, BAD_CAST "br"))
915 return(1);
916 if (xmlStrEqual(node->name, BAD_CAST "base"))
917 return(1);
918 if (xmlStrEqual(node->name, BAD_CAST "basefont"))
919 return(1);
920 return(0);
921 case 'c':
922 if (xmlStrEqual(node->name, BAD_CAST "col"))
923 return(1);
924 return(0);
925 case 'f':
926 if (xmlStrEqual(node->name, BAD_CAST "frame"))
927 return(1);
928 return(0);
929 case 'h':
930 if (xmlStrEqual(node->name, BAD_CAST "hr"))
931 return(1);
932 return(0);
933 case 'i':
934 if (xmlStrEqual(node->name, BAD_CAST "img"))
935 return(1);
936 if (xmlStrEqual(node->name, BAD_CAST "input"))
937 return(1);
938 if (xmlStrEqual(node->name, BAD_CAST "isindex"))
939 return(1);
940 return(0);
941 case 'l':
942 if (xmlStrEqual(node->name, BAD_CAST "link"))
943 return(1);
944 return(0);
945 case 'm':
946 if (xmlStrEqual(node->name, BAD_CAST "meta"))
947 return(1);
948 return(0);
949 case 'p':
950 if (xmlStrEqual(node->name, BAD_CAST "param"))
951 return(1);
952 return(0);
953 }
954 return(0);
955}
956
957/**
958 * xhtmlAttrListDumpOutput:
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000959 * @cur: the first attribute pointer
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000960 *
961 * Dump a list of XML attributes
962 */
963static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000964xhtmlAttrListDumpOutput(xmlSaveCtxtPtr ctxt, xmlAttrPtr cur) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000965 xmlAttrPtr xml_lang = NULL;
966 xmlAttrPtr lang = NULL;
967 xmlAttrPtr name = NULL;
968 xmlAttrPtr id = NULL;
969 xmlNodePtr parent;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000970 xmlOutputBufferPtr buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000971
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000972 if (cur == NULL) return;
973 buf = ctxt->buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000974 parent = cur->parent;
975 while (cur != NULL) {
976 if ((cur->ns == NULL) && (xmlStrEqual(cur->name, BAD_CAST "id")))
977 id = cur;
978 else
979 if ((cur->ns == NULL) && (xmlStrEqual(cur->name, BAD_CAST "name")))
980 name = cur;
981 else
982 if ((cur->ns == NULL) && (xmlStrEqual(cur->name, BAD_CAST "lang")))
983 lang = cur;
984 else
985 if ((cur->ns != NULL) && (xmlStrEqual(cur->name, BAD_CAST "lang")) &&
986 (xmlStrEqual(cur->ns->prefix, BAD_CAST "xml")))
987 xml_lang = cur;
988 else if ((cur->ns == NULL) &&
989 ((cur->children == NULL) ||
990 (cur->children->content == NULL) ||
991 (cur->children->content[0] == 0)) &&
992 (htmlIsBooleanAttr(cur->name))) {
993 if (cur->children != NULL)
994 xmlFreeNode(cur->children);
995 cur->children = xmlNewText(cur->name);
996 if (cur->children != NULL)
997 cur->children->parent = (xmlNodePtr) cur;
998 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000999 xmlAttrDumpOutput(ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001000 cur = cur->next;
1001 }
1002 /*
1003 * C.8
1004 */
1005 if ((name != NULL) && (id == NULL)) {
1006 if ((parent != NULL) && (parent->name != NULL) &&
1007 ((xmlStrEqual(parent->name, BAD_CAST "a")) ||
1008 (xmlStrEqual(parent->name, BAD_CAST "p")) ||
1009 (xmlStrEqual(parent->name, BAD_CAST "div")) ||
1010 (xmlStrEqual(parent->name, BAD_CAST "img")) ||
1011 (xmlStrEqual(parent->name, BAD_CAST "map")) ||
1012 (xmlStrEqual(parent->name, BAD_CAST "applet")) ||
1013 (xmlStrEqual(parent->name, BAD_CAST "form")) ||
1014 (xmlStrEqual(parent->name, BAD_CAST "frame")) ||
1015 (xmlStrEqual(parent->name, BAD_CAST "iframe")))) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001016 xmlOutputBufferWrite(buf, 5, " id=\"");
1017 xmlAttrSerializeContent(buf, name);
1018 xmlOutputBufferWrite(buf, 1, "\"");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001019 }
1020 }
1021 /*
1022 * C.7.
1023 */
1024 if ((lang != NULL) && (xml_lang == NULL)) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001025 xmlOutputBufferWrite(buf, 11, " xml:lang=\"");
1026 xmlAttrSerializeContent(buf, lang);
1027 xmlOutputBufferWrite(buf, 1, "\"");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001028 } else
1029 if ((xml_lang != NULL) && (lang == NULL)) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001030 xmlOutputBufferWrite(buf, 7, " lang=\"");
1031 xmlAttrSerializeContent(buf, xml_lang);
1032 xmlOutputBufferWrite(buf, 1, "\"");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001033 }
1034}
1035
1036/**
1037 * xhtmlNodeListDumpOutput:
1038 * @buf: the XML buffer output
1039 * @doc: the XHTML document
1040 * @cur: the first node
1041 * @level: the imbrication level for indenting
1042 * @format: is formatting allowed
1043 * @encoding: an optional encoding string
1044 *
1045 * Dump an XML node list, recursive behaviour, children are printed too.
1046 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1047 * or xmlKeepBlanksDefault(0) was called
1048 */
1049static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001050xhtmlNodeListDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001051 xmlOutputBufferPtr buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001052
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001053 if (cur == NULL) return;
1054 buf = ctxt->buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001055 while (cur != NULL) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001056 if ((ctxt->format) && (xmlIndentTreeOutput) &&
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001057 (cur->type == XML_ELEMENT_NODE))
Daniel Veillard753086a2004-03-28 16:12:44 +00001058 xmlOutputBufferWrite(buf, ctxt->indent_size *
1059 (ctxt->level > ctxt->indent_nr ?
1060 ctxt->indent_nr : ctxt->level),
1061 ctxt->indent);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001062 xhtmlNodeDumpOutput(ctxt, cur);
1063 if (ctxt->format) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001064 xmlOutputBufferWrite(buf, 1, "\n");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001065 }
1066 cur = cur->next;
1067 }
1068}
1069
1070/**
1071 * xhtmlNodeDumpOutput:
1072 * @buf: the XML buffer output
1073 * @doc: the XHTML document
1074 * @cur: the current node
1075 * @level: the imbrication level for indenting
1076 * @format: is formatting allowed
1077 * @encoding: an optional encoding string
1078 *
1079 * Dump an XHTML node, recursive behaviour, children are printed too.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001080 */
1081static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001082xhtmlNodeDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
Rob Richards31f73022005-08-26 15:33:26 +00001083 int format, addmeta = 0;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001084 xmlNodePtr tmp;
1085 xmlChar *start, *end;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001086 xmlOutputBufferPtr buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001087
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001088 if (cur == NULL) return;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001089 if (cur->type == XML_XINCLUDE_START)
1090 return;
1091 if (cur->type == XML_XINCLUDE_END)
1092 return;
1093 if (cur->type == XML_DTD_NODE) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001094 xmlDtdDumpOutput(ctxt, (xmlDtdPtr) cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001095 return;
1096 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001097 buf = ctxt->buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001098 if (cur->type == XML_ELEMENT_DECL) {
1099 xmlDumpElementDecl(buf->buffer, (xmlElementPtr) cur);
1100 return;
1101 }
1102 if (cur->type == XML_ATTRIBUTE_DECL) {
1103 xmlDumpAttributeDecl(buf->buffer, (xmlAttributePtr) cur);
1104 return;
1105 }
1106 if (cur->type == XML_ENTITY_DECL) {
1107 xmlDumpEntityDecl(buf->buffer, (xmlEntityPtr) cur);
1108 return;
1109 }
1110 if (cur->type == XML_TEXT_NODE) {
1111 if (cur->content != NULL) {
1112 if ((cur->name == xmlStringText) ||
1113 (cur->name != xmlStringTextNoenc)) {
Daniel Veillard3995bc32004-05-15 18:57:31 +00001114 xmlOutputBufferWriteEscape(buf, cur->content, ctxt->escape);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001115 } else {
1116 /*
1117 * Disable escaping, needed for XSLT
1118 */
1119 xmlOutputBufferWriteString(buf, (const char *) cur->content);
1120 }
1121 }
1122
1123 return;
1124 }
1125 if (cur->type == XML_PI_NODE) {
1126 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001127 xmlOutputBufferWrite(buf, 2, "<?");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001128 xmlOutputBufferWriteString(buf, (const char *)cur->name);
1129 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001130 xmlOutputBufferWrite(buf, 1, " ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001131 xmlOutputBufferWriteString(buf, (const char *)cur->content);
1132 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001133 xmlOutputBufferWrite(buf, 2, "?>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001134 } else {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001135 xmlOutputBufferWrite(buf, 2, "<?");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001136 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001137 xmlOutputBufferWrite(buf, 2, "?>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001138 }
1139 return;
1140 }
1141 if (cur->type == XML_COMMENT_NODE) {
1142 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001143 xmlOutputBufferWrite(buf, 4, "<!--");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001144 xmlOutputBufferWriteString(buf, (const char *)cur->content);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001145 xmlOutputBufferWrite(buf, 3, "-->");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001146 }
1147 return;
1148 }
1149 if (cur->type == XML_ENTITY_REF_NODE) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001150 xmlOutputBufferWrite(buf, 1, "&");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001151 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001152 xmlOutputBufferWrite(buf, 1, ";");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001153 return;
1154 }
1155 if (cur->type == XML_CDATA_SECTION_NODE) {
1156 start = end = cur->content;
1157 while (*end != '\0') {
1158 if (*end == ']' && *(end + 1) == ']' && *(end + 2) == '>') {
1159 end = end + 2;
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001160 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001161 xmlOutputBufferWrite(buf, end - start, (const char *)start);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001162 xmlOutputBufferWrite(buf, 3, "]]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001163 start = end;
1164 }
1165 end++;
1166 }
1167 if (start != end) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001168 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001169 xmlOutputBufferWriteString(buf, (const char *)start);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001170 xmlOutputBufferWrite(buf, 3, "]]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001171 }
1172 return;
1173 }
1174
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001175 format = ctxt->format;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001176 if (format == 1) {
1177 tmp = cur->children;
1178 while (tmp != NULL) {
1179 if ((tmp->type == XML_TEXT_NODE) ||
1180 (tmp->type == XML_ENTITY_REF_NODE)) {
1181 format = 0;
1182 break;
1183 }
1184 tmp = tmp->next;
1185 }
1186 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001187 xmlOutputBufferWrite(buf, 1, "<");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001188 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
1189 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001190 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001191 }
1192
1193 xmlOutputBufferWriteString(buf, (const char *)cur->name);
1194 if (cur->nsDef)
1195 xmlNsListDumpOutput(buf, cur->nsDef);
1196 if ((xmlStrEqual(cur->name, BAD_CAST "html") &&
1197 (cur->ns == NULL) && (cur->nsDef == NULL))) {
1198 /*
1199 * 3.1.1. Strictly Conforming Documents A.3.1.1 3/
1200 */
1201 xmlOutputBufferWriteString(buf,
1202 " xmlns=\"http://www.w3.org/1999/xhtml\"");
1203 }
1204 if (cur->properties != NULL)
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001205 xhtmlAttrListDumpOutput(ctxt, cur->properties);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001206
Rob Richards31f73022005-08-26 15:33:26 +00001207 if ((cur->type == XML_ELEMENT_NODE) &&
1208 (cur->parent != NULL) &&
1209 (cur->parent->parent == (xmlNodePtr) cur->doc) &&
1210 xmlStrEqual(cur->name, BAD_CAST"head") &&
1211 xmlStrEqual(cur->parent->name, BAD_CAST"html")) {
1212
1213 tmp = cur->children;
1214 while (tmp != NULL) {
1215 if (xmlStrEqual(tmp->name, BAD_CAST"meta")) {
1216 xmlChar *httpequiv;
1217
1218 httpequiv = xmlGetProp(tmp, BAD_CAST"http-equiv");
Rob Richards07b72002005-09-03 14:56:36 +00001219 if (httpequiv != NULL) {
1220 if (xmlStrcasecmp(httpequiv, BAD_CAST"Content-Type") == 0) {
1221 xmlFree(httpequiv);
1222 break;
1223 }
Rob Richards31f73022005-08-26 15:33:26 +00001224 xmlFree(httpequiv);
Rob Richards31f73022005-08-26 15:33:26 +00001225 }
Rob Richards31f73022005-08-26 15:33:26 +00001226 }
1227 tmp = tmp->next;
1228 }
1229 if (tmp == NULL)
1230 addmeta = 1;
1231 }
1232
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001233 if ((cur->type == XML_ELEMENT_NODE) && (cur->children == NULL)) {
1234 if (((cur->ns == NULL) || (cur->ns->prefix == NULL)) &&
Rob Richards31f73022005-08-26 15:33:26 +00001235 ((xhtmlIsEmpty(cur) == 1) && (addmeta == 0))) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001236 /*
1237 * C.2. Empty Elements
1238 */
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001239 xmlOutputBufferWrite(buf, 3, " />");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001240 } else {
Rob Richards31f73022005-08-26 15:33:26 +00001241 if (addmeta == 1) {
1242 xmlOutputBufferWrite(buf, 1, ">");
1243 xmlOutputBufferWriteString(buf,
1244 "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=");
1245 if (ctxt->encoding) {
1246 xmlOutputBufferWriteString(buf, (const char *)ctxt->encoding);
1247 } else {
1248 xmlOutputBufferWrite(buf, 5, "UTF-8");
1249 }
1250 xmlOutputBufferWrite(buf, 3, "\" /");
1251 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001252 /*
1253 * C.3. Element Minimization and Empty Element Content
1254 */
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001255 xmlOutputBufferWrite(buf, 3, "></");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001256 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
1257 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001258 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001259 }
1260 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001261 xmlOutputBufferWrite(buf, 1, ">");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001262 }
1263 return;
1264 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001265 xmlOutputBufferWrite(buf, 1, ">");
Rob Richards31f73022005-08-26 15:33:26 +00001266 if (addmeta == 1) {
1267 xmlOutputBufferWriteString(buf,
1268 "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=");
1269 if (ctxt->encoding) {
1270 xmlOutputBufferWriteString(buf, (const char *)ctxt->encoding);
1271 } else {
1272 xmlOutputBufferWrite(buf, 5, "UTF-8");
1273 }
1274 xmlOutputBufferWrite(buf, 4, "\" />");
1275 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001276 if ((cur->type != XML_ELEMENT_NODE) && (cur->content != NULL)) {
Daniel Veillard3995bc32004-05-15 18:57:31 +00001277 xmlOutputBufferWriteEscape(buf, cur->content, ctxt->escape);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001278 }
1279
1280 /*
1281 * 4.8. Script and Style elements
1282 */
1283 if ((cur->type == XML_ELEMENT_NODE) &&
1284 ((xmlStrEqual(cur->name, BAD_CAST "script")) ||
1285 (xmlStrEqual(cur->name, BAD_CAST "style"))) &&
1286 ((cur->ns == NULL) ||
1287 (xmlStrEqual(cur->ns->href, XHTML_NS_NAME)))) {
1288 xmlNodePtr child = cur->children;
1289
1290 while (child != NULL) {
1291 if ((child->type == XML_TEXT_NODE) ||
1292 (child->type == XML_CDATA_SECTION_NODE)) {
1293 /*
1294 * Apparently CDATA escaping for style just break on IE,
1295 * mozilla and galeon, so ...
1296 */
1297 if (xmlStrEqual(cur->name, BAD_CAST "style") &&
1298 (xmlStrchr(child->content, '<') == NULL) &&
1299 (xmlStrchr(child->content, '>') == NULL) &&
1300 (xmlStrchr(child->content, '&') == NULL)) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001301 int level = ctxt->level;
1302 int indent = ctxt->format;
1303
1304 ctxt->level = 0;
1305 ctxt->format = 0;
1306 xhtmlNodeDumpOutput(ctxt, child);
1307 ctxt->level = level;
1308 ctxt->format = indent;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001309 } else {
1310 start = end = child->content;
1311 while (*end != '\0') {
1312 if (*end == ']' &&
1313 *(end + 1) == ']' &&
1314 *(end + 2) == '>') {
1315 end = end + 2;
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001316 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001317 xmlOutputBufferWrite(buf, end - start,
1318 (const char *)start);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001319 xmlOutputBufferWrite(buf, 3, "]]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001320 start = end;
1321 }
1322 end++;
1323 }
1324 if (start != end) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001325 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
1326 xmlOutputBufferWrite(buf, end - start,
1327 (const char *)start);
1328 xmlOutputBufferWrite(buf, 3, "]]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001329 }
1330 }
1331 } else {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001332 int level = ctxt->level;
1333 int indent = ctxt->format;
1334
1335 ctxt->level = 0;
1336 ctxt->format = 0;
1337 xhtmlNodeDumpOutput(ctxt, child);
1338 ctxt->level = level;
1339 ctxt->format = indent;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001340 }
1341 child = child->next;
1342 }
1343 } else if (cur->children != NULL) {
Daniel Veillardf0244ce2004-05-09 23:48:39 +00001344 int indent = ctxt->format;
1345
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001346 if (format) xmlOutputBufferWrite(buf, 1, "\n");
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001347 if (ctxt->level >= 0) ctxt->level++;
Daniel Veillardf0244ce2004-05-09 23:48:39 +00001348 ctxt->format = format;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001349 xhtmlNodeListDumpOutput(ctxt, cur->children);
1350 if (ctxt->level > 0) ctxt->level--;
Daniel Veillardf0244ce2004-05-09 23:48:39 +00001351 ctxt->format = indent;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001352 if ((xmlIndentTreeOutput) && (format))
Daniel Veillard753086a2004-03-28 16:12:44 +00001353 xmlOutputBufferWrite(buf, ctxt->indent_size *
1354 (ctxt->level > ctxt->indent_nr ?
1355 ctxt->indent_nr : ctxt->level),
1356 ctxt->indent);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001357 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001358 xmlOutputBufferWrite(buf, 2, "</");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001359 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
1360 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001361 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001362 }
1363
1364 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001365 xmlOutputBufferWrite(buf, 1, ">");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001366}
1367#endif
1368
1369/************************************************************************
1370 * *
1371 * Public entry points *
1372 * *
1373 ************************************************************************/
1374
1375/**
1376 * xmlSaveToFd:
1377 * @fd: a file descriptor number
1378 * @encoding: the encoding name to use or NULL
1379 * @options: a set of xmlSaveOptions
1380 *
1381 * Create a document saving context serializing to a file descriptor
1382 * with the encoding and the options given.
1383 *
1384 * Returns a new serialization context or NULL in case of error.
1385 */
1386xmlSaveCtxtPtr
1387xmlSaveToFd(int fd, const char *encoding, int options)
1388{
1389 xmlSaveCtxtPtr ret;
1390
1391 ret = xmlNewSaveCtxt(encoding, options);
1392 if (ret == NULL) return(NULL);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001393 ret->buf = xmlOutputBufferCreateFd(fd, ret->handler);
1394 if (ret->buf == NULL) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001395 xmlFreeSaveCtxt(ret);
1396 return(NULL);
1397 }
1398 return(ret);
1399}
1400
1401/**
1402 * xmlSaveToFilename:
1403 * @filename: a file name or an URL
1404 * @encoding: the encoding name to use or NULL
1405 * @options: a set of xmlSaveOptions
1406 *
1407 * Create a document saving context serializing to a filename or possibly
1408 * to an URL (but this is less reliable) with the encoding and the options
1409 * given.
1410 *
1411 * Returns a new serialization context or NULL in case of error.
1412 */
1413xmlSaveCtxtPtr
1414xmlSaveToFilename(const char *filename, const char *encoding, int options)
1415{
1416 xmlSaveCtxtPtr ret;
1417 int compression = 0; /* TODO handle compression option */
1418
1419 ret = xmlNewSaveCtxt(encoding, options);
1420 if (ret == NULL) return(NULL);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001421 ret->buf = xmlOutputBufferCreateFilename(filename, ret->handler,
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001422 compression);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001423 if (ret->buf == NULL) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001424 xmlFreeSaveCtxt(ret);
1425 return(NULL);
1426 }
1427 return(ret);
1428}
1429
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001430/**
1431 * xmlSaveToBuffer:
1432 * @buffer: a buffer
1433 * @encoding: the encoding name to use or NULL
1434 * @options: a set of xmlSaveOptions
1435 *
1436 * Create a document saving context serializing to a buffer
1437 * with the encoding and the options given
1438 *
1439 * Returns a new serialization context or NULL in case of error.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001440xmlSaveCtxtPtr
1441xmlSaveToBuffer(xmlBufferPtr buffer, const char *encoding, int options)
1442{
1443 TODO
1444 return(NULL);
1445}
Daniel Veillarda2351322004-06-27 12:08:10 +00001446 */
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001447
1448/**
1449 * xmlSaveToIO:
1450 * @iowrite: an I/O write function
1451 * @ioclose: an I/O close function
1452 * @ioctx: an I/O handler
1453 * @encoding: the encoding name to use or NULL
1454 * @options: a set of xmlSaveOptions
1455 *
1456 * Create a document saving context serializing to a file descriptor
1457 * with the encoding and the options given
1458 *
1459 * Returns a new serialization context or NULL in case of error.
1460 */
1461xmlSaveCtxtPtr
1462xmlSaveToIO(xmlOutputWriteCallback iowrite,
1463 xmlOutputCloseCallback ioclose,
1464 void *ioctx, const char *encoding, int options)
1465{
1466 xmlSaveCtxtPtr ret;
1467
1468 ret = xmlNewSaveCtxt(encoding, options);
1469 if (ret == NULL) return(NULL);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001470 ret->buf = xmlOutputBufferCreateIO(iowrite, ioclose, ioctx, ret->handler);
1471 if (ret->buf == NULL) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001472 xmlFreeSaveCtxt(ret);
1473 return(NULL);
1474 }
1475 return(ret);
1476}
1477
1478/**
1479 * xmlSaveDoc:
1480 * @ctxt: a document saving context
1481 * @doc: a document
1482 *
1483 * Save a full document to a saving context
Daniel Veillard377e1a92004-04-16 16:30:05 +00001484 * TODO: The function is not fully implemented yet as it does not return the
1485 * byte count but 0 instead
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001486 *
1487 * Returns the number of byte written or -1 in case of error
1488 */
1489long
1490xmlSaveDoc(xmlSaveCtxtPtr ctxt, xmlDocPtr doc)
1491{
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001492 long ret = 0;
1493
Daniel Veillardce682bc2004-11-05 17:22:25 +00001494 if ((ctxt == NULL) || (doc == NULL)) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001495 xmlDocContentDumpOutput(ctxt, doc);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001496 return(ret);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001497}
1498
1499/**
1500 * xmlSaveTree:
1501 * @ctxt: a document saving context
1502 * @node: a document
1503 *
1504 * Save a subtree starting at the node parameter to a saving context
Daniel Veillard377e1a92004-04-16 16:30:05 +00001505 * TODO: The function is not fully implemented yet as it does not return the
1506 * byte count but 0 instead
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001507 *
1508 * Returns the number of byte written or -1 in case of error
1509 */
1510long
1511xmlSaveTree(xmlSaveCtxtPtr ctxt, xmlNodePtr node)
1512{
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001513 long ret = 0;
1514
Daniel Veillardce682bc2004-11-05 17:22:25 +00001515 if ((ctxt == NULL) || (node == NULL)) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001516 xmlNodeDumpOutputInternal(ctxt, node);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001517 return(ret);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001518}
1519
1520/**
1521 * xmlSaveFlush:
1522 * @ctxt: a document saving context
1523 *
1524 * Flush a document saving context, i.e. make sure that all bytes have
1525 * been output.
1526 *
1527 * Returns the number of byte written or -1 in case of error.
1528 */
1529int
1530xmlSaveFlush(xmlSaveCtxtPtr ctxt)
1531{
1532 if (ctxt == NULL) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001533 if (ctxt->buf == NULL) return(-1);
1534 return(xmlOutputBufferFlush(ctxt->buf));
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001535}
1536
1537/**
1538 * xmlSaveClose:
1539 * @ctxt: a document saving context
1540 *
1541 * Close a document saving context, i.e. make sure that all bytes have
1542 * been output and free the associated data.
1543 *
1544 * Returns the number of byte written or -1 in case of error.
1545 */
1546int
1547xmlSaveClose(xmlSaveCtxtPtr ctxt)
1548{
1549 int ret;
1550
1551 if (ctxt == NULL) return(-1);
1552 ret = xmlSaveFlush(ctxt);
1553 xmlFreeSaveCtxt(ctxt);
1554 return(ret);
1555}
1556
Daniel Veillard3995bc32004-05-15 18:57:31 +00001557/**
1558 * xmlSaveSetEscape:
1559 * @ctxt: a document saving context
1560 * @escape: the escaping function
1561 *
1562 * Set a custom escaping function to be used for text in element content
1563 *
1564 * Returns 0 if successful or -1 in case of error.
1565 */
1566int
1567xmlSaveSetEscape(xmlSaveCtxtPtr ctxt, xmlCharEncodingOutputFunc escape)
1568{
1569 if (ctxt == NULL) return(-1);
1570 ctxt->escape = escape;
1571 return(0);
1572}
1573
1574/**
1575 * xmlSaveSetAttrEscape:
1576 * @ctxt: a document saving context
1577 * @escape: the escaping function
1578 *
1579 * Set a custom escaping function to be used for text in attribute content
1580 *
1581 * Returns 0 if successful or -1 in case of error.
1582 */
1583int
1584xmlSaveSetAttrEscape(xmlSaveCtxtPtr ctxt, xmlCharEncodingOutputFunc escape)
1585{
1586 if (ctxt == NULL) return(-1);
1587 ctxt->escapeAttr = escape;
1588 return(0);
1589}
1590
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001591/************************************************************************
1592 * *
1593 * Public entry points based on buffers *
1594 * *
1595 ************************************************************************/
1596/**
1597 * xmlAttrSerializeTxtContent:
1598 * @buf: the XML buffer output
1599 * @doc: the document
1600 * @attr: the attribute node
1601 * @string: the text content
1602 *
1603 * Serialize text attribute values to an xml simple buffer
1604 */
1605void
1606xmlAttrSerializeTxtContent(xmlBufferPtr buf, xmlDocPtr doc,
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001607 xmlAttrPtr attr, const xmlChar * string)
1608{
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001609 xmlChar *base, *cur;
1610
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001611 if (string == NULL)
1612 return;
1613 base = cur = (xmlChar *) string;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001614 while (*cur != 0) {
1615 if (*cur == '\n') {
1616 if (base != cur)
1617 xmlBufferAdd(buf, base, cur - base);
1618 xmlBufferAdd(buf, BAD_CAST "&#10;", 5);
1619 cur++;
1620 base = cur;
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001621 } else if (*cur == '\r') {
1622 if (base != cur)
1623 xmlBufferAdd(buf, base, cur - base);
1624 xmlBufferAdd(buf, BAD_CAST "&#13;", 5);
1625 cur++;
1626 base = cur;
1627 } else if (*cur == '\t') {
1628 if (base != cur)
1629 xmlBufferAdd(buf, base, cur - base);
1630 xmlBufferAdd(buf, BAD_CAST "&#9;", 4);
1631 cur++;
1632 base = cur;
1633 } else if (*cur == '"') {
1634 if (base != cur)
1635 xmlBufferAdd(buf, base, cur - base);
1636 xmlBufferAdd(buf, BAD_CAST "&quot;", 6);
1637 cur++;
1638 base = cur;
1639 } else if (*cur == '<') {
1640 if (base != cur)
1641 xmlBufferAdd(buf, base, cur - base);
1642 xmlBufferAdd(buf, BAD_CAST "&lt;", 4);
1643 cur++;
1644 base = cur;
1645 } else if (*cur == '>') {
1646 if (base != cur)
1647 xmlBufferAdd(buf, base, cur - base);
1648 xmlBufferAdd(buf, BAD_CAST "&gt;", 4);
1649 cur++;
1650 base = cur;
1651 } else if (*cur == '&') {
1652 if (base != cur)
1653 xmlBufferAdd(buf, base, cur - base);
1654 xmlBufferAdd(buf, BAD_CAST "&amp;", 5);
1655 cur++;
1656 base = cur;
1657 } else if ((*cur >= 0x80) && ((doc == NULL) ||
1658 (doc->encoding == NULL))) {
1659 /*
1660 * We assume we have UTF-8 content.
1661 */
1662 unsigned char tmp[10];
1663 int val = 0, l = 1;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001664
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001665 if (base != cur)
1666 xmlBufferAdd(buf, base, cur - base);
1667 if (*cur < 0xC0) {
1668 xmlSaveErr(XML_SAVE_NOT_UTF8, (xmlNodePtr) attr, NULL);
1669 if (doc != NULL)
1670 doc->encoding = xmlStrdup(BAD_CAST "ISO-8859-1");
1671 xmlSerializeHexCharRef(tmp, *cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001672 xmlBufferAdd(buf, (xmlChar *) tmp, -1);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001673 cur++;
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001674 base = cur;
1675 continue;
1676 } else if (*cur < 0xE0) {
1677 val = (cur[0]) & 0x1F;
1678 val <<= 6;
1679 val |= (cur[1]) & 0x3F;
1680 l = 2;
1681 } else if (*cur < 0xF0) {
1682 val = (cur[0]) & 0x0F;
1683 val <<= 6;
1684 val |= (cur[1]) & 0x3F;
1685 val <<= 6;
1686 val |= (cur[2]) & 0x3F;
1687 l = 3;
1688 } else if (*cur < 0xF8) {
1689 val = (cur[0]) & 0x07;
1690 val <<= 6;
1691 val |= (cur[1]) & 0x3F;
1692 val <<= 6;
1693 val |= (cur[2]) & 0x3F;
1694 val <<= 6;
1695 val |= (cur[3]) & 0x3F;
1696 l = 4;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001697 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001698 if ((l == 1) || (!IS_CHAR(val))) {
1699 xmlSaveErr(XML_SAVE_CHAR_INVALID, (xmlNodePtr) attr, NULL);
1700 if (doc != NULL)
1701 doc->encoding = xmlStrdup(BAD_CAST "ISO-8859-1");
1702
1703 xmlSerializeHexCharRef(tmp, *cur);
1704 xmlBufferAdd(buf, (xmlChar *) tmp, -1);
1705 cur++;
1706 base = cur;
1707 continue;
1708 }
1709 /*
1710 * We could do multiple things here. Just save
1711 * as a char ref
1712 */
1713 xmlSerializeHexCharRef(tmp, val);
1714 xmlBufferAdd(buf, (xmlChar *) tmp, -1);
1715 cur += l;
1716 base = cur;
1717 } else {
1718 cur++;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001719 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001720 }
1721 if (base != cur)
1722 xmlBufferAdd(buf, base, cur - base);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001723}
1724
1725/**
1726 * xmlNodeDump:
1727 * @buf: the XML buffer output
1728 * @doc: the document
1729 * @cur: the current node
1730 * @level: the imbrication level for indenting
1731 * @format: is formatting allowed
1732 *
1733 * Dump an XML node, recursive behaviour,children are printed too.
1734 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1735 * or xmlKeepBlanksDefault(0) was called
1736 *
1737 * Returns the number of bytes written to the buffer or -1 in case of error
1738 */
1739int
1740xmlNodeDump(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, int level,
1741 int format)
1742{
1743 unsigned int use;
1744 int ret;
1745 xmlOutputBufferPtr outbuf;
1746
1747 xmlInitParser();
1748
1749 if (cur == NULL) {
1750#ifdef DEBUG_TREE
1751 xmlGenericError(xmlGenericErrorContext,
1752 "xmlNodeDump : node == NULL\n");
1753#endif
1754 return (-1);
1755 }
1756 if (buf == NULL) {
1757#ifdef DEBUG_TREE
1758 xmlGenericError(xmlGenericErrorContext,
1759 "xmlNodeDump : buf == NULL\n");
1760#endif
1761 return (-1);
1762 }
1763 outbuf = (xmlOutputBufferPtr) xmlMalloc(sizeof(xmlOutputBuffer));
1764 if (outbuf == NULL) {
1765 xmlSaveErrMemory("creating buffer");
1766 return (-1);
1767 }
1768 memset(outbuf, 0, (size_t) sizeof(xmlOutputBuffer));
1769 outbuf->buffer = buf;
1770 outbuf->encoder = NULL;
1771 outbuf->writecallback = NULL;
1772 outbuf->closecallback = NULL;
1773 outbuf->context = NULL;
1774 outbuf->written = 0;
1775
1776 use = buf->use;
1777 xmlNodeDumpOutput(outbuf, doc, cur, level, format, NULL);
1778 xmlFree(outbuf);
1779 ret = buf->use - use;
1780 return (ret);
1781}
1782
1783/**
1784 * xmlElemDump:
1785 * @f: the FILE * for the output
1786 * @doc: the document
1787 * @cur: the current node
1788 *
1789 * Dump an XML/HTML node, recursive behaviour, children are printed too.
1790 */
1791void
1792xmlElemDump(FILE * f, xmlDocPtr doc, xmlNodePtr cur)
1793{
1794 xmlOutputBufferPtr outbuf;
1795
1796 xmlInitParser();
1797
1798 if (cur == NULL) {
1799#ifdef DEBUG_TREE
1800 xmlGenericError(xmlGenericErrorContext,
1801 "xmlElemDump : cur == NULL\n");
1802#endif
1803 return;
1804 }
1805#ifdef DEBUG_TREE
1806 if (doc == NULL) {
1807 xmlGenericError(xmlGenericErrorContext,
1808 "xmlElemDump : doc == NULL\n");
1809 }
1810#endif
1811
1812 outbuf = xmlOutputBufferCreateFile(f, NULL);
1813 if (outbuf == NULL)
1814 return;
1815 if ((doc != NULL) && (doc->type == XML_HTML_DOCUMENT_NODE)) {
1816#ifdef LIBXML_HTML_ENABLED
1817 htmlNodeDumpOutput(outbuf, doc, cur, NULL);
1818#else
1819 xmlSaveErr(XML_ERR_INTERNAL_ERROR, cur, "HTML support not compiled in\n");
1820#endif /* LIBXML_HTML_ENABLED */
1821 } else
1822 xmlNodeDumpOutput(outbuf, doc, cur, 0, 1, NULL);
1823 xmlOutputBufferClose(outbuf);
1824}
1825
1826/************************************************************************
1827 * *
1828 * Saving functions front-ends *
1829 * *
1830 ************************************************************************/
1831
1832/**
1833 * xmlNodeDumpOutput:
1834 * @buf: the XML buffer output
1835 * @doc: the document
1836 * @cur: the current node
1837 * @level: the imbrication level for indenting
1838 * @format: is formatting allowed
1839 * @encoding: an optional encoding string
1840 *
1841 * Dump an XML node, recursive behaviour, children are printed too.
1842 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1843 * or xmlKeepBlanksDefault(0) was called
1844 */
1845void
1846xmlNodeDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur,
1847 int level, int format, const char *encoding)
1848{
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001849 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001850#ifdef LIBXML_HTML_ENABLED
1851 xmlDtdPtr dtd;
1852 int is_xhtml = 0;
1853#endif
1854
1855 xmlInitParser();
1856
Daniel Veillardce244ad2004-11-05 10:03:46 +00001857 if ((buf == NULL) || (cur == NULL)) return;
1858
Daniel Veillard64354ea2005-03-31 15:22:56 +00001859 if (encoding == NULL)
1860 encoding = "UTF-8";
1861
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001862 memset(&ctxt, 0, sizeof(ctxt));
1863 ctxt.doc = doc;
1864 ctxt.buf = buf;
1865 ctxt.level = level;
1866 ctxt.format = format;
1867 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00001868 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001869
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001870#ifdef LIBXML_HTML_ENABLED
1871 dtd = xmlGetIntSubset(doc);
1872 if (dtd != NULL) {
1873 is_xhtml = xmlIsXHTML(dtd->SystemID, dtd->ExternalID);
1874 if (is_xhtml < 0)
1875 is_xhtml = 0;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001876 }
1877
1878 if (is_xhtml)
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001879 xhtmlNodeDumpOutput(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001880 else
1881#endif
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001882 xmlNodeDumpOutputInternal(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001883}
1884
1885/**
1886 * xmlDocDumpFormatMemoryEnc:
1887 * @out_doc: Document to generate XML text from
1888 * @doc_txt_ptr: Memory pointer for allocated XML text
1889 * @doc_txt_len: Length of the generated XML text
1890 * @txt_encoding: Character encoding to use when generating XML text
1891 * @format: should formatting spaces been added
1892 *
1893 * Dump the current DOM tree into memory using the character encoding specified
1894 * by the caller. Note it is up to the caller of this function to free the
1895 * allocated memory with xmlFree().
1896 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1897 * or xmlKeepBlanksDefault(0) was called
1898 */
1899
1900void
1901xmlDocDumpFormatMemoryEnc(xmlDocPtr out_doc, xmlChar **doc_txt_ptr,
1902 int * doc_txt_len, const char * txt_encoding,
1903 int format) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001904 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001905 int dummy = 0;
1906 xmlOutputBufferPtr out_buff = NULL;
1907 xmlCharEncodingHandlerPtr conv_hdlr = NULL;
1908
1909 if (doc_txt_len == NULL) {
1910 doc_txt_len = &dummy; /* Continue, caller just won't get length */
1911 }
1912
1913 if (doc_txt_ptr == NULL) {
1914 *doc_txt_len = 0;
1915 return;
1916 }
1917
1918 *doc_txt_ptr = NULL;
1919 *doc_txt_len = 0;
1920
1921 if (out_doc == NULL) {
1922 /* No document, no output */
1923 return;
1924 }
1925
1926 /*
1927 * Validate the encoding value, if provided.
1928 * This logic is copied from xmlSaveFileEnc.
1929 */
1930
1931 if (txt_encoding == NULL)
1932 txt_encoding = (const char *) out_doc->encoding;
1933 if (txt_encoding != NULL) {
1934 conv_hdlr = xmlFindCharEncodingHandler(txt_encoding);
1935 if ( conv_hdlr == NULL ) {
1936 xmlSaveErr(XML_SAVE_UNKNOWN_ENCODING, (xmlNodePtr) out_doc,
1937 txt_encoding);
1938 return;
1939 }
1940 }
1941
1942 if ((out_buff = xmlAllocOutputBuffer(conv_hdlr)) == NULL ) {
1943 xmlSaveErrMemory("creating buffer");
1944 return;
1945 }
1946
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001947 memset(&ctxt, 0, sizeof(ctxt));
1948 ctxt.doc = out_doc;
1949 ctxt.buf = out_buff;
1950 ctxt.level = 0;
1951 ctxt.format = format;
1952 ctxt.encoding = (const xmlChar *) txt_encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00001953 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001954 xmlDocContentDumpOutput(&ctxt, out_doc);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001955 xmlOutputBufferFlush(out_buff);
1956 if (out_buff->conv != NULL) {
1957 *doc_txt_len = out_buff->conv->use;
1958 *doc_txt_ptr = xmlStrndup(out_buff->conv->content, *doc_txt_len);
1959 } else {
1960 *doc_txt_len = out_buff->buffer->use;
1961 *doc_txt_ptr = xmlStrndup(out_buff->buffer->content, *doc_txt_len);
1962 }
1963 (void)xmlOutputBufferClose(out_buff);
1964
1965 if ((*doc_txt_ptr == NULL) && (*doc_txt_len > 0)) {
1966 *doc_txt_len = 0;
1967 xmlSaveErrMemory("creating output");
1968 }
1969
1970 return;
1971}
1972
1973/**
1974 * xmlDocDumpMemory:
1975 * @cur: the document
1976 * @mem: OUT: the memory pointer
1977 * @size: OUT: the memory length
1978 *
1979 * Dump an XML document in memory and return the #xmlChar * and it's size
1980 * in bytes. It's up to the caller to free the memory with xmlFree().
1981 * The resulting byte array is zero terminated, though the last 0 is not
1982 * included in the returned size.
1983 */
1984void
1985xmlDocDumpMemory(xmlDocPtr cur, xmlChar**mem, int *size) {
1986 xmlDocDumpFormatMemoryEnc(cur, mem, size, NULL, 0);
1987}
1988
1989/**
1990 * xmlDocDumpFormatMemory:
1991 * @cur: the document
1992 * @mem: OUT: the memory pointer
1993 * @size: OUT: the memory length
1994 * @format: should formatting spaces been added
1995 *
1996 *
1997 * Dump an XML document in memory and return the #xmlChar * and it's size.
1998 * It's up to the caller to free the memory with xmlFree().
1999 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2000 * or xmlKeepBlanksDefault(0) was called
2001 */
2002void
2003xmlDocDumpFormatMemory(xmlDocPtr cur, xmlChar**mem, int *size, int format) {
2004 xmlDocDumpFormatMemoryEnc(cur, mem, size, NULL, format);
2005}
2006
2007/**
2008 * xmlDocDumpMemoryEnc:
2009 * @out_doc: Document to generate XML text from
2010 * @doc_txt_ptr: Memory pointer for allocated XML text
2011 * @doc_txt_len: Length of the generated XML text
2012 * @txt_encoding: Character encoding to use when generating XML text
2013 *
2014 * Dump the current DOM tree into memory using the character encoding specified
2015 * by the caller. Note it is up to the caller of this function to free the
2016 * allocated memory with xmlFree().
2017 */
2018
2019void
2020xmlDocDumpMemoryEnc(xmlDocPtr out_doc, xmlChar **doc_txt_ptr,
2021 int * doc_txt_len, const char * txt_encoding) {
2022 xmlDocDumpFormatMemoryEnc(out_doc, doc_txt_ptr, doc_txt_len,
2023 txt_encoding, 0);
2024}
2025
2026/**
2027 * xmlDocFormatDump:
2028 * @f: the FILE*
2029 * @cur: the document
2030 * @format: should formatting spaces been added
2031 *
2032 * Dump an XML document to an open FILE.
2033 *
2034 * returns: the number of bytes written or -1 in case of failure.
2035 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2036 * or xmlKeepBlanksDefault(0) was called
2037 */
2038int
2039xmlDocFormatDump(FILE *f, xmlDocPtr cur, int format) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002040 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002041 xmlOutputBufferPtr buf;
2042 const char * encoding;
2043 xmlCharEncodingHandlerPtr handler = NULL;
2044 int ret;
2045
2046 if (cur == NULL) {
2047#ifdef DEBUG_TREE
2048 xmlGenericError(xmlGenericErrorContext,
2049 "xmlDocDump : document == NULL\n");
2050#endif
2051 return(-1);
2052 }
2053 encoding = (const char *) cur->encoding;
2054
2055 if (encoding != NULL) {
2056 handler = xmlFindCharEncodingHandler(encoding);
2057 if (handler == NULL) {
2058 xmlFree((char *) cur->encoding);
2059 cur->encoding = NULL;
2060 }
2061 }
2062 buf = xmlOutputBufferCreateFile(f, handler);
2063 if (buf == NULL) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002064 memset(&ctxt, 0, sizeof(ctxt));
2065 ctxt.doc = cur;
2066 ctxt.buf = buf;
2067 ctxt.level = 0;
2068 ctxt.format = format;
2069 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002070 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002071 xmlDocContentDumpOutput(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002072
2073 ret = xmlOutputBufferClose(buf);
2074 return(ret);
2075}
2076
2077/**
2078 * xmlDocDump:
2079 * @f: the FILE*
2080 * @cur: the document
2081 *
2082 * Dump an XML document to an open FILE.
2083 *
2084 * returns: the number of bytes written or -1 in case of failure.
2085 */
2086int
2087xmlDocDump(FILE *f, xmlDocPtr cur) {
2088 return(xmlDocFormatDump (f, cur, 0));
2089}
2090
2091/**
2092 * xmlSaveFileTo:
2093 * @buf: an output I/O buffer
2094 * @cur: the document
2095 * @encoding: the encoding if any assuming the I/O layer handles the trancoding
2096 *
2097 * Dump an XML document to an I/O buffer.
Daniel Veillard3d97e662004-11-04 10:49:00 +00002098 * Warning ! This call xmlOutputBufferClose() on buf which is not available
2099 * after this call.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002100 *
2101 * returns: the number of bytes written or -1 in case of failure.
2102 */
2103int
2104xmlSaveFileTo(xmlOutputBufferPtr buf, xmlDocPtr cur, const char *encoding) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002105 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002106 int ret;
2107
Daniel Veillard3d97e662004-11-04 10:49:00 +00002108 if (buf == NULL) return(-1);
2109 if (cur == NULL) {
2110 xmlOutputBufferClose(buf);
2111 return(-1);
2112 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002113 memset(&ctxt, 0, sizeof(ctxt));
2114 ctxt.doc = cur;
2115 ctxt.buf = buf;
2116 ctxt.level = 0;
2117 ctxt.format = 0;
2118 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002119 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002120 xmlDocContentDumpOutput(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002121 ret = xmlOutputBufferClose(buf);
2122 return(ret);
2123}
2124
2125/**
2126 * xmlSaveFormatFileTo:
2127 * @buf: an output I/O buffer
2128 * @cur: the document
2129 * @encoding: the encoding if any assuming the I/O layer handles the trancoding
2130 * @format: should formatting spaces been added
2131 *
2132 * Dump an XML document to an I/O buffer.
Daniel Veillard3d97e662004-11-04 10:49:00 +00002133 * Warning ! This call xmlOutputBufferClose() on buf which is not available
2134 * after this call.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002135 *
2136 * returns: the number of bytes written or -1 in case of failure.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002137 */
2138int
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002139xmlSaveFormatFileTo(xmlOutputBufferPtr buf, xmlDocPtr cur,
2140 const char *encoding, int format)
2141{
2142 xmlSaveCtxt ctxt;
2143 int ret;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002144
Daniel Veillard3d97e662004-11-04 10:49:00 +00002145 if (buf == NULL) return(-1);
Daniel Veillardce244ad2004-11-05 10:03:46 +00002146 if ((cur == NULL) ||
2147 ((cur->type != XML_DOCUMENT_NODE) &&
2148 (cur->type != XML_HTML_DOCUMENT_NODE))) {
Daniel Veillard3d97e662004-11-04 10:49:00 +00002149 xmlOutputBufferClose(buf);
2150 return(-1);
2151 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002152 memset(&ctxt, 0, sizeof(ctxt));
2153 ctxt.doc = cur;
2154 ctxt.buf = buf;
2155 ctxt.level = 0;
2156 ctxt.format = format;
2157 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002158 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002159 xmlDocContentDumpOutput(&ctxt, cur);
2160 ret = xmlOutputBufferClose(buf);
2161 return (ret);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002162}
2163
2164/**
2165 * xmlSaveFormatFileEnc:
2166 * @filename: the filename or URL to output
2167 * @cur: the document being saved
2168 * @encoding: the name of the encoding to use or NULL.
2169 * @format: should formatting spaces be added.
2170 *
2171 * Dump an XML document to a file or an URL.
2172 *
2173 * Returns the number of bytes written or -1 in case of error.
2174 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2175 * or xmlKeepBlanksDefault(0) was called
2176 */
2177int
2178xmlSaveFormatFileEnc( const char * filename, xmlDocPtr cur,
2179 const char * encoding, int format ) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002180 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002181 xmlOutputBufferPtr buf;
2182 xmlCharEncodingHandlerPtr handler = NULL;
2183 int ret;
2184
2185 if (cur == NULL)
2186 return(-1);
2187
2188 if (encoding == NULL)
2189 encoding = (const char *) cur->encoding;
2190
2191 if (encoding != NULL) {
2192
2193 handler = xmlFindCharEncodingHandler(encoding);
2194 if (handler == NULL)
2195 return(-1);
2196 }
2197
2198#ifdef HAVE_ZLIB_H
2199 if (cur->compression < 0) cur->compression = xmlGetCompressMode();
2200#endif
2201 /*
2202 * save the content to a temp buffer.
2203 */
2204 buf = xmlOutputBufferCreateFilename(filename, handler, cur->compression);
2205 if (buf == NULL) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002206 memset(&ctxt, 0, sizeof(ctxt));
2207 ctxt.doc = cur;
2208 ctxt.buf = buf;
2209 ctxt.level = 0;
2210 ctxt.format = format;
2211 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002212 xmlSaveCtxtInit(&ctxt);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002213
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002214 xmlDocContentDumpOutput(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002215
2216 ret = xmlOutputBufferClose(buf);
2217 return(ret);
2218}
2219
2220
2221/**
2222 * xmlSaveFileEnc:
2223 * @filename: the filename (or URL)
2224 * @cur: the document
2225 * @encoding: the name of an encoding (or NULL)
2226 *
2227 * Dump an XML document, converting it to the given encoding
2228 *
2229 * returns: the number of bytes written or -1 in case of failure.
2230 */
2231int
2232xmlSaveFileEnc(const char *filename, xmlDocPtr cur, const char *encoding) {
2233 return ( xmlSaveFormatFileEnc( filename, cur, encoding, 0 ) );
2234}
2235
2236/**
2237 * xmlSaveFormatFile:
2238 * @filename: the filename (or URL)
2239 * @cur: the document
2240 * @format: should formatting spaces been added
2241 *
2242 * Dump an XML document to a file. Will use compression if
2243 * compiled in and enabled. If @filename is "-" the stdout file is
2244 * used. If @format is set then the document will be indented on output.
2245 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2246 * or xmlKeepBlanksDefault(0) was called
2247 *
2248 * returns: the number of bytes written or -1 in case of failure.
2249 */
2250int
2251xmlSaveFormatFile(const char *filename, xmlDocPtr cur, int format) {
2252 return ( xmlSaveFormatFileEnc( filename, cur, NULL, format ) );
2253}
2254
2255/**
2256 * xmlSaveFile:
2257 * @filename: the filename (or URL)
2258 * @cur: the document
2259 *
2260 * Dump an XML document to a file. Will use compression if
2261 * compiled in and enabled. If @filename is "-" the stdout file is
2262 * used.
2263 * returns: the number of bytes written or -1 in case of failure.
2264 */
2265int
2266xmlSaveFile(const char *filename, xmlDocPtr cur) {
2267 return(xmlSaveFormatFileEnc(filename, cur, NULL, 0));
2268}
2269
2270#endif /* LIBXML_OUTPUT_ENABLED */
2271
Daniel Veillard5d4644e2005-04-01 13:11:58 +00002272#define bottom_xmlsave
2273#include "elfgcchack.h"