blob: ba35f3219482688aec68b4e238d5ecc54f245ffa [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
Daniel Veillard9a00fd22005-11-09 08:56:26 +0000347 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
Daniel Veillard9a00fd22005-11-09 08:56:26 +0000403 /* 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 }
Rob Richards2ce51c02005-09-12 12:16:35 +0000407
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 }
Rob Richards2e2691b2005-10-21 14:45:16 +00001114 if (cur->type == XML_DOCUMENT_FRAG_NODE) {
1115 xhtmlNodeListDumpOutput(ctxt, cur->children);
1116 return;
1117 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001118 buf = ctxt->buf;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001119 if (cur->type == XML_ELEMENT_DECL) {
1120 xmlDumpElementDecl(buf->buffer, (xmlElementPtr) cur);
1121 return;
1122 }
1123 if (cur->type == XML_ATTRIBUTE_DECL) {
1124 xmlDumpAttributeDecl(buf->buffer, (xmlAttributePtr) cur);
1125 return;
1126 }
1127 if (cur->type == XML_ENTITY_DECL) {
1128 xmlDumpEntityDecl(buf->buffer, (xmlEntityPtr) cur);
1129 return;
1130 }
1131 if (cur->type == XML_TEXT_NODE) {
1132 if (cur->content != NULL) {
1133 if ((cur->name == xmlStringText) ||
1134 (cur->name != xmlStringTextNoenc)) {
Daniel Veillard3995bc32004-05-15 18:57:31 +00001135 xmlOutputBufferWriteEscape(buf, cur->content, ctxt->escape);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001136 } else {
1137 /*
1138 * Disable escaping, needed for XSLT
1139 */
1140 xmlOutputBufferWriteString(buf, (const char *) cur->content);
1141 }
1142 }
1143
1144 return;
1145 }
1146 if (cur->type == XML_PI_NODE) {
1147 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001148 xmlOutputBufferWrite(buf, 2, "<?");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001149 xmlOutputBufferWriteString(buf, (const char *)cur->name);
1150 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001151 xmlOutputBufferWrite(buf, 1, " ");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001152 xmlOutputBufferWriteString(buf, (const char *)cur->content);
1153 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001154 xmlOutputBufferWrite(buf, 2, "?>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001155 } else {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001156 xmlOutputBufferWrite(buf, 2, "<?");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001157 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001158 xmlOutputBufferWrite(buf, 2, "?>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001159 }
1160 return;
1161 }
1162 if (cur->type == XML_COMMENT_NODE) {
1163 if (cur->content != NULL) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001164 xmlOutputBufferWrite(buf, 4, "<!--");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001165 xmlOutputBufferWriteString(buf, (const char *)cur->content);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001166 xmlOutputBufferWrite(buf, 3, "-->");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001167 }
1168 return;
1169 }
1170 if (cur->type == XML_ENTITY_REF_NODE) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001171 xmlOutputBufferWrite(buf, 1, "&");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001172 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001173 xmlOutputBufferWrite(buf, 1, ";");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001174 return;
1175 }
1176 if (cur->type == XML_CDATA_SECTION_NODE) {
1177 start = end = cur->content;
1178 while (*end != '\0') {
1179 if (*end == ']' && *(end + 1) == ']' && *(end + 2) == '>') {
1180 end = end + 2;
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001181 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001182 xmlOutputBufferWrite(buf, end - start, (const char *)start);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001183 xmlOutputBufferWrite(buf, 3, "]]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001184 start = end;
1185 }
1186 end++;
1187 }
1188 if (start != end) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001189 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001190 xmlOutputBufferWriteString(buf, (const char *)start);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001191 xmlOutputBufferWrite(buf, 3, "]]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001192 }
1193 return;
1194 }
1195
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001196 format = ctxt->format;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001197 if (format == 1) {
1198 tmp = cur->children;
1199 while (tmp != NULL) {
1200 if ((tmp->type == XML_TEXT_NODE) ||
1201 (tmp->type == XML_ENTITY_REF_NODE)) {
1202 format = 0;
1203 break;
1204 }
1205 tmp = tmp->next;
1206 }
1207 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001208 xmlOutputBufferWrite(buf, 1, "<");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001209 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
1210 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001211 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001212 }
1213
1214 xmlOutputBufferWriteString(buf, (const char *)cur->name);
1215 if (cur->nsDef)
1216 xmlNsListDumpOutput(buf, cur->nsDef);
1217 if ((xmlStrEqual(cur->name, BAD_CAST "html") &&
1218 (cur->ns == NULL) && (cur->nsDef == NULL))) {
1219 /*
1220 * 3.1.1. Strictly Conforming Documents A.3.1.1 3/
1221 */
1222 xmlOutputBufferWriteString(buf,
1223 " xmlns=\"http://www.w3.org/1999/xhtml\"");
1224 }
1225 if (cur->properties != NULL)
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001226 xhtmlAttrListDumpOutput(ctxt, cur->properties);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001227
Rob Richards31f73022005-08-26 15:33:26 +00001228 if ((cur->type == XML_ELEMENT_NODE) &&
1229 (cur->parent != NULL) &&
1230 (cur->parent->parent == (xmlNodePtr) cur->doc) &&
1231 xmlStrEqual(cur->name, BAD_CAST"head") &&
1232 xmlStrEqual(cur->parent->name, BAD_CAST"html")) {
1233
1234 tmp = cur->children;
1235 while (tmp != NULL) {
1236 if (xmlStrEqual(tmp->name, BAD_CAST"meta")) {
1237 xmlChar *httpequiv;
1238
1239 httpequiv = xmlGetProp(tmp, BAD_CAST"http-equiv");
Rob Richards07b72002005-09-03 14:56:36 +00001240 if (httpequiv != NULL) {
1241 if (xmlStrcasecmp(httpequiv, BAD_CAST"Content-Type") == 0) {
1242 xmlFree(httpequiv);
1243 break;
1244 }
Rob Richards31f73022005-08-26 15:33:26 +00001245 xmlFree(httpequiv);
Rob Richards31f73022005-08-26 15:33:26 +00001246 }
Rob Richards31f73022005-08-26 15:33:26 +00001247 }
1248 tmp = tmp->next;
1249 }
1250 if (tmp == NULL)
1251 addmeta = 1;
1252 }
1253
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001254 if ((cur->type == XML_ELEMENT_NODE) && (cur->children == NULL)) {
1255 if (((cur->ns == NULL) || (cur->ns->prefix == NULL)) &&
Rob Richards31f73022005-08-26 15:33:26 +00001256 ((xhtmlIsEmpty(cur) == 1) && (addmeta == 0))) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001257 /*
1258 * C.2. Empty Elements
1259 */
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001260 xmlOutputBufferWrite(buf, 3, " />");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001261 } else {
Rob Richards31f73022005-08-26 15:33:26 +00001262 if (addmeta == 1) {
1263 xmlOutputBufferWrite(buf, 1, ">");
Rob Richards2ce51c02005-09-12 12:16:35 +00001264 if (ctxt->format) {
1265 xmlOutputBufferWrite(buf, 1, "\n");
1266 if (xmlIndentTreeOutput)
1267 xmlOutputBufferWrite(buf, ctxt->indent_size *
1268 (ctxt->level + 1 > ctxt->indent_nr ?
1269 ctxt->indent_nr : ctxt->level + 1), ctxt->indent);
1270 }
Rob Richards31f73022005-08-26 15:33:26 +00001271 xmlOutputBufferWriteString(buf,
1272 "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=");
1273 if (ctxt->encoding) {
1274 xmlOutputBufferWriteString(buf, (const char *)ctxt->encoding);
1275 } else {
1276 xmlOutputBufferWrite(buf, 5, "UTF-8");
1277 }
Rob Richards2ce51c02005-09-12 12:16:35 +00001278 xmlOutputBufferWrite(buf, 4, "\" />");
1279 if (ctxt->format)
1280 xmlOutputBufferWrite(buf, 1, "\n");
1281 } else {
1282 xmlOutputBufferWrite(buf, 1, ">");
Rob Richards31f73022005-08-26 15:33:26 +00001283 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001284 /*
1285 * C.3. Element Minimization and Empty Element Content
1286 */
Rob Richards2ce51c02005-09-12 12:16:35 +00001287 xmlOutputBufferWrite(buf, 2, "</");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001288 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
1289 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001290 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001291 }
1292 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001293 xmlOutputBufferWrite(buf, 1, ">");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001294 }
1295 return;
1296 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001297 xmlOutputBufferWrite(buf, 1, ">");
Rob Richards31f73022005-08-26 15:33:26 +00001298 if (addmeta == 1) {
Rob Richards2ce51c02005-09-12 12:16:35 +00001299 if (ctxt->format) {
1300 xmlOutputBufferWrite(buf, 1, "\n");
1301 if (xmlIndentTreeOutput)
1302 xmlOutputBufferWrite(buf, ctxt->indent_size *
1303 (ctxt->level + 1 > ctxt->indent_nr ?
1304 ctxt->indent_nr : ctxt->level + 1), ctxt->indent);
1305 }
Rob Richards31f73022005-08-26 15:33:26 +00001306 xmlOutputBufferWriteString(buf,
1307 "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=");
1308 if (ctxt->encoding) {
1309 xmlOutputBufferWriteString(buf, (const char *)ctxt->encoding);
1310 } else {
1311 xmlOutputBufferWrite(buf, 5, "UTF-8");
1312 }
1313 xmlOutputBufferWrite(buf, 4, "\" />");
1314 }
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001315 if ((cur->type != XML_ELEMENT_NODE) && (cur->content != NULL)) {
Daniel Veillard3995bc32004-05-15 18:57:31 +00001316 xmlOutputBufferWriteEscape(buf, cur->content, ctxt->escape);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001317 }
1318
1319 /*
1320 * 4.8. Script and Style elements
1321 */
1322 if ((cur->type == XML_ELEMENT_NODE) &&
1323 ((xmlStrEqual(cur->name, BAD_CAST "script")) ||
1324 (xmlStrEqual(cur->name, BAD_CAST "style"))) &&
1325 ((cur->ns == NULL) ||
1326 (xmlStrEqual(cur->ns->href, XHTML_NS_NAME)))) {
1327 xmlNodePtr child = cur->children;
1328
1329 while (child != NULL) {
Daniel Veillarddbd61052005-09-12 14:03:26 +00001330 if (child->type == XML_TEXT_NODE) {
1331 if ((xmlStrchr(child->content, '<') == NULL) &&
1332 (xmlStrchr(child->content, '&') == NULL) &&
1333 (xmlStrstr(child->content, BAD_CAST "]]>") == NULL)) {
1334 /* Nothing to escape, so just output as is... */
1335 /* FIXME: Should we do something about "--" also? */
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001336 int level = ctxt->level;
1337 int indent = ctxt->format;
1338
1339 ctxt->level = 0;
1340 ctxt->format = 0;
Daniel Veillarddbd61052005-09-12 14:03:26 +00001341 xmlOutputBufferWriteString(buf, (const char *) child->content);
1342 /* (We cannot use xhtmlNodeDumpOutput() here because
1343 * we wish to leave '>' unescaped!) */
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001344 ctxt->level = level;
1345 ctxt->format = indent;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001346 } else {
Daniel Veillarddbd61052005-09-12 14:03:26 +00001347 /* We must use a CDATA section. Unfortunately,
1348 * this will break CSS and JavaScript when read by
1349 * a browser in HTML4-compliant mode. :-( */
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001350 start = end = child->content;
1351 while (*end != '\0') {
1352 if (*end == ']' &&
1353 *(end + 1) == ']' &&
1354 *(end + 2) == '>') {
1355 end = end + 2;
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001356 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001357 xmlOutputBufferWrite(buf, end - start,
1358 (const char *)start);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001359 xmlOutputBufferWrite(buf, 3, "]]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001360 start = end;
1361 }
1362 end++;
1363 }
1364 if (start != end) {
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001365 xmlOutputBufferWrite(buf, 9, "<![CDATA[");
1366 xmlOutputBufferWrite(buf, end - start,
1367 (const char *)start);
1368 xmlOutputBufferWrite(buf, 3, "]]>");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001369 }
1370 }
1371 } else {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001372 int level = ctxt->level;
1373 int indent = ctxt->format;
1374
1375 ctxt->level = 0;
1376 ctxt->format = 0;
1377 xhtmlNodeDumpOutput(ctxt, child);
1378 ctxt->level = level;
1379 ctxt->format = indent;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001380 }
1381 child = child->next;
1382 }
1383 } else if (cur->children != NULL) {
Daniel Veillardf0244ce2004-05-09 23:48:39 +00001384 int indent = ctxt->format;
1385
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001386 if (format) xmlOutputBufferWrite(buf, 1, "\n");
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001387 if (ctxt->level >= 0) ctxt->level++;
Daniel Veillardf0244ce2004-05-09 23:48:39 +00001388 ctxt->format = format;
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001389 xhtmlNodeListDumpOutput(ctxt, cur->children);
1390 if (ctxt->level > 0) ctxt->level--;
Daniel Veillardf0244ce2004-05-09 23:48:39 +00001391 ctxt->format = indent;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001392 if ((xmlIndentTreeOutput) && (format))
Daniel Veillard753086a2004-03-28 16:12:44 +00001393 xmlOutputBufferWrite(buf, ctxt->indent_size *
1394 (ctxt->level > ctxt->indent_nr ?
1395 ctxt->indent_nr : ctxt->level),
1396 ctxt->indent);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001397 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001398 xmlOutputBufferWrite(buf, 2, "</");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001399 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
1400 xmlOutputBufferWriteString(buf, (const char *)cur->ns->prefix);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001401 xmlOutputBufferWrite(buf, 1, ":");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001402 }
1403
1404 xmlOutputBufferWriteString(buf, (const char *)cur->name);
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001405 xmlOutputBufferWrite(buf, 1, ">");
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001406}
1407#endif
1408
1409/************************************************************************
1410 * *
1411 * Public entry points *
1412 * *
1413 ************************************************************************/
1414
1415/**
1416 * xmlSaveToFd:
1417 * @fd: a file descriptor number
1418 * @encoding: the encoding name to use or NULL
1419 * @options: a set of xmlSaveOptions
1420 *
1421 * Create a document saving context serializing to a file descriptor
1422 * with the encoding and the options given.
1423 *
1424 * Returns a new serialization context or NULL in case of error.
1425 */
1426xmlSaveCtxtPtr
1427xmlSaveToFd(int fd, const char *encoding, int options)
1428{
1429 xmlSaveCtxtPtr ret;
1430
1431 ret = xmlNewSaveCtxt(encoding, options);
1432 if (ret == NULL) return(NULL);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001433 ret->buf = xmlOutputBufferCreateFd(fd, ret->handler);
1434 if (ret->buf == NULL) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001435 xmlFreeSaveCtxt(ret);
1436 return(NULL);
1437 }
1438 return(ret);
1439}
1440
1441/**
1442 * xmlSaveToFilename:
1443 * @filename: a file name or an URL
1444 * @encoding: the encoding name to use or NULL
1445 * @options: a set of xmlSaveOptions
1446 *
1447 * Create a document saving context serializing to a filename or possibly
1448 * to an URL (but this is less reliable) with the encoding and the options
1449 * given.
1450 *
1451 * Returns a new serialization context or NULL in case of error.
1452 */
1453xmlSaveCtxtPtr
1454xmlSaveToFilename(const char *filename, const char *encoding, int options)
1455{
1456 xmlSaveCtxtPtr ret;
1457 int compression = 0; /* TODO handle compression option */
1458
1459 ret = xmlNewSaveCtxt(encoding, options);
1460 if (ret == NULL) return(NULL);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001461 ret->buf = xmlOutputBufferCreateFilename(filename, ret->handler,
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001462 compression);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001463 if (ret->buf == NULL) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001464 xmlFreeSaveCtxt(ret);
1465 return(NULL);
1466 }
1467 return(ret);
1468}
1469
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001470/**
1471 * xmlSaveToBuffer:
1472 * @buffer: a buffer
1473 * @encoding: the encoding name to use or NULL
1474 * @options: a set of xmlSaveOptions
1475 *
1476 * Create a document saving context serializing to a buffer
1477 * with the encoding and the options given
1478 *
1479 * Returns a new serialization context or NULL in case of error.
Daniel Veillard9a00fd22005-11-09 08:56:26 +00001480 */
1481
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001482xmlSaveCtxtPtr
1483xmlSaveToBuffer(xmlBufferPtr buffer, const char *encoding, int options)
1484{
Daniel Veillard9a00fd22005-11-09 08:56:26 +00001485 xmlSaveCtxtPtr ret;
1486 xmlOutputBufferPtr out_buff;
1487 xmlCharEncodingHandlerPtr handler;
1488
1489 ret = xmlNewSaveCtxt(encoding, options);
1490 if (ret == NULL) return(NULL);
1491
1492 if (encoding != NULL) {
1493 handler = xmlFindCharEncodingHandler(encoding);
1494 if (handler == NULL) {
1495 xmlFree(ret);
1496 return(NULL);
1497 }
1498 } else
1499 handler = NULL;
1500 out_buff = xmlOutputBufferCreateBuffer(buffer, handler);
1501 if (out_buff == NULL) {
1502 xmlFree(ret);
1503 if (handler) xmlCharEncCloseFunc(handler);
1504 return(NULL);
1505 }
1506
1507 ret->buf = out_buff;
1508 return(ret);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001509}
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001510
1511/**
1512 * xmlSaveToIO:
1513 * @iowrite: an I/O write function
1514 * @ioclose: an I/O close function
1515 * @ioctx: an I/O handler
1516 * @encoding: the encoding name to use or NULL
1517 * @options: a set of xmlSaveOptions
1518 *
1519 * Create a document saving context serializing to a file descriptor
1520 * with the encoding and the options given
1521 *
1522 * Returns a new serialization context or NULL in case of error.
1523 */
1524xmlSaveCtxtPtr
1525xmlSaveToIO(xmlOutputWriteCallback iowrite,
1526 xmlOutputCloseCallback ioclose,
1527 void *ioctx, const char *encoding, int options)
1528{
1529 xmlSaveCtxtPtr ret;
1530
1531 ret = xmlNewSaveCtxt(encoding, options);
1532 if (ret == NULL) return(NULL);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001533 ret->buf = xmlOutputBufferCreateIO(iowrite, ioclose, ioctx, ret->handler);
1534 if (ret->buf == NULL) {
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001535 xmlFreeSaveCtxt(ret);
1536 return(NULL);
1537 }
1538 return(ret);
1539}
1540
1541/**
1542 * xmlSaveDoc:
1543 * @ctxt: a document saving context
1544 * @doc: a document
1545 *
1546 * Save a full document to a saving context
Daniel Veillard377e1a92004-04-16 16:30:05 +00001547 * TODO: The function is not fully implemented yet as it does not return the
1548 * byte count but 0 instead
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001549 *
1550 * Returns the number of byte written or -1 in case of error
1551 */
1552long
1553xmlSaveDoc(xmlSaveCtxtPtr ctxt, xmlDocPtr doc)
1554{
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001555 long ret = 0;
1556
Daniel Veillardce682bc2004-11-05 17:22:25 +00001557 if ((ctxt == NULL) || (doc == NULL)) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001558 xmlDocContentDumpOutput(ctxt, doc);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001559 return(ret);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001560}
1561
1562/**
1563 * xmlSaveTree:
1564 * @ctxt: a document saving context
1565 * @node: a document
1566 *
1567 * Save a subtree starting at the node parameter to a saving context
Daniel Veillard377e1a92004-04-16 16:30:05 +00001568 * TODO: The function is not fully implemented yet as it does not return the
1569 * byte count but 0 instead
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001570 *
1571 * Returns the number of byte written or -1 in case of error
1572 */
1573long
1574xmlSaveTree(xmlSaveCtxtPtr ctxt, xmlNodePtr node)
1575{
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001576 long ret = 0;
1577
Daniel Veillardce682bc2004-11-05 17:22:25 +00001578 if ((ctxt == NULL) || (node == NULL)) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001579 xmlNodeDumpOutputInternal(ctxt, node);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001580 return(ret);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001581}
1582
1583/**
1584 * xmlSaveFlush:
1585 * @ctxt: a document saving context
1586 *
1587 * Flush a document saving context, i.e. make sure that all bytes have
1588 * been output.
1589 *
1590 * Returns the number of byte written or -1 in case of error.
1591 */
1592int
1593xmlSaveFlush(xmlSaveCtxtPtr ctxt)
1594{
1595 if (ctxt == NULL) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001596 if (ctxt->buf == NULL) return(-1);
1597 return(xmlOutputBufferFlush(ctxt->buf));
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001598}
1599
1600/**
1601 * xmlSaveClose:
1602 * @ctxt: a document saving context
1603 *
1604 * Close a document saving context, i.e. make sure that all bytes have
1605 * been output and free the associated data.
1606 *
1607 * Returns the number of byte written or -1 in case of error.
1608 */
1609int
1610xmlSaveClose(xmlSaveCtxtPtr ctxt)
1611{
1612 int ret;
1613
1614 if (ctxt == NULL) return(-1);
1615 ret = xmlSaveFlush(ctxt);
1616 xmlFreeSaveCtxt(ctxt);
1617 return(ret);
1618}
1619
Daniel Veillard3995bc32004-05-15 18:57:31 +00001620/**
1621 * xmlSaveSetEscape:
1622 * @ctxt: a document saving context
1623 * @escape: the escaping function
1624 *
1625 * Set a custom escaping function to be used for text in element content
1626 *
1627 * Returns 0 if successful or -1 in case of error.
1628 */
1629int
1630xmlSaveSetEscape(xmlSaveCtxtPtr ctxt, xmlCharEncodingOutputFunc escape)
1631{
1632 if (ctxt == NULL) return(-1);
1633 ctxt->escape = escape;
1634 return(0);
1635}
1636
1637/**
1638 * xmlSaveSetAttrEscape:
1639 * @ctxt: a document saving context
1640 * @escape: the escaping function
1641 *
1642 * Set a custom escaping function to be used for text in attribute content
1643 *
1644 * Returns 0 if successful or -1 in case of error.
1645 */
1646int
1647xmlSaveSetAttrEscape(xmlSaveCtxtPtr ctxt, xmlCharEncodingOutputFunc escape)
1648{
1649 if (ctxt == NULL) return(-1);
1650 ctxt->escapeAttr = escape;
1651 return(0);
1652}
1653
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001654/************************************************************************
1655 * *
1656 * Public entry points based on buffers *
1657 * *
1658 ************************************************************************/
1659/**
1660 * xmlAttrSerializeTxtContent:
1661 * @buf: the XML buffer output
1662 * @doc: the document
1663 * @attr: the attribute node
1664 * @string: the text content
1665 *
1666 * Serialize text attribute values to an xml simple buffer
1667 */
1668void
1669xmlAttrSerializeTxtContent(xmlBufferPtr buf, xmlDocPtr doc,
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001670 xmlAttrPtr attr, const xmlChar * string)
1671{
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001672 xmlChar *base, *cur;
1673
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001674 if (string == NULL)
1675 return;
1676 base = cur = (xmlChar *) string;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001677 while (*cur != 0) {
1678 if (*cur == '\n') {
1679 if (base != cur)
1680 xmlBufferAdd(buf, base, cur - base);
1681 xmlBufferAdd(buf, BAD_CAST "&#10;", 5);
1682 cur++;
1683 base = cur;
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001684 } else if (*cur == '\r') {
1685 if (base != cur)
1686 xmlBufferAdd(buf, base, cur - base);
1687 xmlBufferAdd(buf, BAD_CAST "&#13;", 5);
1688 cur++;
1689 base = cur;
1690 } else if (*cur == '\t') {
1691 if (base != cur)
1692 xmlBufferAdd(buf, base, cur - base);
1693 xmlBufferAdd(buf, BAD_CAST "&#9;", 4);
1694 cur++;
1695 base = cur;
1696 } else if (*cur == '"') {
1697 if (base != cur)
1698 xmlBufferAdd(buf, base, cur - base);
1699 xmlBufferAdd(buf, BAD_CAST "&quot;", 6);
1700 cur++;
1701 base = cur;
1702 } else if (*cur == '<') {
1703 if (base != cur)
1704 xmlBufferAdd(buf, base, cur - base);
1705 xmlBufferAdd(buf, BAD_CAST "&lt;", 4);
1706 cur++;
1707 base = cur;
1708 } else if (*cur == '>') {
1709 if (base != cur)
1710 xmlBufferAdd(buf, base, cur - base);
1711 xmlBufferAdd(buf, BAD_CAST "&gt;", 4);
1712 cur++;
1713 base = cur;
1714 } else if (*cur == '&') {
1715 if (base != cur)
1716 xmlBufferAdd(buf, base, cur - base);
1717 xmlBufferAdd(buf, BAD_CAST "&amp;", 5);
1718 cur++;
1719 base = cur;
1720 } else if ((*cur >= 0x80) && ((doc == NULL) ||
1721 (doc->encoding == NULL))) {
1722 /*
1723 * We assume we have UTF-8 content.
1724 */
1725 unsigned char tmp[10];
1726 int val = 0, l = 1;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001727
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001728 if (base != cur)
1729 xmlBufferAdd(buf, base, cur - base);
1730 if (*cur < 0xC0) {
1731 xmlSaveErr(XML_SAVE_NOT_UTF8, (xmlNodePtr) attr, NULL);
1732 if (doc != NULL)
1733 doc->encoding = xmlStrdup(BAD_CAST "ISO-8859-1");
1734 xmlSerializeHexCharRef(tmp, *cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001735 xmlBufferAdd(buf, (xmlChar *) tmp, -1);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001736 cur++;
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001737 base = cur;
1738 continue;
1739 } else if (*cur < 0xE0) {
1740 val = (cur[0]) & 0x1F;
1741 val <<= 6;
1742 val |= (cur[1]) & 0x3F;
1743 l = 2;
1744 } else if (*cur < 0xF0) {
1745 val = (cur[0]) & 0x0F;
1746 val <<= 6;
1747 val |= (cur[1]) & 0x3F;
1748 val <<= 6;
1749 val |= (cur[2]) & 0x3F;
1750 l = 3;
1751 } else if (*cur < 0xF8) {
1752 val = (cur[0]) & 0x07;
1753 val <<= 6;
1754 val |= (cur[1]) & 0x3F;
1755 val <<= 6;
1756 val |= (cur[2]) & 0x3F;
1757 val <<= 6;
1758 val |= (cur[3]) & 0x3F;
1759 l = 4;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001760 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001761 if ((l == 1) || (!IS_CHAR(val))) {
1762 xmlSaveErr(XML_SAVE_CHAR_INVALID, (xmlNodePtr) attr, NULL);
1763 if (doc != NULL)
1764 doc->encoding = xmlStrdup(BAD_CAST "ISO-8859-1");
1765
1766 xmlSerializeHexCharRef(tmp, *cur);
1767 xmlBufferAdd(buf, (xmlChar *) tmp, -1);
1768 cur++;
1769 base = cur;
1770 continue;
1771 }
1772 /*
1773 * We could do multiple things here. Just save
1774 * as a char ref
1775 */
1776 xmlSerializeHexCharRef(tmp, val);
1777 xmlBufferAdd(buf, (xmlChar *) tmp, -1);
1778 cur += l;
1779 base = cur;
1780 } else {
1781 cur++;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001782 }
Daniel Veillard7a6361f2004-05-15 16:37:50 +00001783 }
1784 if (base != cur)
1785 xmlBufferAdd(buf, base, cur - base);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001786}
1787
1788/**
1789 * xmlNodeDump:
1790 * @buf: the XML buffer output
1791 * @doc: the document
1792 * @cur: the current node
1793 * @level: the imbrication level for indenting
1794 * @format: is formatting allowed
1795 *
1796 * Dump an XML node, recursive behaviour,children are printed too.
1797 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1798 * or xmlKeepBlanksDefault(0) was called
1799 *
1800 * Returns the number of bytes written to the buffer or -1 in case of error
1801 */
1802int
1803xmlNodeDump(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, int level,
1804 int format)
1805{
1806 unsigned int use;
1807 int ret;
1808 xmlOutputBufferPtr outbuf;
1809
1810 xmlInitParser();
1811
1812 if (cur == NULL) {
1813#ifdef DEBUG_TREE
1814 xmlGenericError(xmlGenericErrorContext,
1815 "xmlNodeDump : node == NULL\n");
1816#endif
1817 return (-1);
1818 }
1819 if (buf == NULL) {
1820#ifdef DEBUG_TREE
1821 xmlGenericError(xmlGenericErrorContext,
1822 "xmlNodeDump : buf == NULL\n");
1823#endif
1824 return (-1);
1825 }
1826 outbuf = (xmlOutputBufferPtr) xmlMalloc(sizeof(xmlOutputBuffer));
1827 if (outbuf == NULL) {
1828 xmlSaveErrMemory("creating buffer");
1829 return (-1);
1830 }
1831 memset(outbuf, 0, (size_t) sizeof(xmlOutputBuffer));
1832 outbuf->buffer = buf;
1833 outbuf->encoder = NULL;
1834 outbuf->writecallback = NULL;
1835 outbuf->closecallback = NULL;
1836 outbuf->context = NULL;
1837 outbuf->written = 0;
1838
1839 use = buf->use;
1840 xmlNodeDumpOutput(outbuf, doc, cur, level, format, NULL);
1841 xmlFree(outbuf);
1842 ret = buf->use - use;
1843 return (ret);
1844}
1845
1846/**
1847 * xmlElemDump:
1848 * @f: the FILE * for the output
1849 * @doc: the document
1850 * @cur: the current node
1851 *
1852 * Dump an XML/HTML node, recursive behaviour, children are printed too.
1853 */
1854void
1855xmlElemDump(FILE * f, xmlDocPtr doc, xmlNodePtr cur)
1856{
1857 xmlOutputBufferPtr outbuf;
1858
1859 xmlInitParser();
1860
1861 if (cur == NULL) {
1862#ifdef DEBUG_TREE
1863 xmlGenericError(xmlGenericErrorContext,
1864 "xmlElemDump : cur == NULL\n");
1865#endif
1866 return;
1867 }
1868#ifdef DEBUG_TREE
1869 if (doc == NULL) {
1870 xmlGenericError(xmlGenericErrorContext,
1871 "xmlElemDump : doc == NULL\n");
1872 }
1873#endif
1874
1875 outbuf = xmlOutputBufferCreateFile(f, NULL);
1876 if (outbuf == NULL)
1877 return;
1878 if ((doc != NULL) && (doc->type == XML_HTML_DOCUMENT_NODE)) {
1879#ifdef LIBXML_HTML_ENABLED
1880 htmlNodeDumpOutput(outbuf, doc, cur, NULL);
1881#else
1882 xmlSaveErr(XML_ERR_INTERNAL_ERROR, cur, "HTML support not compiled in\n");
1883#endif /* LIBXML_HTML_ENABLED */
1884 } else
1885 xmlNodeDumpOutput(outbuf, doc, cur, 0, 1, NULL);
1886 xmlOutputBufferClose(outbuf);
1887}
1888
1889/************************************************************************
1890 * *
1891 * Saving functions front-ends *
1892 * *
1893 ************************************************************************/
1894
1895/**
1896 * xmlNodeDumpOutput:
1897 * @buf: the XML buffer output
1898 * @doc: the document
1899 * @cur: the current node
1900 * @level: the imbrication level for indenting
1901 * @format: is formatting allowed
1902 * @encoding: an optional encoding string
1903 *
1904 * Dump an XML node, recursive behaviour, children are printed too.
1905 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1906 * or xmlKeepBlanksDefault(0) was called
1907 */
1908void
1909xmlNodeDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur,
1910 int level, int format, const char *encoding)
1911{
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001912 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001913#ifdef LIBXML_HTML_ENABLED
1914 xmlDtdPtr dtd;
1915 int is_xhtml = 0;
1916#endif
1917
1918 xmlInitParser();
1919
Daniel Veillardce244ad2004-11-05 10:03:46 +00001920 if ((buf == NULL) || (cur == NULL)) return;
1921
Daniel Veillard64354ea2005-03-31 15:22:56 +00001922 if (encoding == NULL)
1923 encoding = "UTF-8";
1924
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001925 memset(&ctxt, 0, sizeof(ctxt));
1926 ctxt.doc = doc;
1927 ctxt.buf = buf;
1928 ctxt.level = level;
1929 ctxt.format = format;
1930 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00001931 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001932
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001933#ifdef LIBXML_HTML_ENABLED
1934 dtd = xmlGetIntSubset(doc);
1935 if (dtd != NULL) {
Daniel Veillard33b20b72005-09-12 21:43:20 +00001936 is_xhtml = xmlIsXHTML(dtd->SystemID, dtd->ExternalID);
1937 if (is_xhtml < 0)
1938 is_xhtml = 0;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001939 }
1940
1941 if (is_xhtml)
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001942 xhtmlNodeDumpOutput(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001943 else
1944#endif
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001945 xmlNodeDumpOutputInternal(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001946}
1947
1948/**
1949 * xmlDocDumpFormatMemoryEnc:
1950 * @out_doc: Document to generate XML text from
1951 * @doc_txt_ptr: Memory pointer for allocated XML text
1952 * @doc_txt_len: Length of the generated XML text
1953 * @txt_encoding: Character encoding to use when generating XML text
1954 * @format: should formatting spaces been added
1955 *
1956 * Dump the current DOM tree into memory using the character encoding specified
1957 * by the caller. Note it is up to the caller of this function to free the
1958 * allocated memory with xmlFree().
1959 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
1960 * or xmlKeepBlanksDefault(0) was called
1961 */
1962
1963void
1964xmlDocDumpFormatMemoryEnc(xmlDocPtr out_doc, xmlChar **doc_txt_ptr,
1965 int * doc_txt_len, const char * txt_encoding,
1966 int format) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00001967 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00001968 int dummy = 0;
1969 xmlOutputBufferPtr out_buff = NULL;
1970 xmlCharEncodingHandlerPtr conv_hdlr = NULL;
1971
1972 if (doc_txt_len == NULL) {
1973 doc_txt_len = &dummy; /* Continue, caller just won't get length */
1974 }
1975
1976 if (doc_txt_ptr == NULL) {
1977 *doc_txt_len = 0;
1978 return;
1979 }
1980
1981 *doc_txt_ptr = NULL;
1982 *doc_txt_len = 0;
1983
1984 if (out_doc == NULL) {
1985 /* No document, no output */
1986 return;
1987 }
1988
1989 /*
1990 * Validate the encoding value, if provided.
1991 * This logic is copied from xmlSaveFileEnc.
1992 */
1993
1994 if (txt_encoding == NULL)
1995 txt_encoding = (const char *) out_doc->encoding;
1996 if (txt_encoding != NULL) {
1997 conv_hdlr = xmlFindCharEncodingHandler(txt_encoding);
1998 if ( conv_hdlr == NULL ) {
1999 xmlSaveErr(XML_SAVE_UNKNOWN_ENCODING, (xmlNodePtr) out_doc,
2000 txt_encoding);
2001 return;
2002 }
2003 }
2004
2005 if ((out_buff = xmlAllocOutputBuffer(conv_hdlr)) == NULL ) {
2006 xmlSaveErrMemory("creating buffer");
2007 return;
2008 }
2009
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002010 memset(&ctxt, 0, sizeof(ctxt));
2011 ctxt.doc = out_doc;
2012 ctxt.buf = out_buff;
2013 ctxt.level = 0;
2014 ctxt.format = format;
2015 ctxt.encoding = (const xmlChar *) txt_encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002016 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002017 xmlDocContentDumpOutput(&ctxt, out_doc);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002018 xmlOutputBufferFlush(out_buff);
2019 if (out_buff->conv != NULL) {
2020 *doc_txt_len = out_buff->conv->use;
2021 *doc_txt_ptr = xmlStrndup(out_buff->conv->content, *doc_txt_len);
2022 } else {
2023 *doc_txt_len = out_buff->buffer->use;
2024 *doc_txt_ptr = xmlStrndup(out_buff->buffer->content, *doc_txt_len);
2025 }
2026 (void)xmlOutputBufferClose(out_buff);
2027
2028 if ((*doc_txt_ptr == NULL) && (*doc_txt_len > 0)) {
2029 *doc_txt_len = 0;
2030 xmlSaveErrMemory("creating output");
2031 }
2032
2033 return;
2034}
2035
2036/**
2037 * xmlDocDumpMemory:
2038 * @cur: the document
2039 * @mem: OUT: the memory pointer
2040 * @size: OUT: the memory length
2041 *
2042 * Dump an XML document in memory and return the #xmlChar * and it's size
2043 * in bytes. It's up to the caller to free the memory with xmlFree().
2044 * The resulting byte array is zero terminated, though the last 0 is not
2045 * included in the returned size.
2046 */
2047void
2048xmlDocDumpMemory(xmlDocPtr cur, xmlChar**mem, int *size) {
2049 xmlDocDumpFormatMemoryEnc(cur, mem, size, NULL, 0);
2050}
2051
2052/**
2053 * xmlDocDumpFormatMemory:
2054 * @cur: the document
2055 * @mem: OUT: the memory pointer
2056 * @size: OUT: the memory length
2057 * @format: should formatting spaces been added
2058 *
2059 *
2060 * Dump an XML document in memory and return the #xmlChar * and it's size.
2061 * It's up to the caller to free the memory with xmlFree().
2062 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2063 * or xmlKeepBlanksDefault(0) was called
2064 */
2065void
2066xmlDocDumpFormatMemory(xmlDocPtr cur, xmlChar**mem, int *size, int format) {
2067 xmlDocDumpFormatMemoryEnc(cur, mem, size, NULL, format);
2068}
2069
2070/**
2071 * xmlDocDumpMemoryEnc:
2072 * @out_doc: Document to generate XML text from
2073 * @doc_txt_ptr: Memory pointer for allocated XML text
2074 * @doc_txt_len: Length of the generated XML text
2075 * @txt_encoding: Character encoding to use when generating XML text
2076 *
2077 * Dump the current DOM tree into memory using the character encoding specified
2078 * by the caller. Note it is up to the caller of this function to free the
2079 * allocated memory with xmlFree().
2080 */
2081
2082void
2083xmlDocDumpMemoryEnc(xmlDocPtr out_doc, xmlChar **doc_txt_ptr,
2084 int * doc_txt_len, const char * txt_encoding) {
2085 xmlDocDumpFormatMemoryEnc(out_doc, doc_txt_ptr, doc_txt_len,
2086 txt_encoding, 0);
2087}
2088
2089/**
2090 * xmlDocFormatDump:
2091 * @f: the FILE*
2092 * @cur: the document
2093 * @format: should formatting spaces been added
2094 *
2095 * Dump an XML document to an open FILE.
2096 *
2097 * returns: the number of bytes written or -1 in case of failure.
2098 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2099 * or xmlKeepBlanksDefault(0) was called
2100 */
2101int
2102xmlDocFormatDump(FILE *f, xmlDocPtr cur, int format) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002103 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002104 xmlOutputBufferPtr buf;
2105 const char * encoding;
2106 xmlCharEncodingHandlerPtr handler = NULL;
2107 int ret;
2108
2109 if (cur == NULL) {
2110#ifdef DEBUG_TREE
2111 xmlGenericError(xmlGenericErrorContext,
2112 "xmlDocDump : document == NULL\n");
2113#endif
2114 return(-1);
2115 }
2116 encoding = (const char *) cur->encoding;
2117
2118 if (encoding != NULL) {
2119 handler = xmlFindCharEncodingHandler(encoding);
2120 if (handler == NULL) {
2121 xmlFree((char *) cur->encoding);
2122 cur->encoding = NULL;
2123 }
2124 }
2125 buf = xmlOutputBufferCreateFile(f, handler);
2126 if (buf == NULL) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002127 memset(&ctxt, 0, sizeof(ctxt));
2128 ctxt.doc = cur;
2129 ctxt.buf = buf;
2130 ctxt.level = 0;
2131 ctxt.format = format;
2132 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002133 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002134 xmlDocContentDumpOutput(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002135
2136 ret = xmlOutputBufferClose(buf);
2137 return(ret);
2138}
2139
2140/**
2141 * xmlDocDump:
2142 * @f: the FILE*
2143 * @cur: the document
2144 *
2145 * Dump an XML document to an open FILE.
2146 *
2147 * returns: the number of bytes written or -1 in case of failure.
2148 */
2149int
2150xmlDocDump(FILE *f, xmlDocPtr cur) {
2151 return(xmlDocFormatDump (f, cur, 0));
2152}
2153
2154/**
2155 * xmlSaveFileTo:
2156 * @buf: an output I/O buffer
2157 * @cur: the document
2158 * @encoding: the encoding if any assuming the I/O layer handles the trancoding
2159 *
2160 * Dump an XML document to an I/O buffer.
Daniel Veillard3d97e662004-11-04 10:49:00 +00002161 * Warning ! This call xmlOutputBufferClose() on buf which is not available
2162 * after this call.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002163 *
2164 * returns: the number of bytes written or -1 in case of failure.
2165 */
2166int
2167xmlSaveFileTo(xmlOutputBufferPtr buf, xmlDocPtr cur, const char *encoding) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002168 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002169 int ret;
2170
Daniel Veillard3d97e662004-11-04 10:49:00 +00002171 if (buf == NULL) return(-1);
2172 if (cur == NULL) {
2173 xmlOutputBufferClose(buf);
2174 return(-1);
2175 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002176 memset(&ctxt, 0, sizeof(ctxt));
2177 ctxt.doc = cur;
2178 ctxt.buf = buf;
2179 ctxt.level = 0;
2180 ctxt.format = 0;
2181 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002182 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002183 xmlDocContentDumpOutput(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002184 ret = xmlOutputBufferClose(buf);
2185 return(ret);
2186}
2187
2188/**
2189 * xmlSaveFormatFileTo:
2190 * @buf: an output I/O buffer
2191 * @cur: the document
2192 * @encoding: the encoding if any assuming the I/O layer handles the trancoding
2193 * @format: should formatting spaces been added
2194 *
2195 * Dump an XML document to an I/O buffer.
Daniel Veillard3d97e662004-11-04 10:49:00 +00002196 * Warning ! This call xmlOutputBufferClose() on buf which is not available
2197 * after this call.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002198 *
2199 * returns: the number of bytes written or -1 in case of failure.
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002200 */
2201int
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002202xmlSaveFormatFileTo(xmlOutputBufferPtr buf, xmlDocPtr cur,
2203 const char *encoding, int format)
2204{
2205 xmlSaveCtxt ctxt;
2206 int ret;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002207
Daniel Veillard3d97e662004-11-04 10:49:00 +00002208 if (buf == NULL) return(-1);
Daniel Veillardce244ad2004-11-05 10:03:46 +00002209 if ((cur == NULL) ||
2210 ((cur->type != XML_DOCUMENT_NODE) &&
2211 (cur->type != XML_HTML_DOCUMENT_NODE))) {
Daniel Veillard3d97e662004-11-04 10:49:00 +00002212 xmlOutputBufferClose(buf);
2213 return(-1);
2214 }
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002215 memset(&ctxt, 0, sizeof(ctxt));
2216 ctxt.doc = cur;
2217 ctxt.buf = buf;
2218 ctxt.level = 0;
2219 ctxt.format = format;
2220 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002221 xmlSaveCtxtInit(&ctxt);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002222 xmlDocContentDumpOutput(&ctxt, cur);
2223 ret = xmlOutputBufferClose(buf);
2224 return (ret);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002225}
2226
2227/**
2228 * xmlSaveFormatFileEnc:
2229 * @filename: the filename or URL to output
2230 * @cur: the document being saved
2231 * @encoding: the name of the encoding to use or NULL.
2232 * @format: should formatting spaces be added.
2233 *
2234 * Dump an XML document to a file or an URL.
2235 *
2236 * Returns the number of bytes written or -1 in case of error.
2237 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2238 * or xmlKeepBlanksDefault(0) was called
2239 */
2240int
2241xmlSaveFormatFileEnc( const char * filename, xmlDocPtr cur,
2242 const char * encoding, int format ) {
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002243 xmlSaveCtxt ctxt;
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002244 xmlOutputBufferPtr buf;
2245 xmlCharEncodingHandlerPtr handler = NULL;
2246 int ret;
2247
2248 if (cur == NULL)
2249 return(-1);
2250
2251 if (encoding == NULL)
2252 encoding = (const char *) cur->encoding;
2253
2254 if (encoding != NULL) {
2255
2256 handler = xmlFindCharEncodingHandler(encoding);
2257 if (handler == NULL)
2258 return(-1);
2259 }
2260
2261#ifdef HAVE_ZLIB_H
2262 if (cur->compression < 0) cur->compression = xmlGetCompressMode();
2263#endif
2264 /*
2265 * save the content to a temp buffer.
2266 */
2267 buf = xmlOutputBufferCreateFilename(filename, handler, cur->compression);
2268 if (buf == NULL) return(-1);
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002269 memset(&ctxt, 0, sizeof(ctxt));
2270 ctxt.doc = cur;
2271 ctxt.buf = buf;
2272 ctxt.level = 0;
2273 ctxt.format = format;
2274 ctxt.encoding = (const xmlChar *) encoding;
Daniel Veillard753086a2004-03-28 16:12:44 +00002275 xmlSaveCtxtInit(&ctxt);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002276
Daniel Veillard32b7cdb2004-03-15 13:46:37 +00002277 xmlDocContentDumpOutput(&ctxt, cur);
Daniel Veillard1a8741c2004-03-04 13:40:59 +00002278
2279 ret = xmlOutputBufferClose(buf);
2280 return(ret);
2281}
2282
2283
2284/**
2285 * xmlSaveFileEnc:
2286 * @filename: the filename (or URL)
2287 * @cur: the document
2288 * @encoding: the name of an encoding (or NULL)
2289 *
2290 * Dump an XML document, converting it to the given encoding
2291 *
2292 * returns: the number of bytes written or -1 in case of failure.
2293 */
2294int
2295xmlSaveFileEnc(const char *filename, xmlDocPtr cur, const char *encoding) {
2296 return ( xmlSaveFormatFileEnc( filename, cur, encoding, 0 ) );
2297}
2298
2299/**
2300 * xmlSaveFormatFile:
2301 * @filename: the filename (or URL)
2302 * @cur: the document
2303 * @format: should formatting spaces been added
2304 *
2305 * Dump an XML document to a file. Will use compression if
2306 * compiled in and enabled. If @filename is "-" the stdout file is
2307 * used. If @format is set then the document will be indented on output.
2308 * Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1
2309 * or xmlKeepBlanksDefault(0) was called
2310 *
2311 * returns: the number of bytes written or -1 in case of failure.
2312 */
2313int
2314xmlSaveFormatFile(const char *filename, xmlDocPtr cur, int format) {
2315 return ( xmlSaveFormatFileEnc( filename, cur, NULL, format ) );
2316}
2317
2318/**
2319 * xmlSaveFile:
2320 * @filename: the filename (or URL)
2321 * @cur: the document
2322 *
2323 * Dump an XML document to a file. Will use compression if
2324 * compiled in and enabled. If @filename is "-" the stdout file is
2325 * used.
2326 * returns: the number of bytes written or -1 in case of failure.
2327 */
2328int
2329xmlSaveFile(const char *filename, xmlDocPtr cur) {
2330 return(xmlSaveFormatFileEnc(filename, cur, NULL, 0));
2331}
2332
2333#endif /* LIBXML_OUTPUT_ENABLED */
2334
Daniel Veillard5d4644e2005-04-01 13:11:58 +00002335#define bottom_xmlsave
2336#include "elfgcchack.h"