blob: ca1d876274af3e2fe19f3bd09edb589ea006bb15 [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 }
Rob Richards2ce51c02005-09-12 12:16:35 +0000346
347 if (xmlSaveNoEmptyTags) {
348 ctxt->options |= XML_SAVE_NO_EMPTY;
349 }
Daniel Veillard753086a2004-03-28 16:12:44 +0000350}
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000351
352/**
353 * xmlFreeSaveCtxt:
354 *
355 * Free a saving context, destroying the ouptut in any remaining buffer
356 */
357static void
358xmlFreeSaveCtxt(xmlSaveCtxtPtr ctxt)
359{
360 if (ctxt == NULL) return;
361 if (ctxt->encoding != NULL)
362 xmlFree((char *) ctxt->encoding);
Daniel Veillarde2161a62004-04-29 17:14:25 +0000363 if (ctxt->buf != NULL)
364 xmlOutputBufferClose(ctxt->buf);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000365 xmlFree(ctxt);
366}
367
368/**
369 * xmlNewSaveCtxt:
370 *
371 * Create a new saving context
372 *
373 * Returns the new structure or NULL in case of error
374 */
375static xmlSaveCtxtPtr
376xmlNewSaveCtxt(const char *encoding, int options)
377{
378 xmlSaveCtxtPtr ret;
379
380 ret = (xmlSaveCtxtPtr) xmlMalloc(sizeof(xmlSaveCtxt));
381 if (ret == NULL) {
382 xmlSaveErrMemory("creating saving context");
383 return ( NULL );
384 }
385 memset(ret, 0, sizeof(xmlSaveCtxt));
Daniel Veillard6fc5db02005-01-16 00:05:58 +0000386
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000387 if (encoding != NULL) {
388 ret->handler = xmlFindCharEncodingHandler(encoding);
389 if (ret->handler == NULL) {
390 xmlSaveErr(XML_SAVE_UNKNOWN_ENCODING, NULL, encoding);
391 xmlFreeSaveCtxt(ret);
392 return(NULL);
393 }
394 ret->encoding = xmlStrdup((const xmlChar *)encoding);
Daniel Veillard3995bc32004-05-15 18:57:31 +0000395 ret->escape = xmlEscapeEntities;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000396 }
Daniel Veillard753086a2004-03-28 16:12:44 +0000397 xmlSaveCtxtInit(ret);
398
Rob Richards2ce51c02005-09-12 12:16:35 +0000399 /*
400 * Use the options
401 */
402
403 /* Re-check this option as it may already have been set */
404 if ((ret->options & XML_SAVE_NO_EMPTY) && ! (options & XML_SAVE_NO_EMPTY)) {
405 options |= XML_SAVE_NO_EMPTY;
406 }
407
408 ret->options = options;
409 if (options & XML_SAVE_FORMAT)
410 ret->format = 1;
411
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000412 return(ret);
413}
414
415/************************************************************************
416 * *
417 * Dumping XML tree content to a simple buffer *
418 * *
419 ************************************************************************/
420/**
421 * xmlAttrSerializeContent:
422 * @buf: the XML buffer output
423 * @doc: the document
424 * @attr: the attribute pointer
425 *
426 * Serialize the attribute in the buffer
427 */
428static void
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000429xmlAttrSerializeContent(xmlOutputBufferPtr buf, xmlAttrPtr attr)
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000430{
431 xmlNodePtr children;
432
433 children = attr->children;
434 while (children != NULL) {
435 switch (children->type) {
436 case XML_TEXT_NODE:
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000437 xmlAttrSerializeTxtContent(buf->buffer, attr->doc,
438 attr, children->content);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000439 break;
440 case XML_ENTITY_REF_NODE:
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000441 xmlBufferAdd(buf->buffer, BAD_CAST "&", 1);
442 xmlBufferAdd(buf->buffer, children->name,
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000443 xmlStrlen(children->name));
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000444 xmlBufferAdd(buf->buffer, BAD_CAST ";", 1);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000445 break;
446 default:
447 /* should not happen unless we have a badly built tree */
448 break;
449 }
450 children = children->next;
451 }
452}
453
454/************************************************************************
455 * *
456 * Dumping XML tree content to an I/O output buffer *
457 * *
458 ************************************************************************/
459
460#ifdef LIBXML_HTML_ENABLED
461static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000462xhtmlNodeDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000463#endif
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000464static void xmlNodeListDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur);
465static void xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000466void xmlNsListDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur);
Daniel Veillardce244ad2004-11-05 10:03:46 +0000467static void xmlDocContentDumpOutput(xmlSaveCtxtPtr ctxt, xmlDocPtr cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000468
469/**
470 * xmlNsDumpOutput:
471 * @buf: the XML buffer output
472 * @cur: a namespace
473 *
474 * Dump a local Namespace definition.
475 * Should be called in the context of attributes dumps.
476 */
477static void
478xmlNsDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur) {
Daniel Veillardce244ad2004-11-05 10:03:46 +0000479 if ((cur == NULL) || (buf == NULL)) return;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000480 if ((cur->type == XML_LOCAL_NAMESPACE) && (cur->href != NULL)) {
481 if (xmlStrEqual(cur->prefix, BAD_CAST "xml"))
482 return;
483
484 /* Within the context of an element attributes */
485 if (cur->prefix != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000486 xmlOutputBufferWrite(buf, 7, " xmlns:");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000487 xmlOutputBufferWriteString(buf, (const char *)cur->prefix);
488 } else
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000489 xmlOutputBufferWrite(buf, 6, " xmlns");
490 xmlOutputBufferWrite(buf, 1, "=");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000491 xmlBufferWriteQuotedString(buf->buffer, cur->href);
492 }
493}
494
495/**
496 * xmlNsListDumpOutput:
497 * @buf: the XML buffer output
498 * @cur: the first namespace
499 *
500 * Dump a list of local Namespace definitions.
501 * Should be called in the context of attributes dumps.
502 */
503void
504xmlNsListDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur) {
505 while (cur != NULL) {
506 xmlNsDumpOutput(buf, cur);
507 cur = cur->next;
508 }
509}
510
511/**
512 * xmlDtdDumpOutput:
513 * @buf: the XML buffer output
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000514 * @dtd: the pointer to the DTD
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000515 *
516 * Dump the XML document DTD, if any.
517 */
518static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000519xmlDtdDumpOutput(xmlSaveCtxtPtr ctxt, xmlDtdPtr dtd) {
520 xmlOutputBufferPtr buf;
521 int format, level;
522 xmlDocPtr doc;
523
524 if (dtd == NULL) return;
525 if ((ctxt == NULL) || (ctxt->buf == NULL))
526 return;
527 buf = ctxt->buf;
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000528 xmlOutputBufferWrite(buf, 10, "<!DOCTYPE ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000529 xmlOutputBufferWriteString(buf, (const char *)dtd->name);
530 if (dtd->ExternalID != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000531 xmlOutputBufferWrite(buf, 8, " PUBLIC ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000532 xmlBufferWriteQuotedString(buf->buffer, dtd->ExternalID);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000533 xmlOutputBufferWrite(buf, 1, " ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000534 xmlBufferWriteQuotedString(buf->buffer, dtd->SystemID);
535 } else if (dtd->SystemID != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000536 xmlOutputBufferWrite(buf, 8, " SYSTEM ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000537 xmlBufferWriteQuotedString(buf->buffer, dtd->SystemID);
538 }
539 if ((dtd->entities == NULL) && (dtd->elements == NULL) &&
Daniel Veillard41c4a752004-09-08 20:55:38 +0000540 (dtd->attributes == NULL) && (dtd->notations == NULL) &&
541 (dtd->pentities == NULL)) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000542 xmlOutputBufferWrite(buf, 1, ">");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000543 return;
544 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000545 xmlOutputBufferWrite(buf, 3, " [\n");
Daniel Veillard41c4a752004-09-08 20:55:38 +0000546 /*
547 * Dump the notations first they are not in the DTD children list
548 * Do this only on a standalone DTD or on the internal subset though.
549 */
550 if ((dtd->notations != NULL) && ((dtd->doc == NULL) ||
551 (dtd->doc->intSubset == dtd))) {
Daniel Veillardda3b29a2004-08-14 11:15:13 +0000552 xmlDumpNotationTable(buf->buffer, (xmlNotationTablePtr) dtd->notations);
553 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000554 format = ctxt->format;
555 level = ctxt->level;
556 doc = ctxt->doc;
557 ctxt->format = 0;
558 ctxt->level = -1;
559 ctxt->doc = dtd->doc;
560 xmlNodeListDumpOutput(ctxt, dtd->children);
561 ctxt->format = format;
562 ctxt->level = level;
563 ctxt->doc = doc;
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000564 xmlOutputBufferWrite(buf, 2, "]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000565}
566
567/**
568 * xmlAttrDumpOutput:
569 * @buf: the XML buffer output
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000570 * @cur: the attribute pointer
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000571 *
572 * Dump an XML attribute
573 */
574static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000575xmlAttrDumpOutput(xmlSaveCtxtPtr ctxt, xmlAttrPtr cur) {
576 xmlOutputBufferPtr buf;
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000577
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000578 if (cur == NULL) return;
579 buf = ctxt->buf;
Daniel Veillardce244ad2004-11-05 10:03:46 +0000580 if (buf == NULL) return;
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000581 xmlOutputBufferWrite(buf, 1, " ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000582 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
583 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000584 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000585 }
586 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000587 xmlOutputBufferWrite(buf, 2, "=\"");
588 xmlAttrSerializeContent(buf, cur);
589 xmlOutputBufferWrite(buf, 1, "\"");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000590}
591
592/**
593 * xmlAttrListDumpOutput:
594 * @buf: the XML buffer output
595 * @doc: the document
596 * @cur: the first attribute pointer
597 * @encoding: an optional encoding string
598 *
599 * Dump a list of XML attributes
600 */
601static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000602xmlAttrListDumpOutput(xmlSaveCtxtPtr ctxt, xmlAttrPtr cur) {
603 if (cur == NULL) return;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000604 while (cur != NULL) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000605 xmlAttrDumpOutput(ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000606 cur = cur->next;
607 }
608}
609
610
611
612/**
613 * xmlNodeListDumpOutput:
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000614 * @cur: the first node
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000615 *
616 * Dump an XML node list, recursive behaviour, children are printed too.
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000617 */
618static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000619xmlNodeListDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000620 xmlOutputBufferPtr buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000621
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000622 if (cur == NULL) return;
623 buf = ctxt->buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000624 while (cur != NULL) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000625 if ((ctxt->format) && (xmlIndentTreeOutput) &&
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000626 (cur->type == XML_ELEMENT_NODE))
Daniel Veillard753086a2004-03-28 16:12:44 +0000627 xmlOutputBufferWrite(buf, ctxt->indent_size *
628 (ctxt->level > ctxt->indent_nr ?
629 ctxt->indent_nr : ctxt->level),
630 ctxt->indent);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000631 xmlNodeDumpOutputInternal(ctxt, cur);
632 if (ctxt->format) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000633 xmlOutputBufferWrite(buf, 1, "\n");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000634 }
635 cur = cur->next;
636 }
637}
638
639/**
640 * xmlNodeDumpOutputInternal:
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000641 * @cur: the current node
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000642 *
643 * Dump an XML node, recursive behaviour, children are printed too.
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000644 */
645static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000646xmlNodeDumpOutputInternal(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
Daniel Veillard753086a2004-03-28 16:12:44 +0000647 int format;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000648 xmlNodePtr tmp;
649 xmlChar *start, *end;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000650 xmlOutputBufferPtr buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000651
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000652 if (cur == NULL) return;
653 buf = ctxt->buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000654 if (cur->type == XML_XINCLUDE_START)
655 return;
656 if (cur->type == XML_XINCLUDE_END)
657 return;
Daniel Veillardce244ad2004-11-05 10:03:46 +0000658 if ((cur->type == XML_DOCUMENT_NODE) ||
659 (cur->type == XML_HTML_DOCUMENT_NODE)) {
660 xmlDocContentDumpOutput(ctxt, (xmlDocPtr) cur);
661 return;
662 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000663 if (cur->type == XML_DTD_NODE) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000664 xmlDtdDumpOutput(ctxt, (xmlDtdPtr) cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000665 return;
666 }
667 if (cur->type == XML_DOCUMENT_FRAG_NODE) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000668 xmlNodeListDumpOutput(ctxt, cur->children);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000669 return;
670 }
671 if (cur->type == XML_ELEMENT_DECL) {
672 xmlDumpElementDecl(buf->buffer, (xmlElementPtr) cur);
673 return;
674 }
675 if (cur->type == XML_ATTRIBUTE_DECL) {
676 xmlDumpAttributeDecl(buf->buffer, (xmlAttributePtr) cur);
677 return;
678 }
679 if (cur->type == XML_ENTITY_DECL) {
680 xmlDumpEntityDecl(buf->buffer, (xmlEntityPtr) cur);
681 return;
682 }
683 if (cur->type == XML_TEXT_NODE) {
684 if (cur->content != NULL) {
William M. Brack4e1c2db2005-02-11 10:58:55 +0000685 if (cur->name != xmlStringTextNoenc) {
Daniel Veillard3995bc32004-05-15 18:57:31 +0000686 xmlOutputBufferWriteEscape(buf, cur->content, ctxt->escape);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000687 } else {
688 /*
689 * Disable escaping, needed for XSLT
690 */
691 xmlOutputBufferWriteString(buf, (const char *) cur->content);
692 }
693 }
694
695 return;
696 }
697 if (cur->type == XML_PI_NODE) {
698 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000699 xmlOutputBufferWrite(buf, 2, "<?");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000700 xmlOutputBufferWriteString(buf, (const char *)cur->name);
701 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000702 xmlOutputBufferWrite(buf, 1, " ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000703 xmlOutputBufferWriteString(buf, (const char *)cur->content);
704 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000705 xmlOutputBufferWrite(buf, 2, "?>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000706 } else {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000707 xmlOutputBufferWrite(buf, 2, "<?");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000708 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000709 xmlOutputBufferWrite(buf, 2, "?>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000710 }
711 return;
712 }
713 if (cur->type == XML_COMMENT_NODE) {
714 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000715 xmlOutputBufferWrite(buf, 4, "<!--");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000716 xmlOutputBufferWriteString(buf, (const char *)cur->content);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000717 xmlOutputBufferWrite(buf, 3, "-->");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000718 }
719 return;
720 }
721 if (cur->type == XML_ENTITY_REF_NODE) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000722 xmlOutputBufferWrite(buf, 1, "&");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000723 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000724 xmlOutputBufferWrite(buf, 1, ";");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000725 return;
726 }
727 if (cur->type == XML_CDATA_SECTION_NODE) {
Daniel Veillard7cd517c2005-05-20 18:47:22 +0000728 if (cur->content == NULL) {
729 xmlOutputBufferWrite(buf, 12, "<![CDATA[]]>");
730 } else {
731 start = end = cur->content;
732 while (*end != '\0') {
733 if ((*end == ']') && (*(end + 1) == ']') &&
734 (*(end + 2) == '>')) {
735 end = end + 2;
736 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
737 xmlOutputBufferWrite(buf, end - start, (const char *)start);
738 xmlOutputBufferWrite(buf, 3, "]]>");
739 start = end;
740 }
741 end++;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000742 }
Daniel Veillard7cd517c2005-05-20 18:47:22 +0000743 if (start != end) {
744 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
745 xmlOutputBufferWriteString(buf, (const char *)start);
746 xmlOutputBufferWrite(buf, 3, "]]>");
747 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000748 }
749 return;
750 }
751 if (cur->type == XML_ATTRIBUTE_NODE) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000752 xmlAttrDumpOutput(ctxt, (xmlAttrPtr) cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000753 return;
754 }
755 if (cur->type == XML_NAMESPACE_DECL) {
756 xmlNsDumpOutput(buf, (xmlNsPtr) cur);
757 return;
758 }
759
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000760 format = ctxt->format;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000761 if (format == 1) {
762 tmp = cur->children;
763 while (tmp != NULL) {
764 if ((tmp->type == XML_TEXT_NODE) ||
765 (tmp->type == XML_CDATA_SECTION_NODE) ||
766 (tmp->type == XML_ENTITY_REF_NODE)) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000767 ctxt->format = 0;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000768 break;
769 }
770 tmp = tmp->next;
771 }
772 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000773 xmlOutputBufferWrite(buf, 1, "<");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000774 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
775 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000776 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000777 }
778
779 xmlOutputBufferWriteString(buf, (const char *)cur->name);
780 if (cur->nsDef)
781 xmlNsListDumpOutput(buf, cur->nsDef);
782 if (cur->properties != NULL)
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000783 xmlAttrListDumpOutput(ctxt, cur->properties);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000784
785 if (((cur->type == XML_ELEMENT_NODE) || (cur->content == NULL)) &&
Rob Richards2ce51c02005-09-12 12:16:35 +0000786 (cur->children == NULL) && ((ctxt->options & XML_SAVE_NO_EMPTY) == 0)) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000787 xmlOutputBufferWrite(buf, 2, "/>");
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000788 ctxt->format = format;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000789 return;
790 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000791 xmlOutputBufferWrite(buf, 1, ">");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000792 if ((cur->type != XML_ELEMENT_NODE) && (cur->content != NULL)) {
Daniel Veillard3995bc32004-05-15 18:57:31 +0000793 xmlOutputBufferWriteEscape(buf, cur->content, ctxt->escape);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000794 }
795 if (cur->children != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000796 if (ctxt->format) xmlOutputBufferWrite(buf, 1, "\n");
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000797 if (ctxt->level >= 0) ctxt->level++;
798 xmlNodeListDumpOutput(ctxt, cur->children);
799 if (ctxt->level > 0) ctxt->level--;
800 if ((xmlIndentTreeOutput) && (ctxt->format))
Daniel Veillard753086a2004-03-28 16:12:44 +0000801 xmlOutputBufferWrite(buf, ctxt->indent_size *
802 (ctxt->level > ctxt->indent_nr ?
803 ctxt->indent_nr : ctxt->level),
804 ctxt->indent);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000805 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000806 xmlOutputBufferWrite(buf, 2, "</");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000807 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
808 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000809 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000810 }
811
812 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000813 xmlOutputBufferWrite(buf, 1, ">");
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000814 ctxt->format = format;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000815}
816
817/**
818 * xmlDocContentDumpOutput:
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000819 * @cur: the document
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000820 *
821 * Dump an XML document.
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000822 */
823static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000824xmlDocContentDumpOutput(xmlSaveCtxtPtr ctxt, xmlDocPtr cur) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000825#ifdef LIBXML_HTML_ENABLED
826 xmlDtdPtr dtd;
827 int is_xhtml = 0;
828#endif
829 const xmlChar *oldenc = cur->encoding;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000830 const xmlChar *encoding = ctxt->encoding;
831 xmlOutputBufferPtr buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000832
833 xmlInitParser();
834
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000835 if (ctxt->encoding != NULL)
836 cur->encoding = BAD_CAST ctxt->encoding;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000837
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000838 buf = ctxt->buf;
Daniel Veillard100e1802005-08-08 14:44:11 +0000839 if ((ctxt->options & XML_SAVE_NO_DECL) == 0) {
840 xmlOutputBufferWrite(buf, 14, "<?xml version=");
841 if (cur->version != NULL)
842 xmlBufferWriteQuotedString(buf->buffer, cur->version);
843 else
844 xmlOutputBufferWrite(buf, 5, "\"1.0\"");
845 if (ctxt->encoding == NULL) {
846 if (cur->encoding != NULL)
847 encoding = cur->encoding;
848 else if (cur->charset != XML_CHAR_ENCODING_UTF8)
849 encoding = (const xmlChar *)
850 xmlGetCharEncodingName((xmlCharEncoding) cur->charset);
851 }
852 if (encoding != NULL) {
853 xmlOutputBufferWrite(buf, 10, " encoding=");
854 xmlBufferWriteQuotedString(buf->buffer, (xmlChar *) encoding);
855 }
856 switch (cur->standalone) {
857 case 0:
858 xmlOutputBufferWrite(buf, 16, " standalone=\"no\"");
859 break;
860 case 1:
861 xmlOutputBufferWrite(buf, 17, " standalone=\"yes\"");
862 break;
863 }
864 xmlOutputBufferWrite(buf, 3, "?>\n");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000865 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000866
867#ifdef LIBXML_HTML_ENABLED
Daniel Veillard33b20b72005-09-12 21:43:20 +0000868 if ((ctxt->options & XML_SAVE_NO_XHTML) == 0) {
869 dtd = xmlGetIntSubset(cur);
870 if (dtd != NULL) {
871 is_xhtml = xmlIsXHTML(dtd->SystemID, dtd->ExternalID);
872 if (is_xhtml < 0) is_xhtml = 0;
873 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000874 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000875#endif
876 if (cur->children != NULL) {
877 xmlNodePtr child = cur->children;
878
879 while (child != NULL) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000880 ctxt->level = 0;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000881#ifdef LIBXML_HTML_ENABLED
882 if (is_xhtml)
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000883 xhtmlNodeDumpOutput(ctxt, child);
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000884 else
885#endif
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000886 xmlNodeDumpOutputInternal(ctxt, child);
Daniel Veillard7a6361f2004-05-15 16:37:50 +0000887 xmlOutputBufferWrite(buf, 1, "\n");
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000888 child = child->next;
889 }
890 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000891 if (ctxt->encoding != NULL)
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000892 cur->encoding = oldenc;
893}
894
895#ifdef LIBXML_HTML_ENABLED
896/************************************************************************
897 * *
898 * Functions specific to XHTML serialization *
899 * *
900 ************************************************************************/
901
902/**
903 * xhtmlIsEmpty:
904 * @node: the node
905 *
906 * Check if a node is an empty xhtml node
907 *
908 * Returns 1 if the node is an empty node, 0 if not and -1 in case of error
909 */
910static int
911xhtmlIsEmpty(xmlNodePtr node) {
912 if (node == NULL)
913 return(-1);
914 if (node->type != XML_ELEMENT_NODE)
915 return(0);
916 if ((node->ns != NULL) && (!xmlStrEqual(node->ns->href, XHTML_NS_NAME)))
917 return(0);
918 if (node->children != NULL)
919 return(0);
920 switch (node->name[0]) {
921 case 'a':
922 if (xmlStrEqual(node->name, BAD_CAST "area"))
923 return(1);
924 return(0);
925 case 'b':
926 if (xmlStrEqual(node->name, BAD_CAST "br"))
927 return(1);
928 if (xmlStrEqual(node->name, BAD_CAST "base"))
929 return(1);
930 if (xmlStrEqual(node->name, BAD_CAST "basefont"))
931 return(1);
932 return(0);
933 case 'c':
934 if (xmlStrEqual(node->name, BAD_CAST "col"))
935 return(1);
936 return(0);
937 case 'f':
938 if (xmlStrEqual(node->name, BAD_CAST "frame"))
939 return(1);
940 return(0);
941 case 'h':
942 if (xmlStrEqual(node->name, BAD_CAST "hr"))
943 return(1);
944 return(0);
945 case 'i':
946 if (xmlStrEqual(node->name, BAD_CAST "img"))
947 return(1);
948 if (xmlStrEqual(node->name, BAD_CAST "input"))
949 return(1);
950 if (xmlStrEqual(node->name, BAD_CAST "isindex"))
951 return(1);
952 return(0);
953 case 'l':
954 if (xmlStrEqual(node->name, BAD_CAST "link"))
955 return(1);
956 return(0);
957 case 'm':
958 if (xmlStrEqual(node->name, BAD_CAST "meta"))
959 return(1);
960 return(0);
961 case 'p':
962 if (xmlStrEqual(node->name, BAD_CAST "param"))
963 return(1);
964 return(0);
965 }
966 return(0);
967}
968
969/**
970 * xhtmlAttrListDumpOutput:
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000971 * @cur: the first attribute pointer
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000972 *
973 * Dump a list of XML attributes
974 */
975static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000976xhtmlAttrListDumpOutput(xmlSaveCtxtPtr ctxt, xmlAttrPtr cur) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000977 xmlAttrPtr xml_lang = NULL;
978 xmlAttrPtr lang = NULL;
979 xmlAttrPtr name = NULL;
980 xmlAttrPtr id = NULL;
981 xmlNodePtr parent;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000982 xmlOutputBufferPtr buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000983
Daniel Veillard32b7cdb2004-03-15 13:46:37 +0000984 if (cur == NULL) return;
985 buf = ctxt->buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +0000986 parent = cur->parent;
987 while (cur != NULL) {
988 if ((cur->ns == NULL) && (xmlStrEqual(cur->name, BAD_CAST "id")))
989 id = cur;
990 else
991 if ((cur->ns == NULL) && (xmlStrEqual(cur->name, BAD_CAST "name")))
992 name = cur;
993 else
994 if ((cur->ns == NULL) && (xmlStrEqual(cur->name, BAD_CAST "lang")))
995 lang = cur;
996 else
997 if ((cur->ns != NULL) && (xmlStrEqual(cur->name, BAD_CAST "lang")) &&
998 (xmlStrEqual(cur->ns->prefix, BAD_CAST "xml")))
999 xml_lang = cur;
1000 else if ((cur->ns == NULL) &&
1001 ((cur->children == NULL) ||
1002 (cur->children->content == NULL) ||
1003 (cur->children->content[0] == 0)) &&
1004 (htmlIsBooleanAttr(cur->name))) {
1005 if (cur->children != NULL)
1006 xmlFreeNode(cur->children);
1007 cur->children = xmlNewText(cur->name);
1008 if (cur->children != NULL)
1009 cur->children->parent = (xmlNodePtr) cur;
1010 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001011 xmlAttrDumpOutput(ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001012 cur = cur->next;
1013 }
1014 /*
1015 * C.8
1016 */
1017 if ((name != NULL) && (id == NULL)) {
1018 if ((parent != NULL) && (parent->name != NULL) &&
1019 ((xmlStrEqual(parent->name, BAD_CAST "a")) ||
1020 (xmlStrEqual(parent->name, BAD_CAST "p")) ||
1021 (xmlStrEqual(parent->name, BAD_CAST "div")) ||
1022 (xmlStrEqual(parent->name, BAD_CAST "img")) ||
1023 (xmlStrEqual(parent->name, BAD_CAST "map")) ||
1024 (xmlStrEqual(parent->name, BAD_CAST "applet")) ||
1025 (xmlStrEqual(parent->name, BAD_CAST "form")) ||
1026 (xmlStrEqual(parent->name, BAD_CAST "frame")) ||
1027 (xmlStrEqual(parent->name, BAD_CAST "iframe")))) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001028 xmlOutputBufferWrite(buf, 5, " id=\"");
1029 xmlAttrSerializeContent(buf, name);
1030 xmlOutputBufferWrite(buf, 1, "\"");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001031 }
1032 }
1033 /*
1034 * C.7.
1035 */
1036 if ((lang != NULL) && (xml_lang == NULL)) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001037 xmlOutputBufferWrite(buf, 11, " xml:lang=\"");
1038 xmlAttrSerializeContent(buf, lang);
1039 xmlOutputBufferWrite(buf, 1, "\"");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001040 } else
1041 if ((xml_lang != NULL) && (lang == NULL)) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001042 xmlOutputBufferWrite(buf, 7, " lang=\"");
1043 xmlAttrSerializeContent(buf, xml_lang);
1044 xmlOutputBufferWrite(buf, 1, "\"");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001045 }
1046}
1047
1048/**
1049 * xhtmlNodeListDumpOutput:
1050 * @buf: the XML buffer output
1051 * @doc: the XHTML document
1052 * @cur: the first node
1053 * @level: the imbrication level for indenting
1054 * @format: is formatting allowed
1055 * @encoding: an optional encoding string
1056 *
1057 * Dump an XML node list, recursive behaviour, children are printed too.
1058 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1059 * or xmlKeepBlanksDefault(0) was called
1060 */
1061static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001062xhtmlNodeListDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001063 xmlOutputBufferPtr buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001064
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001065 if (cur == NULL) return;
1066 buf = ctxt->buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001067 while (cur != NULL) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001068 if ((ctxt->format) && (xmlIndentTreeOutput) &&
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001069 (cur->type == XML_ELEMENT_NODE))
Daniel Veillard753086a2004-03-28 16:12:44 +00001070 xmlOutputBufferWrite(buf, ctxt->indent_size *
1071 (ctxt->level > ctxt->indent_nr ?
1072 ctxt->indent_nr : ctxt->level),
1073 ctxt->indent);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001074 xhtmlNodeDumpOutput(ctxt, cur);
1075 if (ctxt->format) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001076 xmlOutputBufferWrite(buf, 1, "\n");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001077 }
1078 cur = cur->next;
1079 }
1080}
1081
1082/**
1083 * xhtmlNodeDumpOutput:
1084 * @buf: the XML buffer output
1085 * @doc: the XHTML document
1086 * @cur: the current node
1087 * @level: the imbrication level for indenting
1088 * @format: is formatting allowed
1089 * @encoding: an optional encoding string
1090 *
1091 * Dump an XHTML node, recursive behaviour, children are printed too.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001092 */
1093static void
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001094xhtmlNodeDumpOutput(xmlSaveCtxtPtr ctxt, xmlNodePtr cur) {
Rob Richards31f73022005-08-26 15:33:26 +00001095 int format, addmeta = 0;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001096 xmlNodePtr tmp;
1097 xmlChar *start, *end;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001098 xmlOutputBufferPtr buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001099
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001100 if (cur == NULL) return;
Daniel Veillard60071ae2005-09-12 00:03:43 +00001101 if ((cur->type == XML_DOCUMENT_NODE) ||
1102 (cur->type == XML_HTML_DOCUMENT_NODE)) {
1103 xmlDocContentDumpOutput(ctxt, (xmlDocPtr) cur);
1104 return;
1105 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001106 if (cur->type == XML_XINCLUDE_START)
1107 return;
1108 if (cur->type == XML_XINCLUDE_END)
1109 return;
1110 if (cur->type == XML_DTD_NODE) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001111 xmlDtdDumpOutput(ctxt, (xmlDtdPtr) cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001112 return;
1113 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001114 buf = ctxt->buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001115 if (cur->type == XML_ELEMENT_DECL) {
1116 xmlDumpElementDecl(buf->buffer, (xmlElementPtr) cur);
1117 return;
1118 }
1119 if (cur->type == XML_ATTRIBUTE_DECL) {
1120 xmlDumpAttributeDecl(buf->buffer, (xmlAttributePtr) cur);
1121 return;
1122 }
1123 if (cur->type == XML_ENTITY_DECL) {
1124 xmlDumpEntityDecl(buf->buffer, (xmlEntityPtr) cur);
1125 return;
1126 }
1127 if (cur->type == XML_TEXT_NODE) {
1128 if (cur->content != NULL) {
1129 if ((cur->name == xmlStringText) ||
1130 (cur->name != xmlStringTextNoenc)) {
Daniel Veillard3995bc32004-05-15 18:57:31 +00001131 xmlOutputBufferWriteEscape(buf, cur->content, ctxt->escape);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001132 } else {
1133 /*
1134 * Disable escaping, needed for XSLT
1135 */
1136 xmlOutputBufferWriteString(buf, (const char *) cur->content);
1137 }
1138 }
1139
1140 return;
1141 }
1142 if (cur->type == XML_PI_NODE) {
1143 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001144 xmlOutputBufferWrite(buf, 2, "<?");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001145 xmlOutputBufferWriteString(buf, (const char *)cur->name);
1146 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001147 xmlOutputBufferWrite(buf, 1, " ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001148 xmlOutputBufferWriteString(buf, (const char *)cur->content);
1149 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001150 xmlOutputBufferWrite(buf, 2, "?>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001151 } else {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001152 xmlOutputBufferWrite(buf, 2, "<?");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001153 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001154 xmlOutputBufferWrite(buf, 2, "?>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001155 }
1156 return;
1157 }
1158 if (cur->type == XML_COMMENT_NODE) {
1159 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001160 xmlOutputBufferWrite(buf, 4, "<!--");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001161 xmlOutputBufferWriteString(buf, (const char *)cur->content);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001162 xmlOutputBufferWrite(buf, 3, "-->");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001163 }
1164 return;
1165 }
1166 if (cur->type == XML_ENTITY_REF_NODE) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001167 xmlOutputBufferWrite(buf, 1, "&");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001168 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001169 xmlOutputBufferWrite(buf, 1, ";");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001170 return;
1171 }
1172 if (cur->type == XML_CDATA_SECTION_NODE) {
1173 start = end = cur->content;
1174 while (*end != '\0') {
1175 if (*end == ']' && *(end + 1) == ']' && *(end + 2) == '>') {
1176 end = end + 2;
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001177 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001178 xmlOutputBufferWrite(buf, end - start, (const char *)start);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001179 xmlOutputBufferWrite(buf, 3, "]]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001180 start = end;
1181 }
1182 end++;
1183 }
1184 if (start != end) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001185 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001186 xmlOutputBufferWriteString(buf, (const char *)start);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001187 xmlOutputBufferWrite(buf, 3, "]]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001188 }
1189 return;
1190 }
1191
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001192 format = ctxt->format;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001193 if (format == 1) {
1194 tmp = cur->children;
1195 while (tmp != NULL) {
1196 if ((tmp->type == XML_TEXT_NODE) ||
1197 (tmp->type == XML_ENTITY_REF_NODE)) {
1198 format = 0;
1199 break;
1200 }
1201 tmp = tmp->next;
1202 }
1203 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001204 xmlOutputBufferWrite(buf, 1, "<");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001205 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
1206 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001207 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001208 }
1209
1210 xmlOutputBufferWriteString(buf, (const char *)cur->name);
1211 if (cur->nsDef)
1212 xmlNsListDumpOutput(buf, cur->nsDef);
1213 if ((xmlStrEqual(cur->name, BAD_CAST "html") &&
1214 (cur->ns == NULL) && (cur->nsDef == NULL))) {
1215 /*
1216 * 3.1.1. Strictly Conforming Documents A.3.1.1 3/
1217 */
1218 xmlOutputBufferWriteString(buf,
1219 " xmlns=\"http://www.w3.org/1999/xhtml\"");
1220 }
1221 if (cur->properties != NULL)
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001222 xhtmlAttrListDumpOutput(ctxt, cur->properties);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001223
Rob Richards31f73022005-08-26 15:33:26 +00001224 if ((cur->type == XML_ELEMENT_NODE) &&
1225 (cur->parent != NULL) &&
1226 (cur->parent->parent == (xmlNodePtr) cur->doc) &&
1227 xmlStrEqual(cur->name, BAD_CAST"head") &&
1228 xmlStrEqual(cur->parent->name, BAD_CAST"html")) {
1229
1230 tmp = cur->children;
1231 while (tmp != NULL) {
1232 if (xmlStrEqual(tmp->name, BAD_CAST"meta")) {
1233 xmlChar *httpequiv;
1234
1235 httpequiv = xmlGetProp(tmp, BAD_CAST"http-equiv");
Rob Richards07b72002005-09-03 14:56:36 +00001236 if (httpequiv != NULL) {
1237 if (xmlStrcasecmp(httpequiv, BAD_CAST"Content-Type") == 0) {
1238 xmlFree(httpequiv);
1239 break;
1240 }
Rob Richards31f73022005-08-26 15:33:26 +00001241 xmlFree(httpequiv);
Rob Richards31f73022005-08-26 15:33:26 +00001242 }
Rob Richards31f73022005-08-26 15:33:26 +00001243 }
1244 tmp = tmp->next;
1245 }
1246 if (tmp == NULL)
1247 addmeta = 1;
1248 }
1249
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001250 if ((cur->type == XML_ELEMENT_NODE) && (cur->children == NULL)) {
1251 if (((cur->ns == NULL) || (cur->ns->prefix == NULL)) &&
Rob Richards31f73022005-08-26 15:33:26 +00001252 ((xhtmlIsEmpty(cur) == 1) && (addmeta == 0))) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001253 /*
1254 * C.2. Empty Elements
1255 */
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001256 xmlOutputBufferWrite(buf, 3, " />");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001257 } else {
Rob Richards31f73022005-08-26 15:33:26 +00001258 if (addmeta == 1) {
1259 xmlOutputBufferWrite(buf, 1, ">");
Rob Richards2ce51c02005-09-12 12:16:35 +00001260 if (ctxt->format) {
1261 xmlOutputBufferWrite(buf, 1, "\n");
1262 if (xmlIndentTreeOutput)
1263 xmlOutputBufferWrite(buf, ctxt->indent_size *
1264 (ctxt->level + 1 > ctxt->indent_nr ?
1265 ctxt->indent_nr : ctxt->level + 1), ctxt->indent);
1266 }
Rob Richards31f73022005-08-26 15:33:26 +00001267 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 }
Rob Richards2ce51c02005-09-12 12:16:35 +00001274 xmlOutputBufferWrite(buf, 4, "\" />");
1275 if (ctxt->format)
1276 xmlOutputBufferWrite(buf, 1, "\n");
1277 } else {
1278 xmlOutputBufferWrite(buf, 1, ">");
Rob Richards31f73022005-08-26 15:33:26 +00001279 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001280 /*
1281 * C.3. Element Minimization and Empty Element Content
1282 */
Rob Richards2ce51c02005-09-12 12:16:35 +00001283 xmlOutputBufferWrite(buf, 2, "</");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001284 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
1285 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001286 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001287 }
1288 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001289 xmlOutputBufferWrite(buf, 1, ">");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001290 }
1291 return;
1292 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001293 xmlOutputBufferWrite(buf, 1, ">");
Rob Richards31f73022005-08-26 15:33:26 +00001294 if (addmeta == 1) {
Rob Richards2ce51c02005-09-12 12:16:35 +00001295 if (ctxt->format) {
1296 xmlOutputBufferWrite(buf, 1, "\n");
1297 if (xmlIndentTreeOutput)
1298 xmlOutputBufferWrite(buf, ctxt->indent_size *
1299 (ctxt->level + 1 > ctxt->indent_nr ?
1300 ctxt->indent_nr : ctxt->level + 1), ctxt->indent);
1301 }
Rob Richards31f73022005-08-26 15:33:26 +00001302 xmlOutputBufferWriteString(buf,
1303 "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=");
1304 if (ctxt->encoding) {
1305 xmlOutputBufferWriteString(buf, (const char *)ctxt->encoding);
1306 } else {
1307 xmlOutputBufferWrite(buf, 5, "UTF-8");
1308 }
1309 xmlOutputBufferWrite(buf, 4, "\" />");
1310 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001311 if ((cur->type != XML_ELEMENT_NODE) && (cur->content != NULL)) {
Daniel Veillard3995bc32004-05-15 18:57:31 +00001312 xmlOutputBufferWriteEscape(buf, cur->content, ctxt->escape);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001313 }
1314
1315 /*
1316 * 4.8. Script and Style elements
1317 */
1318 if ((cur->type == XML_ELEMENT_NODE) &&
1319 ((xmlStrEqual(cur->name, BAD_CAST "script")) ||
1320 (xmlStrEqual(cur->name, BAD_CAST "style"))) &&
1321 ((cur->ns == NULL) ||
1322 (xmlStrEqual(cur->ns->href, XHTML_NS_NAME)))) {
1323 xmlNodePtr child = cur->children;
1324
1325 while (child != NULL) {
Daniel Veillarddbd61052005-09-12 14:03:26 +00001326 if (child->type == XML_TEXT_NODE) {
1327 if ((xmlStrchr(child->content, '<') == NULL) &&
1328 (xmlStrchr(child->content, '&') == NULL) &&
1329 (xmlStrstr(child->content, BAD_CAST "]]>") == NULL)) {
1330 /* Nothing to escape, so just output as is... */
1331 /* FIXME: Should we do something about "--" also? */
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;
Daniel Veillarddbd61052005-09-12 14:03:26 +00001337 xmlOutputBufferWriteString(buf, (const char *) child->content);
1338 /* (We cannot use xhtmlNodeDumpOutput() here because
1339 * we wish to leave '>' unescaped!) */
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001340 ctxt->level = level;
1341 ctxt->format = indent;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001342 } else {
Daniel Veillarddbd61052005-09-12 14:03:26 +00001343 /* We must use a CDATA section. Unfortunately,
1344 * this will break CSS and JavaScript when read by
1345 * a browser in HTML4-compliant mode. :-( */
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001346 start = end = child->content;
1347 while (*end != '\0') {
1348 if (*end == ']' &&
1349 *(end + 1) == ']' &&
1350 *(end + 2) == '>') {
1351 end = end + 2;
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001352 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001353 xmlOutputBufferWrite(buf, end - start,
1354 (const char *)start);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001355 xmlOutputBufferWrite(buf, 3, "]]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001356 start = end;
1357 }
1358 end++;
1359 }
1360 if (start != end) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001361 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
1362 xmlOutputBufferWrite(buf, end - start,
1363 (const char *)start);
1364 xmlOutputBufferWrite(buf, 3, "]]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001365 }
1366 }
1367 } else {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001368 int level = ctxt->level;
1369 int indent = ctxt->format;
1370
1371 ctxt->level = 0;
1372 ctxt->format = 0;
1373 xhtmlNodeDumpOutput(ctxt, child);
1374 ctxt->level = level;
1375 ctxt->format = indent;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001376 }
1377 child = child->next;
1378 }
1379 } else if (cur->children != NULL) {
Daniel Veillardf0244ce2004-05-09 23:48:39 +00001380 int indent = ctxt->format;
1381
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001382 if (format) xmlOutputBufferWrite(buf, 1, "\n");
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001383 if (ctxt->level >= 0) ctxt->level++;
Daniel Veillardf0244ce2004-05-09 23:48:39 +00001384 ctxt->format = format;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001385 xhtmlNodeListDumpOutput(ctxt, cur->children);
1386 if (ctxt->level > 0) ctxt->level--;
Daniel Veillardf0244ce2004-05-09 23:48:39 +00001387 ctxt->format = indent;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001388 if ((xmlIndentTreeOutput) && (format))
Daniel Veillard753086a2004-03-28 16:12:44 +00001389 xmlOutputBufferWrite(buf, ctxt->indent_size *
1390 (ctxt->level > ctxt->indent_nr ?
1391 ctxt->indent_nr : ctxt->level),
1392 ctxt->indent);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001393 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001394 xmlOutputBufferWrite(buf, 2, "</");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001395 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
1396 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001397 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001398 }
1399
1400 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001401 xmlOutputBufferWrite(buf, 1, ">");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001402}
1403#endif
1404
1405/************************************************************************
1406 * *
1407 * Public entry points *
1408 * *
1409 ************************************************************************/
1410
1411/**
1412 * xmlSaveToFd:
1413 * @fd: a file descriptor number
1414 * @encoding: the encoding name to use or NULL
1415 * @options: a set of xmlSaveOptions
1416 *
1417 * Create a document saving context serializing to a file descriptor
1418 * with the encoding and the options given.
1419 *
1420 * Returns a new serialization context or NULL in case of error.
1421 */
1422xmlSaveCtxtPtr
1423xmlSaveToFd(int fd, const char *encoding, int options)
1424{
1425 xmlSaveCtxtPtr ret;
1426
1427 ret = xmlNewSaveCtxt(encoding, options);
1428 if (ret == NULL) return(NULL);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001429 ret->buf = xmlOutputBufferCreateFd(fd, ret->handler);
1430 if (ret->buf == NULL) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001431 xmlFreeSaveCtxt(ret);
1432 return(NULL);
1433 }
1434 return(ret);
1435}
1436
1437/**
1438 * xmlSaveToFilename:
1439 * @filename: a file name or an URL
1440 * @encoding: the encoding name to use or NULL
1441 * @options: a set of xmlSaveOptions
1442 *
1443 * Create a document saving context serializing to a filename or possibly
1444 * to an URL (but this is less reliable) with the encoding and the options
1445 * given.
1446 *
1447 * Returns a new serialization context or NULL in case of error.
1448 */
1449xmlSaveCtxtPtr
1450xmlSaveToFilename(const char *filename, const char *encoding, int options)
1451{
1452 xmlSaveCtxtPtr ret;
1453 int compression = 0; /* TODO handle compression option */
1454
1455 ret = xmlNewSaveCtxt(encoding, options);
1456 if (ret == NULL) return(NULL);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001457 ret->buf = xmlOutputBufferCreateFilename(filename, ret->handler,
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001458 compression);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001459 if (ret->buf == NULL) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001460 xmlFreeSaveCtxt(ret);
1461 return(NULL);
1462 }
1463 return(ret);
1464}
1465
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001466/**
1467 * xmlSaveToBuffer:
1468 * @buffer: a buffer
1469 * @encoding: the encoding name to use or NULL
1470 * @options: a set of xmlSaveOptions
1471 *
1472 * Create a document saving context serializing to a buffer
1473 * with the encoding and the options given
1474 *
1475 * Returns a new serialization context or NULL in case of error.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001476xmlSaveCtxtPtr
1477xmlSaveToBuffer(xmlBufferPtr buffer, const char *encoding, int options)
1478{
1479 TODO
1480 return(NULL);
1481}
Daniel Veillarda2351322004-06-27 12:08:10 +00001482 */
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001483
1484/**
1485 * xmlSaveToIO:
1486 * @iowrite: an I/O write function
1487 * @ioclose: an I/O close function
1488 * @ioctx: an I/O handler
1489 * @encoding: the encoding name to use or NULL
1490 * @options: a set of xmlSaveOptions
1491 *
1492 * Create a document saving context serializing to a file descriptor
1493 * with the encoding and the options given
1494 *
1495 * Returns a new serialization context or NULL in case of error.
1496 */
1497xmlSaveCtxtPtr
1498xmlSaveToIO(xmlOutputWriteCallback iowrite,
1499 xmlOutputCloseCallback ioclose,
1500 void *ioctx, const char *encoding, int options)
1501{
1502 xmlSaveCtxtPtr ret;
1503
1504 ret = xmlNewSaveCtxt(encoding, options);
1505 if (ret == NULL) return(NULL);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001506 ret->buf = xmlOutputBufferCreateIO(iowrite, ioclose, ioctx, ret->handler);
1507 if (ret->buf == NULL) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001508 xmlFreeSaveCtxt(ret);
1509 return(NULL);
1510 }
1511 return(ret);
1512}
1513
1514/**
1515 * xmlSaveDoc:
1516 * @ctxt: a document saving context
1517 * @doc: a document
1518 *
1519 * Save a full document to a saving context
Daniel Veillard377e1a92004-04-16 16:30:05 +00001520 * TODO: The function is not fully implemented yet as it does not return the
1521 * byte count but 0 instead
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001522 *
1523 * Returns the number of byte written or -1 in case of error
1524 */
1525long
1526xmlSaveDoc(xmlSaveCtxtPtr ctxt, xmlDocPtr doc)
1527{
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001528 long ret = 0;
1529
Daniel Veillardce682bc2004-11-05 17:22:25 +00001530 if ((ctxt == NULL) || (doc == NULL)) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001531 xmlDocContentDumpOutput(ctxt, doc);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001532 return(ret);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001533}
1534
1535/**
1536 * xmlSaveTree:
1537 * @ctxt: a document saving context
1538 * @node: a document
1539 *
1540 * Save a subtree starting at the node parameter to a saving context
Daniel Veillard377e1a92004-04-16 16:30:05 +00001541 * TODO: The function is not fully implemented yet as it does not return the
1542 * byte count but 0 instead
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001543 *
1544 * Returns the number of byte written or -1 in case of error
1545 */
1546long
1547xmlSaveTree(xmlSaveCtxtPtr ctxt, xmlNodePtr node)
1548{
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001549 long ret = 0;
1550
Daniel Veillardce682bc2004-11-05 17:22:25 +00001551 if ((ctxt == NULL) || (node == NULL)) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001552 xmlNodeDumpOutputInternal(ctxt, node);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001553 return(ret);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001554}
1555
1556/**
1557 * xmlSaveFlush:
1558 * @ctxt: a document saving context
1559 *
1560 * Flush a document saving context, i.e. make sure that all bytes have
1561 * been output.
1562 *
1563 * Returns the number of byte written or -1 in case of error.
1564 */
1565int
1566xmlSaveFlush(xmlSaveCtxtPtr ctxt)
1567{
1568 if (ctxt == NULL) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001569 if (ctxt->buf == NULL) return(-1);
1570 return(xmlOutputBufferFlush(ctxt->buf));
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001571}
1572
1573/**
1574 * xmlSaveClose:
1575 * @ctxt: a document saving context
1576 *
1577 * Close a document saving context, i.e. make sure that all bytes have
1578 * been output and free the associated data.
1579 *
1580 * Returns the number of byte written or -1 in case of error.
1581 */
1582int
1583xmlSaveClose(xmlSaveCtxtPtr ctxt)
1584{
1585 int ret;
1586
1587 if (ctxt == NULL) return(-1);
1588 ret = xmlSaveFlush(ctxt);
1589 xmlFreeSaveCtxt(ctxt);
1590 return(ret);
1591}
1592
Daniel Veillard3995bc32004-05-15 18:57:31 +00001593/**
1594 * xmlSaveSetEscape:
1595 * @ctxt: a document saving context
1596 * @escape: the escaping function
1597 *
1598 * Set a custom escaping function to be used for text in element content
1599 *
1600 * Returns 0 if successful or -1 in case of error.
1601 */
1602int
1603xmlSaveSetEscape(xmlSaveCtxtPtr ctxt, xmlCharEncodingOutputFunc escape)
1604{
1605 if (ctxt == NULL) return(-1);
1606 ctxt->escape = escape;
1607 return(0);
1608}
1609
1610/**
1611 * xmlSaveSetAttrEscape:
1612 * @ctxt: a document saving context
1613 * @escape: the escaping function
1614 *
1615 * Set a custom escaping function to be used for text in attribute content
1616 *
1617 * Returns 0 if successful or -1 in case of error.
1618 */
1619int
1620xmlSaveSetAttrEscape(xmlSaveCtxtPtr ctxt, xmlCharEncodingOutputFunc escape)
1621{
1622 if (ctxt == NULL) return(-1);
1623 ctxt->escapeAttr = escape;
1624 return(0);
1625}
1626
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001627/************************************************************************
1628 * *
1629 * Public entry points based on buffers *
1630 * *
1631 ************************************************************************/
1632/**
1633 * xmlAttrSerializeTxtContent:
1634 * @buf: the XML buffer output
1635 * @doc: the document
1636 * @attr: the attribute node
1637 * @string: the text content
1638 *
1639 * Serialize text attribute values to an xml simple buffer
1640 */
1641void
1642xmlAttrSerializeTxtContent(xmlBufferPtr buf, xmlDocPtr doc,
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001643 xmlAttrPtr attr, const xmlChar * string)
1644{
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001645 xmlChar *base, *cur;
1646
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001647 if (string == NULL)
1648 return;
1649 base = cur = (xmlChar *) string;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001650 while (*cur != 0) {
1651 if (*cur == '\n') {
1652 if (base != cur)
1653 xmlBufferAdd(buf, base, cur - base);
1654 xmlBufferAdd(buf, BAD_CAST "&#10;", 5);
1655 cur++;
1656 base = cur;
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001657 } else if (*cur == '\r') {
1658 if (base != cur)
1659 xmlBufferAdd(buf, base, cur - base);
1660 xmlBufferAdd(buf, BAD_CAST "&#13;", 5);
1661 cur++;
1662 base = cur;
1663 } else if (*cur == '\t') {
1664 if (base != cur)
1665 xmlBufferAdd(buf, base, cur - base);
1666 xmlBufferAdd(buf, BAD_CAST "&#9;", 4);
1667 cur++;
1668 base = cur;
1669 } else if (*cur == '"') {
1670 if (base != cur)
1671 xmlBufferAdd(buf, base, cur - base);
1672 xmlBufferAdd(buf, BAD_CAST "&quot;", 6);
1673 cur++;
1674 base = cur;
1675 } else if (*cur == '<') {
1676 if (base != cur)
1677 xmlBufferAdd(buf, base, cur - base);
1678 xmlBufferAdd(buf, BAD_CAST "&lt;", 4);
1679 cur++;
1680 base = cur;
1681 } else if (*cur == '>') {
1682 if (base != cur)
1683 xmlBufferAdd(buf, base, cur - base);
1684 xmlBufferAdd(buf, BAD_CAST "&gt;", 4);
1685 cur++;
1686 base = cur;
1687 } else if (*cur == '&') {
1688 if (base != cur)
1689 xmlBufferAdd(buf, base, cur - base);
1690 xmlBufferAdd(buf, BAD_CAST "&amp;", 5);
1691 cur++;
1692 base = cur;
1693 } else if ((*cur >= 0x80) && ((doc == NULL) ||
1694 (doc->encoding == NULL))) {
1695 /*
1696 * We assume we have UTF-8 content.
1697 */
1698 unsigned char tmp[10];
1699 int val = 0, l = 1;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001700
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001701 if (base != cur)
1702 xmlBufferAdd(buf, base, cur - base);
1703 if (*cur < 0xC0) {
1704 xmlSaveErr(XML_SAVE_NOT_UTF8, (xmlNodePtr) attr, NULL);
1705 if (doc != NULL)
1706 doc->encoding = xmlStrdup(BAD_CAST "ISO-8859-1");
1707 xmlSerializeHexCharRef(tmp, *cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001708 xmlBufferAdd(buf, (xmlChar *) tmp, -1);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001709 cur++;
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001710 base = cur;
1711 continue;
1712 } else if (*cur < 0xE0) {
1713 val = (cur[0]) & 0x1F;
1714 val <<= 6;
1715 val |= (cur[1]) & 0x3F;
1716 l = 2;
1717 } else if (*cur < 0xF0) {
1718 val = (cur[0]) & 0x0F;
1719 val <<= 6;
1720 val |= (cur[1]) & 0x3F;
1721 val <<= 6;
1722 val |= (cur[2]) & 0x3F;
1723 l = 3;
1724 } else if (*cur < 0xF8) {
1725 val = (cur[0]) & 0x07;
1726 val <<= 6;
1727 val |= (cur[1]) & 0x3F;
1728 val <<= 6;
1729 val |= (cur[2]) & 0x3F;
1730 val <<= 6;
1731 val |= (cur[3]) & 0x3F;
1732 l = 4;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001733 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001734 if ((l == 1) || (!IS_CHAR(val))) {
1735 xmlSaveErr(XML_SAVE_CHAR_INVALID, (xmlNodePtr) attr, NULL);
1736 if (doc != NULL)
1737 doc->encoding = xmlStrdup(BAD_CAST "ISO-8859-1");
1738
1739 xmlSerializeHexCharRef(tmp, *cur);
1740 xmlBufferAdd(buf, (xmlChar *) tmp, -1);
1741 cur++;
1742 base = cur;
1743 continue;
1744 }
1745 /*
1746 * We could do multiple things here. Just save
1747 * as a char ref
1748 */
1749 xmlSerializeHexCharRef(tmp, val);
1750 xmlBufferAdd(buf, (xmlChar *) tmp, -1);
1751 cur += l;
1752 base = cur;
1753 } else {
1754 cur++;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001755 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001756 }
1757 if (base != cur)
1758 xmlBufferAdd(buf, base, cur - base);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001759}
1760
1761/**
1762 * xmlNodeDump:
1763 * @buf: the XML buffer output
1764 * @doc: the document
1765 * @cur: the current node
1766 * @level: the imbrication level for indenting
1767 * @format: is formatting allowed
1768 *
1769 * Dump an XML node, recursive behaviour,children are printed too.
1770 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1771 * or xmlKeepBlanksDefault(0) was called
1772 *
1773 * Returns the number of bytes written to the buffer or -1 in case of error
1774 */
1775int
1776xmlNodeDump(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, int level,
1777 int format)
1778{
1779 unsigned int use;
1780 int ret;
1781 xmlOutputBufferPtr outbuf;
1782
1783 xmlInitParser();
1784
1785 if (cur == NULL) {
1786#ifdef DEBUG_TREE
1787 xmlGenericError(xmlGenericErrorContext,
1788 "xmlNodeDump : node == NULL\n");
1789#endif
1790 return (-1);
1791 }
1792 if (buf == NULL) {
1793#ifdef DEBUG_TREE
1794 xmlGenericError(xmlGenericErrorContext,
1795 "xmlNodeDump : buf == NULL\n");
1796#endif
1797 return (-1);
1798 }
1799 outbuf = (xmlOutputBufferPtr) xmlMalloc(sizeof(xmlOutputBuffer));
1800 if (outbuf == NULL) {
1801 xmlSaveErrMemory("creating buffer");
1802 return (-1);
1803 }
1804 memset(outbuf, 0, (size_t) sizeof(xmlOutputBuffer));
1805 outbuf->buffer = buf;
1806 outbuf->encoder = NULL;
1807 outbuf->writecallback = NULL;
1808 outbuf->closecallback = NULL;
1809 outbuf->context = NULL;
1810 outbuf->written = 0;
1811
1812 use = buf->use;
1813 xmlNodeDumpOutput(outbuf, doc, cur, level, format, NULL);
1814 xmlFree(outbuf);
1815 ret = buf->use - use;
1816 return (ret);
1817}
1818
1819/**
1820 * xmlElemDump:
1821 * @f: the FILE * for the output
1822 * @doc: the document
1823 * @cur: the current node
1824 *
1825 * Dump an XML/HTML node, recursive behaviour, children are printed too.
1826 */
1827void
1828xmlElemDump(FILE * f, xmlDocPtr doc, xmlNodePtr cur)
1829{
1830 xmlOutputBufferPtr outbuf;
1831
1832 xmlInitParser();
1833
1834 if (cur == NULL) {
1835#ifdef DEBUG_TREE
1836 xmlGenericError(xmlGenericErrorContext,
1837 "xmlElemDump : cur == NULL\n");
1838#endif
1839 return;
1840 }
1841#ifdef DEBUG_TREE
1842 if (doc == NULL) {
1843 xmlGenericError(xmlGenericErrorContext,
1844 "xmlElemDump : doc == NULL\n");
1845 }
1846#endif
1847
1848 outbuf = xmlOutputBufferCreateFile(f, NULL);
1849 if (outbuf == NULL)
1850 return;
1851 if ((doc != NULL) && (doc->type == XML_HTML_DOCUMENT_NODE)) {
1852#ifdef LIBXML_HTML_ENABLED
1853 htmlNodeDumpOutput(outbuf, doc, cur, NULL);
1854#else
1855 xmlSaveErr(XML_ERR_INTERNAL_ERROR, cur, "HTML support not compiled in\n");
1856#endif /* LIBXML_HTML_ENABLED */
1857 } else
1858 xmlNodeDumpOutput(outbuf, doc, cur, 0, 1, NULL);
1859 xmlOutputBufferClose(outbuf);
1860}
1861
1862/************************************************************************
1863 * *
1864 * Saving functions front-ends *
1865 * *
1866 ************************************************************************/
1867
1868/**
1869 * xmlNodeDumpOutput:
1870 * @buf: the XML buffer output
1871 * @doc: the document
1872 * @cur: the current node
1873 * @level: the imbrication level for indenting
1874 * @format: is formatting allowed
1875 * @encoding: an optional encoding string
1876 *
1877 * Dump an XML node, recursive behaviour, children are printed too.
1878 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1879 * or xmlKeepBlanksDefault(0) was called
1880 */
1881void
1882xmlNodeDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur,
1883 int level, int format, const char *encoding)
1884{
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001885 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001886#ifdef LIBXML_HTML_ENABLED
1887 xmlDtdPtr dtd;
1888 int is_xhtml = 0;
1889#endif
1890
1891 xmlInitParser();
1892
Daniel Veillardce244ad2004-11-05 10:03:46 +00001893 if ((buf == NULL) || (cur == NULL)) return;
1894
Daniel Veillard64354ea2005-03-31 15:22:56 +00001895 if (encoding == NULL)
1896 encoding = "UTF-8";
1897
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001898 memset(&ctxt, 0, sizeof(ctxt));
1899 ctxt.doc = doc;
1900 ctxt.buf = buf;
1901 ctxt.level = level;
1902 ctxt.format = format;
1903 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00001904 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001905
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001906#ifdef LIBXML_HTML_ENABLED
1907 dtd = xmlGetIntSubset(doc);
1908 if (dtd != NULL) {
Daniel Veillard33b20b72005-09-12 21:43:20 +00001909 is_xhtml = xmlIsXHTML(dtd->SystemID, dtd->ExternalID);
1910 if (is_xhtml < 0)
1911 is_xhtml = 0;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001912 }
1913
1914 if (is_xhtml)
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001915 xhtmlNodeDumpOutput(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001916 else
1917#endif
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001918 xmlNodeDumpOutputInternal(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001919}
1920
1921/**
1922 * xmlDocDumpFormatMemoryEnc:
1923 * @out_doc: Document to generate XML text from
1924 * @doc_txt_ptr: Memory pointer for allocated XML text
1925 * @doc_txt_len: Length of the generated XML text
1926 * @txt_encoding: Character encoding to use when generating XML text
1927 * @format: should formatting spaces been added
1928 *
1929 * Dump the current DOM tree into memory using the character encoding specified
1930 * by the caller. Note it is up to the caller of this function to free the
1931 * allocated memory with xmlFree().
1932 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1933 * or xmlKeepBlanksDefault(0) was called
1934 */
1935
1936void
1937xmlDocDumpFormatMemoryEnc(xmlDocPtr out_doc, xmlChar **doc_txt_ptr,
1938 int * doc_txt_len, const char * txt_encoding,
1939 int format) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001940 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001941 int dummy = 0;
1942 xmlOutputBufferPtr out_buff = NULL;
1943 xmlCharEncodingHandlerPtr conv_hdlr = NULL;
1944
1945 if (doc_txt_len == NULL) {
1946 doc_txt_len = &dummy; /* Continue, caller just won't get length */
1947 }
1948
1949 if (doc_txt_ptr == NULL) {
1950 *doc_txt_len = 0;
1951 return;
1952 }
1953
1954 *doc_txt_ptr = NULL;
1955 *doc_txt_len = 0;
1956
1957 if (out_doc == NULL) {
1958 /* No document, no output */
1959 return;
1960 }
1961
1962 /*
1963 * Validate the encoding value, if provided.
1964 * This logic is copied from xmlSaveFileEnc.
1965 */
1966
1967 if (txt_encoding == NULL)
1968 txt_encoding = (const char *) out_doc->encoding;
1969 if (txt_encoding != NULL) {
1970 conv_hdlr = xmlFindCharEncodingHandler(txt_encoding);
1971 if ( conv_hdlr == NULL ) {
1972 xmlSaveErr(XML_SAVE_UNKNOWN_ENCODING, (xmlNodePtr) out_doc,
1973 txt_encoding);
1974 return;
1975 }
1976 }
1977
1978 if ((out_buff = xmlAllocOutputBuffer(conv_hdlr)) == NULL ) {
1979 xmlSaveErrMemory("creating buffer");
1980 return;
1981 }
1982
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001983 memset(&ctxt, 0, sizeof(ctxt));
1984 ctxt.doc = out_doc;
1985 ctxt.buf = out_buff;
1986 ctxt.level = 0;
1987 ctxt.format = format;
1988 ctxt.encoding = (const xmlChar *) txt_encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00001989 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001990 xmlDocContentDumpOutput(&ctxt, out_doc);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001991 xmlOutputBufferFlush(out_buff);
1992 if (out_buff->conv != NULL) {
1993 *doc_txt_len = out_buff->conv->use;
1994 *doc_txt_ptr = xmlStrndup(out_buff->conv->content, *doc_txt_len);
1995 } else {
1996 *doc_txt_len = out_buff->buffer->use;
1997 *doc_txt_ptr = xmlStrndup(out_buff->buffer->content, *doc_txt_len);
1998 }
1999 (void)xmlOutputBufferClose(out_buff);
2000
2001 if ((*doc_txt_ptr == NULL) && (*doc_txt_len > 0)) {
2002 *doc_txt_len = 0;
2003 xmlSaveErrMemory("creating output");
2004 }
2005
2006 return;
2007}
2008
2009/**
2010 * xmlDocDumpMemory:
2011 * @cur: the document
2012 * @mem: OUT: the memory pointer
2013 * @size: OUT: the memory length
2014 *
2015 * Dump an XML document in memory and return the #xmlChar * and it's size
2016 * in bytes. It's up to the caller to free the memory with xmlFree().
2017 * The resulting byte array is zero terminated, though the last 0 is not
2018 * included in the returned size.
2019 */
2020void
2021xmlDocDumpMemory(xmlDocPtr cur, xmlChar**mem, int *size) {
2022 xmlDocDumpFormatMemoryEnc(cur, mem, size, NULL, 0);
2023}
2024
2025/**
2026 * xmlDocDumpFormatMemory:
2027 * @cur: the document
2028 * @mem: OUT: the memory pointer
2029 * @size: OUT: the memory length
2030 * @format: should formatting spaces been added
2031 *
2032 *
2033 * Dump an XML document in memory and return the #xmlChar * and it's size.
2034 * It's up to the caller to free the memory with xmlFree().
2035 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2036 * or xmlKeepBlanksDefault(0) was called
2037 */
2038void
2039xmlDocDumpFormatMemory(xmlDocPtr cur, xmlChar**mem, int *size, int format) {
2040 xmlDocDumpFormatMemoryEnc(cur, mem, size, NULL, format);
2041}
2042
2043/**
2044 * xmlDocDumpMemoryEnc:
2045 * @out_doc: Document to generate XML text from
2046 * @doc_txt_ptr: Memory pointer for allocated XML text
2047 * @doc_txt_len: Length of the generated XML text
2048 * @txt_encoding: Character encoding to use when generating XML text
2049 *
2050 * Dump the current DOM tree into memory using the character encoding specified
2051 * by the caller. Note it is up to the caller of this function to free the
2052 * allocated memory with xmlFree().
2053 */
2054
2055void
2056xmlDocDumpMemoryEnc(xmlDocPtr out_doc, xmlChar **doc_txt_ptr,
2057 int * doc_txt_len, const char * txt_encoding) {
2058 xmlDocDumpFormatMemoryEnc(out_doc, doc_txt_ptr, doc_txt_len,
2059 txt_encoding, 0);
2060}
2061
2062/**
2063 * xmlDocFormatDump:
2064 * @f: the FILE*
2065 * @cur: the document
2066 * @format: should formatting spaces been added
2067 *
2068 * Dump an XML document to an open FILE.
2069 *
2070 * returns: the number of bytes written or -1 in case of failure.
2071 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2072 * or xmlKeepBlanksDefault(0) was called
2073 */
2074int
2075xmlDocFormatDump(FILE *f, xmlDocPtr cur, int format) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002076 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002077 xmlOutputBufferPtr buf;
2078 const char * encoding;
2079 xmlCharEncodingHandlerPtr handler = NULL;
2080 int ret;
2081
2082 if (cur == NULL) {
2083#ifdef DEBUG_TREE
2084 xmlGenericError(xmlGenericErrorContext,
2085 "xmlDocDump : document == NULL\n");
2086#endif
2087 return(-1);
2088 }
2089 encoding = (const char *) cur->encoding;
2090
2091 if (encoding != NULL) {
2092 handler = xmlFindCharEncodingHandler(encoding);
2093 if (handler == NULL) {
2094 xmlFree((char *) cur->encoding);
2095 cur->encoding = NULL;
2096 }
2097 }
2098 buf = xmlOutputBufferCreateFile(f, handler);
2099 if (buf == NULL) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002100 memset(&ctxt, 0, sizeof(ctxt));
2101 ctxt.doc = cur;
2102 ctxt.buf = buf;
2103 ctxt.level = 0;
2104 ctxt.format = format;
2105 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002106 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002107 xmlDocContentDumpOutput(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002108
2109 ret = xmlOutputBufferClose(buf);
2110 return(ret);
2111}
2112
2113/**
2114 * xmlDocDump:
2115 * @f: the FILE*
2116 * @cur: the document
2117 *
2118 * Dump an XML document to an open FILE.
2119 *
2120 * returns: the number of bytes written or -1 in case of failure.
2121 */
2122int
2123xmlDocDump(FILE *f, xmlDocPtr cur) {
2124 return(xmlDocFormatDump (f, cur, 0));
2125}
2126
2127/**
2128 * xmlSaveFileTo:
2129 * @buf: an output I/O buffer
2130 * @cur: the document
2131 * @encoding: the encoding if any assuming the I/O layer handles the trancoding
2132 *
2133 * Dump an XML document to an I/O buffer.
Daniel Veillard3d97e662004-11-04 10:49:00 +00002134 * Warning ! This call xmlOutputBufferClose() on buf which is not available
2135 * after this call.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002136 *
2137 * returns: the number of bytes written or -1 in case of failure.
2138 */
2139int
2140xmlSaveFileTo(xmlOutputBufferPtr buf, xmlDocPtr cur, const char *encoding) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002141 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002142 int ret;
2143
Daniel Veillard3d97e662004-11-04 10:49:00 +00002144 if (buf == NULL) return(-1);
2145 if (cur == NULL) {
2146 xmlOutputBufferClose(buf);
2147 return(-1);
2148 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002149 memset(&ctxt, 0, sizeof(ctxt));
2150 ctxt.doc = cur;
2151 ctxt.buf = buf;
2152 ctxt.level = 0;
2153 ctxt.format = 0;
2154 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002155 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002156 xmlDocContentDumpOutput(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002157 ret = xmlOutputBufferClose(buf);
2158 return(ret);
2159}
2160
2161/**
2162 * xmlSaveFormatFileTo:
2163 * @buf: an output I/O buffer
2164 * @cur: the document
2165 * @encoding: the encoding if any assuming the I/O layer handles the trancoding
2166 * @format: should formatting spaces been added
2167 *
2168 * Dump an XML document to an I/O buffer.
Daniel Veillard3d97e662004-11-04 10:49:00 +00002169 * Warning ! This call xmlOutputBufferClose() on buf which is not available
2170 * after this call.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002171 *
2172 * returns: the number of bytes written or -1 in case of failure.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002173 */
2174int
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002175xmlSaveFormatFileTo(xmlOutputBufferPtr buf, xmlDocPtr cur,
2176 const char *encoding, int format)
2177{
2178 xmlSaveCtxt ctxt;
2179 int ret;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002180
Daniel Veillard3d97e662004-11-04 10:49:00 +00002181 if (buf == NULL) return(-1);
Daniel Veillardce244ad2004-11-05 10:03:46 +00002182 if ((cur == NULL) ||
2183 ((cur->type != XML_DOCUMENT_NODE) &&
2184 (cur->type != XML_HTML_DOCUMENT_NODE))) {
Daniel Veillard3d97e662004-11-04 10:49:00 +00002185 xmlOutputBufferClose(buf);
2186 return(-1);
2187 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002188 memset(&ctxt, 0, sizeof(ctxt));
2189 ctxt.doc = cur;
2190 ctxt.buf = buf;
2191 ctxt.level = 0;
2192 ctxt.format = format;
2193 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002194 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002195 xmlDocContentDumpOutput(&ctxt, cur);
2196 ret = xmlOutputBufferClose(buf);
2197 return (ret);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002198}
2199
2200/**
2201 * xmlSaveFormatFileEnc:
2202 * @filename: the filename or URL to output
2203 * @cur: the document being saved
2204 * @encoding: the name of the encoding to use or NULL.
2205 * @format: should formatting spaces be added.
2206 *
2207 * Dump an XML document to a file or an URL.
2208 *
2209 * Returns the number of bytes written or -1 in case of error.
2210 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2211 * or xmlKeepBlanksDefault(0) was called
2212 */
2213int
2214xmlSaveFormatFileEnc( const char * filename, xmlDocPtr cur,
2215 const char * encoding, int format ) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002216 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002217 xmlOutputBufferPtr buf;
2218 xmlCharEncodingHandlerPtr handler = NULL;
2219 int ret;
2220
2221 if (cur == NULL)
2222 return(-1);
2223
2224 if (encoding == NULL)
2225 encoding = (const char *) cur->encoding;
2226
2227 if (encoding != NULL) {
2228
2229 handler = xmlFindCharEncodingHandler(encoding);
2230 if (handler == NULL)
2231 return(-1);
2232 }
2233
2234#ifdef HAVE_ZLIB_H
2235 if (cur->compression < 0) cur->compression = xmlGetCompressMode();
2236#endif
2237 /*
2238 * save the content to a temp buffer.
2239 */
2240 buf = xmlOutputBufferCreateFilename(filename, handler, cur->compression);
2241 if (buf == NULL) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002242 memset(&ctxt, 0, sizeof(ctxt));
2243 ctxt.doc = cur;
2244 ctxt.buf = buf;
2245 ctxt.level = 0;
2246 ctxt.format = format;
2247 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002248 xmlSaveCtxtInit(&ctxt);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002249
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002250 xmlDocContentDumpOutput(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002251
2252 ret = xmlOutputBufferClose(buf);
2253 return(ret);
2254}
2255
2256
2257/**
2258 * xmlSaveFileEnc:
2259 * @filename: the filename (or URL)
2260 * @cur: the document
2261 * @encoding: the name of an encoding (or NULL)
2262 *
2263 * Dump an XML document, converting it to the given encoding
2264 *
2265 * returns: the number of bytes written or -1 in case of failure.
2266 */
2267int
2268xmlSaveFileEnc(const char *filename, xmlDocPtr cur, const char *encoding) {
2269 return ( xmlSaveFormatFileEnc( filename, cur, encoding, 0 ) );
2270}
2271
2272/**
2273 * xmlSaveFormatFile:
2274 * @filename: the filename (or URL)
2275 * @cur: the document
2276 * @format: should formatting spaces been added
2277 *
2278 * Dump an XML document to a file. Will use compression if
2279 * compiled in and enabled. If @filename is "-" the stdout file is
2280 * used. If @format is set then the document will be indented on output.
2281 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2282 * or xmlKeepBlanksDefault(0) was called
2283 *
2284 * returns: the number of bytes written or -1 in case of failure.
2285 */
2286int
2287xmlSaveFormatFile(const char *filename, xmlDocPtr cur, int format) {
2288 return ( xmlSaveFormatFileEnc( filename, cur, NULL, format ) );
2289}
2290
2291/**
2292 * xmlSaveFile:
2293 * @filename: the filename (or URL)
2294 * @cur: the document
2295 *
2296 * Dump an XML document to a file. Will use compression if
2297 * compiled in and enabled. If @filename is "-" the stdout file is
2298 * used.
2299 * returns: the number of bytes written or -1 in case of failure.
2300 */
2301int
2302xmlSaveFile(const char *filename, xmlDocPtr cur) {
2303 return(xmlSaveFormatFileEnc(filename, cur, NULL, 0));
2304}
2305
2306#endif /* LIBXML_OUTPUT_ENABLED */
2307
Daniel Veillard5d4644e2005-04-01 13:11:58 +00002308#define bottom_xmlsave
2309#include "elfgcchack.h"