blob: bce60d2f00a889f22d153034ae5b8d652ad14f70 [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
Daniel Veillardd1640922001-12-17 15:30:10 +00002 * tree.c : implementation of access function for an XML tree.
Owen Taylor3473f882001-02-23 17:55:21 +00003 *
Daniel Veillardd5c2f922002-11-21 14:10:52 +00004 * References:
5 * XHTML 1.0 W3C REC: http://www.w3.org/TR/2002/REC-xhtml1-20020801/
6 *
Owen Taylor3473f882001-02-23 17:55:21 +00007 * See Copyright for the status of this software.
8 *
Daniel Veillardc5d64342001-06-24 12:13:24 +00009 * daniel@veillard.com
Owen Taylor3473f882001-02-23 17:55:21 +000010 *
Owen Taylor3473f882001-02-23 17:55:21 +000011 */
12
Daniel Veillard34ce8be2002-03-18 19:37:11 +000013#define IN_LIBXML
Bjorn Reese70a9da52001-04-21 16:57:29 +000014#include "libxml.h"
Owen Taylor3473f882001-02-23 17:55:21 +000015
Owen Taylor3473f882001-02-23 17:55:21 +000016#include <string.h> /* for memset() only ! */
Daniel Veillard1dc9feb2008-11-17 15:59:21 +000017#include <limits.h>
Owen Taylor3473f882001-02-23 17:55:21 +000018#ifdef HAVE_CTYPE_H
19#include <ctype.h>
20#endif
21#ifdef HAVE_STDLIB_H
22#include <stdlib.h>
23#endif
24#ifdef HAVE_ZLIB_H
25#include <zlib.h>
26#endif
27
28#include <libxml/xmlmemory.h>
29#include <libxml/tree.h>
30#include <libxml/parser.h>
Daniel Veillardb8c9be92001-07-09 16:01:19 +000031#include <libxml/uri.h>
Owen Taylor3473f882001-02-23 17:55:21 +000032#include <libxml/entities.h>
33#include <libxml/valid.h>
34#include <libxml/xmlerror.h>
Daniel Veillardbdb9ba72001-04-11 11:28:06 +000035#include <libxml/parserInternals.h>
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000036#include <libxml/globals.h>
Daniel Veillardd5c2f922002-11-21 14:10:52 +000037#ifdef LIBXML_HTML_ENABLED
38#include <libxml/HTMLtree.h>
39#endif
William M. Brack1d8c9b22004-12-25 10:14:57 +000040#ifdef LIBXML_DEBUG_ENABLED
41#include <libxml/debugXML.h>
42#endif
Owen Taylor3473f882001-02-23 17:55:21 +000043
Daniel Veillarda880b122003-04-21 21:36:41 +000044int __xmlRegisterCallbacks = 0;
45
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +000046/************************************************************************
47 * *
Daniel Veillardaa6de472008-08-25 14:53:31 +000048 * Forward declarations *
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +000049 * *
50 ************************************************************************/
51
Daniel Veillard8ed10722009-08-20 19:17:36 +020052static xmlNsPtr
53xmlNewReconciliedNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns);
Daniel Veillard56a4cb82001-03-24 17:00:36 +000054
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +000055static xmlChar* xmlGetPropNodeValueInternal(xmlAttrPtr prop);
56
Daniel Veillard56a4cb82001-03-24 17:00:36 +000057/************************************************************************
58 * *
Daniel Veillardaa6de472008-08-25 14:53:31 +000059 * Tree memory error handler *
Daniel Veillard18ec16e2003-10-07 23:16:40 +000060 * *
61 ************************************************************************/
62/**
63 * xmlTreeErrMemory:
64 * @extra: extra informations
65 *
66 * Handle an out of memory condition
67 */
68static void
69xmlTreeErrMemory(const char *extra)
70{
71 __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra);
72}
73
74/**
75 * xmlTreeErr:
76 * @code: the error number
77 * @extra: extra informations
78 *
79 * Handle an out of memory condition
80 */
81static void
82xmlTreeErr(int code, xmlNodePtr node, const char *extra)
83{
84 const char *msg = NULL;
85
86 switch(code) {
87 case XML_TREE_INVALID_HEX:
Daniel Veillardac996a12004-07-30 12:02:58 +000088 msg = "invalid hexadecimal character value\n";
Daniel Veillard18ec16e2003-10-07 23:16:40 +000089 break;
90 case XML_TREE_INVALID_DEC:
Daniel Veillardac996a12004-07-30 12:02:58 +000091 msg = "invalid decimal character value\n";
Daniel Veillard18ec16e2003-10-07 23:16:40 +000092 break;
93 case XML_TREE_UNTERMINATED_ENTITY:
Daniel Veillardac996a12004-07-30 12:02:58 +000094 msg = "unterminated entity reference %15s\n";
Daniel Veillard18ec16e2003-10-07 23:16:40 +000095 break;
Daniel Veillard6f8611f2008-02-15 08:33:21 +000096 case XML_TREE_NOT_UTF8:
97 msg = "string is not in UTF-8\n";
98 break;
Daniel Veillard18ec16e2003-10-07 23:16:40 +000099 default:
Daniel Veillardac996a12004-07-30 12:02:58 +0000100 msg = "unexpected error number\n";
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000101 }
102 __xmlSimpleError(XML_FROM_TREE, code, node, msg, extra);
103}
104
105/************************************************************************
106 * *
Daniel Veillardaa6de472008-08-25 14:53:31 +0000107 * A few static variables and macros *
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000108 * *
109 ************************************************************************/
Daniel Veillardd0463562001-10-13 09:15:48 +0000110/* #undef xmlStringText */
Daniel Veillard22090732001-07-16 00:06:07 +0000111const xmlChar xmlStringText[] = { 't', 'e', 'x', 't', 0 };
Daniel Veillardd0463562001-10-13 09:15:48 +0000112/* #undef xmlStringTextNoenc */
Daniel Veillard22090732001-07-16 00:06:07 +0000113const xmlChar xmlStringTextNoenc[] =
Owen Taylor3473f882001-02-23 17:55:21 +0000114 { 't', 'e', 'x', 't', 'n', 'o', 'e', 'n', 'c', 0 };
Daniel Veillardd0463562001-10-13 09:15:48 +0000115/* #undef xmlStringComment */
Daniel Veillard22090732001-07-16 00:06:07 +0000116const xmlChar xmlStringComment[] = { 'c', 'o', 'm', 'm', 'e', 'n', 't', 0 };
117
Owen Taylor3473f882001-02-23 17:55:21 +0000118static int xmlCompressMode = 0;
119static int xmlCheckDTD = 1;
Owen Taylor3473f882001-02-23 17:55:21 +0000120
Owen Taylor3473f882001-02-23 17:55:21 +0000121#define UPDATE_LAST_CHILD_AND_PARENT(n) if ((n) != NULL) { \
122 xmlNodePtr ulccur = (n)->children; \
123 if (ulccur == NULL) { \
124 (n)->last = NULL; \
125 } else { \
126 while (ulccur->next != NULL) { \
Daniel Veillardaa6de472008-08-25 14:53:31 +0000127 ulccur->parent = (n); \
Owen Taylor3473f882001-02-23 17:55:21 +0000128 ulccur = ulccur->next; \
129 } \
130 ulccur->parent = (n); \
131 (n)->last = ulccur; \
132}}
133
Kasimier T. Buchcik44353412006-03-06 13:26:16 +0000134#define IS_STR_XML(str) ((str != NULL) && (str[0] == 'x') && \
135 (str[1] == 'm') && (str[2] == 'l') && (str[3] == 0))
136
Owen Taylor3473f882001-02-23 17:55:21 +0000137/* #define DEBUG_BUFFER */
138/* #define DEBUG_TREE */
139
140/************************************************************************
141 * *
Daniel Veillardaa6de472008-08-25 14:53:31 +0000142 * Functions to move to entities.c once the *
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +0000143 * API freeze is smoothen and they can be made public. *
144 * *
145 ************************************************************************/
146#include <libxml/hash.h>
Daniel Veillardaa6de472008-08-25 14:53:31 +0000147
Daniel Veillard652327a2003-09-29 18:02:38 +0000148#ifdef LIBXML_TREE_ENABLED
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +0000149/**
150 * xmlGetEntityFromDtd:
151 * @dtd: A pointer to the DTD to search
152 * @name: The entity name
153 *
154 * Do an entity lookup in the DTD entity hash table and
155 * return the corresponding entity, if found.
Daniel Veillardaa6de472008-08-25 14:53:31 +0000156 *
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +0000157 * Returns A pointer to the entity structure or NULL if not found.
158 */
159static xmlEntityPtr
160xmlGetEntityFromDtd(xmlDtdPtr dtd, const xmlChar *name) {
161 xmlEntitiesTablePtr table;
Daniel Veillardaa6de472008-08-25 14:53:31 +0000162
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +0000163 if((dtd != NULL) && (dtd->entities != NULL)) {
164 table = (xmlEntitiesTablePtr) dtd->entities;
165 return((xmlEntityPtr) xmlHashLookup(table, name));
Daniel Veillardaa6de472008-08-25 14:53:31 +0000166 /* return(xmlGetEntityFromTable(table, name)); */
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +0000167 }
168 return(NULL);
169}
170/**
171 * xmlGetParameterEntityFromDtd:
172 * @dtd: A pointer to the DTD to search
173 * @name: The entity name
Daniel Veillardaa6de472008-08-25 14:53:31 +0000174 *
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +0000175 * Do an entity lookup in the DTD pararmeter entity hash table and
176 * return the corresponding entity, if found.
177 *
178 * Returns A pointer to the entity structure or NULL if not found.
179 */
180static xmlEntityPtr
181xmlGetParameterEntityFromDtd(xmlDtdPtr dtd, const xmlChar *name) {
182 xmlEntitiesTablePtr table;
Daniel Veillardaa6de472008-08-25 14:53:31 +0000183
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +0000184 if ((dtd != NULL) && (dtd->pentities != NULL)) {
185 table = (xmlEntitiesTablePtr) dtd->pentities;
186 return((xmlEntityPtr) xmlHashLookup(table, name));
187 /* return(xmlGetEntityFromTable(table, name)); */
188 }
189 return(NULL);
190}
Daniel Veillard652327a2003-09-29 18:02:38 +0000191#endif /* LIBXML_TREE_ENABLED */
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +0000192
193/************************************************************************
194 * *
Daniel Veillardc00cda82003-04-07 10:22:39 +0000195 * QName handling helper *
196 * *
197 ************************************************************************/
198
199/**
200 * xmlBuildQName:
201 * @ncname: the Name
202 * @prefix: the prefix
203 * @memory: preallocated memory
204 * @len: preallocated memory length
205 *
206 * Builds the QName @prefix:@ncname in @memory if there is enough space
207 * and prefix is not NULL nor empty, otherwise allocate a new string.
208 * If prefix is NULL or empty it returns ncname.
209 *
210 * Returns the new string which must be freed by the caller if different from
211 * @memory and @ncname or NULL in case of error
212 */
213xmlChar *
214xmlBuildQName(const xmlChar *ncname, const xmlChar *prefix,
215 xmlChar *memory, int len) {
216 int lenn, lenp;
217 xmlChar *ret;
218
Daniel Veillard3b7840c2003-09-11 23:42:01 +0000219 if (ncname == NULL) return(NULL);
220 if (prefix == NULL) return((xmlChar *) ncname);
Daniel Veillardc00cda82003-04-07 10:22:39 +0000221
222 lenn = strlen((char *) ncname);
223 lenp = strlen((char *) prefix);
224
225 if ((memory == NULL) || (len < lenn + lenp + 2)) {
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000226 ret = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2);
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000227 if (ret == NULL) {
228 xmlTreeErrMemory("building QName");
229 return(NULL);
230 }
Daniel Veillardc00cda82003-04-07 10:22:39 +0000231 } else {
232 ret = memory;
233 }
234 memcpy(&ret[0], prefix, lenp);
235 ret[lenp] = ':';
236 memcpy(&ret[lenp + 1], ncname, lenn);
237 ret[lenn + lenp + 1] = 0;
238 return(ret);
239}
240
241/**
242 * xmlSplitQName2:
243 * @name: the full QName
Daniel Veillardaa6de472008-08-25 14:53:31 +0000244 * @prefix: a xmlChar **
Daniel Veillardc00cda82003-04-07 10:22:39 +0000245 *
246 * parse an XML qualified name string
247 *
248 * [NS 5] QName ::= (Prefix ':')? LocalPart
249 *
250 * [NS 6] Prefix ::= NCName
251 *
252 * [NS 7] LocalPart ::= NCName
253 *
254 * Returns NULL if not a QName, otherwise the local part, and prefix
255 * is updated to get the Prefix if any.
256 */
257
258xmlChar *
259xmlSplitQName2(const xmlChar *name, xmlChar **prefix) {
260 int len = 0;
261 xmlChar *ret = NULL;
262
Daniel Veillardd5cc0f72004-11-06 19:24:28 +0000263 if (prefix == NULL) return(NULL);
Daniel Veillardc00cda82003-04-07 10:22:39 +0000264 *prefix = NULL;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000265 if (name == NULL) return(NULL);
Daniel Veillardc00cda82003-04-07 10:22:39 +0000266
267#ifndef XML_XML_NAMESPACE
268 /* xml: prefix is not really a namespace */
269 if ((name[0] == 'x') && (name[1] == 'm') &&
270 (name[2] == 'l') && (name[3] == ':'))
271 return(NULL);
272#endif
273
274 /* nasty but valid */
275 if (name[0] == ':')
276 return(NULL);
277
278 /*
279 * we are not trying to validate but just to cut, and yes it will
280 * work even if this is as set of UTF-8 encoded chars
281 */
Daniel Veillardaa6de472008-08-25 14:53:31 +0000282 while ((name[len] != 0) && (name[len] != ':'))
Daniel Veillardc00cda82003-04-07 10:22:39 +0000283 len++;
Daniel Veillardaa6de472008-08-25 14:53:31 +0000284
Daniel Veillardc00cda82003-04-07 10:22:39 +0000285 if (name[len] == 0)
286 return(NULL);
287
288 *prefix = xmlStrndup(name, len);
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000289 if (*prefix == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000290 xmlTreeErrMemory("QName split");
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000291 return(NULL);
292 }
Daniel Veillardc00cda82003-04-07 10:22:39 +0000293 ret = xmlStrdup(&name[len + 1]);
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000294 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000295 xmlTreeErrMemory("QName split");
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000296 if (*prefix != NULL) {
297 xmlFree(*prefix);
298 *prefix = NULL;
299 }
300 return(NULL);
301 }
Daniel Veillardc00cda82003-04-07 10:22:39 +0000302
303 return(ret);
304}
305
Daniel Veillard8d73bcb2003-08-04 01:06:15 +0000306/**
307 * xmlSplitQName3:
308 * @name: the full QName
309 * @len: an int *
310 *
311 * parse an XML qualified name string,i
312 *
313 * returns NULL if it is not a Qualified Name, otherwise, update len
314 * with the lenght in byte of the prefix and return a pointer
Daniel Veillard54f9a4f2005-09-03 13:28:24 +0000315 * to the start of the name without the prefix
Daniel Veillard8d73bcb2003-08-04 01:06:15 +0000316 */
317
318const xmlChar *
319xmlSplitQName3(const xmlChar *name, int *len) {
320 int l = 0;
321
322 if (name == NULL) return(NULL);
323 if (len == NULL) return(NULL);
324
325 /* nasty but valid */
326 if (name[0] == ':')
327 return(NULL);
328
329 /*
330 * we are not trying to validate but just to cut, and yes it will
331 * work even if this is as set of UTF-8 encoded chars
332 */
Daniel Veillardaa6de472008-08-25 14:53:31 +0000333 while ((name[l] != 0) && (name[l] != ':'))
Daniel Veillard8d73bcb2003-08-04 01:06:15 +0000334 l++;
Daniel Veillardaa6de472008-08-25 14:53:31 +0000335
Daniel Veillard8d73bcb2003-08-04 01:06:15 +0000336 if (name[l] == 0)
337 return(NULL);
338
339 *len = l;
340
341 return(&name[l+1]);
342}
343
Daniel Veillardc00cda82003-04-07 10:22:39 +0000344/************************************************************************
345 * *
Daniel Veillardd2298792003-02-14 16:54:11 +0000346 * Check Name, NCName and QName strings *
347 * *
348 ************************************************************************/
Daniel Veillardaa6de472008-08-25 14:53:31 +0000349
Daniel Veillardd2298792003-02-14 16:54:11 +0000350#define CUR_SCHAR(s, l) xmlStringCurrentChar(NULL, s, &l)
351
Daniel Veillardf1a27c62006-10-13 22:33:03 +0000352#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) || defined (LIBXML_HTML_ENABLED) || defined(LIBXML_SAX1_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_WRITER_ENABLED) || defined(LIBXML_DOCB_ENABLED)
Daniel Veillardd2298792003-02-14 16:54:11 +0000353/**
354 * xmlValidateNCName:
355 * @value: the value to check
356 * @space: allow spaces in front and end of the string
357 *
358 * Check that a value conforms to the lexical space of NCName
359 *
360 * Returns 0 if this validates, a positive error code number otherwise
361 * and -1 in case of internal or API error.
362 */
363int
364xmlValidateNCName(const xmlChar *value, int space) {
365 const xmlChar *cur = value;
366 int c,l;
367
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000368 if (value == NULL)
369 return(-1);
370
Daniel Veillardd2298792003-02-14 16:54:11 +0000371 /*
372 * First quick algorithm for ASCII range
373 */
374 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000375 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +0000376 if (((*cur >= 'a') && (*cur <= 'z')) || ((*cur >= 'A') && (*cur <= 'Z')) ||
377 (*cur == '_'))
378 cur++;
379 else
380 goto try_complex;
381 while (((*cur >= 'a') && (*cur <= 'z')) ||
382 ((*cur >= 'A') && (*cur <= 'Z')) ||
383 ((*cur >= '0') && (*cur <= '9')) ||
384 (*cur == '_') || (*cur == '-') || (*cur == '.'))
385 cur++;
386 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000387 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +0000388 if (*cur == 0)
389 return(0);
390
391try_complex:
392 /*
393 * Second check for chars outside the ASCII range
394 */
395 cur = value;
396 c = CUR_SCHAR(cur, l);
397 if (space) {
398 while (IS_BLANK(c)) {
399 cur += l;
400 c = CUR_SCHAR(cur, l);
401 }
402 }
William M. Brack871611b2003-10-18 04:53:14 +0000403 if ((!IS_LETTER(c)) && (c != '_'))
Daniel Veillardd2298792003-02-14 16:54:11 +0000404 return(1);
405 cur += l;
406 c = CUR_SCHAR(cur, l);
William M. Brack871611b2003-10-18 04:53:14 +0000407 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
408 (c == '-') || (c == '_') || IS_COMBINING(c) ||
409 IS_EXTENDER(c)) {
Daniel Veillardd2298792003-02-14 16:54:11 +0000410 cur += l;
411 c = CUR_SCHAR(cur, l);
412 }
413 if (space) {
414 while (IS_BLANK(c)) {
415 cur += l;
416 c = CUR_SCHAR(cur, l);
417 }
418 }
419 if (c != 0)
420 return(1);
421
422 return(0);
423}
Daniel Veillard2156d432004-03-04 15:59:36 +0000424#endif
Daniel Veillardd2298792003-02-14 16:54:11 +0000425
Daniel Veillard2156d432004-03-04 15:59:36 +0000426#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
Daniel Veillardd2298792003-02-14 16:54:11 +0000427/**
428 * xmlValidateQName:
429 * @value: the value to check
430 * @space: allow spaces in front and end of the string
431 *
432 * Check that a value conforms to the lexical space of QName
433 *
434 * Returns 0 if this validates, a positive error code number otherwise
435 * and -1 in case of internal or API error.
436 */
437int
438xmlValidateQName(const xmlChar *value, int space) {
439 const xmlChar *cur = value;
440 int c,l;
441
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000442 if (value == NULL)
443 return(-1);
Daniel Veillardd2298792003-02-14 16:54:11 +0000444 /*
445 * First quick algorithm for ASCII range
446 */
447 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000448 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +0000449 if (((*cur >= 'a') && (*cur <= 'z')) || ((*cur >= 'A') && (*cur <= 'Z')) ||
450 (*cur == '_'))
451 cur++;
452 else
453 goto try_complex;
454 while (((*cur >= 'a') && (*cur <= 'z')) ||
455 ((*cur >= 'A') && (*cur <= 'Z')) ||
456 ((*cur >= '0') && (*cur <= '9')) ||
457 (*cur == '_') || (*cur == '-') || (*cur == '.'))
458 cur++;
459 if (*cur == ':') {
460 cur++;
461 if (((*cur >= 'a') && (*cur <= 'z')) ||
462 ((*cur >= 'A') && (*cur <= 'Z')) ||
463 (*cur == '_'))
464 cur++;
465 else
466 goto try_complex;
467 while (((*cur >= 'a') && (*cur <= 'z')) ||
468 ((*cur >= 'A') && (*cur <= 'Z')) ||
469 ((*cur >= '0') && (*cur <= '9')) ||
470 (*cur == '_') || (*cur == '-') || (*cur == '.'))
471 cur++;
472 }
473 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000474 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +0000475 if (*cur == 0)
476 return(0);
477
478try_complex:
479 /*
480 * Second check for chars outside the ASCII range
481 */
482 cur = value;
483 c = CUR_SCHAR(cur, l);
484 if (space) {
485 while (IS_BLANK(c)) {
486 cur += l;
487 c = CUR_SCHAR(cur, l);
488 }
489 }
William M. Brack871611b2003-10-18 04:53:14 +0000490 if ((!IS_LETTER(c)) && (c != '_'))
Daniel Veillardd2298792003-02-14 16:54:11 +0000491 return(1);
492 cur += l;
493 c = CUR_SCHAR(cur, l);
William M. Brack871611b2003-10-18 04:53:14 +0000494 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
495 (c == '-') || (c == '_') || IS_COMBINING(c) ||
496 IS_EXTENDER(c)) {
Daniel Veillardd2298792003-02-14 16:54:11 +0000497 cur += l;
498 c = CUR_SCHAR(cur, l);
499 }
500 if (c == ':') {
501 cur += l;
502 c = CUR_SCHAR(cur, l);
William M. Brack871611b2003-10-18 04:53:14 +0000503 if ((!IS_LETTER(c)) && (c != '_'))
Daniel Veillardd2298792003-02-14 16:54:11 +0000504 return(1);
505 cur += l;
506 c = CUR_SCHAR(cur, l);
William M. Brack871611b2003-10-18 04:53:14 +0000507 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
508 (c == '-') || (c == '_') || IS_COMBINING(c) ||
509 IS_EXTENDER(c)) {
Daniel Veillardd2298792003-02-14 16:54:11 +0000510 cur += l;
511 c = CUR_SCHAR(cur, l);
512 }
513 }
514 if (space) {
515 while (IS_BLANK(c)) {
516 cur += l;
517 c = CUR_SCHAR(cur, l);
518 }
519 }
520 if (c != 0)
521 return(1);
522 return(0);
523}
524
525/**
526 * xmlValidateName:
527 * @value: the value to check
528 * @space: allow spaces in front and end of the string
529 *
530 * Check that a value conforms to the lexical space of Name
531 *
532 * Returns 0 if this validates, a positive error code number otherwise
533 * and -1 in case of internal or API error.
534 */
535int
536xmlValidateName(const xmlChar *value, int space) {
537 const xmlChar *cur = value;
538 int c,l;
539
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000540 if (value == NULL)
541 return(-1);
Daniel Veillardd2298792003-02-14 16:54:11 +0000542 /*
543 * First quick algorithm for ASCII range
544 */
545 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000546 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +0000547 if (((*cur >= 'a') && (*cur <= 'z')) || ((*cur >= 'A') && (*cur <= 'Z')) ||
548 (*cur == '_') || (*cur == ':'))
549 cur++;
550 else
551 goto try_complex;
552 while (((*cur >= 'a') && (*cur <= 'z')) ||
553 ((*cur >= 'A') && (*cur <= 'Z')) ||
554 ((*cur >= '0') && (*cur <= '9')) ||
555 (*cur == '_') || (*cur == '-') || (*cur == '.') || (*cur == ':'))
556 cur++;
557 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000558 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +0000559 if (*cur == 0)
560 return(0);
561
562try_complex:
563 /*
564 * Second check for chars outside the ASCII range
565 */
566 cur = value;
567 c = CUR_SCHAR(cur, l);
568 if (space) {
569 while (IS_BLANK(c)) {
570 cur += l;
571 c = CUR_SCHAR(cur, l);
572 }
573 }
William M. Brack871611b2003-10-18 04:53:14 +0000574 if ((!IS_LETTER(c)) && (c != '_') && (c != ':'))
Daniel Veillardd2298792003-02-14 16:54:11 +0000575 return(1);
576 cur += l;
577 c = CUR_SCHAR(cur, l);
William M. Brack871611b2003-10-18 04:53:14 +0000578 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
579 (c == '-') || (c == '_') || IS_COMBINING(c) || IS_EXTENDER(c)) {
Daniel Veillardd2298792003-02-14 16:54:11 +0000580 cur += l;
581 c = CUR_SCHAR(cur, l);
582 }
583 if (space) {
584 while (IS_BLANK(c)) {
585 cur += l;
586 c = CUR_SCHAR(cur, l);
587 }
588 }
589 if (c != 0)
590 return(1);
591 return(0);
592}
593
Daniel Veillardd4310742003-02-18 21:12:46 +0000594/**
595 * xmlValidateNMToken:
596 * @value: the value to check
597 * @space: allow spaces in front and end of the string
598 *
599 * Check that a value conforms to the lexical space of NMToken
600 *
601 * Returns 0 if this validates, a positive error code number otherwise
602 * and -1 in case of internal or API error.
603 */
604int
605xmlValidateNMToken(const xmlChar *value, int space) {
606 const xmlChar *cur = value;
607 int c,l;
608
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000609 if (value == NULL)
610 return(-1);
Daniel Veillardd4310742003-02-18 21:12:46 +0000611 /*
612 * First quick algorithm for ASCII range
613 */
614 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000615 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd4310742003-02-18 21:12:46 +0000616 if (((*cur >= 'a') && (*cur <= 'z')) ||
617 ((*cur >= 'A') && (*cur <= 'Z')) ||
618 ((*cur >= '0') && (*cur <= '9')) ||
619 (*cur == '_') || (*cur == '-') || (*cur == '.') || (*cur == ':'))
620 cur++;
621 else
622 goto try_complex;
623 while (((*cur >= 'a') && (*cur <= 'z')) ||
624 ((*cur >= 'A') && (*cur <= 'Z')) ||
625 ((*cur >= '0') && (*cur <= '9')) ||
626 (*cur == '_') || (*cur == '-') || (*cur == '.') || (*cur == ':'))
627 cur++;
628 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000629 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd4310742003-02-18 21:12:46 +0000630 if (*cur == 0)
631 return(0);
632
633try_complex:
634 /*
635 * Second check for chars outside the ASCII range
636 */
637 cur = value;
638 c = CUR_SCHAR(cur, l);
639 if (space) {
640 while (IS_BLANK(c)) {
641 cur += l;
642 c = CUR_SCHAR(cur, l);
643 }
644 }
William M. Brack871611b2003-10-18 04:53:14 +0000645 if (!(IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
646 (c == '-') || (c == '_') || IS_COMBINING(c) || IS_EXTENDER(c)))
Daniel Veillardd4310742003-02-18 21:12:46 +0000647 return(1);
648 cur += l;
649 c = CUR_SCHAR(cur, l);
William M. Brack871611b2003-10-18 04:53:14 +0000650 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
651 (c == '-') || (c == '_') || IS_COMBINING(c) || IS_EXTENDER(c)) {
Daniel Veillardd4310742003-02-18 21:12:46 +0000652 cur += l;
653 c = CUR_SCHAR(cur, l);
654 }
655 if (space) {
656 while (IS_BLANK(c)) {
657 cur += l;
658 c = CUR_SCHAR(cur, l);
659 }
660 }
661 if (c != 0)
662 return(1);
663 return(0);
664}
Daniel Veillard652327a2003-09-29 18:02:38 +0000665#endif /* LIBXML_TREE_ENABLED */
Daniel Veillardd4310742003-02-18 21:12:46 +0000666
Daniel Veillardd2298792003-02-14 16:54:11 +0000667/************************************************************************
668 * *
Owen Taylor3473f882001-02-23 17:55:21 +0000669 * Allocation and deallocation of basic structures *
670 * *
671 ************************************************************************/
Daniel Veillardaa6de472008-08-25 14:53:31 +0000672
Owen Taylor3473f882001-02-23 17:55:21 +0000673/**
674 * xmlSetBufferAllocationScheme:
675 * @scheme: allocation method to use
Daniel Veillardaa6de472008-08-25 14:53:31 +0000676 *
Owen Taylor3473f882001-02-23 17:55:21 +0000677 * Set the buffer allocation method. Types are
678 * XML_BUFFER_ALLOC_EXACT - use exact sizes, keeps memory usage down
Daniel Veillardaa6de472008-08-25 14:53:31 +0000679 * XML_BUFFER_ALLOC_DOUBLEIT - double buffer when extra needed,
Owen Taylor3473f882001-02-23 17:55:21 +0000680 * improves performance
681 */
682void
683xmlSetBufferAllocationScheme(xmlBufferAllocationScheme scheme) {
Daniel Veillardda3fee42008-09-01 13:08:57 +0000684 if ((scheme == XML_BUFFER_ALLOC_EXACT) ||
685 (scheme == XML_BUFFER_ALLOC_DOUBLEIT))
686 xmlBufferAllocScheme = scheme;
Owen Taylor3473f882001-02-23 17:55:21 +0000687}
688
689/**
690 * xmlGetBufferAllocationScheme:
691 *
692 * Types are
693 * XML_BUFFER_ALLOC_EXACT - use exact sizes, keeps memory usage down
Daniel Veillardaa6de472008-08-25 14:53:31 +0000694 * XML_BUFFER_ALLOC_DOUBLEIT - double buffer when extra needed,
Owen Taylor3473f882001-02-23 17:55:21 +0000695 * improves performance
Daniel Veillardaa6de472008-08-25 14:53:31 +0000696 *
Owen Taylor3473f882001-02-23 17:55:21 +0000697 * Returns the current allocation scheme
698 */
699xmlBufferAllocationScheme
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000700xmlGetBufferAllocationScheme(void) {
Daniel Veillarde043ee12001-04-16 14:08:07 +0000701 return(xmlBufferAllocScheme);
Owen Taylor3473f882001-02-23 17:55:21 +0000702}
703
704/**
705 * xmlNewNs:
706 * @node: the element carrying the namespace
707 * @href: the URI associated
708 * @prefix: the prefix for the namespace
709 *
710 * Creation of a new Namespace. This function will refuse to create
711 * a namespace with a similar prefix than an existing one present on this
712 * node.
713 * We use href==NULL in the case of an element creation where the namespace
714 * was not defined.
Daniel Veillardd1640922001-12-17 15:30:10 +0000715 * Returns a new namespace pointer or NULL
Owen Taylor3473f882001-02-23 17:55:21 +0000716 */
717xmlNsPtr
718xmlNewNs(xmlNodePtr node, const xmlChar *href, const xmlChar *prefix) {
719 xmlNsPtr cur;
720
721 if ((node != NULL) && (node->type != XML_ELEMENT_NODE))
722 return(NULL);
723
Daniel Veillard20ee8c02001-10-05 09:18:14 +0000724 if ((prefix != NULL) && (xmlStrEqual(prefix, BAD_CAST "xml")))
725 return(NULL);
726
Owen Taylor3473f882001-02-23 17:55:21 +0000727 /*
728 * Allocate a new Namespace and fill the fields.
729 */
730 cur = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
731 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000732 xmlTreeErrMemory("building namespace");
Owen Taylor3473f882001-02-23 17:55:21 +0000733 return(NULL);
734 }
735 memset(cur, 0, sizeof(xmlNs));
736 cur->type = XML_LOCAL_NAMESPACE;
737
738 if (href != NULL)
Daniel Veillardaa6de472008-08-25 14:53:31 +0000739 cur->href = xmlStrdup(href);
Owen Taylor3473f882001-02-23 17:55:21 +0000740 if (prefix != NULL)
Daniel Veillardaa6de472008-08-25 14:53:31 +0000741 cur->prefix = xmlStrdup(prefix);
Owen Taylor3473f882001-02-23 17:55:21 +0000742
743 /*
744 * Add it at the end to preserve parsing order ...
745 * and checks for existing use of the prefix
746 */
747 if (node != NULL) {
748 if (node->nsDef == NULL) {
749 node->nsDef = cur;
750 } else {
751 xmlNsPtr prev = node->nsDef;
752
753 if (((prev->prefix == NULL) && (cur->prefix == NULL)) ||
754 (xmlStrEqual(prev->prefix, cur->prefix))) {
755 xmlFreeNs(cur);
756 return(NULL);
Daniel Veillardaa6de472008-08-25 14:53:31 +0000757 }
Owen Taylor3473f882001-02-23 17:55:21 +0000758 while (prev->next != NULL) {
759 prev = prev->next;
760 if (((prev->prefix == NULL) && (cur->prefix == NULL)) ||
761 (xmlStrEqual(prev->prefix, cur->prefix))) {
762 xmlFreeNs(cur);
763 return(NULL);
Daniel Veillardaa6de472008-08-25 14:53:31 +0000764 }
Owen Taylor3473f882001-02-23 17:55:21 +0000765 }
766 prev->next = cur;
767 }
768 }
769 return(cur);
770}
771
772/**
773 * xmlSetNs:
774 * @node: a node in the document
775 * @ns: a namespace pointer
776 *
777 * Associate a namespace to a node, a posteriori.
778 */
779void
780xmlSetNs(xmlNodePtr node, xmlNsPtr ns) {
781 if (node == NULL) {
782#ifdef DEBUG_TREE
783 xmlGenericError(xmlGenericErrorContext,
784 "xmlSetNs: node == NULL\n");
785#endif
786 return;
787 }
788 node->ns = ns;
789}
790
791/**
792 * xmlFreeNs:
793 * @cur: the namespace pointer
794 *
795 * Free up the structures associated to a namespace
796 */
797void
798xmlFreeNs(xmlNsPtr cur) {
799 if (cur == NULL) {
800#ifdef DEBUG_TREE
801 xmlGenericError(xmlGenericErrorContext,
802 "xmlFreeNs : ns == NULL\n");
803#endif
804 return;
805 }
806 if (cur->href != NULL) xmlFree((char *) cur->href);
807 if (cur->prefix != NULL) xmlFree((char *) cur->prefix);
Owen Taylor3473f882001-02-23 17:55:21 +0000808 xmlFree(cur);
809}
810
811/**
812 * xmlFreeNsList:
813 * @cur: the first namespace pointer
814 *
815 * Free up all the structures associated to the chained namespaces.
816 */
817void
818xmlFreeNsList(xmlNsPtr cur) {
819 xmlNsPtr next;
820 if (cur == NULL) {
821#ifdef DEBUG_TREE
822 xmlGenericError(xmlGenericErrorContext,
823 "xmlFreeNsList : ns == NULL\n");
824#endif
825 return;
826 }
827 while (cur != NULL) {
828 next = cur->next;
829 xmlFreeNs(cur);
830 cur = next;
831 }
832}
833
834/**
835 * xmlNewDtd:
836 * @doc: the document pointer
837 * @name: the DTD name
838 * @ExternalID: the external ID
839 * @SystemID: the system ID
840 *
841 * Creation of a new DTD for the external subset. To create an
842 * internal subset, use xmlCreateIntSubset().
843 *
844 * Returns a pointer to the new DTD structure
845 */
846xmlDtdPtr
847xmlNewDtd(xmlDocPtr doc, const xmlChar *name,
848 const xmlChar *ExternalID, const xmlChar *SystemID) {
849 xmlDtdPtr cur;
850
851 if ((doc != NULL) && (doc->extSubset != NULL)) {
852#ifdef DEBUG_TREE
853 xmlGenericError(xmlGenericErrorContext,
854 "xmlNewDtd(%s): document %s already have a DTD %s\n",
855 /* !!! */ (char *) name, doc->name,
856 /* !!! */ (char *)doc->extSubset->name);
857#endif
858 return(NULL);
859 }
860
861 /*
862 * Allocate a new DTD and fill the fields.
863 */
864 cur = (xmlDtdPtr) xmlMalloc(sizeof(xmlDtd));
865 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000866 xmlTreeErrMemory("building DTD");
Owen Taylor3473f882001-02-23 17:55:21 +0000867 return(NULL);
868 }
869 memset(cur, 0 , sizeof(xmlDtd));
870 cur->type = XML_DTD_NODE;
871
872 if (name != NULL)
Daniel Veillardaa6de472008-08-25 14:53:31 +0000873 cur->name = xmlStrdup(name);
Owen Taylor3473f882001-02-23 17:55:21 +0000874 if (ExternalID != NULL)
Daniel Veillardaa6de472008-08-25 14:53:31 +0000875 cur->ExternalID = xmlStrdup(ExternalID);
Owen Taylor3473f882001-02-23 17:55:21 +0000876 if (SystemID != NULL)
Daniel Veillardaa6de472008-08-25 14:53:31 +0000877 cur->SystemID = xmlStrdup(SystemID);
Owen Taylor3473f882001-02-23 17:55:21 +0000878 if (doc != NULL)
879 doc->extSubset = cur;
880 cur->doc = doc;
881
Daniel Veillarda880b122003-04-21 21:36:41 +0000882 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +0000883 xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
Owen Taylor3473f882001-02-23 17:55:21 +0000884 return(cur);
885}
886
887/**
888 * xmlGetIntSubset:
889 * @doc: the document pointer
890 *
891 * Get the internal subset of a document
892 * Returns a pointer to the DTD structure or NULL if not found
893 */
894
895xmlDtdPtr
896xmlGetIntSubset(xmlDocPtr doc) {
897 xmlNodePtr cur;
898
899 if (doc == NULL)
900 return(NULL);
901 cur = doc->children;
902 while (cur != NULL) {
903 if (cur->type == XML_DTD_NODE)
904 return((xmlDtdPtr) cur);
905 cur = cur->next;
906 }
907 return((xmlDtdPtr) doc->intSubset);
908}
909
910/**
911 * xmlCreateIntSubset:
912 * @doc: the document pointer
913 * @name: the DTD name
Daniel Veillarde356c282001-03-10 12:32:04 +0000914 * @ExternalID: the external (PUBLIC) ID
Owen Taylor3473f882001-02-23 17:55:21 +0000915 * @SystemID: the system ID
916 *
917 * Create the internal subset of a document
918 * Returns a pointer to the new DTD structure
919 */
920xmlDtdPtr
921xmlCreateIntSubset(xmlDocPtr doc, const xmlChar *name,
922 const xmlChar *ExternalID, const xmlChar *SystemID) {
923 xmlDtdPtr cur;
924
925 if ((doc != NULL) && (xmlGetIntSubset(doc) != NULL)) {
926#ifdef DEBUG_TREE
927 xmlGenericError(xmlGenericErrorContext,
928
929 "xmlCreateIntSubset(): document %s already have an internal subset\n",
930 doc->name);
931#endif
932 return(NULL);
933 }
934
935 /*
936 * Allocate a new DTD and fill the fields.
937 */
938 cur = (xmlDtdPtr) xmlMalloc(sizeof(xmlDtd));
939 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000940 xmlTreeErrMemory("building internal subset");
Owen Taylor3473f882001-02-23 17:55:21 +0000941 return(NULL);
942 }
943 memset(cur, 0, sizeof(xmlDtd));
944 cur->type = XML_DTD_NODE;
945
William M. Bracka3215c72004-07-31 16:24:01 +0000946 if (name != NULL) {
947 cur->name = xmlStrdup(name);
948 if (cur->name == NULL) {
949 xmlTreeErrMemory("building internal subset");
950 xmlFree(cur);
951 return(NULL);
952 }
953 }
954 if (ExternalID != NULL) {
Daniel Veillardaa6de472008-08-25 14:53:31 +0000955 cur->ExternalID = xmlStrdup(ExternalID);
William M. Bracka3215c72004-07-31 16:24:01 +0000956 if (cur->ExternalID == NULL) {
957 xmlTreeErrMemory("building internal subset");
958 if (cur->name != NULL)
959 xmlFree((char *)cur->name);
960 xmlFree(cur);
961 return(NULL);
962 }
963 }
964 if (SystemID != NULL) {
Daniel Veillardaa6de472008-08-25 14:53:31 +0000965 cur->SystemID = xmlStrdup(SystemID);
William M. Bracka3215c72004-07-31 16:24:01 +0000966 if (cur->SystemID == NULL) {
967 xmlTreeErrMemory("building internal subset");
968 if (cur->name != NULL)
969 xmlFree((char *)cur->name);
970 if (cur->ExternalID != NULL)
971 xmlFree((char *)cur->ExternalID);
972 xmlFree(cur);
973 return(NULL);
974 }
975 }
Owen Taylor3473f882001-02-23 17:55:21 +0000976 if (doc != NULL) {
977 doc->intSubset = cur;
978 cur->parent = doc;
979 cur->doc = doc;
980 if (doc->children == NULL) {
981 doc->children = (xmlNodePtr) cur;
982 doc->last = (xmlNodePtr) cur;
983 } else {
Owen Taylor3473f882001-02-23 17:55:21 +0000984 if (doc->type == XML_HTML_DOCUMENT_NODE) {
Daniel Veillarde356c282001-03-10 12:32:04 +0000985 xmlNodePtr prev;
986
Owen Taylor3473f882001-02-23 17:55:21 +0000987 prev = doc->children;
988 prev->prev = (xmlNodePtr) cur;
989 cur->next = prev;
990 doc->children = (xmlNodePtr) cur;
991 } else {
Daniel Veillarde356c282001-03-10 12:32:04 +0000992 xmlNodePtr next;
993
994 next = doc->children;
995 while ((next != NULL) && (next->type != XML_ELEMENT_NODE))
996 next = next->next;
997 if (next == NULL) {
998 cur->prev = doc->last;
999 cur->prev->next = (xmlNodePtr) cur;
1000 cur->next = NULL;
1001 doc->last = (xmlNodePtr) cur;
1002 } else {
1003 cur->next = next;
1004 cur->prev = next->prev;
1005 if (cur->prev == NULL)
1006 doc->children = (xmlNodePtr) cur;
1007 else
1008 cur->prev->next = (xmlNodePtr) cur;
1009 next->prev = (xmlNodePtr) cur;
1010 }
Owen Taylor3473f882001-02-23 17:55:21 +00001011 }
1012 }
1013 }
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001014
Daniel Veillarda880b122003-04-21 21:36:41 +00001015 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard8a1b1852003-01-05 22:37:17 +00001016 xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
Owen Taylor3473f882001-02-23 17:55:21 +00001017 return(cur);
1018}
1019
1020/**
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001021 * DICT_FREE:
1022 * @str: a string
1023 *
1024 * Free a string if it is not owned by the "dict" dictionnary in the
1025 * current scope
1026 */
1027#define DICT_FREE(str) \
Daniel Veillardaa6de472008-08-25 14:53:31 +00001028 if ((str) && ((!dict) || \
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001029 (xmlDictOwns(dict, (const xmlChar *)(str)) == 0))) \
1030 xmlFree((char *)(str));
1031
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00001032
1033/**
1034 * DICT_COPY:
1035 * @str: a string
1036 *
1037 * Copy a string using a "dict" dictionnary in the current scope,
1038 * if availabe.
1039 */
1040#define DICT_COPY(str, cpy) \
1041 if (str) { \
1042 if (dict) { \
1043 if (xmlDictOwns(dict, (const xmlChar *)(str))) \
1044 cpy = (xmlChar *) (str); \
1045 else \
1046 cpy = (xmlChar *) xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1047 } else \
1048 cpy = xmlStrdup((const xmlChar *)(str)); }
1049
1050/**
1051 * DICT_CONST_COPY:
1052 * @str: a string
1053 *
1054 * Copy a string using a "dict" dictionnary in the current scope,
1055 * if availabe.
1056 */
1057#define DICT_CONST_COPY(str, cpy) \
1058 if (str) { \
1059 if (dict) { \
1060 if (xmlDictOwns(dict, (const xmlChar *)(str))) \
1061 cpy = (const xmlChar *) (str); \
1062 else \
1063 cpy = xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1064 } else \
1065 cpy = (const xmlChar *) xmlStrdup((const xmlChar *)(str)); }
1066
1067
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001068/**
Owen Taylor3473f882001-02-23 17:55:21 +00001069 * xmlFreeDtd:
1070 * @cur: the DTD structure to free up
1071 *
1072 * Free a DTD structure.
1073 */
1074void
1075xmlFreeDtd(xmlDtdPtr cur) {
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001076 xmlDictPtr dict = NULL;
1077
Owen Taylor3473f882001-02-23 17:55:21 +00001078 if (cur == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001079 return;
1080 }
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001081 if (cur->doc != NULL) dict = cur->doc->dict;
Daniel Veillard5335dc52003-01-01 20:59:38 +00001082
Daniel Veillarda880b122003-04-21 21:36:41 +00001083 if ((__xmlRegisterCallbacks) && (xmlDeregisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00001084 xmlDeregisterNodeDefaultValue((xmlNodePtr)cur);
1085
Owen Taylor3473f882001-02-23 17:55:21 +00001086 if (cur->children != NULL) {
1087 xmlNodePtr next, c = cur->children;
1088
1089 /*
William M. Brack18a04f22004-08-03 16:42:37 +00001090 * Cleanup all nodes which are not part of the specific lists
1091 * of notations, elements, attributes and entities.
Owen Taylor3473f882001-02-23 17:55:21 +00001092 */
1093 while (c != NULL) {
1094 next = c->next;
William M. Brack18a04f22004-08-03 16:42:37 +00001095 if ((c->type != XML_NOTATION_NODE) &&
1096 (c->type != XML_ELEMENT_DECL) &&
1097 (c->type != XML_ATTRIBUTE_DECL) &&
1098 (c->type != XML_ENTITY_DECL)) {
Owen Taylor3473f882001-02-23 17:55:21 +00001099 xmlUnlinkNode(c);
1100 xmlFreeNode(c);
1101 }
1102 c = next;
1103 }
1104 }
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001105 DICT_FREE(cur->name)
1106 DICT_FREE(cur->SystemID)
1107 DICT_FREE(cur->ExternalID)
Owen Taylor3473f882001-02-23 17:55:21 +00001108 /* TODO !!! */
1109 if (cur->notations != NULL)
1110 xmlFreeNotationTable((xmlNotationTablePtr) cur->notations);
Daniel Veillardaa6de472008-08-25 14:53:31 +00001111
Owen Taylor3473f882001-02-23 17:55:21 +00001112 if (cur->elements != NULL)
1113 xmlFreeElementTable((xmlElementTablePtr) cur->elements);
1114 if (cur->attributes != NULL)
1115 xmlFreeAttributeTable((xmlAttributeTablePtr) cur->attributes);
1116 if (cur->entities != NULL)
1117 xmlFreeEntitiesTable((xmlEntitiesTablePtr) cur->entities);
1118 if (cur->pentities != NULL)
1119 xmlFreeEntitiesTable((xmlEntitiesTablePtr) cur->pentities);
1120
Owen Taylor3473f882001-02-23 17:55:21 +00001121 xmlFree(cur);
1122}
1123
1124/**
1125 * xmlNewDoc:
1126 * @version: xmlChar string giving the version of XML "1.0"
1127 *
Daniel Veillard5e2dace2001-07-18 19:30:27 +00001128 * Creates a new XML document
1129 *
Owen Taylor3473f882001-02-23 17:55:21 +00001130 * Returns a new document
1131 */
1132xmlDocPtr
1133xmlNewDoc(const xmlChar *version) {
1134 xmlDocPtr cur;
1135
1136 if (version == NULL)
1137 version = (const xmlChar *) "1.0";
1138
1139 /*
1140 * Allocate a new document and fill the fields.
1141 */
1142 cur = (xmlDocPtr) xmlMalloc(sizeof(xmlDoc));
1143 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001144 xmlTreeErrMemory("building doc");
Owen Taylor3473f882001-02-23 17:55:21 +00001145 return(NULL);
1146 }
1147 memset(cur, 0, sizeof(xmlDoc));
1148 cur->type = XML_DOCUMENT_NODE;
1149
Daniel Veillardaa6de472008-08-25 14:53:31 +00001150 cur->version = xmlStrdup(version);
William M. Bracka3215c72004-07-31 16:24:01 +00001151 if (cur->version == NULL) {
1152 xmlTreeErrMemory("building doc");
1153 xmlFree(cur);
Daniel Veillardae0765b2008-07-31 19:54:59 +00001154 return(NULL);
William M. Bracka3215c72004-07-31 16:24:01 +00001155 }
Owen Taylor3473f882001-02-23 17:55:21 +00001156 cur->standalone = -1;
1157 cur->compression = -1; /* not initialized */
1158 cur->doc = cur;
Daniel Veillardae0765b2008-07-31 19:54:59 +00001159 cur->parseFlags = 0;
1160 cur->properties = XML_DOC_USERBUILT;
Daniel Veillarda6874ca2003-07-29 16:47:24 +00001161 /*
1162 * The in memory encoding is always UTF8
1163 * This field will never change and would
1164 * be obsolete if not for binary compatibility.
1165 */
Daniel Veillardd2f3ec72001-04-11 07:50:02 +00001166 cur->charset = XML_CHAR_ENCODING_UTF8;
Daniel Veillard5335dc52003-01-01 20:59:38 +00001167
Daniel Veillarda880b122003-04-21 21:36:41 +00001168 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00001169 xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
Owen Taylor3473f882001-02-23 17:55:21 +00001170 return(cur);
1171}
1172
1173/**
1174 * xmlFreeDoc:
1175 * @cur: pointer to the document
Owen Taylor3473f882001-02-23 17:55:21 +00001176 *
1177 * Free up all the structures used by a document, tree included.
1178 */
1179void
1180xmlFreeDoc(xmlDocPtr cur) {
Daniel Veillarda9142e72001-06-19 11:07:54 +00001181 xmlDtdPtr extSubset, intSubset;
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001182 xmlDictPtr dict = NULL;
Daniel Veillarda9142e72001-06-19 11:07:54 +00001183
Owen Taylor3473f882001-02-23 17:55:21 +00001184 if (cur == NULL) {
1185#ifdef DEBUG_TREE
1186 xmlGenericError(xmlGenericErrorContext,
1187 "xmlFreeDoc : document == NULL\n");
1188#endif
1189 return;
1190 }
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00001191#ifdef LIBXML_DEBUG_RUNTIME
Daniel Veillardbca3ad22005-08-23 22:14:02 +00001192#ifdef LIBXML_DEBUG_ENABLED
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00001193 xmlDebugCheckDocument(stderr, cur);
1194#endif
Daniel Veillardbca3ad22005-08-23 22:14:02 +00001195#endif
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00001196
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001197 if (cur != NULL) dict = cur->dict;
Daniel Veillard5335dc52003-01-01 20:59:38 +00001198
Daniel Veillarda880b122003-04-21 21:36:41 +00001199 if ((__xmlRegisterCallbacks) && (xmlDeregisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00001200 xmlDeregisterNodeDefaultValue((xmlNodePtr)cur);
1201
Daniel Veillard76d66f42001-05-16 21:05:17 +00001202 /*
1203 * Do this before freeing the children list to avoid ID lookups
1204 */
1205 if (cur->ids != NULL) xmlFreeIDTable((xmlIDTablePtr) cur->ids);
1206 cur->ids = NULL;
1207 if (cur->refs != NULL) xmlFreeRefTable((xmlRefTablePtr) cur->refs);
1208 cur->refs = NULL;
Daniel Veillarda9142e72001-06-19 11:07:54 +00001209 extSubset = cur->extSubset;
1210 intSubset = cur->intSubset;
Daniel Veillard5997aca2002-03-18 18:36:20 +00001211 if (intSubset == extSubset)
1212 extSubset = NULL;
Daniel Veillarda9142e72001-06-19 11:07:54 +00001213 if (extSubset != NULL) {
Daniel Veillard76d66f42001-05-16 21:05:17 +00001214 xmlUnlinkNode((xmlNodePtr) cur->extSubset);
Daniel Veillard76d66f42001-05-16 21:05:17 +00001215 cur->extSubset = NULL;
Daniel Veillarda9142e72001-06-19 11:07:54 +00001216 xmlFreeDtd(extSubset);
Daniel Veillard76d66f42001-05-16 21:05:17 +00001217 }
Daniel Veillarda9142e72001-06-19 11:07:54 +00001218 if (intSubset != NULL) {
Daniel Veillard76d66f42001-05-16 21:05:17 +00001219 xmlUnlinkNode((xmlNodePtr) cur->intSubset);
Daniel Veillard76d66f42001-05-16 21:05:17 +00001220 cur->intSubset = NULL;
Daniel Veillarda9142e72001-06-19 11:07:54 +00001221 xmlFreeDtd(intSubset);
Daniel Veillard76d66f42001-05-16 21:05:17 +00001222 }
1223
1224 if (cur->children != NULL) xmlFreeNodeList(cur->children);
Owen Taylor3473f882001-02-23 17:55:21 +00001225 if (cur->oldNs != NULL) xmlFreeNsList(cur->oldNs);
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001226
1227 DICT_FREE(cur->version)
1228 DICT_FREE(cur->name)
1229 DICT_FREE(cur->encoding)
1230 DICT_FREE(cur->URL)
Owen Taylor3473f882001-02-23 17:55:21 +00001231 xmlFree(cur);
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001232 if (dict) xmlDictFree(dict);
Owen Taylor3473f882001-02-23 17:55:21 +00001233}
1234
1235/**
1236 * xmlStringLenGetNodeList:
1237 * @doc: the document
1238 * @value: the value of the text
1239 * @len: the length of the string value
1240 *
1241 * Parse the value string and build the node list associated. Should
1242 * produce a flat tree with only TEXTs and ENTITY_REFs.
1243 * Returns a pointer to the first child
1244 */
1245xmlNodePtr
1246xmlStringLenGetNodeList(xmlDocPtr doc, const xmlChar *value, int len) {
1247 xmlNodePtr ret = NULL, last = NULL;
1248 xmlNodePtr node;
1249 xmlChar *val;
Daniel Veillard07cb8222003-09-10 10:51:05 +00001250 const xmlChar *cur = value, *end = cur + len;
Owen Taylor3473f882001-02-23 17:55:21 +00001251 const xmlChar *q;
1252 xmlEntityPtr ent;
1253
1254 if (value == NULL) return(NULL);
1255
1256 q = cur;
Daniel Veillard07cb8222003-09-10 10:51:05 +00001257 while ((cur < end) && (*cur != 0)) {
1258 if (cur[0] == '&') {
1259 int charval = 0;
1260 xmlChar tmp;
1261
Owen Taylor3473f882001-02-23 17:55:21 +00001262 /*
1263 * Save the current text.
1264 */
1265 if (cur != q) {
1266 if ((last != NULL) && (last->type == XML_TEXT_NODE)) {
1267 xmlNodeAddContentLen(last, q, cur - q);
1268 } else {
1269 node = xmlNewDocTextLen(doc, q, cur - q);
1270 if (node == NULL) return(ret);
1271 if (last == NULL)
1272 last = ret = node;
1273 else {
1274 last->next = node;
1275 node->prev = last;
1276 last = node;
1277 }
1278 }
1279 }
Owen Taylor3473f882001-02-23 17:55:21 +00001280 q = cur;
Daniel Veillard07cb8222003-09-10 10:51:05 +00001281 if ((cur + 2 < end) && (cur[1] == '#') && (cur[2] == 'x')) {
1282 cur += 3;
1283 if (cur < end)
1284 tmp = *cur;
1285 else
1286 tmp = 0;
1287 while (tmp != ';') { /* Non input consuming loop */
Daniel Veillardaa6de472008-08-25 14:53:31 +00001288 if ((tmp >= '0') && (tmp <= '9'))
Daniel Veillard07cb8222003-09-10 10:51:05 +00001289 charval = charval * 16 + (tmp - '0');
1290 else if ((tmp >= 'a') && (tmp <= 'f'))
1291 charval = charval * 16 + (tmp - 'a') + 10;
1292 else if ((tmp >= 'A') && (tmp <= 'F'))
1293 charval = charval * 16 + (tmp - 'A') + 10;
Owen Taylor3473f882001-02-23 17:55:21 +00001294 else {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001295 xmlTreeErr(XML_TREE_INVALID_HEX, (xmlNodePtr) doc,
1296 NULL);
Daniel Veillard07cb8222003-09-10 10:51:05 +00001297 charval = 0;
1298 break;
1299 }
1300 cur++;
1301 if (cur < end)
1302 tmp = *cur;
1303 else
1304 tmp = 0;
1305 }
1306 if (tmp == ';')
1307 cur++;
1308 q = cur;
1309 } else if ((cur + 1 < end) && (cur[1] == '#')) {
1310 cur += 2;
1311 if (cur < end)
1312 tmp = *cur;
1313 else
1314 tmp = 0;
1315 while (tmp != ';') { /* Non input consuming loops */
Daniel Veillardaa6de472008-08-25 14:53:31 +00001316 if ((tmp >= '0') && (tmp <= '9'))
Daniel Veillard07cb8222003-09-10 10:51:05 +00001317 charval = charval * 10 + (tmp - '0');
1318 else {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001319 xmlTreeErr(XML_TREE_INVALID_DEC, (xmlNodePtr) doc,
1320 NULL);
Daniel Veillard07cb8222003-09-10 10:51:05 +00001321 charval = 0;
1322 break;
1323 }
1324 cur++;
1325 if (cur < end)
1326 tmp = *cur;
1327 else
1328 tmp = 0;
1329 }
1330 if (tmp == ';')
1331 cur++;
1332 q = cur;
1333 } else {
1334 /*
1335 * Read the entity string
1336 */
1337 cur++;
1338 q = cur;
1339 while ((cur < end) && (*cur != 0) && (*cur != ';')) cur++;
1340 if ((cur >= end) || (*cur == 0)) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001341 xmlTreeErr(XML_TREE_UNTERMINATED_ENTITY, (xmlNodePtr) doc,
1342 (const char *) q);
Daniel Veillard07cb8222003-09-10 10:51:05 +00001343 return(ret);
1344 }
1345 if (cur != q) {
1346 /*
1347 * Predefined entities don't generate nodes
1348 */
1349 val = xmlStrndup(q, cur - q);
1350 ent = xmlGetDocEntity(doc, val);
1351 if ((ent != NULL) &&
1352 (ent->etype == XML_INTERNAL_PREDEFINED_ENTITY)) {
1353 if (last == NULL) {
1354 node = xmlNewDocText(doc, ent->content);
1355 last = ret = node;
1356 } else if (last->type != XML_TEXT_NODE) {
1357 node = xmlNewDocText(doc, ent->content);
1358 last = xmlAddNextSibling(last, node);
1359 } else
1360 xmlNodeAddContent(last, ent->content);
Daniel Veillardaa6de472008-08-25 14:53:31 +00001361
Daniel Veillard07cb8222003-09-10 10:51:05 +00001362 } else {
1363 /*
1364 * Create a new REFERENCE_REF node
1365 */
1366 node = xmlNewReference(doc, val);
1367 if (node == NULL) {
1368 if (val != NULL) xmlFree(val);
1369 return(ret);
1370 }
1371 else if ((ent != NULL) && (ent->children == NULL)) {
1372 xmlNodePtr temp;
1373
1374 ent->children = xmlStringGetNodeList(doc,
1375 (const xmlChar*)node->content);
1376 ent->owner = 1;
1377 temp = ent->children;
1378 while (temp) {
1379 temp->parent = (xmlNodePtr)ent;
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00001380 ent->last = temp;
Daniel Veillard07cb8222003-09-10 10:51:05 +00001381 temp = temp->next;
1382 }
1383 }
1384 if (last == NULL) {
1385 last = ret = node;
1386 } else {
1387 last = xmlAddNextSibling(last, node);
1388 }
1389 }
1390 xmlFree(val);
1391 }
1392 cur++;
1393 q = cur;
1394 }
1395 if (charval != 0) {
1396 xmlChar buf[10];
1397 int l;
1398
1399 l = xmlCopyCharMultiByte(buf, charval);
1400 buf[l] = 0;
1401 node = xmlNewDocText(doc, buf);
1402 if (node != NULL) {
1403 if (last == NULL) {
1404 last = ret = node;
1405 } else {
1406 last = xmlAddNextSibling(last, node);
Owen Taylor3473f882001-02-23 17:55:21 +00001407 }
1408 }
Daniel Veillard07cb8222003-09-10 10:51:05 +00001409 charval = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001410 }
Daniel Veillard07cb8222003-09-10 10:51:05 +00001411 } else
Owen Taylor3473f882001-02-23 17:55:21 +00001412 cur++;
1413 }
Daniel Veillard07cb8222003-09-10 10:51:05 +00001414 if ((cur != q) || (ret == NULL)) {
Owen Taylor3473f882001-02-23 17:55:21 +00001415 /*
1416 * Handle the last piece of text.
1417 */
1418 if ((last != NULL) && (last->type == XML_TEXT_NODE)) {
1419 xmlNodeAddContentLen(last, q, cur - q);
1420 } else {
1421 node = xmlNewDocTextLen(doc, q, cur - q);
1422 if (node == NULL) return(ret);
Daniel Veillard07cb8222003-09-10 10:51:05 +00001423 if (last == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001424 last = ret = node;
Daniel Veillard07cb8222003-09-10 10:51:05 +00001425 } else {
1426 last = xmlAddNextSibling(last, node);
Owen Taylor3473f882001-02-23 17:55:21 +00001427 }
1428 }
1429 }
1430 return(ret);
1431}
1432
1433/**
1434 * xmlStringGetNodeList:
1435 * @doc: the document
1436 * @value: the value of the attribute
1437 *
1438 * Parse the value string and build the node list associated. Should
1439 * produce a flat tree with only TEXTs and ENTITY_REFs.
1440 * Returns a pointer to the first child
1441 */
1442xmlNodePtr
1443xmlStringGetNodeList(xmlDocPtr doc, const xmlChar *value) {
1444 xmlNodePtr ret = NULL, last = NULL;
1445 xmlNodePtr node;
1446 xmlChar *val;
1447 const xmlChar *cur = value;
1448 const xmlChar *q;
1449 xmlEntityPtr ent;
1450
1451 if (value == NULL) return(NULL);
1452
1453 q = cur;
1454 while (*cur != 0) {
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001455 if (cur[0] == '&') {
1456 int charval = 0;
1457 xmlChar tmp;
1458
Owen Taylor3473f882001-02-23 17:55:21 +00001459 /*
1460 * Save the current text.
1461 */
1462 if (cur != q) {
1463 if ((last != NULL) && (last->type == XML_TEXT_NODE)) {
1464 xmlNodeAddContentLen(last, q, cur - q);
1465 } else {
1466 node = xmlNewDocTextLen(doc, q, cur - q);
1467 if (node == NULL) return(ret);
1468 if (last == NULL)
1469 last = ret = node;
1470 else {
1471 last->next = node;
1472 node->prev = last;
1473 last = node;
1474 }
1475 }
1476 }
Owen Taylor3473f882001-02-23 17:55:21 +00001477 q = cur;
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001478 if ((cur[1] == '#') && (cur[2] == 'x')) {
1479 cur += 3;
1480 tmp = *cur;
1481 while (tmp != ';') { /* Non input consuming loop */
Daniel Veillardaa6de472008-08-25 14:53:31 +00001482 if ((tmp >= '0') && (tmp <= '9'))
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001483 charval = charval * 16 + (tmp - '0');
1484 else if ((tmp >= 'a') && (tmp <= 'f'))
1485 charval = charval * 16 + (tmp - 'a') + 10;
1486 else if ((tmp >= 'A') && (tmp <= 'F'))
1487 charval = charval * 16 + (tmp - 'A') + 10;
Owen Taylor3473f882001-02-23 17:55:21 +00001488 else {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001489 xmlTreeErr(XML_TREE_INVALID_HEX, (xmlNodePtr) doc,
1490 NULL);
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001491 charval = 0;
1492 break;
1493 }
1494 cur++;
1495 tmp = *cur;
1496 }
1497 if (tmp == ';')
1498 cur++;
1499 q = cur;
1500 } else if (cur[1] == '#') {
1501 cur += 2;
1502 tmp = *cur;
1503 while (tmp != ';') { /* Non input consuming loops */
Daniel Veillardaa6de472008-08-25 14:53:31 +00001504 if ((tmp >= '0') && (tmp <= '9'))
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001505 charval = charval * 10 + (tmp - '0');
1506 else {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001507 xmlTreeErr(XML_TREE_INVALID_DEC, (xmlNodePtr) doc,
1508 NULL);
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001509 charval = 0;
1510 break;
1511 }
1512 cur++;
1513 tmp = *cur;
1514 }
1515 if (tmp == ';')
1516 cur++;
1517 q = cur;
1518 } else {
1519 /*
1520 * Read the entity string
1521 */
1522 cur++;
1523 q = cur;
1524 while ((*cur != 0) && (*cur != ';')) cur++;
1525 if (*cur == 0) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001526 xmlTreeErr(XML_TREE_UNTERMINATED_ENTITY,
1527 (xmlNodePtr) doc, (const char *) q);
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001528 return(ret);
1529 }
1530 if (cur != q) {
1531 /*
1532 * Predefined entities don't generate nodes
1533 */
1534 val = xmlStrndup(q, cur - q);
1535 ent = xmlGetDocEntity(doc, val);
1536 if ((ent != NULL) &&
1537 (ent->etype == XML_INTERNAL_PREDEFINED_ENTITY)) {
1538 if (last == NULL) {
1539 node = xmlNewDocText(doc, ent->content);
1540 last = ret = node;
Daniel Veillard6f42c132002-01-06 23:05:13 +00001541 } else if (last->type != XML_TEXT_NODE) {
1542 node = xmlNewDocText(doc, ent->content);
1543 last = xmlAddNextSibling(last, node);
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001544 } else
1545 xmlNodeAddContent(last, ent->content);
Daniel Veillardaa6de472008-08-25 14:53:31 +00001546
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001547 } else {
1548 /*
1549 * Create a new REFERENCE_REF node
1550 */
1551 node = xmlNewReference(doc, val);
1552 if (node == NULL) {
1553 if (val != NULL) xmlFree(val);
1554 return(ret);
1555 }
Daniel Veillardbf8dae82002-04-18 16:39:10 +00001556 else if ((ent != NULL) && (ent->children == NULL)) {
1557 xmlNodePtr temp;
1558
1559 ent->children = xmlStringGetNodeList(doc,
1560 (const xmlChar*)node->content);
Daniel Veillard2d84a892002-12-30 00:01:08 +00001561 ent->owner = 1;
Daniel Veillardbf8dae82002-04-18 16:39:10 +00001562 temp = ent->children;
1563 while (temp) {
1564 temp->parent = (xmlNodePtr)ent;
1565 temp = temp->next;
1566 }
1567 }
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001568 if (last == NULL) {
1569 last = ret = node;
1570 } else {
1571 last = xmlAddNextSibling(last, node);
1572 }
1573 }
1574 xmlFree(val);
1575 }
1576 cur++;
1577 q = cur;
1578 }
1579 if (charval != 0) {
1580 xmlChar buf[10];
1581 int len;
1582
1583 len = xmlCopyCharMultiByte(buf, charval);
1584 buf[len] = 0;
1585 node = xmlNewDocText(doc, buf);
1586 if (node != NULL) {
1587 if (last == NULL) {
1588 last = ret = node;
1589 } else {
1590 last = xmlAddNextSibling(last, node);
Owen Taylor3473f882001-02-23 17:55:21 +00001591 }
1592 }
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001593
1594 charval = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001595 }
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001596 } else
Owen Taylor3473f882001-02-23 17:55:21 +00001597 cur++;
1598 }
Daniel Veillard75bea542001-05-11 17:41:21 +00001599 if ((cur != q) || (ret == NULL)) {
Owen Taylor3473f882001-02-23 17:55:21 +00001600 /*
1601 * Handle the last piece of text.
1602 */
1603 if ((last != NULL) && (last->type == XML_TEXT_NODE)) {
1604 xmlNodeAddContentLen(last, q, cur - q);
1605 } else {
1606 node = xmlNewDocTextLen(doc, q, cur - q);
1607 if (node == NULL) return(ret);
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001608 if (last == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001609 last = ret = node;
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001610 } else {
1611 last = xmlAddNextSibling(last, node);
Owen Taylor3473f882001-02-23 17:55:21 +00001612 }
1613 }
1614 }
1615 return(ret);
1616}
1617
1618/**
1619 * xmlNodeListGetString:
1620 * @doc: the document
1621 * @list: a Node list
1622 * @inLine: should we replace entity contents or show their external form
1623 *
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001624 * Build the string equivalent to the text contained in the Node list
Owen Taylor3473f882001-02-23 17:55:21 +00001625 * made of TEXTs and ENTITY_REFs
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001626 *
Daniel Veillardbd9afb52002-09-25 22:25:35 +00001627 * Returns a pointer to the string copy, the caller must free it with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00001628 */
1629xmlChar *
Daniel Veillard7646b182002-04-20 06:41:40 +00001630xmlNodeListGetString(xmlDocPtr doc, xmlNodePtr list, int inLine)
1631{
Owen Taylor3473f882001-02-23 17:55:21 +00001632 xmlNodePtr node = list;
1633 xmlChar *ret = NULL;
1634 xmlEntityPtr ent;
1635
Daniel Veillard7646b182002-04-20 06:41:40 +00001636 if (list == NULL)
1637 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001638
1639 while (node != NULL) {
1640 if ((node->type == XML_TEXT_NODE) ||
Daniel Veillard7646b182002-04-20 06:41:40 +00001641 (node->type == XML_CDATA_SECTION_NODE)) {
1642 if (inLine) {
1643 ret = xmlStrcat(ret, node->content);
Owen Taylor3473f882001-02-23 17:55:21 +00001644 } else {
Daniel Veillard7646b182002-04-20 06:41:40 +00001645 xmlChar *buffer;
Owen Taylor3473f882001-02-23 17:55:21 +00001646
Daniel Veillard7646b182002-04-20 06:41:40 +00001647 buffer = xmlEncodeEntitiesReentrant(doc, node->content);
1648 if (buffer != NULL) {
1649 ret = xmlStrcat(ret, buffer);
1650 xmlFree(buffer);
1651 }
1652 }
1653 } else if (node->type == XML_ENTITY_REF_NODE) {
1654 if (inLine) {
1655 ent = xmlGetDocEntity(doc, node->name);
1656 if (ent != NULL) {
1657 xmlChar *buffer;
1658
1659 /* an entity content can be any "well balanced chunk",
1660 * i.e. the result of the content [43] production:
1661 * http://www.w3.org/TR/REC-xml#NT-content.
1662 * So it can contain text, CDATA section or nested
1663 * entity reference nodes (among others).
1664 * -> we recursive call xmlNodeListGetString()
1665 * which handles these types */
1666 buffer = xmlNodeListGetString(doc, ent->children, 1);
1667 if (buffer != NULL) {
1668 ret = xmlStrcat(ret, buffer);
1669 xmlFree(buffer);
1670 }
1671 } else {
1672 ret = xmlStrcat(ret, node->content);
1673 }
1674 } else {
1675 xmlChar buf[2];
1676
1677 buf[0] = '&';
1678 buf[1] = 0;
1679 ret = xmlStrncat(ret, buf, 1);
1680 ret = xmlStrcat(ret, node->name);
1681 buf[0] = ';';
1682 buf[1] = 0;
1683 ret = xmlStrncat(ret, buf, 1);
1684 }
1685 }
1686#if 0
1687 else {
1688 xmlGenericError(xmlGenericErrorContext,
1689 "xmlGetNodeListString : invalid node type %d\n",
1690 node->type);
1691 }
1692#endif
1693 node = node->next;
1694 }
1695 return (ret);
1696}
Daniel Veillard652327a2003-09-29 18:02:38 +00001697
1698#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001699/**
1700 * xmlNodeListGetRawString:
1701 * @doc: the document
1702 * @list: a Node list
1703 * @inLine: should we replace entity contents or show their external form
1704 *
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001705 * Builds the string equivalent to the text contained in the Node list
Owen Taylor3473f882001-02-23 17:55:21 +00001706 * made of TEXTs and ENTITY_REFs, contrary to xmlNodeListGetString()
1707 * this function doesn't do any character encoding handling.
1708 *
Daniel Veillardbd9afb52002-09-25 22:25:35 +00001709 * Returns a pointer to the string copy, the caller must free it with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00001710 */
1711xmlChar *
Daniel Veillard7646b182002-04-20 06:41:40 +00001712xmlNodeListGetRawString(xmlDocPtr doc, xmlNodePtr list, int inLine)
1713{
Owen Taylor3473f882001-02-23 17:55:21 +00001714 xmlNodePtr node = list;
1715 xmlChar *ret = NULL;
1716 xmlEntityPtr ent;
1717
Daniel Veillard7646b182002-04-20 06:41:40 +00001718 if (list == NULL)
1719 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001720
1721 while (node != NULL) {
Daniel Veillard7db37732001-07-12 01:20:08 +00001722 if ((node->type == XML_TEXT_NODE) ||
Daniel Veillard7646b182002-04-20 06:41:40 +00001723 (node->type == XML_CDATA_SECTION_NODE)) {
1724 if (inLine) {
1725 ret = xmlStrcat(ret, node->content);
Owen Taylor3473f882001-02-23 17:55:21 +00001726 } else {
Daniel Veillard7646b182002-04-20 06:41:40 +00001727 xmlChar *buffer;
1728
1729 buffer = xmlEncodeSpecialChars(doc, node->content);
1730 if (buffer != NULL) {
1731 ret = xmlStrcat(ret, buffer);
1732 xmlFree(buffer);
1733 }
1734 }
1735 } else if (node->type == XML_ENTITY_REF_NODE) {
1736 if (inLine) {
1737 ent = xmlGetDocEntity(doc, node->name);
1738 if (ent != NULL) {
1739 xmlChar *buffer;
1740
1741 /* an entity content can be any "well balanced chunk",
1742 * i.e. the result of the content [43] production:
1743 * http://www.w3.org/TR/REC-xml#NT-content.
1744 * So it can contain text, CDATA section or nested
1745 * entity reference nodes (among others).
1746 * -> we recursive call xmlNodeListGetRawString()
1747 * which handles these types */
1748 buffer =
1749 xmlNodeListGetRawString(doc, ent->children, 1);
1750 if (buffer != NULL) {
1751 ret = xmlStrcat(ret, buffer);
1752 xmlFree(buffer);
1753 }
1754 } else {
1755 ret = xmlStrcat(ret, node->content);
1756 }
1757 } else {
1758 xmlChar buf[2];
1759
1760 buf[0] = '&';
1761 buf[1] = 0;
1762 ret = xmlStrncat(ret, buf, 1);
1763 ret = xmlStrcat(ret, node->name);
1764 buf[0] = ';';
1765 buf[1] = 0;
1766 ret = xmlStrncat(ret, buf, 1);
1767 }
1768 }
Owen Taylor3473f882001-02-23 17:55:21 +00001769#if 0
Daniel Veillard7646b182002-04-20 06:41:40 +00001770 else {
1771 xmlGenericError(xmlGenericErrorContext,
1772 "xmlGetNodeListString : invalid node type %d\n",
1773 node->type);
1774 }
Owen Taylor3473f882001-02-23 17:55:21 +00001775#endif
Daniel Veillard7646b182002-04-20 06:41:40 +00001776 node = node->next;
Owen Taylor3473f882001-02-23 17:55:21 +00001777 }
Daniel Veillard7646b182002-04-20 06:41:40 +00001778 return (ret);
Owen Taylor3473f882001-02-23 17:55:21 +00001779}
Daniel Veillard652327a2003-09-29 18:02:38 +00001780#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001781
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001782static xmlAttrPtr
1783xmlNewPropInternal(xmlNodePtr node, xmlNsPtr ns,
1784 const xmlChar * name, const xmlChar * value,
1785 int eatname)
1786{
Owen Taylor3473f882001-02-23 17:55:21 +00001787 xmlAttrPtr cur;
1788 xmlDocPtr doc = NULL;
1789
Daniel Veillard5cd3e8c2005-03-27 11:25:28 +00001790 if ((node != NULL) && (node->type != XML_ELEMENT_NODE)) {
Daniel Veillard8f6c2b12008-04-03 11:17:21 +00001791 if ((eatname == 1) &&
1792 ((node->doc == NULL) ||
Daniel Veillarded939f82008-04-08 08:20:08 +00001793 (!(xmlDictOwns(node->doc->dict, name)))))
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001794 xmlFree((xmlChar *) name);
1795 return (NULL);
1796 }
Owen Taylor3473f882001-02-23 17:55:21 +00001797
1798 /*
1799 * Allocate a new property and fill the fields.
1800 */
1801 cur = (xmlAttrPtr) xmlMalloc(sizeof(xmlAttr));
1802 if (cur == NULL) {
Daniel Veillard8f6c2b12008-04-03 11:17:21 +00001803 if ((eatname == 1) &&
1804 ((node->doc == NULL) ||
Daniel Veillarded939f82008-04-08 08:20:08 +00001805 (!(xmlDictOwns(node->doc->dict, name)))))
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001806 xmlFree((xmlChar *) name);
1807 xmlTreeErrMemory("building attribute");
1808 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001809 }
1810 memset(cur, 0, sizeof(xmlAttr));
1811 cur->type = XML_ATTRIBUTE_NODE;
1812
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001813 cur->parent = node;
Owen Taylor3473f882001-02-23 17:55:21 +00001814 if (node != NULL) {
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001815 doc = node->doc;
1816 cur->doc = doc;
Owen Taylor3473f882001-02-23 17:55:21 +00001817 }
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001818 cur->ns = ns;
Daniel Veillard5cd3e8c2005-03-27 11:25:28 +00001819
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001820 if (eatname == 0) {
1821 if ((doc != NULL) && (doc->dict != NULL))
1822 cur->name = (xmlChar *) xmlDictLookup(doc->dict, name, -1);
1823 else
1824 cur->name = xmlStrdup(name);
1825 } else
1826 cur->name = name;
Daniel Veillard5cd3e8c2005-03-27 11:25:28 +00001827
Owen Taylor3473f882001-02-23 17:55:21 +00001828 if (value != NULL) {
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001829 xmlNodePtr tmp;
Owen Taylor3473f882001-02-23 17:55:21 +00001830
Daniel Veillard6f8611f2008-02-15 08:33:21 +00001831 if(!xmlCheckUTF8(value)) {
1832 xmlTreeErr(XML_TREE_NOT_UTF8, (xmlNodePtr) doc,
1833 NULL);
1834 if (doc != NULL)
1835 doc->encoding = xmlStrdup(BAD_CAST "ISO-8859-1");
1836 }
1837 cur->children = xmlNewDocText(doc, value);
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001838 cur->last = NULL;
1839 tmp = cur->children;
1840 while (tmp != NULL) {
1841 tmp->parent = (xmlNodePtr) cur;
1842 if (tmp->next == NULL)
1843 cur->last = tmp;
1844 tmp = tmp->next;
1845 }
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001846 }
Owen Taylor3473f882001-02-23 17:55:21 +00001847
1848 /*
1849 * Add it at the end to preserve parsing order ...
1850 */
1851 if (node != NULL) {
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001852 if (node->properties == NULL) {
1853 node->properties = cur;
1854 } else {
1855 xmlAttrPtr prev = node->properties;
Owen Taylor3473f882001-02-23 17:55:21 +00001856
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001857 while (prev->next != NULL)
1858 prev = prev->next;
1859 prev->next = cur;
1860 cur->prev = prev;
1861 }
Owen Taylor3473f882001-02-23 17:55:21 +00001862 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00001863
Daniel Veillardab2a7632009-07-09 08:45:03 +02001864 if ((value != NULL) &&
1865 (xmlIsID((node == NULL) ? NULL : node->doc, node, cur) == 1))
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001866 xmlAddID(NULL, node->doc, value, cur);
1867
Daniel Veillarda880b122003-04-21 21:36:41 +00001868 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001869 xmlRegisterNodeDefaultValue((xmlNodePtr) cur);
1870 return (cur);
Owen Taylor3473f882001-02-23 17:55:21 +00001871}
Daniel Veillard5cd3e8c2005-03-27 11:25:28 +00001872
1873#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || \
1874 defined(LIBXML_SCHEMAS_ENABLED)
1875/**
1876 * xmlNewProp:
1877 * @node: the holding node
1878 * @name: the name of the attribute
1879 * @value: the value of the attribute
1880 *
1881 * Create a new property carried by a node.
1882 * Returns a pointer to the attribute
1883 */
1884xmlAttrPtr
1885xmlNewProp(xmlNodePtr node, const xmlChar *name, const xmlChar *value) {
1886
1887 if (name == NULL) {
1888#ifdef DEBUG_TREE
1889 xmlGenericError(xmlGenericErrorContext,
1890 "xmlNewProp : name == NULL\n");
1891#endif
1892 return(NULL);
1893 }
1894
1895 return xmlNewPropInternal(node, NULL, name, value, 0);
1896}
Daniel Veillard652327a2003-09-29 18:02:38 +00001897#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001898
1899/**
1900 * xmlNewNsProp:
1901 * @node: the holding node
1902 * @ns: the namespace
1903 * @name: the name of the attribute
1904 * @value: the value of the attribute
1905 *
1906 * Create a new property tagged with a namespace and carried by a node.
1907 * Returns a pointer to the attribute
1908 */
1909xmlAttrPtr
1910xmlNewNsProp(xmlNodePtr node, xmlNsPtr ns, const xmlChar *name,
1911 const xmlChar *value) {
Owen Taylor3473f882001-02-23 17:55:21 +00001912
1913 if (name == NULL) {
1914#ifdef DEBUG_TREE
1915 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00001916 "xmlNewNsProp : name == NULL\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001917#endif
1918 return(NULL);
1919 }
1920
Daniel Veillard5cd3e8c2005-03-27 11:25:28 +00001921 return xmlNewPropInternal(node, ns, name, value, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00001922}
1923
1924/**
Daniel Veillard46de64e2002-05-29 08:21:33 +00001925 * xmlNewNsPropEatName:
1926 * @node: the holding node
1927 * @ns: the namespace
1928 * @name: the name of the attribute
1929 * @value: the value of the attribute
1930 *
1931 * Create a new property tagged with a namespace and carried by a node.
1932 * Returns a pointer to the attribute
1933 */
1934xmlAttrPtr
1935xmlNewNsPropEatName(xmlNodePtr node, xmlNsPtr ns, xmlChar *name,
1936 const xmlChar *value) {
Daniel Veillard46de64e2002-05-29 08:21:33 +00001937
1938 if (name == NULL) {
1939#ifdef DEBUG_TREE
1940 xmlGenericError(xmlGenericErrorContext,
1941 "xmlNewNsPropEatName : name == NULL\n");
1942#endif
1943 return(NULL);
1944 }
1945
Daniel Veillard8f6c2b12008-04-03 11:17:21 +00001946 return xmlNewPropInternal(node, ns, name, value, 1);
Daniel Veillard46de64e2002-05-29 08:21:33 +00001947}
1948
1949/**
Owen Taylor3473f882001-02-23 17:55:21 +00001950 * xmlNewDocProp:
1951 * @doc: the document
1952 * @name: the name of the attribute
1953 * @value: the value of the attribute
1954 *
1955 * Create a new property carried by a document.
1956 * Returns a pointer to the attribute
1957 */
1958xmlAttrPtr
1959xmlNewDocProp(xmlDocPtr doc, const xmlChar *name, const xmlChar *value) {
1960 xmlAttrPtr cur;
1961
1962 if (name == NULL) {
1963#ifdef DEBUG_TREE
1964 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00001965 "xmlNewDocProp : name == NULL\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001966#endif
1967 return(NULL);
1968 }
1969
1970 /*
1971 * Allocate a new property and fill the fields.
1972 */
1973 cur = (xmlAttrPtr) xmlMalloc(sizeof(xmlAttr));
1974 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001975 xmlTreeErrMemory("building attribute");
Owen Taylor3473f882001-02-23 17:55:21 +00001976 return(NULL);
1977 }
1978 memset(cur, 0, sizeof(xmlAttr));
1979 cur->type = XML_ATTRIBUTE_NODE;
1980
Daniel Veillard03a53c32004-10-26 16:06:51 +00001981 if ((doc != NULL) && (doc->dict != NULL))
1982 cur->name = xmlDictLookup(doc->dict, name, -1);
1983 else
1984 cur->name = xmlStrdup(name);
Daniel Veillardaa6de472008-08-25 14:53:31 +00001985 cur->doc = doc;
Owen Taylor3473f882001-02-23 17:55:21 +00001986 if (value != NULL) {
1987 xmlNodePtr tmp;
1988
1989 cur->children = xmlStringGetNodeList(doc, value);
1990 cur->last = NULL;
1991
1992 tmp = cur->children;
1993 while (tmp != NULL) {
1994 tmp->parent = (xmlNodePtr) cur;
1995 if (tmp->next == NULL)
1996 cur->last = tmp;
1997 tmp = tmp->next;
1998 }
1999 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002000
Daniel Veillarda880b122003-04-21 21:36:41 +00002001 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002002 xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002003 return(cur);
2004}
2005
2006/**
2007 * xmlFreePropList:
2008 * @cur: the first property in the list
2009 *
2010 * Free a property and all its siblings, all the children are freed too.
2011 */
2012void
2013xmlFreePropList(xmlAttrPtr cur) {
2014 xmlAttrPtr next;
Daniel Veillarde96a2a42003-09-24 21:23:56 +00002015 if (cur == NULL) return;
Owen Taylor3473f882001-02-23 17:55:21 +00002016 while (cur != NULL) {
2017 next = cur->next;
2018 xmlFreeProp(cur);
2019 cur = next;
2020 }
2021}
2022
2023/**
2024 * xmlFreeProp:
2025 * @cur: an attribute
2026 *
2027 * Free one attribute, all the content is freed too
2028 */
2029void
2030xmlFreeProp(xmlAttrPtr cur) {
Daniel Veillarde96a2a42003-09-24 21:23:56 +00002031 xmlDictPtr dict = NULL;
2032 if (cur == NULL) return;
2033
2034 if (cur->doc != NULL) dict = cur->doc->dict;
Daniel Veillard5335dc52003-01-01 20:59:38 +00002035
Daniel Veillarda880b122003-04-21 21:36:41 +00002036 if ((__xmlRegisterCallbacks) && (xmlDeregisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002037 xmlDeregisterNodeDefaultValue((xmlNodePtr)cur);
2038
Owen Taylor3473f882001-02-23 17:55:21 +00002039 /* Check for ID removal -> leading to invalid references ! */
Daniel Veillardda6f4af2005-06-20 17:17:54 +00002040 if ((cur->doc != NULL) && (cur->atype == XML_ATTRIBUTE_ID)) {
2041 xmlRemoveID(cur->doc, cur);
Daniel Veillard76d66f42001-05-16 21:05:17 +00002042 }
Owen Taylor3473f882001-02-23 17:55:21 +00002043 if (cur->children != NULL) xmlFreeNodeList(cur->children);
Daniel Veillarde96a2a42003-09-24 21:23:56 +00002044 DICT_FREE(cur->name)
Owen Taylor3473f882001-02-23 17:55:21 +00002045 xmlFree(cur);
2046}
2047
2048/**
2049 * xmlRemoveProp:
2050 * @cur: an attribute
2051 *
2052 * Unlink and free one attribute, all the content is freed too
2053 * Note this doesn't work for namespace definition attributes
2054 *
2055 * Returns 0 if success and -1 in case of error.
2056 */
2057int
2058xmlRemoveProp(xmlAttrPtr cur) {
2059 xmlAttrPtr tmp;
2060 if (cur == NULL) {
2061#ifdef DEBUG_TREE
2062 xmlGenericError(xmlGenericErrorContext,
2063 "xmlRemoveProp : cur == NULL\n");
2064#endif
2065 return(-1);
2066 }
2067 if (cur->parent == NULL) {
2068#ifdef DEBUG_TREE
2069 xmlGenericError(xmlGenericErrorContext,
2070 "xmlRemoveProp : cur->parent == NULL\n");
2071#endif
2072 return(-1);
2073 }
2074 tmp = cur->parent->properties;
2075 if (tmp == cur) {
2076 cur->parent->properties = cur->next;
Rob Richards19dc9612005-10-28 16:15:16 +00002077 if (cur->next != NULL)
2078 cur->next->prev = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00002079 xmlFreeProp(cur);
2080 return(0);
2081 }
2082 while (tmp != NULL) {
2083 if (tmp->next == cur) {
2084 tmp->next = cur->next;
2085 if (tmp->next != NULL)
2086 tmp->next->prev = tmp;
2087 xmlFreeProp(cur);
2088 return(0);
2089 }
2090 tmp = tmp->next;
2091 }
2092#ifdef DEBUG_TREE
2093 xmlGenericError(xmlGenericErrorContext,
2094 "xmlRemoveProp : attribute not owned by its node\n");
2095#endif
2096 return(-1);
2097}
2098
2099/**
Daniel Veillard03a53c32004-10-26 16:06:51 +00002100 * xmlNewDocPI:
2101 * @doc: the target document
Owen Taylor3473f882001-02-23 17:55:21 +00002102 * @name: the processing instruction name
2103 * @content: the PI content
2104 *
2105 * Creation of a processing instruction element.
2106 * Returns a pointer to the new node object.
2107 */
2108xmlNodePtr
Daniel Veillard03a53c32004-10-26 16:06:51 +00002109xmlNewDocPI(xmlDocPtr doc, const xmlChar *name, const xmlChar *content) {
Owen Taylor3473f882001-02-23 17:55:21 +00002110 xmlNodePtr cur;
2111
2112 if (name == NULL) {
2113#ifdef DEBUG_TREE
2114 xmlGenericError(xmlGenericErrorContext,
2115 "xmlNewPI : name == NULL\n");
2116#endif
2117 return(NULL);
2118 }
2119
2120 /*
2121 * Allocate a new node and fill the fields.
2122 */
2123 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2124 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002125 xmlTreeErrMemory("building PI");
Owen Taylor3473f882001-02-23 17:55:21 +00002126 return(NULL);
2127 }
2128 memset(cur, 0, sizeof(xmlNode));
2129 cur->type = XML_PI_NODE;
2130
Daniel Veillard03a53c32004-10-26 16:06:51 +00002131 if ((doc != NULL) && (doc->dict != NULL))
2132 cur->name = xmlDictLookup(doc->dict, name, -1);
2133 else
2134 cur->name = xmlStrdup(name);
Owen Taylor3473f882001-02-23 17:55:21 +00002135 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002136 cur->content = xmlStrdup(content);
Owen Taylor3473f882001-02-23 17:55:21 +00002137 }
Daniel Veillarda03e3652004-11-02 18:45:30 +00002138 cur->doc = doc;
Daniel Veillard5335dc52003-01-01 20:59:38 +00002139
Daniel Veillarda880b122003-04-21 21:36:41 +00002140 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002141 xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002142 return(cur);
2143}
2144
2145/**
Daniel Veillard03a53c32004-10-26 16:06:51 +00002146 * xmlNewPI:
2147 * @name: the processing instruction name
2148 * @content: the PI content
2149 *
2150 * Creation of a processing instruction element.
2151 * Use xmlDocNewPI preferably to get string interning
2152 *
2153 * Returns a pointer to the new node object.
2154 */
2155xmlNodePtr
2156xmlNewPI(const xmlChar *name, const xmlChar *content) {
2157 return(xmlNewDocPI(NULL, name, content));
2158}
2159
2160/**
Owen Taylor3473f882001-02-23 17:55:21 +00002161 * xmlNewNode:
2162 * @ns: namespace if any
2163 * @name: the node name
2164 *
Daniel Veillardd1640922001-12-17 15:30:10 +00002165 * Creation of a new node element. @ns is optional (NULL).
Owen Taylor3473f882001-02-23 17:55:21 +00002166 *
William M. Brackd7cf7f82003-11-14 07:13:16 +00002167 * Returns a pointer to the new node object. Uses xmlStrdup() to make
2168 * copy of @name.
Owen Taylor3473f882001-02-23 17:55:21 +00002169 */
2170xmlNodePtr
2171xmlNewNode(xmlNsPtr ns, const xmlChar *name) {
2172 xmlNodePtr cur;
2173
2174 if (name == NULL) {
2175#ifdef DEBUG_TREE
2176 xmlGenericError(xmlGenericErrorContext,
2177 "xmlNewNode : name == NULL\n");
2178#endif
2179 return(NULL);
2180 }
2181
2182 /*
2183 * Allocate a new node and fill the fields.
2184 */
2185 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2186 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002187 xmlTreeErrMemory("building node");
Owen Taylor3473f882001-02-23 17:55:21 +00002188 return(NULL);
2189 }
2190 memset(cur, 0, sizeof(xmlNode));
2191 cur->type = XML_ELEMENT_NODE;
Daniel Veillardaa6de472008-08-25 14:53:31 +00002192
Owen Taylor3473f882001-02-23 17:55:21 +00002193 cur->name = xmlStrdup(name);
2194 cur->ns = ns;
Daniel Veillard5335dc52003-01-01 20:59:38 +00002195
Daniel Veillarda880b122003-04-21 21:36:41 +00002196 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002197 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002198 return(cur);
2199}
2200
2201/**
Daniel Veillard46de64e2002-05-29 08:21:33 +00002202 * xmlNewNodeEatName:
2203 * @ns: namespace if any
2204 * @name: the node name
2205 *
2206 * Creation of a new node element. @ns is optional (NULL).
2207 *
William M. Brackd7cf7f82003-11-14 07:13:16 +00002208 * Returns a pointer to the new node object, with pointer @name as
2209 * new node's name. Use xmlNewNode() if a copy of @name string is
2210 * is needed as new node's name.
Daniel Veillard46de64e2002-05-29 08:21:33 +00002211 */
2212xmlNodePtr
2213xmlNewNodeEatName(xmlNsPtr ns, xmlChar *name) {
2214 xmlNodePtr cur;
2215
2216 if (name == NULL) {
2217#ifdef DEBUG_TREE
2218 xmlGenericError(xmlGenericErrorContext,
2219 "xmlNewNode : name == NULL\n");
2220#endif
2221 return(NULL);
2222 }
2223
2224 /*
2225 * Allocate a new node and fill the fields.
2226 */
2227 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2228 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002229 xmlTreeErrMemory("building node");
Daniel Veillard8f6c2b12008-04-03 11:17:21 +00002230 /* we can't check here that name comes from the doc dictionnary */
Daniel Veillard46de64e2002-05-29 08:21:33 +00002231 return(NULL);
2232 }
2233 memset(cur, 0, sizeof(xmlNode));
2234 cur->type = XML_ELEMENT_NODE;
Daniel Veillardaa6de472008-08-25 14:53:31 +00002235
Daniel Veillard46de64e2002-05-29 08:21:33 +00002236 cur->name = name;
2237 cur->ns = ns;
Daniel Veillard8a1b1852003-01-05 22:37:17 +00002238
Daniel Veillarda880b122003-04-21 21:36:41 +00002239 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard8a1b1852003-01-05 22:37:17 +00002240 xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
Daniel Veillard46de64e2002-05-29 08:21:33 +00002241 return(cur);
2242}
2243
2244/**
Owen Taylor3473f882001-02-23 17:55:21 +00002245 * xmlNewDocNode:
2246 * @doc: the document
2247 * @ns: namespace if any
2248 * @name: the node name
2249 * @content: the XML text content if any
2250 *
2251 * Creation of a new node element within a document. @ns and @content
Daniel Veillardd1640922001-12-17 15:30:10 +00002252 * are optional (NULL).
Owen Taylor3473f882001-02-23 17:55:21 +00002253 * NOTE: @content is supposed to be a piece of XML CDATA, so it allow entities
2254 * references, but XML special chars need to be escaped first by using
2255 * xmlEncodeEntitiesReentrant(). Use xmlNewDocRawNode() if you don't
2256 * need entities support.
2257 *
2258 * Returns a pointer to the new node object.
2259 */
2260xmlNodePtr
2261xmlNewDocNode(xmlDocPtr doc, xmlNsPtr ns,
2262 const xmlChar *name, const xmlChar *content) {
2263 xmlNodePtr cur;
2264
Daniel Veillard95ddcd32004-10-26 21:53:55 +00002265 if ((doc != NULL) && (doc->dict != NULL))
Daniel Veillard03a53c32004-10-26 16:06:51 +00002266 cur = xmlNewNodeEatName(ns, (xmlChar *)
2267 xmlDictLookup(doc->dict, name, -1));
2268 else
2269 cur = xmlNewNode(ns, name);
Owen Taylor3473f882001-02-23 17:55:21 +00002270 if (cur != NULL) {
2271 cur->doc = doc;
2272 if (content != NULL) {
2273 cur->children = xmlStringGetNodeList(doc, content);
2274 UPDATE_LAST_CHILD_AND_PARENT(cur)
2275 }
2276 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002277
Owen Taylor3473f882001-02-23 17:55:21 +00002278 return(cur);
2279}
2280
Daniel Veillard46de64e2002-05-29 08:21:33 +00002281/**
2282 * xmlNewDocNodeEatName:
2283 * @doc: the document
2284 * @ns: namespace if any
2285 * @name: the node name
2286 * @content: the XML text content if any
2287 *
2288 * Creation of a new node element within a document. @ns and @content
2289 * are optional (NULL).
2290 * NOTE: @content is supposed to be a piece of XML CDATA, so it allow entities
2291 * references, but XML special chars need to be escaped first by using
2292 * xmlEncodeEntitiesReentrant(). Use xmlNewDocRawNode() if you don't
2293 * need entities support.
2294 *
2295 * Returns a pointer to the new node object.
2296 */
2297xmlNodePtr
2298xmlNewDocNodeEatName(xmlDocPtr doc, xmlNsPtr ns,
2299 xmlChar *name, const xmlChar *content) {
2300 xmlNodePtr cur;
2301
2302 cur = xmlNewNodeEatName(ns, name);
2303 if (cur != NULL) {
2304 cur->doc = doc;
2305 if (content != NULL) {
2306 cur->children = xmlStringGetNodeList(doc, content);
2307 UPDATE_LAST_CHILD_AND_PARENT(cur)
2308 }
Daniel Veillard8f6c2b12008-04-03 11:17:21 +00002309 } else {
2310 /* if name don't come from the doc dictionnary free it here */
2311 if ((name != NULL) && (doc != NULL) &&
2312 (!(xmlDictOwns(doc->dict, name))))
2313 xmlFree(name);
Daniel Veillard46de64e2002-05-29 08:21:33 +00002314 }
2315 return(cur);
2316}
2317
Daniel Veillard652327a2003-09-29 18:02:38 +00002318#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002319/**
2320 * xmlNewDocRawNode:
2321 * @doc: the document
2322 * @ns: namespace if any
2323 * @name: the node name
2324 * @content: the text content if any
2325 *
2326 * Creation of a new node element within a document. @ns and @content
Daniel Veillardd1640922001-12-17 15:30:10 +00002327 * are optional (NULL).
Owen Taylor3473f882001-02-23 17:55:21 +00002328 *
2329 * Returns a pointer to the new node object.
2330 */
2331xmlNodePtr
2332xmlNewDocRawNode(xmlDocPtr doc, xmlNsPtr ns,
2333 const xmlChar *name, const xmlChar *content) {
2334 xmlNodePtr cur;
2335
Daniel Veillard95ddcd32004-10-26 21:53:55 +00002336 cur = xmlNewDocNode(doc, ns, name, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00002337 if (cur != NULL) {
2338 cur->doc = doc;
2339 if (content != NULL) {
2340 cur->children = xmlNewDocText(doc, content);
2341 UPDATE_LAST_CHILD_AND_PARENT(cur)
2342 }
2343 }
2344 return(cur);
2345}
2346
2347/**
2348 * xmlNewDocFragment:
2349 * @doc: the document owning the fragment
2350 *
2351 * Creation of a new Fragment node.
2352 * Returns a pointer to the new node object.
2353 */
2354xmlNodePtr
2355xmlNewDocFragment(xmlDocPtr doc) {
2356 xmlNodePtr cur;
2357
2358 /*
2359 * Allocate a new DocumentFragment node and fill the fields.
2360 */
2361 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2362 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002363 xmlTreeErrMemory("building fragment");
Owen Taylor3473f882001-02-23 17:55:21 +00002364 return(NULL);
2365 }
2366 memset(cur, 0, sizeof(xmlNode));
2367 cur->type = XML_DOCUMENT_FRAG_NODE;
2368
2369 cur->doc = doc;
Daniel Veillard5335dc52003-01-01 20:59:38 +00002370
Daniel Veillarda880b122003-04-21 21:36:41 +00002371 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002372 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002373 return(cur);
2374}
Daniel Veillard652327a2003-09-29 18:02:38 +00002375#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002376
2377/**
2378 * xmlNewText:
2379 * @content: the text content
2380 *
2381 * Creation of a new text node.
2382 * Returns a pointer to the new node object.
2383 */
2384xmlNodePtr
2385xmlNewText(const xmlChar *content) {
2386 xmlNodePtr cur;
2387
2388 /*
2389 * Allocate a new node and fill the fields.
2390 */
2391 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2392 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002393 xmlTreeErrMemory("building text");
Owen Taylor3473f882001-02-23 17:55:21 +00002394 return(NULL);
2395 }
2396 memset(cur, 0, sizeof(xmlNode));
2397 cur->type = XML_TEXT_NODE;
2398
2399 cur->name = xmlStringText;
2400 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002401 cur->content = xmlStrdup(content);
Owen Taylor3473f882001-02-23 17:55:21 +00002402 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002403
Daniel Veillarda880b122003-04-21 21:36:41 +00002404 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002405 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002406 return(cur);
2407}
2408
Daniel Veillard652327a2003-09-29 18:02:38 +00002409#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002410/**
2411 * xmlNewTextChild:
2412 * @parent: the parent node
2413 * @ns: a namespace if any
2414 * @name: the name of the child
2415 * @content: the text content of the child if any.
2416 *
2417 * Creation of a new child element, added at the end of @parent children list.
MST 2003 John Flecke1f70492003-12-20 23:43:28 +00002418 * @ns and @content parameters are optional (NULL). If @ns is NULL, the newly
2419 * created element inherits the namespace of @parent. If @content is non NULL,
William M. Brackd7cf7f82003-11-14 07:13:16 +00002420 * a child TEXT node will be created containing the string @content.
MST 2003 John Fleck8b03bc52003-12-17 03:45:01 +00002421 * NOTE: Use xmlNewChild() if @content will contain entities that need to be
2422 * preserved. Use this function, xmlNewTextChild(), if you need to ensure that
Daniel Veillardaa6de472008-08-25 14:53:31 +00002423 * reserved XML chars that might appear in @content, such as the ampersand,
2424 * greater-than or less-than signs, are automatically replaced by their XML
2425 * escaped entity representations.
Owen Taylor3473f882001-02-23 17:55:21 +00002426 *
2427 * Returns a pointer to the new node object.
2428 */
2429xmlNodePtr
2430xmlNewTextChild(xmlNodePtr parent, xmlNsPtr ns,
2431 const xmlChar *name, const xmlChar *content) {
2432 xmlNodePtr cur, prev;
2433
2434 if (parent == NULL) {
2435#ifdef DEBUG_TREE
2436 xmlGenericError(xmlGenericErrorContext,
2437 "xmlNewTextChild : parent == NULL\n");
2438#endif
2439 return(NULL);
2440 }
2441
2442 if (name == NULL) {
2443#ifdef DEBUG_TREE
2444 xmlGenericError(xmlGenericErrorContext,
2445 "xmlNewTextChild : name == NULL\n");
2446#endif
2447 return(NULL);
2448 }
2449
2450 /*
2451 * Allocate a new node
2452 */
Daniel Veillard254b1262003-11-01 17:04:58 +00002453 if (parent->type == XML_ELEMENT_NODE) {
2454 if (ns == NULL)
2455 cur = xmlNewDocRawNode(parent->doc, parent->ns, name, content);
2456 else
2457 cur = xmlNewDocRawNode(parent->doc, ns, name, content);
2458 } else if ((parent->type == XML_DOCUMENT_NODE) ||
2459 (parent->type == XML_HTML_DOCUMENT_NODE)) {
2460 if (ns == NULL)
2461 cur = xmlNewDocRawNode((xmlDocPtr) parent, NULL, name, content);
2462 else
2463 cur = xmlNewDocRawNode((xmlDocPtr) parent, ns, name, content);
2464 } else if (parent->type == XML_DOCUMENT_FRAG_NODE) {
2465 cur = xmlNewDocRawNode( parent->doc, ns, name, content);
2466 } else {
2467 return(NULL);
2468 }
Owen Taylor3473f882001-02-23 17:55:21 +00002469 if (cur == NULL) return(NULL);
2470
2471 /*
2472 * add the new element at the end of the children list.
2473 */
2474 cur->type = XML_ELEMENT_NODE;
2475 cur->parent = parent;
2476 cur->doc = parent->doc;
2477 if (parent->children == NULL) {
2478 parent->children = cur;
2479 parent->last = cur;
2480 } else {
2481 prev = parent->last;
2482 prev->next = cur;
2483 cur->prev = prev;
2484 parent->last = cur;
2485 }
2486
2487 return(cur);
2488}
Daniel Veillard652327a2003-09-29 18:02:38 +00002489#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002490
2491/**
2492 * xmlNewCharRef:
2493 * @doc: the document
2494 * @name: the char ref string, starting with # or "&# ... ;"
2495 *
2496 * Creation of a new character reference node.
2497 * Returns a pointer to the new node object.
2498 */
2499xmlNodePtr
2500xmlNewCharRef(xmlDocPtr doc, const xmlChar *name) {
2501 xmlNodePtr cur;
2502
Daniel Veillard36e5cd52004-11-02 14:52:23 +00002503 if (name == NULL)
2504 return(NULL);
2505
Owen Taylor3473f882001-02-23 17:55:21 +00002506 /*
2507 * Allocate a new node and fill the fields.
2508 */
2509 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2510 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002511 xmlTreeErrMemory("building character reference");
Owen Taylor3473f882001-02-23 17:55:21 +00002512 return(NULL);
2513 }
2514 memset(cur, 0, sizeof(xmlNode));
2515 cur->type = XML_ENTITY_REF_NODE;
2516
2517 cur->doc = doc;
2518 if (name[0] == '&') {
2519 int len;
2520 name++;
2521 len = xmlStrlen(name);
2522 if (name[len - 1] == ';')
2523 cur->name = xmlStrndup(name, len - 1);
2524 else
2525 cur->name = xmlStrndup(name, len);
2526 } else
2527 cur->name = xmlStrdup(name);
Daniel Veillard5335dc52003-01-01 20:59:38 +00002528
Daniel Veillarda880b122003-04-21 21:36:41 +00002529 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002530 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002531 return(cur);
2532}
2533
2534/**
2535 * xmlNewReference:
2536 * @doc: the document
2537 * @name: the reference name, or the reference string with & and ;
2538 *
2539 * Creation of a new reference node.
2540 * Returns a pointer to the new node object.
2541 */
2542xmlNodePtr
2543xmlNewReference(xmlDocPtr doc, const xmlChar *name) {
2544 xmlNodePtr cur;
2545 xmlEntityPtr ent;
2546
Daniel Veillard36e5cd52004-11-02 14:52:23 +00002547 if (name == NULL)
2548 return(NULL);
2549
Owen Taylor3473f882001-02-23 17:55:21 +00002550 /*
2551 * Allocate a new node and fill the fields.
2552 */
2553 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2554 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002555 xmlTreeErrMemory("building reference");
Owen Taylor3473f882001-02-23 17:55:21 +00002556 return(NULL);
2557 }
2558 memset(cur, 0, sizeof(xmlNode));
2559 cur->type = XML_ENTITY_REF_NODE;
2560
2561 cur->doc = doc;
2562 if (name[0] == '&') {
2563 int len;
2564 name++;
2565 len = xmlStrlen(name);
2566 if (name[len - 1] == ';')
2567 cur->name = xmlStrndup(name, len - 1);
2568 else
2569 cur->name = xmlStrndup(name, len);
2570 } else
2571 cur->name = xmlStrdup(name);
2572
2573 ent = xmlGetDocEntity(doc, cur->name);
2574 if (ent != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002575 cur->content = ent->content;
Owen Taylor3473f882001-02-23 17:55:21 +00002576 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002577 * The parent pointer in entity is a DTD pointer and thus is NOT
Owen Taylor3473f882001-02-23 17:55:21 +00002578 * updated. Not sure if this is 100% correct.
2579 * -George
2580 */
2581 cur->children = (xmlNodePtr) ent;
2582 cur->last = (xmlNodePtr) ent;
2583 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002584
Daniel Veillarda880b122003-04-21 21:36:41 +00002585 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002586 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002587 return(cur);
2588}
2589
2590/**
2591 * xmlNewDocText:
2592 * @doc: the document
2593 * @content: the text content
2594 *
2595 * Creation of a new text node within a document.
2596 * Returns a pointer to the new node object.
2597 */
2598xmlNodePtr
2599xmlNewDocText(xmlDocPtr doc, const xmlChar *content) {
2600 xmlNodePtr cur;
2601
2602 cur = xmlNewText(content);
2603 if (cur != NULL) cur->doc = doc;
2604 return(cur);
2605}
2606
2607/**
2608 * xmlNewTextLen:
2609 * @content: the text content
2610 * @len: the text len.
2611 *
Daniel Veillard60087f32001-10-10 09:45:09 +00002612 * Creation of a new text node with an extra parameter for the content's length
Owen Taylor3473f882001-02-23 17:55:21 +00002613 * Returns a pointer to the new node object.
2614 */
2615xmlNodePtr
2616xmlNewTextLen(const xmlChar *content, int len) {
2617 xmlNodePtr cur;
2618
2619 /*
2620 * Allocate a new node and fill the fields.
2621 */
2622 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2623 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002624 xmlTreeErrMemory("building text");
Owen Taylor3473f882001-02-23 17:55:21 +00002625 return(NULL);
2626 }
2627 memset(cur, 0, sizeof(xmlNode));
2628 cur->type = XML_TEXT_NODE;
2629
2630 cur->name = xmlStringText;
2631 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002632 cur->content = xmlStrndup(content, len);
Owen Taylor3473f882001-02-23 17:55:21 +00002633 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002634
Daniel Veillarda880b122003-04-21 21:36:41 +00002635 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002636 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002637 return(cur);
2638}
2639
2640/**
2641 * xmlNewDocTextLen:
2642 * @doc: the document
2643 * @content: the text content
2644 * @len: the text len.
2645 *
Daniel Veillard60087f32001-10-10 09:45:09 +00002646 * Creation of a new text node with an extra content length parameter. The
Owen Taylor3473f882001-02-23 17:55:21 +00002647 * text node pertain to a given document.
2648 * Returns a pointer to the new node object.
2649 */
2650xmlNodePtr
2651xmlNewDocTextLen(xmlDocPtr doc, const xmlChar *content, int len) {
2652 xmlNodePtr cur;
2653
2654 cur = xmlNewTextLen(content, len);
2655 if (cur != NULL) cur->doc = doc;
2656 return(cur);
2657}
2658
2659/**
2660 * xmlNewComment:
2661 * @content: the comment content
2662 *
2663 * Creation of a new node containing a comment.
2664 * Returns a pointer to the new node object.
2665 */
2666xmlNodePtr
2667xmlNewComment(const xmlChar *content) {
2668 xmlNodePtr cur;
2669
2670 /*
2671 * Allocate a new node and fill the fields.
2672 */
2673 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2674 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002675 xmlTreeErrMemory("building comment");
Owen Taylor3473f882001-02-23 17:55:21 +00002676 return(NULL);
2677 }
2678 memset(cur, 0, sizeof(xmlNode));
2679 cur->type = XML_COMMENT_NODE;
2680
2681 cur->name = xmlStringComment;
2682 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002683 cur->content = xmlStrdup(content);
Owen Taylor3473f882001-02-23 17:55:21 +00002684 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002685
Daniel Veillarda880b122003-04-21 21:36:41 +00002686 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002687 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002688 return(cur);
2689}
2690
2691/**
2692 * xmlNewCDataBlock:
2693 * @doc: the document
Daniel Veillardd1640922001-12-17 15:30:10 +00002694 * @content: the CDATA block content content
Owen Taylor3473f882001-02-23 17:55:21 +00002695 * @len: the length of the block
2696 *
Daniel Veillardd1640922001-12-17 15:30:10 +00002697 * Creation of a new node containing a CDATA block.
Owen Taylor3473f882001-02-23 17:55:21 +00002698 * Returns a pointer to the new node object.
2699 */
2700xmlNodePtr
2701xmlNewCDataBlock(xmlDocPtr doc, const xmlChar *content, int len) {
2702 xmlNodePtr cur;
2703
2704 /*
2705 * Allocate a new node and fill the fields.
2706 */
2707 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2708 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002709 xmlTreeErrMemory("building CDATA");
Owen Taylor3473f882001-02-23 17:55:21 +00002710 return(NULL);
2711 }
2712 memset(cur, 0, sizeof(xmlNode));
2713 cur->type = XML_CDATA_SECTION_NODE;
Daniel Veillard56a4cb82001-03-24 17:00:36 +00002714 cur->doc = doc;
Owen Taylor3473f882001-02-23 17:55:21 +00002715
2716 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002717 cur->content = xmlStrndup(content, len);
Owen Taylor3473f882001-02-23 17:55:21 +00002718 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002719
Daniel Veillarda880b122003-04-21 21:36:41 +00002720 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002721 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002722 return(cur);
2723}
2724
2725/**
2726 * xmlNewDocComment:
2727 * @doc: the document
2728 * @content: the comment content
2729 *
Daniel Veillardd1640922001-12-17 15:30:10 +00002730 * Creation of a new node containing a comment within a document.
Owen Taylor3473f882001-02-23 17:55:21 +00002731 * Returns a pointer to the new node object.
2732 */
2733xmlNodePtr
2734xmlNewDocComment(xmlDocPtr doc, const xmlChar *content) {
2735 xmlNodePtr cur;
2736
2737 cur = xmlNewComment(content);
2738 if (cur != NULL) cur->doc = doc;
2739 return(cur);
2740}
2741
2742/**
2743 * xmlSetTreeDoc:
2744 * @tree: the top element
2745 * @doc: the document
2746 *
2747 * update all nodes under the tree to point to the right document
2748 */
2749void
2750xmlSetTreeDoc(xmlNodePtr tree, xmlDocPtr doc) {
Daniel Veillard19e96c32001-07-09 10:32:59 +00002751 xmlAttrPtr prop;
2752
Owen Taylor3473f882001-02-23 17:55:21 +00002753 if (tree == NULL)
2754 return;
Owen Taylor3473f882001-02-23 17:55:21 +00002755 if (tree->doc != doc) {
Daniel Veillard36065812002-01-24 15:02:46 +00002756 if(tree->type == XML_ELEMENT_NODE) {
2757 prop = tree->properties;
2758 while (prop != NULL) {
2759 prop->doc = doc;
2760 xmlSetListDoc(prop->children, doc);
2761 prop = prop->next;
2762 }
Daniel Veillard19e96c32001-07-09 10:32:59 +00002763 }
Owen Taylor3473f882001-02-23 17:55:21 +00002764 if (tree->children != NULL)
2765 xmlSetListDoc(tree->children, doc);
2766 tree->doc = doc;
2767 }
2768}
2769
2770/**
2771 * xmlSetListDoc:
Daniel Veillardd1640922001-12-17 15:30:10 +00002772 * @list: the first element
Owen Taylor3473f882001-02-23 17:55:21 +00002773 * @doc: the document
2774 *
2775 * update all nodes in the list to point to the right document
2776 */
2777void
2778xmlSetListDoc(xmlNodePtr list, xmlDocPtr doc) {
2779 xmlNodePtr cur;
2780
2781 if (list == NULL)
2782 return;
2783 cur = list;
2784 while (cur != NULL) {
2785 if (cur->doc != doc)
2786 xmlSetTreeDoc(cur, doc);
2787 cur = cur->next;
2788 }
2789}
2790
Daniel Veillard2156d432004-03-04 15:59:36 +00002791#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00002792/**
2793 * xmlNewChild:
2794 * @parent: the parent node
2795 * @ns: a namespace if any
2796 * @name: the name of the child
2797 * @content: the XML content of the child if any.
2798 *
2799 * Creation of a new child element, added at the end of @parent children list.
MST 2003 John Flecke1f70492003-12-20 23:43:28 +00002800 * @ns and @content parameters are optional (NULL). If @ns is NULL, the newly
2801 * created element inherits the namespace of @parent. If @content is non NULL,
Owen Taylor3473f882001-02-23 17:55:21 +00002802 * a child list containing the TEXTs and ENTITY_REFs node will be created.
MST 2003 John Fleck8b03bc52003-12-17 03:45:01 +00002803 * NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity
2804 * references. XML special chars must be escaped first by using
2805 * xmlEncodeEntitiesReentrant(), or xmlNewTextChild() should be used.
Owen Taylor3473f882001-02-23 17:55:21 +00002806 *
2807 * Returns a pointer to the new node object.
2808 */
2809xmlNodePtr
2810xmlNewChild(xmlNodePtr parent, xmlNsPtr ns,
2811 const xmlChar *name, const xmlChar *content) {
2812 xmlNodePtr cur, prev;
2813
2814 if (parent == NULL) {
2815#ifdef DEBUG_TREE
2816 xmlGenericError(xmlGenericErrorContext,
2817 "xmlNewChild : parent == NULL\n");
2818#endif
2819 return(NULL);
2820 }
2821
2822 if (name == NULL) {
2823#ifdef DEBUG_TREE
2824 xmlGenericError(xmlGenericErrorContext,
2825 "xmlNewChild : name == NULL\n");
2826#endif
2827 return(NULL);
2828 }
2829
2830 /*
2831 * Allocate a new node
2832 */
Daniel Veillard36eea2d2002-02-04 00:17:01 +00002833 if (parent->type == XML_ELEMENT_NODE) {
2834 if (ns == NULL)
2835 cur = xmlNewDocNode(parent->doc, parent->ns, name, content);
2836 else
2837 cur = xmlNewDocNode(parent->doc, ns, name, content);
2838 } else if ((parent->type == XML_DOCUMENT_NODE) ||
2839 (parent->type == XML_HTML_DOCUMENT_NODE)) {
2840 if (ns == NULL)
2841 cur = xmlNewDocNode((xmlDocPtr) parent, NULL, name, content);
2842 else
2843 cur = xmlNewDocNode((xmlDocPtr) parent, ns, name, content);
Daniel Veillard7e3f1402002-10-28 18:52:57 +00002844 } else if (parent->type == XML_DOCUMENT_FRAG_NODE) {
2845 cur = xmlNewDocNode( parent->doc, ns, name, content);
Daniel Veillard36eea2d2002-02-04 00:17:01 +00002846 } else {
2847 return(NULL);
2848 }
Owen Taylor3473f882001-02-23 17:55:21 +00002849 if (cur == NULL) return(NULL);
2850
2851 /*
2852 * add the new element at the end of the children list.
2853 */
2854 cur->type = XML_ELEMENT_NODE;
2855 cur->parent = parent;
2856 cur->doc = parent->doc;
2857 if (parent->children == NULL) {
2858 parent->children = cur;
2859 parent->last = cur;
2860 } else {
2861 prev = parent->last;
2862 prev->next = cur;
2863 cur->prev = prev;
2864 parent->last = cur;
2865 }
2866
2867 return(cur);
2868}
Daniel Veillard652327a2003-09-29 18:02:38 +00002869#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002870
2871/**
Rob Richards65815122006-02-25 17:13:33 +00002872 * xmlAddPropSibling:
Daniel Veillardaa6de472008-08-25 14:53:31 +00002873 * @prev: the attribute to which @prop is added after
Rob Richards65815122006-02-25 17:13:33 +00002874 * @cur: the base attribute passed to calling function
2875 * @prop: the new attribute
2876 *
2877 * Add a new attribute after @prev using @cur as base attribute.
2878 * When inserting before @cur, @prev is passed as @cur->prev.
2879 * When inserting after @cur, @prev is passed as @cur.
Daniel Veillardaa6de472008-08-25 14:53:31 +00002880 * If an existing attribute is found it is detroyed prior to adding @prop.
Rob Richards65815122006-02-25 17:13:33 +00002881 *
2882 * Returns the attribute being inserted or NULL in case of error.
2883 */
2884static xmlNodePtr
2885xmlAddPropSibling(xmlNodePtr prev, xmlNodePtr cur, xmlNodePtr prop) {
2886 xmlAttrPtr attr;
2887
2888 if (cur->type != XML_ATTRIBUTE_NODE)
2889 return(NULL);
2890
2891 /* check if an attribute with the same name exists */
2892 if (prop->ns == NULL)
2893 attr = xmlHasNsProp(cur->parent, prop->name, NULL);
2894 else
2895 attr = xmlHasNsProp(cur->parent, prop->name, prop->ns->href);
2896
2897 if (prop->doc != cur->doc) {
2898 xmlSetTreeDoc(prop, cur->doc);
2899 }
2900 prop->parent = cur->parent;
2901 prop->prev = prev;
2902 if (prev != NULL) {
2903 prop->next = prev->next;
2904 prev->next = prop;
2905 if (prop->next)
2906 prop->next->prev = prop;
2907 } else {
2908 prop->next = cur;
2909 cur->prev = prop;
2910 }
2911 if (prop->prev == NULL && prop->parent != NULL)
2912 prop->parent->properties = (xmlAttrPtr) prop;
2913 if ((attr != NULL) && (attr->type != XML_ATTRIBUTE_DECL)) {
2914 /* different instance, destroy it (attributes must be unique) */
2915 xmlRemoveProp((xmlAttrPtr) attr);
2916 }
2917 return prop;
2918}
2919
2920/**
Owen Taylor3473f882001-02-23 17:55:21 +00002921 * xmlAddNextSibling:
2922 * @cur: the child node
2923 * @elem: the new node
2924 *
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002925 * Add a new node @elem as the next sibling of @cur
2926 * If the new node was already inserted in a document it is
Owen Taylor3473f882001-02-23 17:55:21 +00002927 * first unlinked from its existing context.
2928 * As a result of text merging @elem may be freed.
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002929 * If the new node is ATTRIBUTE, it is added into properties instead of children.
Daniel Veillardaa6de472008-08-25 14:53:31 +00002930 * If there is an attribute with equal name, it is first destroyed.
Owen Taylor3473f882001-02-23 17:55:21 +00002931 *
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002932 * Returns the new node or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00002933 */
2934xmlNodePtr
2935xmlAddNextSibling(xmlNodePtr cur, xmlNodePtr elem) {
2936 if (cur == NULL) {
2937#ifdef DEBUG_TREE
2938 xmlGenericError(xmlGenericErrorContext,
2939 "xmlAddNextSibling : cur == NULL\n");
2940#endif
2941 return(NULL);
2942 }
2943 if (elem == NULL) {
2944#ifdef DEBUG_TREE
2945 xmlGenericError(xmlGenericErrorContext,
2946 "xmlAddNextSibling : elem == NULL\n");
2947#endif
2948 return(NULL);
2949 }
2950
Rob Richards19dc9612005-10-28 16:15:16 +00002951 if (cur == elem) {
2952#ifdef DEBUG_TREE
2953 xmlGenericError(xmlGenericErrorContext,
2954 "xmlAddNextSibling : cur == elem\n");
2955#endif
2956 return(NULL);
2957 }
2958
Owen Taylor3473f882001-02-23 17:55:21 +00002959 xmlUnlinkNode(elem);
2960
2961 if (elem->type == XML_TEXT_NODE) {
2962 if (cur->type == XML_TEXT_NODE) {
Owen Taylor3473f882001-02-23 17:55:21 +00002963 xmlNodeAddContent(cur, elem->content);
Owen Taylor3473f882001-02-23 17:55:21 +00002964 xmlFreeNode(elem);
2965 return(cur);
2966 }
Daniel Veillard9e1c72d2001-08-31 20:03:19 +00002967 if ((cur->next != NULL) && (cur->next->type == XML_TEXT_NODE) &&
2968 (cur->name == cur->next->name)) {
Owen Taylor3473f882001-02-23 17:55:21 +00002969 xmlChar *tmp;
2970
2971 tmp = xmlStrdup(elem->content);
2972 tmp = xmlStrcat(tmp, cur->next->content);
2973 xmlNodeSetContent(cur->next, tmp);
2974 xmlFree(tmp);
Owen Taylor3473f882001-02-23 17:55:21 +00002975 xmlFreeNode(elem);
2976 return(cur->next);
2977 }
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002978 } else if (elem->type == XML_ATTRIBUTE_NODE) {
Rob Richards65815122006-02-25 17:13:33 +00002979 return xmlAddPropSibling(cur, cur, elem);
Owen Taylor3473f882001-02-23 17:55:21 +00002980 }
2981
2982 if (elem->doc != cur->doc) {
2983 xmlSetTreeDoc(elem, cur->doc);
2984 }
2985 elem->parent = cur->parent;
2986 elem->prev = cur;
2987 elem->next = cur->next;
2988 cur->next = elem;
2989 if (elem->next != NULL)
2990 elem->next->prev = elem;
Rob Richards65815122006-02-25 17:13:33 +00002991 if ((elem->parent != NULL) && (elem->parent->last == cur))
Owen Taylor3473f882001-02-23 17:55:21 +00002992 elem->parent->last = elem;
2993 return(elem);
2994}
2995
William M. Brack21e4ef22005-01-02 09:53:13 +00002996#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || \
2997 defined(LIBXML_SCHEMAS_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00002998/**
2999 * xmlAddPrevSibling:
3000 * @cur: the child node
3001 * @elem: the new node
3002 *
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003003 * Add a new node @elem as the previous sibling of @cur
Owen Taylor3473f882001-02-23 17:55:21 +00003004 * merging adjacent TEXT nodes (@elem may be freed)
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003005 * If the new node was already inserted in a document it is
Owen Taylor3473f882001-02-23 17:55:21 +00003006 * first unlinked from its existing context.
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003007 * If the new node is ATTRIBUTE, it is added into properties instead of children.
Daniel Veillardaa6de472008-08-25 14:53:31 +00003008 * If there is an attribute with equal name, it is first destroyed.
Owen Taylor3473f882001-02-23 17:55:21 +00003009 *
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003010 * Returns the new node or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00003011 */
3012xmlNodePtr
3013xmlAddPrevSibling(xmlNodePtr cur, xmlNodePtr elem) {
3014 if (cur == NULL) {
3015#ifdef DEBUG_TREE
3016 xmlGenericError(xmlGenericErrorContext,
3017 "xmlAddPrevSibling : cur == NULL\n");
3018#endif
3019 return(NULL);
3020 }
3021 if (elem == NULL) {
3022#ifdef DEBUG_TREE
3023 xmlGenericError(xmlGenericErrorContext,
3024 "xmlAddPrevSibling : elem == NULL\n");
3025#endif
3026 return(NULL);
3027 }
3028
Rob Richards19dc9612005-10-28 16:15:16 +00003029 if (cur == elem) {
3030#ifdef DEBUG_TREE
3031 xmlGenericError(xmlGenericErrorContext,
3032 "xmlAddPrevSibling : cur == elem\n");
3033#endif
3034 return(NULL);
3035 }
3036
Owen Taylor3473f882001-02-23 17:55:21 +00003037 xmlUnlinkNode(elem);
3038
3039 if (elem->type == XML_TEXT_NODE) {
3040 if (cur->type == XML_TEXT_NODE) {
Owen Taylor3473f882001-02-23 17:55:21 +00003041 xmlChar *tmp;
3042
3043 tmp = xmlStrdup(elem->content);
3044 tmp = xmlStrcat(tmp, cur->content);
3045 xmlNodeSetContent(cur, tmp);
3046 xmlFree(tmp);
Owen Taylor3473f882001-02-23 17:55:21 +00003047 xmlFreeNode(elem);
3048 return(cur);
3049 }
Daniel Veillard9e1c72d2001-08-31 20:03:19 +00003050 if ((cur->prev != NULL) && (cur->prev->type == XML_TEXT_NODE) &&
3051 (cur->name == cur->prev->name)) {
Owen Taylor3473f882001-02-23 17:55:21 +00003052 xmlNodeAddContent(cur->prev, elem->content);
Owen Taylor3473f882001-02-23 17:55:21 +00003053 xmlFreeNode(elem);
3054 return(cur->prev);
3055 }
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003056 } else if (elem->type == XML_ATTRIBUTE_NODE) {
Rob Richards65815122006-02-25 17:13:33 +00003057 return xmlAddPropSibling(cur->prev, cur, elem);
Owen Taylor3473f882001-02-23 17:55:21 +00003058 }
3059
3060 if (elem->doc != cur->doc) {
3061 xmlSetTreeDoc(elem, cur->doc);
3062 }
3063 elem->parent = cur->parent;
3064 elem->next = cur;
3065 elem->prev = cur->prev;
3066 cur->prev = elem;
3067 if (elem->prev != NULL)
3068 elem->prev->next = elem;
Rob Richards65815122006-02-25 17:13:33 +00003069 if ((elem->parent != NULL) && (elem->parent->children == cur)) {
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003070 elem->parent->children = elem;
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003071 }
Owen Taylor3473f882001-02-23 17:55:21 +00003072 return(elem);
3073}
Daniel Veillard652327a2003-09-29 18:02:38 +00003074#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00003075
3076/**
3077 * xmlAddSibling:
3078 * @cur: the child node
3079 * @elem: the new node
3080 *
3081 * Add a new element @elem to the list of siblings of @cur
3082 * merging adjacent TEXT nodes (@elem may be freed)
3083 * If the new element was already inserted in a document it is
3084 * first unlinked from its existing context.
3085 *
3086 * Returns the new element or NULL in case of error.
3087 */
3088xmlNodePtr
3089xmlAddSibling(xmlNodePtr cur, xmlNodePtr elem) {
3090 xmlNodePtr parent;
3091
3092 if (cur == NULL) {
3093#ifdef DEBUG_TREE
3094 xmlGenericError(xmlGenericErrorContext,
3095 "xmlAddSibling : cur == NULL\n");
3096#endif
3097 return(NULL);
3098 }
3099
3100 if (elem == NULL) {
3101#ifdef DEBUG_TREE
3102 xmlGenericError(xmlGenericErrorContext,
3103 "xmlAddSibling : elem == NULL\n");
3104#endif
3105 return(NULL);
3106 }
3107
Daniel Veillard43bc89c2009-03-23 19:32:04 +00003108 if (cur == elem) {
3109#ifdef DEBUG_TREE
3110 xmlGenericError(xmlGenericErrorContext,
3111 "xmlAddSibling : cur == elem\n");
3112#endif
3113 return(NULL);
3114 }
3115
Owen Taylor3473f882001-02-23 17:55:21 +00003116 /*
3117 * Constant time is we can rely on the ->parent->last to find
3118 * the last sibling.
3119 */
Daniel Veillardaa6de472008-08-25 14:53:31 +00003120 if ((cur->type != XML_ATTRIBUTE_NODE) && (cur->parent != NULL) &&
Owen Taylor3473f882001-02-23 17:55:21 +00003121 (cur->parent->children != NULL) &&
3122 (cur->parent->last != NULL) &&
3123 (cur->parent->last->next == NULL)) {
3124 cur = cur->parent->last;
3125 } else {
3126 while (cur->next != NULL) cur = cur->next;
3127 }
3128
3129 xmlUnlinkNode(elem);
3130
Daniel Veillarde22dd5c2003-10-29 12:53:27 +00003131 if ((cur->type == XML_TEXT_NODE) && (elem->type == XML_TEXT_NODE) &&
3132 (cur->name == elem->name)) {
Owen Taylor3473f882001-02-23 17:55:21 +00003133 xmlNodeAddContent(cur, elem->content);
Owen Taylor3473f882001-02-23 17:55:21 +00003134 xmlFreeNode(elem);
3135 return(cur);
Rob Richards65815122006-02-25 17:13:33 +00003136 } else if (elem->type == XML_ATTRIBUTE_NODE) {
3137 return xmlAddPropSibling(cur, cur, elem);
Owen Taylor3473f882001-02-23 17:55:21 +00003138 }
3139
3140 if (elem->doc != cur->doc) {
3141 xmlSetTreeDoc(elem, cur->doc);
3142 }
3143 parent = cur->parent;
3144 elem->prev = cur;
3145 elem->next = NULL;
3146 elem->parent = parent;
3147 cur->next = elem;
3148 if (parent != NULL)
3149 parent->last = elem;
3150
3151 return(elem);
3152}
3153
3154/**
3155 * xmlAddChildList:
3156 * @parent: the parent node
3157 * @cur: the first node in the list
3158 *
3159 * Add a list of node at the end of the child list of the parent
3160 * merging adjacent TEXT nodes (@cur may be freed)
3161 *
3162 * Returns the last child or NULL in case of error.
3163 */
3164xmlNodePtr
3165xmlAddChildList(xmlNodePtr parent, xmlNodePtr cur) {
3166 xmlNodePtr prev;
3167
3168 if (parent == NULL) {
3169#ifdef DEBUG_TREE
3170 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00003171 "xmlAddChildList : parent == NULL\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003172#endif
3173 return(NULL);
3174 }
3175
3176 if (cur == NULL) {
3177#ifdef DEBUG_TREE
3178 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00003179 "xmlAddChildList : child == NULL\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003180#endif
3181 return(NULL);
3182 }
3183
3184 if ((cur->doc != NULL) && (parent->doc != NULL) &&
3185 (cur->doc != parent->doc)) {
3186#ifdef DEBUG_TREE
3187 xmlGenericError(xmlGenericErrorContext,
3188 "Elements moved to a different document\n");
3189#endif
3190 }
3191
3192 /*
3193 * add the first element at the end of the children list.
3194 */
Daniel Veillard5335dc52003-01-01 20:59:38 +00003195
Owen Taylor3473f882001-02-23 17:55:21 +00003196 if (parent->children == NULL) {
3197 parent->children = cur;
3198 } else {
3199 /*
3200 * If cur and parent->last both are TEXT nodes, then merge them.
3201 */
Daniel Veillardaa6de472008-08-25 14:53:31 +00003202 if ((cur->type == XML_TEXT_NODE) &&
Owen Taylor3473f882001-02-23 17:55:21 +00003203 (parent->last->type == XML_TEXT_NODE) &&
3204 (cur->name == parent->last->name)) {
Daniel Veillardaa6de472008-08-25 14:53:31 +00003205 xmlNodeAddContent(parent->last, cur->content);
Owen Taylor3473f882001-02-23 17:55:21 +00003206 /*
3207 * if it's the only child, nothing more to be done.
3208 */
3209 if (cur->next == NULL) {
3210 xmlFreeNode(cur);
3211 return(parent->last);
3212 }
3213 prev = cur;
3214 cur = cur->next;
3215 xmlFreeNode(prev);
3216 }
3217 prev = parent->last;
3218 prev->next = cur;
3219 cur->prev = prev;
3220 }
3221 while (cur->next != NULL) {
3222 cur->parent = parent;
3223 if (cur->doc != parent->doc) {
3224 xmlSetTreeDoc(cur, parent->doc);
3225 }
3226 cur = cur->next;
3227 }
3228 cur->parent = parent;
Rob Richards810a78b2008-12-31 22:13:57 +00003229 /* the parent may not be linked to a doc ! */
3230 if (cur->doc != parent->doc) {
3231 xmlSetTreeDoc(cur, parent->doc);
3232 }
Owen Taylor3473f882001-02-23 17:55:21 +00003233 parent->last = cur;
3234
3235 return(cur);
3236}
3237
3238/**
3239 * xmlAddChild:
3240 * @parent: the parent node
3241 * @cur: the child node
3242 *
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003243 * Add a new node to @parent, at the end of the child (or property) list
Owen Taylor3473f882001-02-23 17:55:21 +00003244 * merging adjacent TEXT nodes (in which case @cur is freed)
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003245 * If the new node is ATTRIBUTE, it is added into properties instead of children.
Daniel Veillardaa6de472008-08-25 14:53:31 +00003246 * If there is an attribute with equal name, it is first destroyed.
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003247 *
Owen Taylor3473f882001-02-23 17:55:21 +00003248 * Returns the child or NULL in case of error.
3249 */
3250xmlNodePtr
3251xmlAddChild(xmlNodePtr parent, xmlNodePtr cur) {
3252 xmlNodePtr prev;
3253
3254 if (parent == NULL) {
3255#ifdef DEBUG_TREE
3256 xmlGenericError(xmlGenericErrorContext,
3257 "xmlAddChild : parent == NULL\n");
3258#endif
3259 return(NULL);
3260 }
3261
3262 if (cur == NULL) {
3263#ifdef DEBUG_TREE
3264 xmlGenericError(xmlGenericErrorContext,
3265 "xmlAddChild : child == NULL\n");
3266#endif
3267 return(NULL);
3268 }
3269
Rob Richards19dc9612005-10-28 16:15:16 +00003270 if (parent == cur) {
3271#ifdef DEBUG_TREE
3272 xmlGenericError(xmlGenericErrorContext,
3273 "xmlAddChild : parent == cur\n");
3274#endif
3275 return(NULL);
3276 }
Owen Taylor3473f882001-02-23 17:55:21 +00003277 /*
3278 * If cur is a TEXT node, merge its content with adjacent TEXT nodes
Owen Taylor3473f882001-02-23 17:55:21 +00003279 * cur is then freed.
3280 */
3281 if (cur->type == XML_TEXT_NODE) {
Daniel Veillard7db37732001-07-12 01:20:08 +00003282 if ((parent->type == XML_TEXT_NODE) &&
Daniel Veillard5335dc52003-01-01 20:59:38 +00003283 (parent->content != NULL) &&
Rob Richards19dc9612005-10-28 16:15:16 +00003284 (parent->name == cur->name)) {
Owen Taylor3473f882001-02-23 17:55:21 +00003285 xmlNodeAddContent(parent, cur->content);
Owen Taylor3473f882001-02-23 17:55:21 +00003286 xmlFreeNode(cur);
3287 return(parent);
3288 }
3289 if ((parent->last != NULL) && (parent->last->type == XML_TEXT_NODE) &&
Daniel Veillard5335dc52003-01-01 20:59:38 +00003290 (parent->last->name == cur->name) &&
3291 (parent->last != cur)) {
Owen Taylor3473f882001-02-23 17:55:21 +00003292 xmlNodeAddContent(parent->last, cur->content);
Owen Taylor3473f882001-02-23 17:55:21 +00003293 xmlFreeNode(cur);
3294 return(parent->last);
3295 }
3296 }
3297
3298 /*
3299 * add the new element at the end of the children list.
3300 */
Daniel Veillard5335dc52003-01-01 20:59:38 +00003301 prev = cur->parent;
Owen Taylor3473f882001-02-23 17:55:21 +00003302 cur->parent = parent;
3303 if (cur->doc != parent->doc) {
3304 xmlSetTreeDoc(cur, parent->doc);
3305 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00003306 /* this check prevents a loop on tree-traversions if a developer
3307 * tries to add a node to its parent multiple times
3308 */
3309 if (prev == parent)
3310 return(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00003311
3312 /*
Daniel Veillard7db37732001-07-12 01:20:08 +00003313 * Coalescing
Owen Taylor3473f882001-02-23 17:55:21 +00003314 */
Daniel Veillard7db37732001-07-12 01:20:08 +00003315 if ((parent->type == XML_TEXT_NODE) &&
Daniel Veillard5335dc52003-01-01 20:59:38 +00003316 (parent->content != NULL) &&
3317 (parent != cur)) {
Daniel Veillard7db37732001-07-12 01:20:08 +00003318 xmlNodeAddContent(parent, cur->content);
Daniel Veillard7db37732001-07-12 01:20:08 +00003319 xmlFreeNode(cur);
3320 return(parent);
Owen Taylor3473f882001-02-23 17:55:21 +00003321 }
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003322 if (cur->type == XML_ATTRIBUTE_NODE) {
Rob Richards19dc9612005-10-28 16:15:16 +00003323 if (parent->type != XML_ELEMENT_NODE)
3324 return(NULL);
Rob Richards810a78b2008-12-31 22:13:57 +00003325 if (parent->properties != NULL) {
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003326 /* check if an attribute with the same name exists */
3327 xmlAttrPtr lastattr;
Owen Taylor3473f882001-02-23 17:55:21 +00003328
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003329 if (cur->ns == NULL)
Rob Richardsc342ec62005-10-25 00:10:12 +00003330 lastattr = xmlHasNsProp(parent, cur->name, NULL);
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003331 else
3332 lastattr = xmlHasNsProp(parent, cur->name, cur->ns->href);
Rob Richardsc342ec62005-10-25 00:10:12 +00003333 if ((lastattr != NULL) && (lastattr != (xmlAttrPtr) cur) && (lastattr->type != XML_ATTRIBUTE_DECL)) {
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003334 /* different instance, destroy it (attributes must be unique) */
Rob Richards19dc9612005-10-28 16:15:16 +00003335 xmlUnlinkNode((xmlNodePtr) lastattr);
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003336 xmlFreeProp(lastattr);
3337 }
Rob Richards19dc9612005-10-28 16:15:16 +00003338 if (lastattr == (xmlAttrPtr) cur)
3339 return(cur);
Rob Richards810a78b2008-12-31 22:13:57 +00003340
3341 }
3342 if (parent->properties == NULL) {
3343 parent->properties = (xmlAttrPtr) cur;
3344 } else {
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003345 /* find the end */
Rob Richards810a78b2008-12-31 22:13:57 +00003346 xmlAttrPtr lastattr = parent->properties;
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003347 while (lastattr->next != NULL) {
3348 lastattr = lastattr->next;
3349 }
3350 lastattr->next = (xmlAttrPtr) cur;
3351 ((xmlAttrPtr) cur)->prev = lastattr;
3352 }
3353 } else {
3354 if (parent->children == NULL) {
3355 parent->children = cur;
3356 parent->last = cur;
3357 } else {
3358 prev = parent->last;
3359 prev->next = cur;
3360 cur->prev = prev;
3361 parent->last = cur;
3362 }
3363 }
Owen Taylor3473f882001-02-23 17:55:21 +00003364 return(cur);
3365}
3366
3367/**
3368 * xmlGetLastChild:
3369 * @parent: the parent node
3370 *
3371 * Search the last child of a node.
3372 * Returns the last child or NULL if none.
3373 */
3374xmlNodePtr
3375xmlGetLastChild(xmlNodePtr parent) {
3376 if (parent == NULL) {
3377#ifdef DEBUG_TREE
3378 xmlGenericError(xmlGenericErrorContext,
3379 "xmlGetLastChild : parent == NULL\n");
3380#endif
3381 return(NULL);
3382 }
3383 return(parent->last);
3384}
3385
Daniel Veillardbe2bd6a2008-11-27 15:26:28 +00003386#ifdef LIBXML_TREE_ENABLED
3387/*
3388 * 5 interfaces from DOM ElementTraversal
3389 */
3390
3391/**
3392 * xmlChildElementCount:
3393 * @parent: the parent node
3394 *
3395 * Finds the current number of child nodes of that element which are
3396 * element nodes.
3397 * Note the handling of entities references is different than in
3398 * the W3C DOM element traversal spec since we don't have back reference
3399 * from entities content to entities references.
3400 *
3401 * Returns the count of element child or 0 if not available
3402 */
3403unsigned long
3404xmlChildElementCount(xmlNodePtr parent) {
3405 unsigned long ret = 0;
3406 xmlNodePtr cur = NULL;
3407
3408 if (parent == NULL)
3409 return(0);
3410 switch (parent->type) {
3411 case XML_ELEMENT_NODE:
3412 case XML_ENTITY_NODE:
3413 case XML_DOCUMENT_NODE:
3414 case XML_HTML_DOCUMENT_NODE:
3415 cur = parent->children;
3416 break;
3417 default:
3418 return(0);
3419 }
3420 while (cur != NULL) {
3421 if (cur->type == XML_ELEMENT_NODE)
3422 ret++;
3423 cur = cur->next;
3424 }
3425 return(ret);
3426}
3427
3428/**
3429 * xmlFirstElementChild:
3430 * @parent: the parent node
3431 *
3432 * Finds the first child node of that element which is a Element node
3433 * Note the handling of entities references is different than in
3434 * the W3C DOM element traversal spec since we don't have back reference
3435 * from entities content to entities references.
3436 *
3437 * Returns the first element child or NULL if not available
3438 */
3439xmlNodePtr
3440xmlFirstElementChild(xmlNodePtr parent) {
3441 xmlNodePtr cur = NULL;
3442
3443 if (parent == NULL)
3444 return(NULL);
3445 switch (parent->type) {
3446 case XML_ELEMENT_NODE:
3447 case XML_ENTITY_NODE:
3448 case XML_DOCUMENT_NODE:
3449 case XML_HTML_DOCUMENT_NODE:
3450 cur = parent->children;
3451 break;
3452 default:
3453 return(NULL);
3454 }
3455 while (cur != NULL) {
3456 if (cur->type == XML_ELEMENT_NODE)
3457 return(cur);
3458 cur = cur->next;
3459 }
3460 return(NULL);
3461}
3462
3463/**
3464 * xmlLastElementChild:
3465 * @parent: the parent node
3466 *
3467 * Finds the last child node of that element which is a Element node
3468 * Note the handling of entities references is different than in
3469 * the W3C DOM element traversal spec since we don't have back reference
3470 * from entities content to entities references.
3471 *
3472 * Returns the last element child or NULL if not available
3473 */
3474xmlNodePtr
3475xmlLastElementChild(xmlNodePtr parent) {
3476 xmlNodePtr cur = NULL;
3477
3478 if (parent == NULL)
3479 return(NULL);
3480 switch (parent->type) {
3481 case XML_ELEMENT_NODE:
3482 case XML_ENTITY_NODE:
3483 case XML_DOCUMENT_NODE:
3484 case XML_HTML_DOCUMENT_NODE:
3485 cur = parent->last;
3486 break;
3487 default:
3488 return(NULL);
3489 }
3490 while (cur != NULL) {
3491 if (cur->type == XML_ELEMENT_NODE)
3492 return(cur);
3493 cur = cur->prev;
3494 }
3495 return(NULL);
3496}
3497
3498/**
3499 * xmlPreviousElementSibling:
3500 * @node: the current node
3501 *
3502 * Finds the first closest previous sibling of the node which is an
3503 * element node.
3504 * Note the handling of entities references is different than in
3505 * the W3C DOM element traversal spec since we don't have back reference
3506 * from entities content to entities references.
3507 *
3508 * Returns the previous element sibling or NULL if not available
3509 */
3510xmlNodePtr
3511xmlPreviousElementSibling(xmlNodePtr node) {
3512 if (node == NULL)
3513 return(NULL);
3514 switch (node->type) {
3515 case XML_ELEMENT_NODE:
3516 case XML_TEXT_NODE:
3517 case XML_CDATA_SECTION_NODE:
3518 case XML_ENTITY_REF_NODE:
3519 case XML_ENTITY_NODE:
3520 case XML_PI_NODE:
3521 case XML_COMMENT_NODE:
3522 case XML_XINCLUDE_START:
3523 case XML_XINCLUDE_END:
3524 node = node->prev;
3525 break;
3526 default:
3527 return(NULL);
3528 }
3529 while (node != NULL) {
3530 if (node->type == XML_ELEMENT_NODE)
3531 return(node);
3532 node = node->next;
3533 }
3534 return(NULL);
3535}
3536
3537/**
3538 * xmlNextElementSibling:
3539 * @node: the current node
3540 *
3541 * Finds the first closest next sibling of the node which is an
3542 * element node.
3543 * Note the handling of entities references is different than in
3544 * the W3C DOM element traversal spec since we don't have back reference
3545 * from entities content to entities references.
3546 *
3547 * Returns the next element sibling or NULL if not available
3548 */
3549xmlNodePtr
3550xmlNextElementSibling(xmlNodePtr node) {
3551 if (node == NULL)
3552 return(NULL);
3553 switch (node->type) {
3554 case XML_ELEMENT_NODE:
3555 case XML_TEXT_NODE:
3556 case XML_CDATA_SECTION_NODE:
3557 case XML_ENTITY_REF_NODE:
3558 case XML_ENTITY_NODE:
3559 case XML_PI_NODE:
3560 case XML_COMMENT_NODE:
3561 case XML_DTD_NODE:
3562 case XML_XINCLUDE_START:
3563 case XML_XINCLUDE_END:
3564 node = node->next;
3565 break;
3566 default:
3567 return(NULL);
3568 }
3569 while (node != NULL) {
3570 if (node->type == XML_ELEMENT_NODE)
3571 return(node);
3572 node = node->next;
3573 }
3574 return(NULL);
3575}
3576
3577#endif /* LIBXML_TREE_ENABLED */
3578
Owen Taylor3473f882001-02-23 17:55:21 +00003579/**
3580 * xmlFreeNodeList:
3581 * @cur: the first node in the list
3582 *
3583 * Free a node and all its siblings, this is a recursive behaviour, all
3584 * the children are freed too.
3585 */
3586void
3587xmlFreeNodeList(xmlNodePtr cur) {
3588 xmlNodePtr next;
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003589 xmlDictPtr dict = NULL;
3590
3591 if (cur == NULL) return;
Daniel Veillarde6a55192002-01-14 17:11:53 +00003592 if (cur->type == XML_NAMESPACE_DECL) {
3593 xmlFreeNsList((xmlNsPtr) cur);
3594 return;
3595 }
Daniel Veillard9adc0462003-03-24 18:39:54 +00003596 if ((cur->type == XML_DOCUMENT_NODE) ||
3597#ifdef LIBXML_DOCB_ENABLED
3598 (cur->type == XML_DOCB_DOCUMENT_NODE) ||
Daniel Veillard9adc0462003-03-24 18:39:54 +00003599#endif
Daniel Veillard6560a422003-03-27 21:25:38 +00003600 (cur->type == XML_HTML_DOCUMENT_NODE)) {
Daniel Veillard9adc0462003-03-24 18:39:54 +00003601 xmlFreeDoc((xmlDocPtr) cur);
3602 return;
3603 }
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003604 if (cur->doc != NULL) dict = cur->doc->dict;
Owen Taylor3473f882001-02-23 17:55:21 +00003605 while (cur != NULL) {
3606 next = cur->next;
Daniel Veillard02141ea2001-04-30 11:46:40 +00003607 if (cur->type != XML_DTD_NODE) {
Daniel Veillard5335dc52003-01-01 20:59:38 +00003608
Daniel Veillarda880b122003-04-21 21:36:41 +00003609 if ((__xmlRegisterCallbacks) && (xmlDeregisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00003610 xmlDeregisterNodeDefaultValue(cur);
3611
Daniel Veillard02141ea2001-04-30 11:46:40 +00003612 if ((cur->children != NULL) &&
3613 (cur->type != XML_ENTITY_REF_NODE))
3614 xmlFreeNodeList(cur->children);
Daniel Veillard01c13b52002-12-10 15:19:08 +00003615 if (((cur->type == XML_ELEMENT_NODE) ||
3616 (cur->type == XML_XINCLUDE_START) ||
3617 (cur->type == XML_XINCLUDE_END)) &&
Daniel Veillarde1ca5032002-12-09 14:13:43 +00003618 (cur->properties != NULL))
Daniel Veillard02141ea2001-04-30 11:46:40 +00003619 xmlFreePropList(cur->properties);
Daniel Veillard7db37732001-07-12 01:20:08 +00003620 if ((cur->type != XML_ELEMENT_NODE) &&
3621 (cur->type != XML_XINCLUDE_START) &&
3622 (cur->type != XML_XINCLUDE_END) &&
Daniel Veillard8874b942005-08-25 13:19:21 +00003623 (cur->type != XML_ENTITY_REF_NODE) &&
3624 (cur->content != (xmlChar *) &(cur->properties))) {
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003625 DICT_FREE(cur->content)
Daniel Veillard7db37732001-07-12 01:20:08 +00003626 }
3627 if (((cur->type == XML_ELEMENT_NODE) ||
3628 (cur->type == XML_XINCLUDE_START) ||
3629 (cur->type == XML_XINCLUDE_END)) &&
3630 (cur->nsDef != NULL))
3631 xmlFreeNsList(cur->nsDef);
3632
Daniel Veillard9cc6dc62001-06-11 08:09:20 +00003633 /*
3634 * When a node is a text node or a comment, it uses a global static
3635 * variable for the name of the node.
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003636 * Otherwise the node name might come from the document's
3637 * dictionnary
Daniel Veillard9cc6dc62001-06-11 08:09:20 +00003638 */
Daniel Veillard02141ea2001-04-30 11:46:40 +00003639 if ((cur->name != NULL) &&
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003640 (cur->type != XML_TEXT_NODE) &&
3641 (cur->type != XML_COMMENT_NODE))
3642 DICT_FREE(cur->name)
Daniel Veillard02141ea2001-04-30 11:46:40 +00003643 xmlFree(cur);
3644 }
Owen Taylor3473f882001-02-23 17:55:21 +00003645 cur = next;
3646 }
3647}
3648
3649/**
3650 * xmlFreeNode:
3651 * @cur: the node
3652 *
3653 * Free a node, this is a recursive behaviour, all the children are freed too.
3654 * This doesn't unlink the child from the list, use xmlUnlinkNode() first.
3655 */
3656void
3657xmlFreeNode(xmlNodePtr cur) {
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003658 xmlDictPtr dict = NULL;
3659
3660 if (cur == NULL) return;
Daniel Veillard5335dc52003-01-01 20:59:38 +00003661
Daniel Veillard02141ea2001-04-30 11:46:40 +00003662 /* use xmlFreeDtd for DTD nodes */
Daniel Veillarde6a55192002-01-14 17:11:53 +00003663 if (cur->type == XML_DTD_NODE) {
3664 xmlFreeDtd((xmlDtdPtr) cur);
Owen Taylor3473f882001-02-23 17:55:21 +00003665 return;
Daniel Veillarde6a55192002-01-14 17:11:53 +00003666 }
3667 if (cur->type == XML_NAMESPACE_DECL) {
3668 xmlFreeNs((xmlNsPtr) cur);
3669 return;
3670 }
Daniel Veillarda70d62f2002-11-07 14:18:03 +00003671 if (cur->type == XML_ATTRIBUTE_NODE) {
3672 xmlFreeProp((xmlAttrPtr) cur);
3673 return;
3674 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00003675
Daniel Veillarda880b122003-04-21 21:36:41 +00003676 if ((__xmlRegisterCallbacks) && (xmlDeregisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00003677 xmlDeregisterNodeDefaultValue(cur);
3678
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003679 if (cur->doc != NULL) dict = cur->doc->dict;
3680
Daniel Veillard2cba4152008-08-27 11:45:41 +00003681 if (cur->type == XML_ENTITY_DECL) {
3682 xmlEntityPtr ent = (xmlEntityPtr) cur;
3683 DICT_FREE(ent->SystemID);
3684 DICT_FREE(ent->ExternalID);
3685 }
Owen Taylor3473f882001-02-23 17:55:21 +00003686 if ((cur->children != NULL) &&
3687 (cur->type != XML_ENTITY_REF_NODE))
3688 xmlFreeNodeList(cur->children);
Daniel Veillard01c13b52002-12-10 15:19:08 +00003689 if (((cur->type == XML_ELEMENT_NODE) ||
3690 (cur->type == XML_XINCLUDE_START) ||
3691 (cur->type == XML_XINCLUDE_END)) &&
3692 (cur->properties != NULL))
Daniel Veillard02141ea2001-04-30 11:46:40 +00003693 xmlFreePropList(cur->properties);
Daniel Veillard7db37732001-07-12 01:20:08 +00003694 if ((cur->type != XML_ELEMENT_NODE) &&
3695 (cur->content != NULL) &&
3696 (cur->type != XML_ENTITY_REF_NODE) &&
3697 (cur->type != XML_XINCLUDE_END) &&
Daniel Veillard8874b942005-08-25 13:19:21 +00003698 (cur->type != XML_XINCLUDE_START) &&
3699 (cur->content != (xmlChar *) &(cur->properties))) {
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003700 DICT_FREE(cur->content)
Daniel Veillard7db37732001-07-12 01:20:08 +00003701 }
3702
Daniel Veillardacd370f2001-06-09 17:17:51 +00003703 /*
3704 * When a node is a text node or a comment, it uses a global static
3705 * variable for the name of the node.
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003706 * Otherwise the node name might come from the document's dictionnary
Daniel Veillardacd370f2001-06-09 17:17:51 +00003707 */
Owen Taylor3473f882001-02-23 17:55:21 +00003708 if ((cur->name != NULL) &&
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003709 (cur->type != XML_TEXT_NODE) &&
3710 (cur->type != XML_COMMENT_NODE))
3711 DICT_FREE(cur->name)
Daniel Veillardacd370f2001-06-09 17:17:51 +00003712
Daniel Veillarde1ca5032002-12-09 14:13:43 +00003713 if (((cur->type == XML_ELEMENT_NODE) ||
3714 (cur->type == XML_XINCLUDE_START) ||
3715 (cur->type == XML_XINCLUDE_END)) &&
3716 (cur->nsDef != NULL))
3717 xmlFreeNsList(cur->nsDef);
Owen Taylor3473f882001-02-23 17:55:21 +00003718 xmlFree(cur);
3719}
3720
3721/**
3722 * xmlUnlinkNode:
3723 * @cur: the node
3724 *
3725 * Unlink a node from it's current context, the node is not freed
3726 */
3727void
3728xmlUnlinkNode(xmlNodePtr cur) {
3729 if (cur == NULL) {
3730#ifdef DEBUG_TREE
3731 xmlGenericError(xmlGenericErrorContext,
3732 "xmlUnlinkNode : node == NULL\n");
3733#endif
3734 return;
3735 }
Daniel Veillard29e43992001-12-13 22:21:58 +00003736 if (cur->type == XML_DTD_NODE) {
3737 xmlDocPtr doc;
3738 doc = cur->doc;
Daniel Veillarda067e652003-05-01 08:03:46 +00003739 if (doc != NULL) {
3740 if (doc->intSubset == (xmlDtdPtr) cur)
3741 doc->intSubset = NULL;
3742 if (doc->extSubset == (xmlDtdPtr) cur)
3743 doc->extSubset = NULL;
3744 }
Daniel Veillard29e43992001-12-13 22:21:58 +00003745 }
Daniel Veillard2cba4152008-08-27 11:45:41 +00003746 if (cur->type == XML_ENTITY_DECL) {
3747 xmlDocPtr doc;
3748 doc = cur->doc;
3749 if (doc != NULL) {
3750 if (doc->intSubset != NULL) {
3751 if (xmlHashLookup(doc->intSubset->entities, cur->name) == cur)
3752 xmlHashRemoveEntry(doc->intSubset->entities, cur->name,
3753 NULL);
3754 if (xmlHashLookup(doc->intSubset->pentities, cur->name) == cur)
3755 xmlHashRemoveEntry(doc->intSubset->pentities, cur->name,
3756 NULL);
3757 }
3758 if (doc->extSubset != NULL) {
3759 if (xmlHashLookup(doc->extSubset->entities, cur->name) == cur)
3760 xmlHashRemoveEntry(doc->extSubset->entities, cur->name,
3761 NULL);
3762 if (xmlHashLookup(doc->extSubset->pentities, cur->name) == cur)
3763 xmlHashRemoveEntry(doc->extSubset->pentities, cur->name,
3764 NULL);
3765 }
3766 }
3767 }
Daniel Veillardc169f8b2002-01-22 21:40:13 +00003768 if (cur->parent != NULL) {
3769 xmlNodePtr parent;
3770 parent = cur->parent;
3771 if (cur->type == XML_ATTRIBUTE_NODE) {
3772 if (parent->properties == (xmlAttrPtr) cur)
3773 parent->properties = ((xmlAttrPtr) cur)->next;
3774 } else {
3775 if (parent->children == cur)
3776 parent->children = cur->next;
3777 if (parent->last == cur)
3778 parent->last = cur->prev;
3779 }
3780 cur->parent = NULL;
3781 }
Owen Taylor3473f882001-02-23 17:55:21 +00003782 if (cur->next != NULL)
3783 cur->next->prev = cur->prev;
3784 if (cur->prev != NULL)
3785 cur->prev->next = cur->next;
3786 cur->next = cur->prev = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00003787}
3788
Daniel Veillard2156d432004-03-04 15:59:36 +00003789#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00003790/**
3791 * xmlReplaceNode:
3792 * @old: the old node
3793 * @cur: the node
3794 *
William M. Brackd7cf7f82003-11-14 07:13:16 +00003795 * Unlink the old node from its current context, prune the new one
Daniel Veillardd1640922001-12-17 15:30:10 +00003796 * at the same place. If @cur was already inserted in a document it is
Owen Taylor3473f882001-02-23 17:55:21 +00003797 * first unlinked from its existing context.
3798 *
Daniel Veillardd1640922001-12-17 15:30:10 +00003799 * Returns the @old node
Owen Taylor3473f882001-02-23 17:55:21 +00003800 */
3801xmlNodePtr
3802xmlReplaceNode(xmlNodePtr old, xmlNodePtr cur) {
Daniel Veillardce244ad2004-11-05 10:03:46 +00003803 if (old == cur) return(NULL);
Daniel Veillarda03e3652004-11-02 18:45:30 +00003804 if ((old == NULL) || (old->parent == NULL)) {
Owen Taylor3473f882001-02-23 17:55:21 +00003805#ifdef DEBUG_TREE
3806 xmlGenericError(xmlGenericErrorContext,
Daniel Veillarda03e3652004-11-02 18:45:30 +00003807 "xmlReplaceNode : old == NULL or without parent\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003808#endif
3809 return(NULL);
3810 }
3811 if (cur == NULL) {
3812 xmlUnlinkNode(old);
3813 return(old);
3814 }
3815 if (cur == old) {
3816 return(old);
3817 }
Daniel Veillardc169f8b2002-01-22 21:40:13 +00003818 if ((old->type==XML_ATTRIBUTE_NODE) && (cur->type!=XML_ATTRIBUTE_NODE)) {
3819#ifdef DEBUG_TREE
3820 xmlGenericError(xmlGenericErrorContext,
3821 "xmlReplaceNode : Trying to replace attribute node with other node type\n");
3822#endif
3823 return(old);
3824 }
3825 if ((cur->type==XML_ATTRIBUTE_NODE) && (old->type!=XML_ATTRIBUTE_NODE)) {
3826#ifdef DEBUG_TREE
3827 xmlGenericError(xmlGenericErrorContext,
3828 "xmlReplaceNode : Trying to replace a non-attribute node with attribute node\n");
3829#endif
3830 return(old);
3831 }
Owen Taylor3473f882001-02-23 17:55:21 +00003832 xmlUnlinkNode(cur);
Daniel Veillard64d7d122005-05-11 18:03:42 +00003833 xmlSetTreeDoc(cur, old->doc);
Owen Taylor3473f882001-02-23 17:55:21 +00003834 cur->parent = old->parent;
3835 cur->next = old->next;
3836 if (cur->next != NULL)
3837 cur->next->prev = cur;
3838 cur->prev = old->prev;
3839 if (cur->prev != NULL)
3840 cur->prev->next = cur;
3841 if (cur->parent != NULL) {
Daniel Veillardc169f8b2002-01-22 21:40:13 +00003842 if (cur->type == XML_ATTRIBUTE_NODE) {
3843 if (cur->parent->properties == (xmlAttrPtr)old)
3844 cur->parent->properties = ((xmlAttrPtr) cur);
3845 } else {
3846 if (cur->parent->children == old)
3847 cur->parent->children = cur;
3848 if (cur->parent->last == old)
3849 cur->parent->last = cur;
3850 }
Owen Taylor3473f882001-02-23 17:55:21 +00003851 }
3852 old->next = old->prev = NULL;
3853 old->parent = NULL;
3854 return(old);
3855}
Daniel Veillard652327a2003-09-29 18:02:38 +00003856#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00003857
3858/************************************************************************
3859 * *
3860 * Copy operations *
3861 * *
3862 ************************************************************************/
Daniel Veillardaa6de472008-08-25 14:53:31 +00003863
Owen Taylor3473f882001-02-23 17:55:21 +00003864/**
3865 * xmlCopyNamespace:
3866 * @cur: the namespace
3867 *
3868 * Do a copy of the namespace.
3869 *
Daniel Veillardd1640922001-12-17 15:30:10 +00003870 * Returns: a new #xmlNsPtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00003871 */
3872xmlNsPtr
3873xmlCopyNamespace(xmlNsPtr cur) {
3874 xmlNsPtr ret;
3875
3876 if (cur == NULL) return(NULL);
3877 switch (cur->type) {
3878 case XML_LOCAL_NAMESPACE:
3879 ret = xmlNewNs(NULL, cur->href, cur->prefix);
3880 break;
3881 default:
3882#ifdef DEBUG_TREE
3883 xmlGenericError(xmlGenericErrorContext,
3884 "xmlCopyNamespace: invalid type %d\n", cur->type);
3885#endif
3886 return(NULL);
3887 }
3888 return(ret);
3889}
3890
3891/**
3892 * xmlCopyNamespaceList:
3893 * @cur: the first namespace
3894 *
3895 * Do a copy of an namespace list.
3896 *
Daniel Veillardd1640922001-12-17 15:30:10 +00003897 * Returns: a new #xmlNsPtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00003898 */
3899xmlNsPtr
3900xmlCopyNamespaceList(xmlNsPtr cur) {
3901 xmlNsPtr ret = NULL;
3902 xmlNsPtr p = NULL,q;
3903
3904 while (cur != NULL) {
3905 q = xmlCopyNamespace(cur);
3906 if (p == NULL) {
3907 ret = p = q;
3908 } else {
3909 p->next = q;
3910 p = q;
3911 }
3912 cur = cur->next;
3913 }
3914 return(ret);
3915}
3916
3917static xmlNodePtr
3918xmlStaticCopyNodeList(xmlNodePtr node, xmlDocPtr doc, xmlNodePtr parent);
Rob Richards19dc9612005-10-28 16:15:16 +00003919
3920static xmlAttrPtr
3921xmlCopyPropInternal(xmlDocPtr doc, xmlNodePtr target, xmlAttrPtr cur) {
Owen Taylor3473f882001-02-23 17:55:21 +00003922 xmlAttrPtr ret;
3923
3924 if (cur == NULL) return(NULL);
3925 if (target != NULL)
3926 ret = xmlNewDocProp(target->doc, cur->name, NULL);
Rob Richards19dc9612005-10-28 16:15:16 +00003927 else if (doc != NULL)
3928 ret = xmlNewDocProp(doc, cur->name, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003929 else if (cur->parent != NULL)
3930 ret = xmlNewDocProp(cur->parent->doc, cur->name, NULL);
3931 else if (cur->children != NULL)
3932 ret = xmlNewDocProp(cur->children->doc, cur->name, NULL);
3933 else
3934 ret = xmlNewDocProp(NULL, cur->name, NULL);
3935 if (ret == NULL) return(NULL);
3936 ret->parent = target;
Daniel Veillardd4f41aa2002-03-03 14:13:46 +00003937
Owen Taylor3473f882001-02-23 17:55:21 +00003938 if ((cur->ns != NULL) && (target != NULL)) {
Daniel Veillard8107a222002-01-13 14:10:10 +00003939 xmlNsPtr ns;
Daniel Veillard652327a2003-09-29 18:02:38 +00003940
Daniel Veillardd4f41aa2002-03-03 14:13:46 +00003941 ns = xmlSearchNs(target->doc, target, cur->ns->prefix);
3942 if (ns == NULL) {
3943 /*
3944 * Humm, we are copying an element whose namespace is defined
3945 * out of the new tree scope. Search it in the original tree
3946 * and add it at the top of the new tree
3947 */
3948 ns = xmlSearchNs(cur->doc, cur->parent, cur->ns->prefix);
3949 if (ns != NULL) {
3950 xmlNodePtr root = target;
3951 xmlNodePtr pred = NULL;
3952
3953 while (root->parent != NULL) {
3954 pred = root;
3955 root = root->parent;
3956 }
3957 if (root == (xmlNodePtr) target->doc) {
3958 /* correct possibly cycling above the document elt */
3959 root = pred;
3960 }
3961 ret->ns = xmlNewNs(root, ns->href, ns->prefix);
3962 }
3963 } else {
3964 /*
3965 * we have to find something appropriate here since
3966 * we cant be sure, that the namespce we found is identified
3967 * by the prefix
3968 */
Daniel Veillard044fc6b2002-03-04 17:09:44 +00003969 if (xmlStrEqual(ns->href, cur->ns->href)) {
Daniel Veillardd4f41aa2002-03-03 14:13:46 +00003970 /* this is the nice case */
3971 ret->ns = ns;
3972 } else {
3973 /*
3974 * we are in trouble: we need a new reconcilied namespace.
3975 * This is expensive
3976 */
3977 ret->ns = xmlNewReconciliedNs(target->doc, target, cur->ns);
3978 }
3979 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00003980
Owen Taylor3473f882001-02-23 17:55:21 +00003981 } else
3982 ret->ns = NULL;
3983
3984 if (cur->children != NULL) {
3985 xmlNodePtr tmp;
3986
3987 ret->children = xmlStaticCopyNodeList(cur->children, ret->doc, (xmlNodePtr) ret);
3988 ret->last = NULL;
3989 tmp = ret->children;
3990 while (tmp != NULL) {
3991 /* tmp->parent = (xmlNodePtr)ret; */
3992 if (tmp->next == NULL)
3993 ret->last = tmp;
3994 tmp = tmp->next;
3995 }
3996 }
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00003997 /*
3998 * Try to handle IDs
3999 */
Daniel Veillarda3db2e32002-03-08 15:46:57 +00004000 if ((target!= NULL) && (cur!= NULL) &&
4001 (target->doc != NULL) && (cur->doc != NULL) &&
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00004002 (cur->doc->ids != NULL) && (cur->parent != NULL)) {
4003 if (xmlIsID(cur->doc, cur->parent, cur)) {
4004 xmlChar *id;
4005
4006 id = xmlNodeListGetString(cur->doc, cur->children, 1);
4007 if (id != NULL) {
4008 xmlAddID(NULL, target->doc, id, ret);
4009 xmlFree(id);
4010 }
4011 }
4012 }
Owen Taylor3473f882001-02-23 17:55:21 +00004013 return(ret);
4014}
4015
4016/**
Rob Richards19dc9612005-10-28 16:15:16 +00004017 * xmlCopyProp:
4018 * @target: the element where the attribute will be grafted
4019 * @cur: the attribute
4020 *
4021 * Do a copy of the attribute.
4022 *
4023 * Returns: a new #xmlAttrPtr, or NULL in case of error.
4024 */
4025xmlAttrPtr
4026xmlCopyProp(xmlNodePtr target, xmlAttrPtr cur) {
4027 return xmlCopyPropInternal(NULL, target, cur);
4028}
4029
4030/**
Owen Taylor3473f882001-02-23 17:55:21 +00004031 * xmlCopyPropList:
4032 * @target: the element where the attributes will be grafted
4033 * @cur: the first attribute
4034 *
4035 * Do a copy of an attribute list.
4036 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004037 * Returns: a new #xmlAttrPtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00004038 */
4039xmlAttrPtr
4040xmlCopyPropList(xmlNodePtr target, xmlAttrPtr cur) {
4041 xmlAttrPtr ret = NULL;
4042 xmlAttrPtr p = NULL,q;
4043
4044 while (cur != NULL) {
4045 q = xmlCopyProp(target, cur);
William M. Brack13dfa872004-09-18 04:52:08 +00004046 if (q == NULL)
4047 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00004048 if (p == NULL) {
4049 ret = p = q;
4050 } else {
4051 p->next = q;
4052 q->prev = p;
4053 p = q;
4054 }
4055 cur = cur->next;
4056 }
4057 return(ret);
4058}
4059
4060/*
Daniel Veillardd1640922001-12-17 15:30:10 +00004061 * NOTE about the CopyNode operations !
Owen Taylor3473f882001-02-23 17:55:21 +00004062 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004063 * They are split into external and internal parts for one
Owen Taylor3473f882001-02-23 17:55:21 +00004064 * tricky reason: namespaces. Doing a direct copy of a node
4065 * say RPM:Copyright without changing the namespace pointer to
4066 * something else can produce stale links. One way to do it is
4067 * to keep a reference counter but this doesn't work as soon
4068 * as one move the element or the subtree out of the scope of
4069 * the existing namespace. The actual solution seems to add
4070 * a copy of the namespace at the top of the copied tree if
4071 * not available in the subtree.
4072 * Hence two functions, the public front-end call the inner ones
William M. Brack57e9e912004-03-09 16:19:02 +00004073 * The argument "recursive" normally indicates a recursive copy
4074 * of the node with values 0 (no) and 1 (yes). For XInclude,
4075 * however, we allow a value of 2 to indicate copy properties and
4076 * namespace info, but don't recurse on children.
Owen Taylor3473f882001-02-23 17:55:21 +00004077 */
4078
4079static xmlNodePtr
Daniel Veillard3ec4c612001-08-28 20:39:49 +00004080xmlStaticCopyNode(const xmlNodePtr node, xmlDocPtr doc, xmlNodePtr parent,
William M. Brack57e9e912004-03-09 16:19:02 +00004081 int extended) {
Owen Taylor3473f882001-02-23 17:55:21 +00004082 xmlNodePtr ret;
4083
4084 if (node == NULL) return(NULL);
Daniel Veillard39196eb2001-06-19 18:09:42 +00004085 switch (node->type) {
4086 case XML_TEXT_NODE:
4087 case XML_CDATA_SECTION_NODE:
4088 case XML_ELEMENT_NODE:
Daniel Veillardec6725e2002-09-05 11:12:45 +00004089 case XML_DOCUMENT_FRAG_NODE:
Daniel Veillard39196eb2001-06-19 18:09:42 +00004090 case XML_ENTITY_REF_NODE:
4091 case XML_ENTITY_NODE:
4092 case XML_PI_NODE:
4093 case XML_COMMENT_NODE:
Daniel Veillard1d0bfab2001-07-26 11:49:41 +00004094 case XML_XINCLUDE_START:
4095 case XML_XINCLUDE_END:
4096 break;
4097 case XML_ATTRIBUTE_NODE:
Rob Richards19dc9612005-10-28 16:15:16 +00004098 return((xmlNodePtr) xmlCopyPropInternal(doc, parent, (xmlAttrPtr) node));
Daniel Veillard1d0bfab2001-07-26 11:49:41 +00004099 case XML_NAMESPACE_DECL:
4100 return((xmlNodePtr) xmlCopyNamespaceList((xmlNsPtr) node));
Daniel Veillardaa6de472008-08-25 14:53:31 +00004101
Daniel Veillard39196eb2001-06-19 18:09:42 +00004102 case XML_DOCUMENT_NODE:
4103 case XML_HTML_DOCUMENT_NODE:
4104#ifdef LIBXML_DOCB_ENABLED
4105 case XML_DOCB_DOCUMENT_NODE:
4106#endif
Daniel Veillard652327a2003-09-29 18:02:38 +00004107#ifdef LIBXML_TREE_ENABLED
William M. Brack57e9e912004-03-09 16:19:02 +00004108 return((xmlNodePtr) xmlCopyDoc((xmlDocPtr) node, extended));
Daniel Veillard652327a2003-09-29 18:02:38 +00004109#endif /* LIBXML_TREE_ENABLED */
Daniel Veillard39196eb2001-06-19 18:09:42 +00004110 case XML_DOCUMENT_TYPE_NODE:
Daniel Veillard39196eb2001-06-19 18:09:42 +00004111 case XML_NOTATION_NODE:
4112 case XML_DTD_NODE:
4113 case XML_ELEMENT_DECL:
4114 case XML_ATTRIBUTE_DECL:
4115 case XML_ENTITY_DECL:
4116 return(NULL);
4117 }
Daniel Veillardb33c2012001-04-25 12:59:04 +00004118
Owen Taylor3473f882001-02-23 17:55:21 +00004119 /*
4120 * Allocate a new node and fill the fields.
4121 */
4122 ret = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
4123 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00004124 xmlTreeErrMemory("copying node");
Owen Taylor3473f882001-02-23 17:55:21 +00004125 return(NULL);
4126 }
4127 memset(ret, 0, sizeof(xmlNode));
4128 ret->type = node->type;
4129
4130 ret->doc = doc;
Daniel Veillardaa6de472008-08-25 14:53:31 +00004131 ret->parent = parent;
Owen Taylor3473f882001-02-23 17:55:21 +00004132 if (node->name == xmlStringText)
4133 ret->name = xmlStringText;
4134 else if (node->name == xmlStringTextNoenc)
4135 ret->name = xmlStringTextNoenc;
4136 else if (node->name == xmlStringComment)
4137 ret->name = xmlStringComment;
Daniel Veillard03a53c32004-10-26 16:06:51 +00004138 else if (node->name != NULL) {
4139 if ((doc != NULL) && (doc->dict != NULL))
4140 ret->name = xmlDictLookup(doc->dict, node->name, -1);
4141 else
4142 ret->name = xmlStrdup(node->name);
4143 }
Daniel Veillard7db37732001-07-12 01:20:08 +00004144 if ((node->type != XML_ELEMENT_NODE) &&
4145 (node->content != NULL) &&
4146 (node->type != XML_ENTITY_REF_NODE) &&
4147 (node->type != XML_XINCLUDE_END) &&
4148 (node->type != XML_XINCLUDE_START)) {
Owen Taylor3473f882001-02-23 17:55:21 +00004149 ret->content = xmlStrdup(node->content);
Daniel Veillard8107a222002-01-13 14:10:10 +00004150 }else{
4151 if (node->type == XML_ELEMENT_NODE)
Daniel Veillard3e35f8e2003-10-21 00:05:38 +00004152 ret->line = node->line;
Owen Taylor3473f882001-02-23 17:55:21 +00004153 }
Daniel Veillardacb2bda2002-01-13 16:15:43 +00004154 if (parent != NULL) {
4155 xmlNodePtr tmp;
4156
Daniel Veillard8a1b1852003-01-05 22:37:17 +00004157 /*
4158 * this is a tricky part for the node register thing:
4159 * in case ret does get coalesced in xmlAddChild
4160 * the deregister-node callback is called; so we register ret now already
4161 */
Daniel Veillarda880b122003-04-21 21:36:41 +00004162 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard8a1b1852003-01-05 22:37:17 +00004163 xmlRegisterNodeDefaultValue((xmlNodePtr)ret);
4164
Daniel Veillardacb2bda2002-01-13 16:15:43 +00004165 tmp = xmlAddChild(parent, ret);
4166 /* node could have coalesced */
4167 if (tmp != ret)
4168 return(tmp);
4169 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00004170
William M. Brack57e9e912004-03-09 16:19:02 +00004171 if (!extended)
Daniel Veillard8a1b1852003-01-05 22:37:17 +00004172 goto out;
Petr Pajas2afca4a2009-07-30 17:47:32 +02004173 if (((node->type == XML_ELEMENT_NODE) ||
4174 (node->type == XML_XINCLUDE_START)) && (node->nsDef != NULL))
Owen Taylor3473f882001-02-23 17:55:21 +00004175 ret->nsDef = xmlCopyNamespaceList(node->nsDef);
4176
4177 if (node->ns != NULL) {
4178 xmlNsPtr ns;
4179
4180 ns = xmlSearchNs(doc, ret, node->ns->prefix);
4181 if (ns == NULL) {
4182 /*
4183 * Humm, we are copying an element whose namespace is defined
4184 * out of the new tree scope. Search it in the original tree
4185 * and add it at the top of the new tree
4186 */
4187 ns = xmlSearchNs(node->doc, node, node->ns->prefix);
4188 if (ns != NULL) {
4189 xmlNodePtr root = ret;
4190
4191 while (root->parent != NULL) root = root->parent;
Daniel Veillarde82a9922001-04-22 12:12:58 +00004192 ret->ns = xmlNewNs(root, ns->href, ns->prefix);
Owen Taylor3473f882001-02-23 17:55:21 +00004193 }
4194 } else {
4195 /*
4196 * reference the existing namespace definition in our own tree.
4197 */
4198 ret->ns = ns;
4199 }
4200 }
Petr Pajas2afca4a2009-07-30 17:47:32 +02004201 if (((node->type == XML_ELEMENT_NODE) ||
4202 (node->type == XML_XINCLUDE_START)) && (node->properties != NULL))
Owen Taylor3473f882001-02-23 17:55:21 +00004203 ret->properties = xmlCopyPropList(ret, node->properties);
Daniel Veillardb33c2012001-04-25 12:59:04 +00004204 if (node->type == XML_ENTITY_REF_NODE) {
4205 if ((doc == NULL) || (node->doc != doc)) {
4206 /*
4207 * The copied node will go into a separate document, so
Daniel Veillardd1640922001-12-17 15:30:10 +00004208 * to avoid dangling references to the ENTITY_DECL node
Daniel Veillardb33c2012001-04-25 12:59:04 +00004209 * we cannot keep the reference. Try to find it in the
4210 * target document.
4211 */
4212 ret->children = (xmlNodePtr) xmlGetDocEntity(doc, ret->name);
4213 } else {
4214 ret->children = node->children;
4215 }
Daniel Veillard0ec98632001-11-14 15:04:32 +00004216 ret->last = ret->children;
William M. Brack57e9e912004-03-09 16:19:02 +00004217 } else if ((node->children != NULL) && (extended != 2)) {
Owen Taylor3473f882001-02-23 17:55:21 +00004218 ret->children = xmlStaticCopyNodeList(node->children, doc, ret);
Daniel Veillard0ec98632001-11-14 15:04:32 +00004219 UPDATE_LAST_CHILD_AND_PARENT(ret)
4220 }
Daniel Veillard8a1b1852003-01-05 22:37:17 +00004221
4222out:
4223 /* if parent != NULL we already registered the node above */
Daniel Veillardac996a12004-07-30 12:02:58 +00004224 if ((parent == NULL) &&
4225 ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue)))
Daniel Veillard8a1b1852003-01-05 22:37:17 +00004226 xmlRegisterNodeDefaultValue((xmlNodePtr)ret);
Owen Taylor3473f882001-02-23 17:55:21 +00004227 return(ret);
4228}
4229
4230static xmlNodePtr
4231xmlStaticCopyNodeList(xmlNodePtr node, xmlDocPtr doc, xmlNodePtr parent) {
4232 xmlNodePtr ret = NULL;
4233 xmlNodePtr p = NULL,q;
4234
4235 while (node != NULL) {
Daniel Veillard652327a2003-09-29 18:02:38 +00004236#ifdef LIBXML_TREE_ENABLED
Daniel Veillard1d0bfab2001-07-26 11:49:41 +00004237 if (node->type == XML_DTD_NODE ) {
Daniel Veillard4497e692001-06-09 14:19:02 +00004238 if (doc == NULL) {
4239 node = node->next;
4240 continue;
4241 }
Daniel Veillardb33c2012001-04-25 12:59:04 +00004242 if (doc->intSubset == NULL) {
4243 q = (xmlNodePtr) xmlCopyDtd( (xmlDtdPtr) node );
4244 q->doc = doc;
4245 q->parent = parent;
4246 doc->intSubset = (xmlDtdPtr) q;
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004247 xmlAddChild(parent, q);
Daniel Veillardb33c2012001-04-25 12:59:04 +00004248 } else {
4249 q = (xmlNodePtr) doc->intSubset;
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004250 xmlAddChild(parent, q);
Daniel Veillardb33c2012001-04-25 12:59:04 +00004251 }
4252 } else
Daniel Veillard652327a2003-09-29 18:02:38 +00004253#endif /* LIBXML_TREE_ENABLED */
Daniel Veillardb33c2012001-04-25 12:59:04 +00004254 q = xmlStaticCopyNode(node, doc, parent, 1);
Owen Taylor3473f882001-02-23 17:55:21 +00004255 if (ret == NULL) {
4256 q->prev = NULL;
4257 ret = p = q;
Daniel Veillardacb2bda2002-01-13 16:15:43 +00004258 } else if (p != q) {
4259 /* the test is required if xmlStaticCopyNode coalesced 2 text nodes */
Owen Taylor3473f882001-02-23 17:55:21 +00004260 p->next = q;
4261 q->prev = p;
4262 p = q;
4263 }
4264 node = node->next;
4265 }
4266 return(ret);
4267}
4268
4269/**
4270 * xmlCopyNode:
4271 * @node: the node
William M. Brack57e9e912004-03-09 16:19:02 +00004272 * @extended: if 1 do a recursive copy (properties, namespaces and children
4273 * when applicable)
4274 * if 2 copy properties and namespaces (when applicable)
Owen Taylor3473f882001-02-23 17:55:21 +00004275 *
4276 * Do a copy of the node.
4277 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004278 * Returns: a new #xmlNodePtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00004279 */
4280xmlNodePtr
William M. Brack57e9e912004-03-09 16:19:02 +00004281xmlCopyNode(const xmlNodePtr node, int extended) {
Owen Taylor3473f882001-02-23 17:55:21 +00004282 xmlNodePtr ret;
4283
William M. Brack57e9e912004-03-09 16:19:02 +00004284 ret = xmlStaticCopyNode(node, NULL, NULL, extended);
Owen Taylor3473f882001-02-23 17:55:21 +00004285 return(ret);
4286}
4287
4288/**
Daniel Veillard82daa812001-04-12 08:55:36 +00004289 * xmlDocCopyNode:
4290 * @node: the node
Daniel Veillardd1640922001-12-17 15:30:10 +00004291 * @doc: the document
William M. Brack57e9e912004-03-09 16:19:02 +00004292 * @extended: if 1 do a recursive copy (properties, namespaces and children
4293 * when applicable)
4294 * if 2 copy properties and namespaces (when applicable)
Daniel Veillard82daa812001-04-12 08:55:36 +00004295 *
4296 * Do a copy of the node to a given document.
4297 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004298 * Returns: a new #xmlNodePtr, or NULL in case of error.
Daniel Veillard82daa812001-04-12 08:55:36 +00004299 */
4300xmlNodePtr
William M. Brack57e9e912004-03-09 16:19:02 +00004301xmlDocCopyNode(const xmlNodePtr node, xmlDocPtr doc, int extended) {
Daniel Veillard82daa812001-04-12 08:55:36 +00004302 xmlNodePtr ret;
4303
William M. Brack57e9e912004-03-09 16:19:02 +00004304 ret = xmlStaticCopyNode(node, doc, NULL, extended);
Daniel Veillard82daa812001-04-12 08:55:36 +00004305 return(ret);
4306}
4307
4308/**
Daniel Veillard03a53c32004-10-26 16:06:51 +00004309 * xmlDocCopyNodeList:
4310 * @doc: the target document
4311 * @node: the first node in the list.
4312 *
4313 * Do a recursive copy of the node list.
4314 *
4315 * Returns: a new #xmlNodePtr, or NULL in case of error.
4316 */
4317xmlNodePtr xmlDocCopyNodeList(xmlDocPtr doc, const xmlNodePtr node) {
4318 xmlNodePtr ret = xmlStaticCopyNodeList(node, doc, NULL);
4319 return(ret);
4320}
4321
4322/**
Owen Taylor3473f882001-02-23 17:55:21 +00004323 * xmlCopyNodeList:
4324 * @node: the first node in the list.
4325 *
4326 * Do a recursive copy of the node list.
Daniel Veillard03a53c32004-10-26 16:06:51 +00004327 * Use xmlDocCopyNodeList() if possible to ensure string interning.
Owen Taylor3473f882001-02-23 17:55:21 +00004328 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004329 * Returns: a new #xmlNodePtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00004330 */
Daniel Veillard3ec4c612001-08-28 20:39:49 +00004331xmlNodePtr xmlCopyNodeList(const xmlNodePtr node) {
Owen Taylor3473f882001-02-23 17:55:21 +00004332 xmlNodePtr ret = xmlStaticCopyNodeList(node, NULL, NULL);
4333 return(ret);
4334}
4335
Daniel Veillard2156d432004-03-04 15:59:36 +00004336#if defined(LIBXML_TREE_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00004337/**
Owen Taylor3473f882001-02-23 17:55:21 +00004338 * xmlCopyDtd:
4339 * @dtd: the dtd
4340 *
4341 * Do a copy of the dtd.
4342 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004343 * Returns: a new #xmlDtdPtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00004344 */
4345xmlDtdPtr
4346xmlCopyDtd(xmlDtdPtr dtd) {
4347 xmlDtdPtr ret;
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004348 xmlNodePtr cur, p = NULL, q;
Owen Taylor3473f882001-02-23 17:55:21 +00004349
4350 if (dtd == NULL) return(NULL);
4351 ret = xmlNewDtd(NULL, dtd->name, dtd->ExternalID, dtd->SystemID);
4352 if (ret == NULL) return(NULL);
4353 if (dtd->entities != NULL)
4354 ret->entities = (void *) xmlCopyEntitiesTable(
4355 (xmlEntitiesTablePtr) dtd->entities);
4356 if (dtd->notations != NULL)
4357 ret->notations = (void *) xmlCopyNotationTable(
4358 (xmlNotationTablePtr) dtd->notations);
4359 if (dtd->elements != NULL)
4360 ret->elements = (void *) xmlCopyElementTable(
4361 (xmlElementTablePtr) dtd->elements);
4362 if (dtd->attributes != NULL)
4363 ret->attributes = (void *) xmlCopyAttributeTable(
4364 (xmlAttributeTablePtr) dtd->attributes);
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004365 if (dtd->pentities != NULL)
4366 ret->pentities = (void *) xmlCopyEntitiesTable(
4367 (xmlEntitiesTablePtr) dtd->pentities);
Daniel Veillardaa6de472008-08-25 14:53:31 +00004368
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004369 cur = dtd->children;
4370 while (cur != NULL) {
4371 q = NULL;
4372
4373 if (cur->type == XML_ENTITY_DECL) {
4374 xmlEntityPtr tmp = (xmlEntityPtr) cur;
4375 switch (tmp->etype) {
4376 case XML_INTERNAL_GENERAL_ENTITY:
4377 case XML_EXTERNAL_GENERAL_PARSED_ENTITY:
4378 case XML_EXTERNAL_GENERAL_UNPARSED_ENTITY:
4379 q = (xmlNodePtr) xmlGetEntityFromDtd(ret, tmp->name);
4380 break;
4381 case XML_INTERNAL_PARAMETER_ENTITY:
4382 case XML_EXTERNAL_PARAMETER_ENTITY:
Daniel Veillardaa6de472008-08-25 14:53:31 +00004383 q = (xmlNodePtr)
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004384 xmlGetParameterEntityFromDtd(ret, tmp->name);
4385 break;
4386 case XML_INTERNAL_PREDEFINED_ENTITY:
4387 break;
4388 }
4389 } else if (cur->type == XML_ELEMENT_DECL) {
4390 xmlElementPtr tmp = (xmlElementPtr) cur;
4391 q = (xmlNodePtr)
4392 xmlGetDtdQElementDesc(ret, tmp->name, tmp->prefix);
4393 } else if (cur->type == XML_ATTRIBUTE_DECL) {
4394 xmlAttributePtr tmp = (xmlAttributePtr) cur;
Daniel Veillardaa6de472008-08-25 14:53:31 +00004395 q = (xmlNodePtr)
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004396 xmlGetDtdQAttrDesc(ret, tmp->elem, tmp->name, tmp->prefix);
4397 } else if (cur->type == XML_COMMENT_NODE) {
4398 q = xmlCopyNode(cur, 0);
4399 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00004400
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004401 if (q == NULL) {
4402 cur = cur->next;
4403 continue;
4404 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00004405
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004406 if (p == NULL)
4407 ret->children = q;
4408 else
Daniel Veillardaa6de472008-08-25 14:53:31 +00004409 p->next = q;
4410
4411 q->prev = p;
4412 q->parent = (xmlNodePtr) ret;
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004413 q->next = NULL;
4414 ret->last = q;
Daniel Veillardaa6de472008-08-25 14:53:31 +00004415 p = q;
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004416 cur = cur->next;
4417 }
4418
Owen Taylor3473f882001-02-23 17:55:21 +00004419 return(ret);
4420}
Daniel Veillard2156d432004-03-04 15:59:36 +00004421#endif
Owen Taylor3473f882001-02-23 17:55:21 +00004422
Daniel Veillard2156d432004-03-04 15:59:36 +00004423#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00004424/**
4425 * xmlCopyDoc:
4426 * @doc: the document
William M. Brack57e9e912004-03-09 16:19:02 +00004427 * @recursive: if not zero do a recursive copy.
Owen Taylor3473f882001-02-23 17:55:21 +00004428 *
4429 * Do a copy of the document info. If recursive, the content tree will
Daniel Veillardcbaf3992001-12-31 16:16:02 +00004430 * be copied too as well as DTD, namespaces and entities.
Owen Taylor3473f882001-02-23 17:55:21 +00004431 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004432 * Returns: a new #xmlDocPtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00004433 */
4434xmlDocPtr
4435xmlCopyDoc(xmlDocPtr doc, int recursive) {
4436 xmlDocPtr ret;
4437
4438 if (doc == NULL) return(NULL);
4439 ret = xmlNewDoc(doc->version);
4440 if (ret == NULL) return(NULL);
4441 if (doc->name != NULL)
4442 ret->name = xmlMemStrdup(doc->name);
4443 if (doc->encoding != NULL)
4444 ret->encoding = xmlStrdup(doc->encoding);
Daniel Veillardf59507d2005-01-27 17:26:49 +00004445 if (doc->URL != NULL)
4446 ret->URL = xmlStrdup(doc->URL);
Owen Taylor3473f882001-02-23 17:55:21 +00004447 ret->charset = doc->charset;
4448 ret->compression = doc->compression;
4449 ret->standalone = doc->standalone;
4450 if (!recursive) return(ret);
4451
Daniel Veillardb33c2012001-04-25 12:59:04 +00004452 ret->last = NULL;
4453 ret->children = NULL;
Daniel Veillard2156d432004-03-04 15:59:36 +00004454#ifdef LIBXML_TREE_ENABLED
Daniel Veillardb33c2012001-04-25 12:59:04 +00004455 if (doc->intSubset != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00004456 ret->intSubset = xmlCopyDtd(doc->intSubset);
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004457 xmlSetTreeDoc((xmlNodePtr)ret->intSubset, ret);
Daniel Veillardb33c2012001-04-25 12:59:04 +00004458 ret->intSubset->parent = ret;
4459 }
Daniel Veillard2156d432004-03-04 15:59:36 +00004460#endif
Owen Taylor3473f882001-02-23 17:55:21 +00004461 if (doc->oldNs != NULL)
4462 ret->oldNs = xmlCopyNamespaceList(doc->oldNs);
4463 if (doc->children != NULL) {
4464 xmlNodePtr tmp;
Daniel Veillardaa6de472008-08-25 14:53:31 +00004465
Daniel Veillardb33c2012001-04-25 12:59:04 +00004466 ret->children = xmlStaticCopyNodeList(doc->children, ret,
4467 (xmlNodePtr)ret);
Owen Taylor3473f882001-02-23 17:55:21 +00004468 ret->last = NULL;
4469 tmp = ret->children;
4470 while (tmp != NULL) {
4471 if (tmp->next == NULL)
4472 ret->last = tmp;
4473 tmp = tmp->next;
4474 }
4475 }
4476 return(ret);
4477}
Daniel Veillard652327a2003-09-29 18:02:38 +00004478#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00004479
4480/************************************************************************
4481 * *
4482 * Content access functions *
4483 * *
4484 ************************************************************************/
Daniel Veillardaa6de472008-08-25 14:53:31 +00004485
Owen Taylor3473f882001-02-23 17:55:21 +00004486/**
Daniel Veillard8faa7832001-11-26 15:58:08 +00004487 * xmlGetLineNo:
Daniel Veillard01c13b52002-12-10 15:19:08 +00004488 * @node: valid node
Daniel Veillard8faa7832001-11-26 15:58:08 +00004489 *
William M. Brackd7cf7f82003-11-14 07:13:16 +00004490 * Get line number of @node. This requires activation of this option
Daniel Veillardd1640922001-12-17 15:30:10 +00004491 * before invoking the parser by calling xmlLineNumbersDefault(1)
Daniel Veillard8faa7832001-11-26 15:58:08 +00004492 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004493 * Returns the line number if successful, -1 otherwise
Daniel Veillard8faa7832001-11-26 15:58:08 +00004494 */
4495long
4496xmlGetLineNo(xmlNodePtr node)
4497{
4498 long result = -1;
4499
4500 if (!node)
4501 return result;
Daniel Veillard73da77e2005-08-24 14:05:37 +00004502 if ((node->type == XML_ELEMENT_NODE) ||
4503 (node->type == XML_TEXT_NODE) ||
4504 (node->type == XML_COMMENT_NODE) ||
4505 (node->type == XML_PI_NODE))
Daniel Veillard3e35f8e2003-10-21 00:05:38 +00004506 result = (long) node->line;
Daniel Veillard8faa7832001-11-26 15:58:08 +00004507 else if ((node->prev != NULL) &&
4508 ((node->prev->type == XML_ELEMENT_NODE) ||
Daniel Veillard73da77e2005-08-24 14:05:37 +00004509 (node->prev->type == XML_TEXT_NODE) ||
4510 (node->prev->type == XML_COMMENT_NODE) ||
4511 (node->prev->type == XML_PI_NODE)))
Daniel Veillard8faa7832001-11-26 15:58:08 +00004512 result = xmlGetLineNo(node->prev);
4513 else if ((node->parent != NULL) &&
Daniel Veillard73da77e2005-08-24 14:05:37 +00004514 (node->parent->type == XML_ELEMENT_NODE))
Daniel Veillard8faa7832001-11-26 15:58:08 +00004515 result = xmlGetLineNo(node->parent);
4516
4517 return result;
4518}
4519
Daniel Veillard2156d432004-03-04 15:59:36 +00004520#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_DEBUG_ENABLED)
Daniel Veillard8faa7832001-11-26 15:58:08 +00004521/**
4522 * xmlGetNodePath:
4523 * @node: a node
4524 *
4525 * Build a structure based Path for the given node
4526 *
4527 * Returns the new path or NULL in case of error. The caller must free
4528 * the returned string
4529 */
4530xmlChar *
4531xmlGetNodePath(xmlNodePtr node)
4532{
4533 xmlNodePtr cur, tmp, next;
4534 xmlChar *buffer = NULL, *temp;
4535 size_t buf_len;
4536 xmlChar *buf;
Daniel Veillard96c3a3b2002-10-14 15:39:04 +00004537 const char *sep;
Daniel Veillard8faa7832001-11-26 15:58:08 +00004538 const char *name;
4539 char nametemp[100];
Kasimier T. Buchcikd38c63f2006-06-12 10:58:24 +00004540 int occur = 0, generic;
Daniel Veillard8faa7832001-11-26 15:58:08 +00004541
4542 if (node == NULL)
4543 return (NULL);
4544
4545 buf_len = 500;
Daniel Veillard3c908dc2003-04-19 00:07:51 +00004546 buffer = (xmlChar *) xmlMallocAtomic(buf_len * sizeof(xmlChar));
Daniel Veillard18ec16e2003-10-07 23:16:40 +00004547 if (buffer == NULL) {
4548 xmlTreeErrMemory("getting node path");
Daniel Veillard8faa7832001-11-26 15:58:08 +00004549 return (NULL);
Daniel Veillard18ec16e2003-10-07 23:16:40 +00004550 }
Daniel Veillard3c908dc2003-04-19 00:07:51 +00004551 buf = (xmlChar *) xmlMallocAtomic(buf_len * sizeof(xmlChar));
Daniel Veillard8faa7832001-11-26 15:58:08 +00004552 if (buf == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00004553 xmlTreeErrMemory("getting node path");
Daniel Veillard8faa7832001-11-26 15:58:08 +00004554 xmlFree(buffer);
4555 return (NULL);
4556 }
4557
4558 buffer[0] = 0;
4559 cur = node;
4560 do {
4561 name = "";
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00004562 sep = "?";
Daniel Veillard8faa7832001-11-26 15:58:08 +00004563 occur = 0;
4564 if ((cur->type == XML_DOCUMENT_NODE) ||
4565 (cur->type == XML_HTML_DOCUMENT_NODE)) {
4566 if (buffer[0] == '/')
4567 break;
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00004568 sep = "/";
Daniel Veillard8faa7832001-11-26 15:58:08 +00004569 next = NULL;
4570 } else if (cur->type == XML_ELEMENT_NODE) {
Kasimier T. Buchcikd38c63f2006-06-12 10:58:24 +00004571 generic = 0;
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00004572 sep = "/";
Daniel Veillard8faa7832001-11-26 15:58:08 +00004573 name = (const char *) cur->name;
4574 if (cur->ns) {
Kasimier T. Buchcikd38c63f2006-06-12 10:58:24 +00004575 if (cur->ns->prefix != NULL) {
William M. Brack13dfa872004-09-18 04:52:08 +00004576 snprintf(nametemp, sizeof(nametemp) - 1, "%s:%s",
Daniel Veillardaa6de472008-08-25 14:53:31 +00004577 (char *)cur->ns->prefix, (char *)cur->name);
Kasimier T. Buchcikd38c63f2006-06-12 10:58:24 +00004578 nametemp[sizeof(nametemp) - 1] = 0;
4579 name = nametemp;
4580 } else {
4581 /*
4582 * We cannot express named elements in the default
4583 * namespace, so use "*".
4584 */
4585 generic = 1;
4586 name = "*";
Daniel Veillardaa6de472008-08-25 14:53:31 +00004587 }
Daniel Veillard8faa7832001-11-26 15:58:08 +00004588 }
4589 next = cur->parent;
4590
4591 /*
4592 * Thumbler index computation
Daniel Veillardc00cda82003-04-07 10:22:39 +00004593 * TODO: the ocurence test seems bogus for namespaced names
Daniel Veillard8faa7832001-11-26 15:58:08 +00004594 */
4595 tmp = cur->prev;
4596 while (tmp != NULL) {
Daniel Veillard0f04f8e2002-09-17 23:04:40 +00004597 if ((tmp->type == XML_ELEMENT_NODE) &&
Kasimier T. Buchcikd38c63f2006-06-12 10:58:24 +00004598 (generic ||
Kasimier T. Buchcik43ceb1e2006-06-12 11:08:18 +00004599 (xmlStrEqual(cur->name, tmp->name) &&
Kasimier T. Buchcikd38c63f2006-06-12 10:58:24 +00004600 ((tmp->ns == cur->ns) ||
4601 ((tmp->ns != NULL) && (cur->ns != NULL) &&
Kasimier T. Buchcik43ceb1e2006-06-12 11:08:18 +00004602 (xmlStrEqual(cur->ns->prefix, tmp->ns->prefix)))))))
Daniel Veillard8faa7832001-11-26 15:58:08 +00004603 occur++;
4604 tmp = tmp->prev;
4605 }
4606 if (occur == 0) {
4607 tmp = cur->next;
Daniel Veillard8606bbb2002-11-12 12:36:52 +00004608 while (tmp != NULL && occur == 0) {
4609 if ((tmp->type == XML_ELEMENT_NODE) &&
Kasimier T. Buchcikd38c63f2006-06-12 10:58:24 +00004610 (generic ||
Kasimier T. Buchcik43ceb1e2006-06-12 11:08:18 +00004611 (xmlStrEqual(cur->name, tmp->name) &&
Kasimier T. Buchcikd38c63f2006-06-12 10:58:24 +00004612 ((tmp->ns == cur->ns) ||
4613 ((tmp->ns != NULL) && (cur->ns != NULL) &&
Kasimier T. Buchcik43ceb1e2006-06-12 11:08:18 +00004614 (xmlStrEqual(cur->ns->prefix, tmp->ns->prefix)))))))
Daniel Veillard8faa7832001-11-26 15:58:08 +00004615 occur++;
4616 tmp = tmp->next;
4617 }
4618 if (occur != 0)
4619 occur = 1;
4620 } else
4621 occur++;
Daniel Veillard8606bbb2002-11-12 12:36:52 +00004622 } else if (cur->type == XML_COMMENT_NODE) {
4623 sep = "/";
4624 name = "comment()";
4625 next = cur->parent;
4626
4627 /*
4628 * Thumbler index computation
4629 */
4630 tmp = cur->prev;
4631 while (tmp != NULL) {
4632 if (tmp->type == XML_COMMENT_NODE)
4633 occur++;
4634 tmp = tmp->prev;
4635 }
4636 if (occur == 0) {
4637 tmp = cur->next;
4638 while (tmp != NULL && occur == 0) {
4639 if (tmp->type == XML_COMMENT_NODE)
4640 occur++;
4641 tmp = tmp->next;
4642 }
4643 if (occur != 0)
4644 occur = 1;
4645 } else
4646 occur++;
4647 } else if ((cur->type == XML_TEXT_NODE) ||
4648 (cur->type == XML_CDATA_SECTION_NODE)) {
4649 sep = "/";
4650 name = "text()";
4651 next = cur->parent;
4652
4653 /*
4654 * Thumbler index computation
4655 */
4656 tmp = cur->prev;
4657 while (tmp != NULL) {
Kasimier T. Buchcikeb468702006-02-15 10:57:50 +00004658 if ((tmp->type == XML_TEXT_NODE) ||
4659 (tmp->type == XML_CDATA_SECTION_NODE))
Daniel Veillard8606bbb2002-11-12 12:36:52 +00004660 occur++;
4661 tmp = tmp->prev;
4662 }
Kasimier T. Buchcikeb468702006-02-15 10:57:50 +00004663 /*
4664 * Evaluate if this is the only text- or CDATA-section-node;
4665 * if yes, then we'll get "text()", otherwise "text()[1]".
4666 */
Daniel Veillard8606bbb2002-11-12 12:36:52 +00004667 if (occur == 0) {
4668 tmp = cur->next;
Kasimier T. Buchcikeb468702006-02-15 10:57:50 +00004669 while (tmp != NULL) {
4670 if ((tmp->type == XML_TEXT_NODE) ||
4671 (tmp->type == XML_CDATA_SECTION_NODE))
4672 {
4673 occur = 1;
4674 break;
Daniel Veillardaa6de472008-08-25 14:53:31 +00004675 }
Kasimier T. Buchcikeb468702006-02-15 10:57:50 +00004676 tmp = tmp->next;
4677 }
Daniel Veillard8606bbb2002-11-12 12:36:52 +00004678 } else
4679 occur++;
4680 } else if (cur->type == XML_PI_NODE) {
4681 sep = "/";
4682 snprintf(nametemp, sizeof(nametemp) - 1,
William M. Brack13dfa872004-09-18 04:52:08 +00004683 "processing-instruction('%s')", (char *)cur->name);
Daniel Veillard8606bbb2002-11-12 12:36:52 +00004684 nametemp[sizeof(nametemp) - 1] = 0;
4685 name = nametemp;
4686
4687 next = cur->parent;
4688
4689 /*
4690 * Thumbler index computation
4691 */
4692 tmp = cur->prev;
4693 while (tmp != NULL) {
4694 if ((tmp->type == XML_PI_NODE) &&
4695 (xmlStrEqual(cur->name, tmp->name)))
4696 occur++;
4697 tmp = tmp->prev;
4698 }
4699 if (occur == 0) {
4700 tmp = cur->next;
4701 while (tmp != NULL && occur == 0) {
4702 if ((tmp->type == XML_PI_NODE) &&
4703 (xmlStrEqual(cur->name, tmp->name)))
4704 occur++;
4705 tmp = tmp->next;
4706 }
4707 if (occur != 0)
4708 occur = 1;
4709 } else
4710 occur++;
4711
Daniel Veillard8faa7832001-11-26 15:58:08 +00004712 } else if (cur->type == XML_ATTRIBUTE_NODE) {
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00004713 sep = "/@";
Daniel Veillard8faa7832001-11-26 15:58:08 +00004714 name = (const char *) (((xmlAttrPtr) cur)->name);
Daniel Veillard365c8062005-07-19 11:31:55 +00004715 if (cur->ns) {
4716 if (cur->ns->prefix != NULL)
4717 snprintf(nametemp, sizeof(nametemp) - 1, "%s:%s",
Daniel Veillardaa6de472008-08-25 14:53:31 +00004718 (char *)cur->ns->prefix, (char *)cur->name);
Daniel Veillard365c8062005-07-19 11:31:55 +00004719 else
4720 snprintf(nametemp, sizeof(nametemp) - 1, "%s",
Daniel Veillardaa6de472008-08-25 14:53:31 +00004721 (char *)cur->name);
Daniel Veillard365c8062005-07-19 11:31:55 +00004722 nametemp[sizeof(nametemp) - 1] = 0;
4723 name = nametemp;
4724 }
Daniel Veillard8faa7832001-11-26 15:58:08 +00004725 next = ((xmlAttrPtr) cur)->parent;
4726 } else {
4727 next = cur->parent;
4728 }
4729
4730 /*
4731 * Make sure there is enough room
4732 */
4733 if (xmlStrlen(buffer) + sizeof(nametemp) + 20 > buf_len) {
4734 buf_len =
4735 2 * buf_len + xmlStrlen(buffer) + sizeof(nametemp) + 20;
4736 temp = (xmlChar *) xmlRealloc(buffer, buf_len);
4737 if (temp == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00004738 xmlTreeErrMemory("getting node path");
Daniel Veillard8faa7832001-11-26 15:58:08 +00004739 xmlFree(buf);
4740 xmlFree(buffer);
4741 return (NULL);
4742 }
4743 buffer = temp;
4744 temp = (xmlChar *) xmlRealloc(buf, buf_len);
4745 if (temp == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00004746 xmlTreeErrMemory("getting node path");
Daniel Veillard8faa7832001-11-26 15:58:08 +00004747 xmlFree(buf);
4748 xmlFree(buffer);
4749 return (NULL);
4750 }
4751 buf = temp;
4752 }
4753 if (occur == 0)
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00004754 snprintf((char *) buf, buf_len, "%s%s%s",
Daniel Veillard8faa7832001-11-26 15:58:08 +00004755 sep, name, (char *) buffer);
4756 else
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00004757 snprintf((char *) buf, buf_len, "%s%s[%d]%s",
Daniel Veillard8faa7832001-11-26 15:58:08 +00004758 sep, name, occur, (char *) buffer);
William M. Brack13dfa872004-09-18 04:52:08 +00004759 snprintf((char *) buffer, buf_len, "%s", (char *)buf);
Daniel Veillard8faa7832001-11-26 15:58:08 +00004760 cur = next;
4761 } while (cur != NULL);
4762 xmlFree(buf);
4763 return (buffer);
4764}
Daniel Veillard652327a2003-09-29 18:02:38 +00004765#endif /* LIBXML_TREE_ENABLED */
Daniel Veillard8faa7832001-11-26 15:58:08 +00004766
4767/**
Owen Taylor3473f882001-02-23 17:55:21 +00004768 * xmlDocGetRootElement:
4769 * @doc: the document
4770 *
4771 * Get the root element of the document (doc->children is a list
4772 * containing possibly comments, PIs, etc ...).
4773 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004774 * Returns the #xmlNodePtr for the root or NULL
Owen Taylor3473f882001-02-23 17:55:21 +00004775 */
4776xmlNodePtr
4777xmlDocGetRootElement(xmlDocPtr doc) {
4778 xmlNodePtr ret;
4779
4780 if (doc == NULL) return(NULL);
4781 ret = doc->children;
4782 while (ret != NULL) {
4783 if (ret->type == XML_ELEMENT_NODE)
4784 return(ret);
4785 ret = ret->next;
4786 }
4787 return(ret);
4788}
Daniel Veillardaa6de472008-08-25 14:53:31 +00004789
Daniel Veillard2156d432004-03-04 15:59:36 +00004790#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00004791/**
4792 * xmlDocSetRootElement:
4793 * @doc: the document
Daniel Veillard26a45c82006-10-20 12:55:34 +00004794 * @root: the new document root element, if root is NULL no action is taken,
4795 * to remove a node from a document use xmlUnlinkNode(root) instead.
Owen Taylor3473f882001-02-23 17:55:21 +00004796 *
4797 * Set the root element of the document (doc->children is a list
4798 * containing possibly comments, PIs, etc ...).
4799 *
Daniel Veillard26a45c82006-10-20 12:55:34 +00004800 * Returns the old root element if any was found, NULL if root was NULL
Owen Taylor3473f882001-02-23 17:55:21 +00004801 */
4802xmlNodePtr
4803xmlDocSetRootElement(xmlDocPtr doc, xmlNodePtr root) {
4804 xmlNodePtr old = NULL;
4805
4806 if (doc == NULL) return(NULL);
Daniel Veillardc575b992002-02-08 13:28:40 +00004807 if (root == NULL)
4808 return(NULL);
4809 xmlUnlinkNode(root);
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00004810 xmlSetTreeDoc(root, doc);
Daniel Veillardc575b992002-02-08 13:28:40 +00004811 root->parent = (xmlNodePtr) doc;
Owen Taylor3473f882001-02-23 17:55:21 +00004812 old = doc->children;
4813 while (old != NULL) {
4814 if (old->type == XML_ELEMENT_NODE)
4815 break;
4816 old = old->next;
4817 }
4818 if (old == NULL) {
4819 if (doc->children == NULL) {
4820 doc->children = root;
4821 doc->last = root;
4822 } else {
4823 xmlAddSibling(doc->children, root);
4824 }
4825 } else {
4826 xmlReplaceNode(old, root);
4827 }
4828 return(old);
4829}
Daniel Veillard2156d432004-03-04 15:59:36 +00004830#endif
Daniel Veillardaa6de472008-08-25 14:53:31 +00004831
Daniel Veillard2156d432004-03-04 15:59:36 +00004832#if defined(LIBXML_TREE_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00004833/**
4834 * xmlNodeSetLang:
4835 * @cur: the node being changed
Daniel Veillardd1640922001-12-17 15:30:10 +00004836 * @lang: the language description
Owen Taylor3473f882001-02-23 17:55:21 +00004837 *
4838 * Set the language of a node, i.e. the values of the xml:lang
4839 * attribute.
4840 */
4841void
4842xmlNodeSetLang(xmlNodePtr cur, const xmlChar *lang) {
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004843 xmlNsPtr ns;
4844
Owen Taylor3473f882001-02-23 17:55:21 +00004845 if (cur == NULL) return;
4846 switch(cur->type) {
4847 case XML_TEXT_NODE:
4848 case XML_CDATA_SECTION_NODE:
4849 case XML_COMMENT_NODE:
4850 case XML_DOCUMENT_NODE:
4851 case XML_DOCUMENT_TYPE_NODE:
4852 case XML_DOCUMENT_FRAG_NODE:
4853 case XML_NOTATION_NODE:
4854 case XML_HTML_DOCUMENT_NODE:
4855 case XML_DTD_NODE:
4856 case XML_ELEMENT_DECL:
4857 case XML_ATTRIBUTE_DECL:
4858 case XML_ENTITY_DECL:
4859 case XML_PI_NODE:
4860 case XML_ENTITY_REF_NODE:
4861 case XML_ENTITY_NODE:
4862 case XML_NAMESPACE_DECL:
Daniel Veillardeae522a2001-04-23 13:41:34 +00004863#ifdef LIBXML_DOCB_ENABLED
4864 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00004865#endif
4866 case XML_XINCLUDE_START:
4867 case XML_XINCLUDE_END:
4868 return;
4869 case XML_ELEMENT_NODE:
4870 case XML_ATTRIBUTE_NODE:
4871 break;
4872 }
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004873 ns = xmlSearchNsByHref(cur->doc, cur, XML_XML_NAMESPACE);
4874 if (ns == NULL)
4875 return;
4876 xmlSetNsProp(cur, ns, BAD_CAST "lang", lang);
Owen Taylor3473f882001-02-23 17:55:21 +00004877}
Daniel Veillard652327a2003-09-29 18:02:38 +00004878#endif /* LIBXML_TREE_ENABLED */
Daniel Veillardaa6de472008-08-25 14:53:31 +00004879
Owen Taylor3473f882001-02-23 17:55:21 +00004880/**
4881 * xmlNodeGetLang:
4882 * @cur: the node being checked
4883 *
4884 * Searches the language of a node, i.e. the values of the xml:lang
4885 * attribute or the one carried by the nearest ancestor.
4886 *
4887 * Returns a pointer to the lang value, or NULL if not found
Daniel Veillardbd9afb52002-09-25 22:25:35 +00004888 * It's up to the caller to free the memory with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00004889 */
4890xmlChar *
4891xmlNodeGetLang(xmlNodePtr cur) {
4892 xmlChar *lang;
4893
4894 while (cur != NULL) {
Daniel Veillardc17337c2001-05-09 10:51:31 +00004895 lang = xmlGetNsProp(cur, BAD_CAST "lang", XML_XML_NAMESPACE);
Owen Taylor3473f882001-02-23 17:55:21 +00004896 if (lang != NULL)
4897 return(lang);
4898 cur = cur->parent;
4899 }
4900 return(NULL);
4901}
Daniel Veillardaa6de472008-08-25 14:53:31 +00004902
Owen Taylor3473f882001-02-23 17:55:21 +00004903
Daniel Veillard652327a2003-09-29 18:02:38 +00004904#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00004905/**
4906 * xmlNodeSetSpacePreserve:
4907 * @cur: the node being changed
4908 * @val: the xml:space value ("0": default, 1: "preserve")
4909 *
4910 * Set (or reset) the space preserving behaviour of a node, i.e. the
4911 * value of the xml:space attribute.
4912 */
4913void
4914xmlNodeSetSpacePreserve(xmlNodePtr cur, int val) {
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004915 xmlNsPtr ns;
4916
Owen Taylor3473f882001-02-23 17:55:21 +00004917 if (cur == NULL) return;
4918 switch(cur->type) {
4919 case XML_TEXT_NODE:
4920 case XML_CDATA_SECTION_NODE:
4921 case XML_COMMENT_NODE:
4922 case XML_DOCUMENT_NODE:
4923 case XML_DOCUMENT_TYPE_NODE:
4924 case XML_DOCUMENT_FRAG_NODE:
4925 case XML_NOTATION_NODE:
4926 case XML_HTML_DOCUMENT_NODE:
4927 case XML_DTD_NODE:
4928 case XML_ELEMENT_DECL:
4929 case XML_ATTRIBUTE_DECL:
4930 case XML_ENTITY_DECL:
4931 case XML_PI_NODE:
4932 case XML_ENTITY_REF_NODE:
4933 case XML_ENTITY_NODE:
4934 case XML_NAMESPACE_DECL:
4935 case XML_XINCLUDE_START:
4936 case XML_XINCLUDE_END:
Daniel Veillardeae522a2001-04-23 13:41:34 +00004937#ifdef LIBXML_DOCB_ENABLED
4938 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00004939#endif
4940 return;
4941 case XML_ELEMENT_NODE:
4942 case XML_ATTRIBUTE_NODE:
4943 break;
4944 }
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004945 ns = xmlSearchNsByHref(cur->doc, cur, XML_XML_NAMESPACE);
4946 if (ns == NULL)
4947 return;
Owen Taylor3473f882001-02-23 17:55:21 +00004948 switch (val) {
4949 case 0:
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004950 xmlSetNsProp(cur, ns, BAD_CAST "space", BAD_CAST "default");
Owen Taylor3473f882001-02-23 17:55:21 +00004951 break;
4952 case 1:
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004953 xmlSetNsProp(cur, ns, BAD_CAST "space", BAD_CAST "preserve");
Owen Taylor3473f882001-02-23 17:55:21 +00004954 break;
4955 }
4956}
Daniel Veillard652327a2003-09-29 18:02:38 +00004957#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00004958
4959/**
4960 * xmlNodeGetSpacePreserve:
4961 * @cur: the node being checked
4962 *
4963 * Searches the space preserving behaviour of a node, i.e. the values
4964 * of the xml:space attribute or the one carried by the nearest
4965 * ancestor.
4966 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004967 * Returns -1 if xml:space is not inherited, 0 if "default", 1 if "preserve"
Owen Taylor3473f882001-02-23 17:55:21 +00004968 */
4969int
4970xmlNodeGetSpacePreserve(xmlNodePtr cur) {
4971 xmlChar *space;
4972
4973 while (cur != NULL) {
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004974 space = xmlGetNsProp(cur, BAD_CAST "space", XML_XML_NAMESPACE);
Owen Taylor3473f882001-02-23 17:55:21 +00004975 if (space != NULL) {
4976 if (xmlStrEqual(space, BAD_CAST "preserve")) {
4977 xmlFree(space);
4978 return(1);
4979 }
4980 if (xmlStrEqual(space, BAD_CAST "default")) {
4981 xmlFree(space);
4982 return(0);
4983 }
4984 xmlFree(space);
4985 }
4986 cur = cur->parent;
4987 }
4988 return(-1);
4989}
Daniel Veillardaa6de472008-08-25 14:53:31 +00004990
Daniel Veillard652327a2003-09-29 18:02:38 +00004991#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00004992/**
4993 * xmlNodeSetName:
4994 * @cur: the node being changed
4995 * @name: the new tag name
4996 *
4997 * Set (or reset) the name of a node.
4998 */
4999void
5000xmlNodeSetName(xmlNodePtr cur, const xmlChar *name) {
Daniel Veillardce244ad2004-11-05 10:03:46 +00005001 xmlDocPtr doc;
5002 xmlDictPtr dict;
5003
Owen Taylor3473f882001-02-23 17:55:21 +00005004 if (cur == NULL) return;
5005 if (name == NULL) return;
5006 switch(cur->type) {
5007 case XML_TEXT_NODE:
5008 case XML_CDATA_SECTION_NODE:
5009 case XML_COMMENT_NODE:
5010 case XML_DOCUMENT_TYPE_NODE:
5011 case XML_DOCUMENT_FRAG_NODE:
5012 case XML_NOTATION_NODE:
5013 case XML_HTML_DOCUMENT_NODE:
5014 case XML_NAMESPACE_DECL:
5015 case XML_XINCLUDE_START:
5016 case XML_XINCLUDE_END:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005017#ifdef LIBXML_DOCB_ENABLED
5018 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005019#endif
5020 return;
5021 case XML_ELEMENT_NODE:
5022 case XML_ATTRIBUTE_NODE:
5023 case XML_PI_NODE:
5024 case XML_ENTITY_REF_NODE:
5025 case XML_ENTITY_NODE:
5026 case XML_DTD_NODE:
5027 case XML_DOCUMENT_NODE:
5028 case XML_ELEMENT_DECL:
5029 case XML_ATTRIBUTE_DECL:
5030 case XML_ENTITY_DECL:
5031 break;
5032 }
Daniel Veillardce244ad2004-11-05 10:03:46 +00005033 doc = cur->doc;
5034 if (doc != NULL)
5035 dict = doc->dict;
5036 else
5037 dict = NULL;
5038 if (dict != NULL) {
5039 if ((cur->name != NULL) && (!xmlDictOwns(dict, cur->name)))
5040 xmlFree((xmlChar *) cur->name);
5041 cur->name = xmlDictLookup(dict, name, -1);
5042 } else {
5043 if (cur->name != NULL) xmlFree((xmlChar *) cur->name);
5044 cur->name = xmlStrdup(name);
5045 }
Owen Taylor3473f882001-02-23 17:55:21 +00005046}
Daniel Veillard2156d432004-03-04 15:59:36 +00005047#endif
Daniel Veillardaa6de472008-08-25 14:53:31 +00005048
Daniel Veillard2156d432004-03-04 15:59:36 +00005049#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00005050/**
5051 * xmlNodeSetBase:
5052 * @cur: the node being changed
5053 * @uri: the new base URI
5054 *
5055 * Set (or reset) the base URI of a node, i.e. the value of the
5056 * xml:base attribute.
5057 */
5058void
Daniel Veillardf85ce8e2003-09-22 10:24:45 +00005059xmlNodeSetBase(xmlNodePtr cur, const xmlChar* uri) {
Daniel Veillardcfa0d812002-01-17 08:46:58 +00005060 xmlNsPtr ns;
Daniel Veillardb8efdda2006-10-10 12:37:14 +00005061 const xmlChar* fixed;
Daniel Veillardcfa0d812002-01-17 08:46:58 +00005062
Owen Taylor3473f882001-02-23 17:55:21 +00005063 if (cur == NULL) return;
5064 switch(cur->type) {
5065 case XML_TEXT_NODE:
5066 case XML_CDATA_SECTION_NODE:
5067 case XML_COMMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005068 case XML_DOCUMENT_TYPE_NODE:
5069 case XML_DOCUMENT_FRAG_NODE:
5070 case XML_NOTATION_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005071 case XML_DTD_NODE:
5072 case XML_ELEMENT_DECL:
5073 case XML_ATTRIBUTE_DECL:
5074 case XML_ENTITY_DECL:
5075 case XML_PI_NODE:
5076 case XML_ENTITY_REF_NODE:
5077 case XML_ENTITY_NODE:
5078 case XML_NAMESPACE_DECL:
5079 case XML_XINCLUDE_START:
5080 case XML_XINCLUDE_END:
Owen Taylor3473f882001-02-23 17:55:21 +00005081 return;
5082 case XML_ELEMENT_NODE:
5083 case XML_ATTRIBUTE_NODE:
5084 break;
Daniel Veillard4cbe4702002-05-05 06:57:27 +00005085 case XML_DOCUMENT_NODE:
5086#ifdef LIBXML_DOCB_ENABLED
5087 case XML_DOCB_DOCUMENT_NODE:
5088#endif
5089 case XML_HTML_DOCUMENT_NODE: {
5090 xmlDocPtr doc = (xmlDocPtr) cur;
5091
5092 if (doc->URL != NULL)
5093 xmlFree((xmlChar *) doc->URL);
5094 if (uri == NULL)
5095 doc->URL = NULL;
5096 else
Daniel Veillardb8efdda2006-10-10 12:37:14 +00005097 doc->URL = xmlPathToURI(uri);
Daniel Veillard4cbe4702002-05-05 06:57:27 +00005098 return;
5099 }
Owen Taylor3473f882001-02-23 17:55:21 +00005100 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00005101
Daniel Veillardcfa0d812002-01-17 08:46:58 +00005102 ns = xmlSearchNsByHref(cur->doc, cur, XML_XML_NAMESPACE);
5103 if (ns == NULL)
5104 return;
Daniel Veillardb8efdda2006-10-10 12:37:14 +00005105 fixed = xmlPathToURI(uri);
5106 if (fixed != NULL) {
5107 xmlSetNsProp(cur, ns, BAD_CAST "base", fixed);
William M. Brack38d452a2007-05-22 16:00:06 +00005108 xmlFree((xmlChar *)fixed);
Daniel Veillardb8efdda2006-10-10 12:37:14 +00005109 } else {
5110 xmlSetNsProp(cur, ns, BAD_CAST "base", uri);
5111 }
Owen Taylor3473f882001-02-23 17:55:21 +00005112}
Daniel Veillard652327a2003-09-29 18:02:38 +00005113#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00005114
5115/**
Owen Taylor3473f882001-02-23 17:55:21 +00005116 * xmlNodeGetBase:
5117 * @doc: the document the node pertains to
5118 * @cur: the node being checked
5119 *
5120 * Searches for the BASE URL. The code should work on both XML
5121 * and HTML document even if base mechanisms are completely different.
5122 * It returns the base as defined in RFC 2396 sections
5123 * 5.1.1. Base URI within Document Content
5124 * and
5125 * 5.1.2. Base URI from the Encapsulating Entity
5126 * However it does not return the document base (5.1.3), use
5127 * xmlDocumentGetBase() for this
5128 *
5129 * Returns a pointer to the base URL, or NULL if not found
Daniel Veillardbd9afb52002-09-25 22:25:35 +00005130 * It's up to the caller to free the memory with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00005131 */
5132xmlChar *
5133xmlNodeGetBase(xmlDocPtr doc, xmlNodePtr cur) {
Daniel Veillardb8c9be92001-07-09 16:01:19 +00005134 xmlChar *oldbase = NULL;
5135 xmlChar *base, *newbase;
Owen Taylor3473f882001-02-23 17:55:21 +00005136
Daniel Veillardaa6de472008-08-25 14:53:31 +00005137 if ((cur == NULL) && (doc == NULL))
Owen Taylor3473f882001-02-23 17:55:21 +00005138 return(NULL);
Daniel Veillardaa6de472008-08-25 14:53:31 +00005139 if (doc == NULL) doc = cur->doc;
Owen Taylor3473f882001-02-23 17:55:21 +00005140 if ((doc != NULL) && (doc->type == XML_HTML_DOCUMENT_NODE)) {
5141 cur = doc->children;
5142 while ((cur != NULL) && (cur->name != NULL)) {
5143 if (cur->type != XML_ELEMENT_NODE) {
5144 cur = cur->next;
5145 continue;
5146 }
5147 if (!xmlStrcasecmp(cur->name, BAD_CAST "html")) {
5148 cur = cur->children;
5149 continue;
5150 }
5151 if (!xmlStrcasecmp(cur->name, BAD_CAST "head")) {
5152 cur = cur->children;
5153 continue;
5154 }
5155 if (!xmlStrcasecmp(cur->name, BAD_CAST "base")) {
5156 return(xmlGetProp(cur, BAD_CAST "href"));
5157 }
5158 cur = cur->next;
5159 }
5160 return(NULL);
5161 }
5162 while (cur != NULL) {
5163 if (cur->type == XML_ENTITY_DECL) {
5164 xmlEntityPtr ent = (xmlEntityPtr) cur;
5165 return(xmlStrdup(ent->URI));
5166 }
Daniel Veillard42596ad2001-05-22 16:57:14 +00005167 if (cur->type == XML_ELEMENT_NODE) {
Daniel Veillardb8c9be92001-07-09 16:01:19 +00005168 base = xmlGetNsProp(cur, BAD_CAST "base", XML_XML_NAMESPACE);
Daniel Veillard42596ad2001-05-22 16:57:14 +00005169 if (base != NULL) {
Daniel Veillardb8c9be92001-07-09 16:01:19 +00005170 if (oldbase != NULL) {
5171 newbase = xmlBuildURI(oldbase, base);
5172 if (newbase != NULL) {
5173 xmlFree(oldbase);
5174 xmlFree(base);
5175 oldbase = newbase;
5176 } else {
5177 xmlFree(oldbase);
5178 xmlFree(base);
5179 return(NULL);
5180 }
5181 } else {
5182 oldbase = base;
5183 }
5184 if ((!xmlStrncmp(oldbase, BAD_CAST "http://", 7)) ||
5185 (!xmlStrncmp(oldbase, BAD_CAST "ftp://", 6)) ||
5186 (!xmlStrncmp(oldbase, BAD_CAST "urn:", 4)))
5187 return(oldbase);
Daniel Veillard42596ad2001-05-22 16:57:14 +00005188 }
5189 }
Owen Taylor3473f882001-02-23 17:55:21 +00005190 cur = cur->parent;
5191 }
Daniel Veillardb8c9be92001-07-09 16:01:19 +00005192 if ((doc != NULL) && (doc->URL != NULL)) {
5193 if (oldbase == NULL)
5194 return(xmlStrdup(doc->URL));
5195 newbase = xmlBuildURI(oldbase, doc->URL);
5196 xmlFree(oldbase);
5197 return(newbase);
5198 }
5199 return(oldbase);
Owen Taylor3473f882001-02-23 17:55:21 +00005200}
Daniel Veillardaa6de472008-08-25 14:53:31 +00005201
Owen Taylor3473f882001-02-23 17:55:21 +00005202/**
Daniel Veillard78697292003-10-19 20:44:43 +00005203 * xmlNodeBufGetContent:
5204 * @buffer: a buffer
5205 * @cur: the node being read
5206 *
5207 * Read the value of a node @cur, this can be either the text carried
5208 * directly by this node if it's a TEXT node or the aggregate string
5209 * of the values carried by this node child's (TEXT and ENTITY_REF).
5210 * Entity references are substituted.
5211 * Fills up the buffer @buffer with this value
Daniel Veillardaa6de472008-08-25 14:53:31 +00005212 *
Daniel Veillard78697292003-10-19 20:44:43 +00005213 * Returns 0 in case of success and -1 in case of error.
5214 */
5215int
5216xmlNodeBufGetContent(xmlBufferPtr buffer, xmlNodePtr cur)
5217{
5218 if ((cur == NULL) || (buffer == NULL)) return(-1);
5219 switch (cur->type) {
5220 case XML_CDATA_SECTION_NODE:
5221 case XML_TEXT_NODE:
5222 xmlBufferCat(buffer, cur->content);
5223 break;
5224 case XML_DOCUMENT_FRAG_NODE:
5225 case XML_ELEMENT_NODE:{
5226 xmlNodePtr tmp = cur;
5227
5228 while (tmp != NULL) {
5229 switch (tmp->type) {
5230 case XML_CDATA_SECTION_NODE:
5231 case XML_TEXT_NODE:
5232 if (tmp->content != NULL)
5233 xmlBufferCat(buffer, tmp->content);
5234 break;
5235 case XML_ENTITY_REF_NODE:
Rob Richards77b92ff2005-12-20 15:55:14 +00005236 xmlNodeBufGetContent(buffer, tmp);
5237 break;
Daniel Veillard78697292003-10-19 20:44:43 +00005238 default:
5239 break;
5240 }
5241 /*
5242 * Skip to next node
5243 */
5244 if (tmp->children != NULL) {
5245 if (tmp->children->type != XML_ENTITY_DECL) {
5246 tmp = tmp->children;
5247 continue;
5248 }
5249 }
5250 if (tmp == cur)
5251 break;
5252
5253 if (tmp->next != NULL) {
5254 tmp = tmp->next;
5255 continue;
5256 }
5257
5258 do {
5259 tmp = tmp->parent;
5260 if (tmp == NULL)
5261 break;
5262 if (tmp == cur) {
5263 tmp = NULL;
5264 break;
5265 }
5266 if (tmp->next != NULL) {
5267 tmp = tmp->next;
5268 break;
5269 }
5270 } while (tmp != NULL);
5271 }
5272 break;
5273 }
5274 case XML_ATTRIBUTE_NODE:{
5275 xmlAttrPtr attr = (xmlAttrPtr) cur;
5276 xmlNodePtr tmp = attr->children;
5277
5278 while (tmp != NULL) {
5279 if (tmp->type == XML_TEXT_NODE)
5280 xmlBufferCat(buffer, tmp->content);
5281 else
5282 xmlNodeBufGetContent(buffer, tmp);
5283 tmp = tmp->next;
5284 }
5285 break;
5286 }
5287 case XML_COMMENT_NODE:
5288 case XML_PI_NODE:
5289 xmlBufferCat(buffer, cur->content);
5290 break;
5291 case XML_ENTITY_REF_NODE:{
5292 xmlEntityPtr ent;
5293 xmlNodePtr tmp;
5294
5295 /* lookup entity declaration */
5296 ent = xmlGetDocEntity(cur->doc, cur->name);
5297 if (ent == NULL)
5298 return(-1);
5299
5300 /* an entity content can be any "well balanced chunk",
5301 * i.e. the result of the content [43] production:
5302 * http://www.w3.org/TR/REC-xml#NT-content
5303 * -> we iterate through child nodes and recursive call
5304 * xmlNodeGetContent() which handles all possible node types */
5305 tmp = ent->children;
5306 while (tmp) {
5307 xmlNodeBufGetContent(buffer, tmp);
5308 tmp = tmp->next;
5309 }
5310 break;
5311 }
5312 case XML_ENTITY_NODE:
5313 case XML_DOCUMENT_TYPE_NODE:
5314 case XML_NOTATION_NODE:
5315 case XML_DTD_NODE:
5316 case XML_XINCLUDE_START:
5317 case XML_XINCLUDE_END:
5318 break;
5319 case XML_DOCUMENT_NODE:
5320#ifdef LIBXML_DOCB_ENABLED
5321 case XML_DOCB_DOCUMENT_NODE:
5322#endif
5323 case XML_HTML_DOCUMENT_NODE:
5324 cur = cur->children;
5325 while (cur!= NULL) {
5326 if ((cur->type == XML_ELEMENT_NODE) ||
5327 (cur->type == XML_TEXT_NODE) ||
5328 (cur->type == XML_CDATA_SECTION_NODE)) {
5329 xmlNodeBufGetContent(buffer, cur);
5330 }
5331 cur = cur->next;
5332 }
5333 break;
5334 case XML_NAMESPACE_DECL:
5335 xmlBufferCat(buffer, ((xmlNsPtr) cur)->href);
5336 break;
5337 case XML_ELEMENT_DECL:
5338 case XML_ATTRIBUTE_DECL:
5339 case XML_ENTITY_DECL:
5340 break;
5341 }
5342 return(0);
5343}
5344/**
Owen Taylor3473f882001-02-23 17:55:21 +00005345 * xmlNodeGetContent:
5346 * @cur: the node being read
5347 *
5348 * Read the value of a node, this can be either the text carried
5349 * directly by this node if it's a TEXT node or the aggregate string
5350 * of the values carried by this node child's (TEXT and ENTITY_REF).
Daniel Veillardd1640922001-12-17 15:30:10 +00005351 * Entity references are substituted.
5352 * Returns a new #xmlChar * or NULL if no content is available.
Daniel Veillardbd9afb52002-09-25 22:25:35 +00005353 * It's up to the caller to free the memory with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00005354 */
5355xmlChar *
Daniel Veillard7646b182002-04-20 06:41:40 +00005356xmlNodeGetContent(xmlNodePtr cur)
5357{
5358 if (cur == NULL)
5359 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005360 switch (cur->type) {
5361 case XML_DOCUMENT_FRAG_NODE:
Daniel Veillard7646b182002-04-20 06:41:40 +00005362 case XML_ELEMENT_NODE:{
Daniel Veillard7646b182002-04-20 06:41:40 +00005363 xmlBufferPtr buffer;
5364 xmlChar *ret;
Owen Taylor3473f882001-02-23 17:55:21 +00005365
Daniel Veillard814a76d2003-01-23 18:24:20 +00005366 buffer = xmlBufferCreateSize(64);
Daniel Veillard7646b182002-04-20 06:41:40 +00005367 if (buffer == NULL)
5368 return (NULL);
Daniel Veillardc4696922003-10-19 21:47:14 +00005369 xmlNodeBufGetContent(buffer, cur);
Daniel Veillard7646b182002-04-20 06:41:40 +00005370 ret = buffer->content;
5371 buffer->content = NULL;
5372 xmlBufferFree(buffer);
5373 return (ret);
5374 }
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00005375 case XML_ATTRIBUTE_NODE:
5376 return(xmlGetPropNodeValueInternal((xmlAttrPtr) cur));
Owen Taylor3473f882001-02-23 17:55:21 +00005377 case XML_COMMENT_NODE:
5378 case XML_PI_NODE:
Daniel Veillard7646b182002-04-20 06:41:40 +00005379 if (cur->content != NULL)
5380 return (xmlStrdup(cur->content));
5381 return (NULL);
5382 case XML_ENTITY_REF_NODE:{
5383 xmlEntityPtr ent;
Daniel Veillard7646b182002-04-20 06:41:40 +00005384 xmlBufferPtr buffer;
5385 xmlChar *ret;
5386
5387 /* lookup entity declaration */
5388 ent = xmlGetDocEntity(cur->doc, cur->name);
5389 if (ent == NULL)
5390 return (NULL);
5391
5392 buffer = xmlBufferCreate();
5393 if (buffer == NULL)
5394 return (NULL);
5395
Daniel Veillardc4696922003-10-19 21:47:14 +00005396 xmlNodeBufGetContent(buffer, cur);
Daniel Veillard7646b182002-04-20 06:41:40 +00005397
5398 ret = buffer->content;
5399 buffer->content = NULL;
5400 xmlBufferFree(buffer);
5401 return (ret);
5402 }
Owen Taylor3473f882001-02-23 17:55:21 +00005403 case XML_ENTITY_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005404 case XML_DOCUMENT_TYPE_NODE:
5405 case XML_NOTATION_NODE:
5406 case XML_DTD_NODE:
Daniel Veillard7646b182002-04-20 06:41:40 +00005407 case XML_XINCLUDE_START:
5408 case XML_XINCLUDE_END:
Daniel Veillard9adc0462003-03-24 18:39:54 +00005409 return (NULL);
5410 case XML_DOCUMENT_NODE:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005411#ifdef LIBXML_DOCB_ENABLED
Daniel Veillard7646b182002-04-20 06:41:40 +00005412 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005413#endif
Daniel Veillard9adc0462003-03-24 18:39:54 +00005414 case XML_HTML_DOCUMENT_NODE: {
Daniel Veillardc4696922003-10-19 21:47:14 +00005415 xmlBufferPtr buffer;
5416 xmlChar *ret;
Daniel Veillard9adc0462003-03-24 18:39:54 +00005417
Daniel Veillardc4696922003-10-19 21:47:14 +00005418 buffer = xmlBufferCreate();
5419 if (buffer == NULL)
5420 return (NULL);
5421
5422 xmlNodeBufGetContent(buffer, (xmlNodePtr) cur);
5423
5424 ret = buffer->content;
5425 buffer->content = NULL;
5426 xmlBufferFree(buffer);
5427 return (ret);
Daniel Veillard9adc0462003-03-24 18:39:54 +00005428 }
Daniel Veillard96c3a3b2002-10-14 15:39:04 +00005429 case XML_NAMESPACE_DECL: {
5430 xmlChar *tmp;
5431
5432 tmp = xmlStrdup(((xmlNsPtr) cur)->href);
5433 return (tmp);
5434 }
Owen Taylor3473f882001-02-23 17:55:21 +00005435 case XML_ELEMENT_DECL:
Daniel Veillard7646b182002-04-20 06:41:40 +00005436 /* TODO !!! */
5437 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005438 case XML_ATTRIBUTE_DECL:
Daniel Veillard7646b182002-04-20 06:41:40 +00005439 /* TODO !!! */
5440 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005441 case XML_ENTITY_DECL:
Daniel Veillard7646b182002-04-20 06:41:40 +00005442 /* TODO !!! */
5443 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005444 case XML_CDATA_SECTION_NODE:
5445 case XML_TEXT_NODE:
Daniel Veillard7646b182002-04-20 06:41:40 +00005446 if (cur->content != NULL)
5447 return (xmlStrdup(cur->content));
5448 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005449 }
Daniel Veillard7646b182002-04-20 06:41:40 +00005450 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005451}
Daniel Veillard652327a2003-09-29 18:02:38 +00005452
Owen Taylor3473f882001-02-23 17:55:21 +00005453/**
5454 * xmlNodeSetContent:
5455 * @cur: the node being modified
5456 * @content: the new value of the content
5457 *
5458 * Replace the content of a node.
Daniel Veillard0e05f4c2006-11-01 15:33:04 +00005459 * NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity
5460 * references, but XML special chars need to be escaped first by using
5461 * xmlEncodeEntitiesReentrant() resp. xmlEncodeSpecialChars().
Owen Taylor3473f882001-02-23 17:55:21 +00005462 */
5463void
5464xmlNodeSetContent(xmlNodePtr cur, const xmlChar *content) {
5465 if (cur == NULL) {
5466#ifdef DEBUG_TREE
5467 xmlGenericError(xmlGenericErrorContext,
5468 "xmlNodeSetContent : node == NULL\n");
5469#endif
5470 return;
5471 }
5472 switch (cur->type) {
5473 case XML_DOCUMENT_FRAG_NODE:
5474 case XML_ELEMENT_NODE:
Daniel Veillard2c748c62002-01-16 15:37:50 +00005475 case XML_ATTRIBUTE_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005476 if (cur->children != NULL) xmlFreeNodeList(cur->children);
5477 cur->children = xmlStringGetNodeList(cur->doc, content);
5478 UPDATE_LAST_CHILD_AND_PARENT(cur)
5479 break;
Owen Taylor3473f882001-02-23 17:55:21 +00005480 case XML_TEXT_NODE:
5481 case XML_CDATA_SECTION_NODE:
5482 case XML_ENTITY_REF_NODE:
5483 case XML_ENTITY_NODE:
5484 case XML_PI_NODE:
5485 case XML_COMMENT_NODE:
Daniel Veillard8874b942005-08-25 13:19:21 +00005486 if ((cur->content != NULL) &&
5487 (cur->content != (xmlChar *) &(cur->properties))) {
William M. Brack7762bb12004-01-04 14:49:01 +00005488 if (!((cur->doc != NULL) && (cur->doc->dict != NULL) &&
Daniel Veillardc587bce2005-05-10 15:28:08 +00005489 (xmlDictOwns(cur->doc->dict, cur->content))))
William M. Brack7762bb12004-01-04 14:49:01 +00005490 xmlFree(cur->content);
Daniel Veillardaa6de472008-08-25 14:53:31 +00005491 }
Owen Taylor3473f882001-02-23 17:55:21 +00005492 if (cur->children != NULL) xmlFreeNodeList(cur->children);
5493 cur->last = cur->children = NULL;
5494 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00005495 cur->content = xmlStrdup(content);
Daniel Veillardaa6de472008-08-25 14:53:31 +00005496 } else
Owen Taylor3473f882001-02-23 17:55:21 +00005497 cur->content = NULL;
Daniel Veillard8874b942005-08-25 13:19:21 +00005498 cur->properties = NULL;
5499 cur->nsDef = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00005500 break;
5501 case XML_DOCUMENT_NODE:
5502 case XML_HTML_DOCUMENT_NODE:
5503 case XML_DOCUMENT_TYPE_NODE:
5504 case XML_XINCLUDE_START:
5505 case XML_XINCLUDE_END:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005506#ifdef LIBXML_DOCB_ENABLED
5507 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005508#endif
5509 break;
5510 case XML_NOTATION_NODE:
5511 break;
5512 case XML_DTD_NODE:
5513 break;
5514 case XML_NAMESPACE_DECL:
5515 break;
5516 case XML_ELEMENT_DECL:
5517 /* TODO !!! */
5518 break;
5519 case XML_ATTRIBUTE_DECL:
5520 /* TODO !!! */
5521 break;
5522 case XML_ENTITY_DECL:
5523 /* TODO !!! */
5524 break;
5525 }
5526}
5527
Daniel Veillard652327a2003-09-29 18:02:38 +00005528#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00005529/**
5530 * xmlNodeSetContentLen:
5531 * @cur: the node being modified
5532 * @content: the new value of the content
5533 * @len: the size of @content
5534 *
5535 * Replace the content of a node.
Daniel Veillard0e05f4c2006-11-01 15:33:04 +00005536 * NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity
5537 * references, but XML special chars need to be escaped first by using
5538 * xmlEncodeEntitiesReentrant() resp. xmlEncodeSpecialChars().
Owen Taylor3473f882001-02-23 17:55:21 +00005539 */
5540void
5541xmlNodeSetContentLen(xmlNodePtr cur, const xmlChar *content, int len) {
5542 if (cur == NULL) {
5543#ifdef DEBUG_TREE
5544 xmlGenericError(xmlGenericErrorContext,
5545 "xmlNodeSetContentLen : node == NULL\n");
5546#endif
5547 return;
5548 }
5549 switch (cur->type) {
5550 case XML_DOCUMENT_FRAG_NODE:
5551 case XML_ELEMENT_NODE:
Daniel Veillard2c748c62002-01-16 15:37:50 +00005552 case XML_ATTRIBUTE_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005553 if (cur->children != NULL) xmlFreeNodeList(cur->children);
5554 cur->children = xmlStringLenGetNodeList(cur->doc, content, len);
5555 UPDATE_LAST_CHILD_AND_PARENT(cur)
5556 break;
Owen Taylor3473f882001-02-23 17:55:21 +00005557 case XML_TEXT_NODE:
5558 case XML_CDATA_SECTION_NODE:
5559 case XML_ENTITY_REF_NODE:
5560 case XML_ENTITY_NODE:
5561 case XML_PI_NODE:
5562 case XML_COMMENT_NODE:
5563 case XML_NOTATION_NODE:
Daniel Veillard8874b942005-08-25 13:19:21 +00005564 if ((cur->content != NULL) &&
5565 (cur->content != (xmlChar *) &(cur->properties))) {
5566 if (!((cur->doc != NULL) && (cur->doc->dict != NULL) &&
5567 (xmlDictOwns(cur->doc->dict, cur->content))))
5568 xmlFree(cur->content);
Daniel Veillardaa6de472008-08-25 14:53:31 +00005569 }
Owen Taylor3473f882001-02-23 17:55:21 +00005570 if (cur->children != NULL) xmlFreeNodeList(cur->children);
5571 cur->children = cur->last = NULL;
5572 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00005573 cur->content = xmlStrndup(content, len);
Daniel Veillardaa6de472008-08-25 14:53:31 +00005574 } else
Owen Taylor3473f882001-02-23 17:55:21 +00005575 cur->content = NULL;
Daniel Veillard8874b942005-08-25 13:19:21 +00005576 cur->properties = NULL;
5577 cur->nsDef = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00005578 break;
5579 case XML_DOCUMENT_NODE:
5580 case XML_DTD_NODE:
5581 case XML_HTML_DOCUMENT_NODE:
5582 case XML_DOCUMENT_TYPE_NODE:
5583 case XML_NAMESPACE_DECL:
5584 case XML_XINCLUDE_START:
5585 case XML_XINCLUDE_END:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005586#ifdef LIBXML_DOCB_ENABLED
5587 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005588#endif
5589 break;
5590 case XML_ELEMENT_DECL:
5591 /* TODO !!! */
5592 break;
5593 case XML_ATTRIBUTE_DECL:
5594 /* TODO !!! */
5595 break;
5596 case XML_ENTITY_DECL:
5597 /* TODO !!! */
5598 break;
5599 }
5600}
Daniel Veillard652327a2003-09-29 18:02:38 +00005601#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00005602
5603/**
5604 * xmlNodeAddContentLen:
5605 * @cur: the node being modified
5606 * @content: extra content
5607 * @len: the size of @content
Daniel Veillardaa6de472008-08-25 14:53:31 +00005608 *
Owen Taylor3473f882001-02-23 17:55:21 +00005609 * Append the extra substring to the node content.
Daniel Veillard0e05f4c2006-11-01 15:33:04 +00005610 * NOTE: In contrast to xmlNodeSetContentLen(), @content is supposed to be
5611 * raw text, so unescaped XML special chars are allowed, entity
5612 * references are not supported.
Owen Taylor3473f882001-02-23 17:55:21 +00005613 */
5614void
5615xmlNodeAddContentLen(xmlNodePtr cur, const xmlChar *content, int len) {
5616 if (cur == NULL) {
5617#ifdef DEBUG_TREE
5618 xmlGenericError(xmlGenericErrorContext,
5619 "xmlNodeAddContentLen : node == NULL\n");
5620#endif
5621 return;
5622 }
5623 if (len <= 0) return;
5624 switch (cur->type) {
5625 case XML_DOCUMENT_FRAG_NODE:
5626 case XML_ELEMENT_NODE: {
Daniel Veillardacb2bda2002-01-13 16:15:43 +00005627 xmlNodePtr last, newNode, tmp;
Owen Taylor3473f882001-02-23 17:55:21 +00005628
Daniel Veillard7db37732001-07-12 01:20:08 +00005629 last = cur->last;
Owen Taylor3473f882001-02-23 17:55:21 +00005630 newNode = xmlNewTextLen(content, len);
5631 if (newNode != NULL) {
Daniel Veillardacb2bda2002-01-13 16:15:43 +00005632 tmp = xmlAddChild(cur, newNode);
5633 if (tmp != newNode)
5634 return;
Owen Taylor3473f882001-02-23 17:55:21 +00005635 if ((last != NULL) && (last->next == newNode)) {
5636 xmlTextMerge(last, newNode);
5637 }
5638 }
5639 break;
5640 }
5641 case XML_ATTRIBUTE_NODE:
5642 break;
5643 case XML_TEXT_NODE:
5644 case XML_CDATA_SECTION_NODE:
5645 case XML_ENTITY_REF_NODE:
5646 case XML_ENTITY_NODE:
5647 case XML_PI_NODE:
5648 case XML_COMMENT_NODE:
5649 case XML_NOTATION_NODE:
5650 if (content != NULL) {
Daniel Veillard8874b942005-08-25 13:19:21 +00005651 if ((cur->content == (xmlChar *) &(cur->properties)) ||
5652 ((cur->doc != NULL) && (cur->doc->dict != NULL) &&
5653 xmlDictOwns(cur->doc->dict, cur->content))) {
5654 cur->content = xmlStrncatNew(cur->content, content, len);
5655 cur->properties = NULL;
5656 cur->nsDef = NULL;
William M. Brack7762bb12004-01-04 14:49:01 +00005657 break;
5658 }
Owen Taylor3473f882001-02-23 17:55:21 +00005659 cur->content = xmlStrncat(cur->content, content, len);
Owen Taylor3473f882001-02-23 17:55:21 +00005660 }
5661 case XML_DOCUMENT_NODE:
5662 case XML_DTD_NODE:
5663 case XML_HTML_DOCUMENT_NODE:
5664 case XML_DOCUMENT_TYPE_NODE:
5665 case XML_NAMESPACE_DECL:
5666 case XML_XINCLUDE_START:
5667 case XML_XINCLUDE_END:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005668#ifdef LIBXML_DOCB_ENABLED
5669 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005670#endif
5671 break;
5672 case XML_ELEMENT_DECL:
5673 case XML_ATTRIBUTE_DECL:
5674 case XML_ENTITY_DECL:
5675 break;
5676 }
5677}
5678
5679/**
5680 * xmlNodeAddContent:
5681 * @cur: the node being modified
5682 * @content: extra content
Daniel Veillardaa6de472008-08-25 14:53:31 +00005683 *
Owen Taylor3473f882001-02-23 17:55:21 +00005684 * Append the extra substring to the node content.
Daniel Veillard0e05f4c2006-11-01 15:33:04 +00005685 * NOTE: In contrast to xmlNodeSetContent(), @content is supposed to be
5686 * raw text, so unescaped XML special chars are allowed, entity
5687 * references are not supported.
Owen Taylor3473f882001-02-23 17:55:21 +00005688 */
5689void
5690xmlNodeAddContent(xmlNodePtr cur, const xmlChar *content) {
5691 int len;
5692
5693 if (cur == NULL) {
5694#ifdef DEBUG_TREE
5695 xmlGenericError(xmlGenericErrorContext,
5696 "xmlNodeAddContent : node == NULL\n");
5697#endif
5698 return;
5699 }
5700 if (content == NULL) return;
5701 len = xmlStrlen(content);
5702 xmlNodeAddContentLen(cur, content, len);
5703}
5704
5705/**
5706 * xmlTextMerge:
5707 * @first: the first text node
5708 * @second: the second text node being merged
Daniel Veillardaa6de472008-08-25 14:53:31 +00005709 *
Owen Taylor3473f882001-02-23 17:55:21 +00005710 * Merge two text nodes into one
5711 * Returns the first text node augmented
5712 */
5713xmlNodePtr
5714xmlTextMerge(xmlNodePtr first, xmlNodePtr second) {
5715 if (first == NULL) return(second);
5716 if (second == NULL) return(first);
5717 if (first->type != XML_TEXT_NODE) return(first);
5718 if (second->type != XML_TEXT_NODE) return(first);
5719 if (second->name != first->name)
5720 return(first);
Owen Taylor3473f882001-02-23 17:55:21 +00005721 xmlNodeAddContent(first, second->content);
Owen Taylor3473f882001-02-23 17:55:21 +00005722 xmlUnlinkNode(second);
5723 xmlFreeNode(second);
5724 return(first);
5725}
5726
Daniel Veillardf1a27c62006-10-13 22:33:03 +00005727#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00005728/**
5729 * xmlGetNsList:
5730 * @doc: the document
5731 * @node: the current node
5732 *
5733 * Search all the namespace applying to a given element.
Daniel Veillardd1640922001-12-17 15:30:10 +00005734 * Returns an NULL terminated array of all the #xmlNsPtr found
Owen Taylor3473f882001-02-23 17:55:21 +00005735 * that need to be freed by the caller or NULL if no
5736 * namespace if defined
5737 */
5738xmlNsPtr *
Daniel Veillard77044732001-06-29 21:31:07 +00005739xmlGetNsList(xmlDocPtr doc ATTRIBUTE_UNUSED, xmlNodePtr node)
5740{
Owen Taylor3473f882001-02-23 17:55:21 +00005741 xmlNsPtr cur;
5742 xmlNsPtr *ret = NULL;
5743 int nbns = 0;
5744 int maxns = 10;
5745 int i;
5746
5747 while (node != NULL) {
Daniel Veillard77044732001-06-29 21:31:07 +00005748 if (node->type == XML_ELEMENT_NODE) {
5749 cur = node->nsDef;
5750 while (cur != NULL) {
5751 if (ret == NULL) {
5752 ret =
5753 (xmlNsPtr *) xmlMalloc((maxns + 1) *
5754 sizeof(xmlNsPtr));
5755 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005756 xmlTreeErrMemory("getting namespace list");
Daniel Veillard77044732001-06-29 21:31:07 +00005757 return (NULL);
5758 }
5759 ret[nbns] = NULL;
5760 }
5761 for (i = 0; i < nbns; i++) {
5762 if ((cur->prefix == ret[i]->prefix) ||
5763 (xmlStrEqual(cur->prefix, ret[i]->prefix)))
5764 break;
5765 }
5766 if (i >= nbns) {
5767 if (nbns >= maxns) {
5768 maxns *= 2;
5769 ret = (xmlNsPtr *) xmlRealloc(ret,
5770 (maxns +
5771 1) *
5772 sizeof(xmlNsPtr));
5773 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005774 xmlTreeErrMemory("getting namespace list");
Daniel Veillard77044732001-06-29 21:31:07 +00005775 return (NULL);
5776 }
5777 }
5778 ret[nbns++] = cur;
5779 ret[nbns] = NULL;
5780 }
Owen Taylor3473f882001-02-23 17:55:21 +00005781
Daniel Veillard77044732001-06-29 21:31:07 +00005782 cur = cur->next;
5783 }
5784 }
5785 node = node->parent;
Owen Taylor3473f882001-02-23 17:55:21 +00005786 }
Daniel Veillard77044732001-06-29 21:31:07 +00005787 return (ret);
Owen Taylor3473f882001-02-23 17:55:21 +00005788}
Daniel Veillard652327a2003-09-29 18:02:38 +00005789#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00005790
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00005791/*
5792* xmlTreeEnsureXMLDecl:
5793* @doc: the doc
Daniel Veillardaa6de472008-08-25 14:53:31 +00005794*
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00005795* Ensures that there is an XML namespace declaration on the doc.
Daniel Veillardaa6de472008-08-25 14:53:31 +00005796*
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00005797* Returns the XML ns-struct or NULL on API and internal errors.
5798*/
5799static xmlNsPtr
5800xmlTreeEnsureXMLDecl(xmlDocPtr doc)
5801{
5802 if (doc == NULL)
5803 return (NULL);
5804 if (doc->oldNs != NULL)
5805 return (doc->oldNs);
5806 {
5807 xmlNsPtr ns;
5808 ns = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
5809 if (ns == NULL) {
5810 xmlTreeErrMemory(
5811 "allocating the XML namespace");
5812 return (NULL);
5813 }
5814 memset(ns, 0, sizeof(xmlNs));
5815 ns->type = XML_LOCAL_NAMESPACE;
Daniel Veillardaa6de472008-08-25 14:53:31 +00005816 ns->href = xmlStrdup(XML_XML_NAMESPACE);
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00005817 ns->prefix = xmlStrdup((const xmlChar *)"xml");
5818 doc->oldNs = ns;
5819 return (ns);
5820 }
5821}
5822
Owen Taylor3473f882001-02-23 17:55:21 +00005823/**
5824 * xmlSearchNs:
5825 * @doc: the document
5826 * @node: the current node
Daniel Veillard77851712001-02-27 21:54:07 +00005827 * @nameSpace: the namespace prefix
Owen Taylor3473f882001-02-23 17:55:21 +00005828 *
5829 * Search a Ns registered under a given name space for a document.
5830 * recurse on the parents until it finds the defined namespace
5831 * or return NULL otherwise.
5832 * @nameSpace can be NULL, this is a search for the default namespace.
5833 * We don't allow to cross entities boundaries. If you don't declare
5834 * the namespace within those you will be in troubles !!! A warning
5835 * is generated to cover this case.
5836 *
5837 * Returns the namespace pointer or NULL.
5838 */
5839xmlNsPtr
5840xmlSearchNs(xmlDocPtr doc, xmlNodePtr node, const xmlChar *nameSpace) {
Daniel Veillardaa6de472008-08-25 14:53:31 +00005841
Owen Taylor3473f882001-02-23 17:55:21 +00005842 xmlNsPtr cur;
Daniel Veillardf4e56292003-10-28 14:27:41 +00005843 xmlNodePtr orig = node;
Owen Taylor3473f882001-02-23 17:55:21 +00005844
5845 if (node == NULL) return(NULL);
5846 if ((nameSpace != NULL) &&
5847 (xmlStrEqual(nameSpace, (const xmlChar *)"xml"))) {
Daniel Veillard6f46f6c2002-08-01 12:22:24 +00005848 if ((doc == NULL) && (node->type == XML_ELEMENT_NODE)) {
5849 /*
5850 * The XML-1.0 namespace is normally held on the root
5851 * element. In this case exceptionally create it on the
5852 * node element.
5853 */
5854 cur = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
5855 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005856 xmlTreeErrMemory("searching namespace");
Daniel Veillard6f46f6c2002-08-01 12:22:24 +00005857 return(NULL);
5858 }
5859 memset(cur, 0, sizeof(xmlNs));
5860 cur->type = XML_LOCAL_NAMESPACE;
Daniel Veillardaa6de472008-08-25 14:53:31 +00005861 cur->href = xmlStrdup(XML_XML_NAMESPACE);
5862 cur->prefix = xmlStrdup((const xmlChar *)"xml");
Daniel Veillard6f46f6c2002-08-01 12:22:24 +00005863 cur->next = node->nsDef;
5864 node->nsDef = cur;
5865 return(cur);
5866 }
Daniel Veillard11ce4002006-03-10 00:36:23 +00005867 if (doc == NULL) {
5868 doc = node->doc;
5869 if (doc == NULL)
5870 return(NULL);
5871 }
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00005872 /*
5873 * Return the XML namespace declaration held by the doc.
5874 */
5875 if (doc->oldNs == NULL)
5876 return(xmlTreeEnsureXMLDecl(doc));
5877 else
5878 return(doc->oldNs);
Owen Taylor3473f882001-02-23 17:55:21 +00005879 }
5880 while (node != NULL) {
5881 if ((node->type == XML_ENTITY_REF_NODE) ||
5882 (node->type == XML_ENTITY_NODE) ||
5883 (node->type == XML_ENTITY_DECL))
5884 return(NULL);
5885 if (node->type == XML_ELEMENT_NODE) {
5886 cur = node->nsDef;
5887 while (cur != NULL) {
5888 if ((cur->prefix == NULL) && (nameSpace == NULL) &&
5889 (cur->href != NULL))
5890 return(cur);
5891 if ((cur->prefix != NULL) && (nameSpace != NULL) &&
5892 (cur->href != NULL) &&
5893 (xmlStrEqual(cur->prefix, nameSpace)))
5894 return(cur);
5895 cur = cur->next;
5896 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00005897 if (orig != node) {
Daniel Veillardf4e56292003-10-28 14:27:41 +00005898 cur = node->ns;
5899 if (cur != NULL) {
5900 if ((cur->prefix == NULL) && (nameSpace == NULL) &&
5901 (cur->href != NULL))
5902 return(cur);
5903 if ((cur->prefix != NULL) && (nameSpace != NULL) &&
5904 (cur->href != NULL) &&
5905 (xmlStrEqual(cur->prefix, nameSpace)))
5906 return(cur);
5907 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00005908 }
Owen Taylor3473f882001-02-23 17:55:21 +00005909 }
5910 node = node->parent;
5911 }
5912 return(NULL);
5913}
5914
5915/**
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005916 * xmlNsInScope:
5917 * @doc: the document
5918 * @node: the current node
5919 * @ancestor: the ancestor carrying the namespace
5920 * @prefix: the namespace prefix
5921 *
5922 * Verify that the given namespace held on @ancestor is still in scope
5923 * on node.
Daniel Veillardaa6de472008-08-25 14:53:31 +00005924 *
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005925 * Returns 1 if true, 0 if false and -1 in case of error.
5926 */
5927static int
Daniel Veillardbdbe0d42003-09-14 19:56:14 +00005928xmlNsInScope(xmlDocPtr doc ATTRIBUTE_UNUSED, xmlNodePtr node,
5929 xmlNodePtr ancestor, const xmlChar * prefix)
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005930{
5931 xmlNsPtr tst;
5932
5933 while ((node != NULL) && (node != ancestor)) {
5934 if ((node->type == XML_ENTITY_REF_NODE) ||
5935 (node->type == XML_ENTITY_NODE) ||
5936 (node->type == XML_ENTITY_DECL))
5937 return (-1);
5938 if (node->type == XML_ELEMENT_NODE) {
5939 tst = node->nsDef;
5940 while (tst != NULL) {
5941 if ((tst->prefix == NULL)
5942 && (prefix == NULL))
5943 return (0);
5944 if ((tst->prefix != NULL)
5945 && (prefix != NULL)
5946 && (xmlStrEqual(tst->prefix, prefix)))
5947 return (0);
5948 tst = tst->next;
5949 }
5950 }
5951 node = node->parent;
5952 }
5953 if (node != ancestor)
5954 return (-1);
5955 return (1);
5956}
Daniel Veillardaa6de472008-08-25 14:53:31 +00005957
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005958/**
Owen Taylor3473f882001-02-23 17:55:21 +00005959 * xmlSearchNsByHref:
5960 * @doc: the document
5961 * @node: the current node
5962 * @href: the namespace value
5963 *
5964 * Search a Ns aliasing a given URI. Recurse on the parents until it finds
5965 * the defined namespace or return NULL otherwise.
5966 * Returns the namespace pointer or NULL.
5967 */
5968xmlNsPtr
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005969xmlSearchNsByHref(xmlDocPtr doc, xmlNodePtr node, const xmlChar * href)
5970{
Owen Taylor3473f882001-02-23 17:55:21 +00005971 xmlNsPtr cur;
5972 xmlNodePtr orig = node;
Daniel Veillard62040be2004-05-17 03:17:26 +00005973 int is_attr;
Owen Taylor3473f882001-02-23 17:55:21 +00005974
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005975 if ((node == NULL) || (href == NULL))
5976 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005977 if (xmlStrEqual(href, XML_XML_NAMESPACE)) {
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005978 /*
5979 * Only the document can hold the XML spec namespace.
5980 */
5981 if ((doc == NULL) && (node->type == XML_ELEMENT_NODE)) {
5982 /*
5983 * The XML-1.0 namespace is normally held on the root
5984 * element. In this case exceptionally create it on the
5985 * node element.
5986 */
5987 cur = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
5988 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005989 xmlTreeErrMemory("searching namespace");
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005990 return (NULL);
5991 }
5992 memset(cur, 0, sizeof(xmlNs));
5993 cur->type = XML_LOCAL_NAMESPACE;
5994 cur->href = xmlStrdup(XML_XML_NAMESPACE);
5995 cur->prefix = xmlStrdup((const xmlChar *) "xml");
5996 cur->next = node->nsDef;
5997 node->nsDef = cur;
5998 return (cur);
5999 }
Daniel Veillard11ce4002006-03-10 00:36:23 +00006000 if (doc == NULL) {
6001 doc = node->doc;
6002 if (doc == NULL)
6003 return(NULL);
6004 }
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00006005 /*
6006 * Return the XML namespace declaration held by the doc.
6007 */
6008 if (doc->oldNs == NULL)
6009 return(xmlTreeEnsureXMLDecl(doc));
6010 else
Daniel Veillardaa6de472008-08-25 14:53:31 +00006011 return(doc->oldNs);
Owen Taylor3473f882001-02-23 17:55:21 +00006012 }
Daniel Veillard62040be2004-05-17 03:17:26 +00006013 is_attr = (node->type == XML_ATTRIBUTE_NODE);
Owen Taylor3473f882001-02-23 17:55:21 +00006014 while (node != NULL) {
Daniel Veillard2a3fea32003-09-12 09:44:56 +00006015 if ((node->type == XML_ENTITY_REF_NODE) ||
6016 (node->type == XML_ENTITY_NODE) ||
6017 (node->type == XML_ENTITY_DECL))
6018 return (NULL);
6019 if (node->type == XML_ELEMENT_NODE) {
6020 cur = node->nsDef;
6021 while (cur != NULL) {
6022 if ((cur->href != NULL) && (href != NULL) &&
6023 (xmlStrEqual(cur->href, href))) {
Daniel Veillard62040be2004-05-17 03:17:26 +00006024 if (((!is_attr) || (cur->prefix != NULL)) &&
Kasimier T. Buchcikba70cc02005-02-28 10:28:21 +00006025 (xmlNsInScope(doc, orig, node, cur->prefix) == 1))
Daniel Veillard2a3fea32003-09-12 09:44:56 +00006026 return (cur);
6027 }
6028 cur = cur->next;
6029 }
Daniel Veillardf4e56292003-10-28 14:27:41 +00006030 if (orig != node) {
6031 cur = node->ns;
6032 if (cur != NULL) {
6033 if ((cur->href != NULL) && (href != NULL) &&
6034 (xmlStrEqual(cur->href, href))) {
Daniel Veillard62040be2004-05-17 03:17:26 +00006035 if (((!is_attr) || (cur->prefix != NULL)) &&
Kasimier T. Buchcikba70cc02005-02-28 10:28:21 +00006036 (xmlNsInScope(doc, orig, node, cur->prefix) == 1))
Daniel Veillardf4e56292003-10-28 14:27:41 +00006037 return (cur);
6038 }
Daniel Veillard2a3fea32003-09-12 09:44:56 +00006039 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00006040 }
Daniel Veillard2a3fea32003-09-12 09:44:56 +00006041 }
6042 node = node->parent;
Owen Taylor3473f882001-02-23 17:55:21 +00006043 }
Daniel Veillard2a3fea32003-09-12 09:44:56 +00006044 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006045}
6046
6047/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00006048 * xmlNewReconciliedNs:
Owen Taylor3473f882001-02-23 17:55:21 +00006049 * @doc: the document
6050 * @tree: a node expected to hold the new namespace
6051 * @ns: the original namespace
6052 *
6053 * This function tries to locate a namespace definition in a tree
6054 * ancestors, or create a new namespace definition node similar to
6055 * @ns trying to reuse the same prefix. However if the given prefix is
6056 * null (default namespace) or reused within the subtree defined by
6057 * @tree or on one of its ancestors then a new prefix is generated.
6058 * Returns the (new) namespace definition or NULL in case of error
6059 */
Daniel Veillard8ed10722009-08-20 19:17:36 +02006060static xmlNsPtr
Owen Taylor3473f882001-02-23 17:55:21 +00006061xmlNewReconciliedNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns) {
6062 xmlNsPtr def;
6063 xmlChar prefix[50];
6064 int counter = 1;
6065
6066 if (tree == NULL) {
6067#ifdef DEBUG_TREE
6068 xmlGenericError(xmlGenericErrorContext,
6069 "xmlNewReconciliedNs : tree == NULL\n");
6070#endif
6071 return(NULL);
6072 }
Daniel Veillardce244ad2004-11-05 10:03:46 +00006073 if ((ns == NULL) || (ns->type != XML_NAMESPACE_DECL)) {
Owen Taylor3473f882001-02-23 17:55:21 +00006074#ifdef DEBUG_TREE
6075 xmlGenericError(xmlGenericErrorContext,
6076 "xmlNewReconciliedNs : ns == NULL\n");
6077#endif
6078 return(NULL);
6079 }
6080 /*
6081 * Search an existing namespace definition inherited.
6082 */
6083 def = xmlSearchNsByHref(doc, tree, ns->href);
6084 if (def != NULL)
6085 return(def);
6086
6087 /*
6088 * Find a close prefix which is not already in use.
6089 * Let's strip namespace prefixes longer than 20 chars !
6090 */
Daniel Veillardf742d342002-03-07 00:05:35 +00006091 if (ns->prefix == NULL)
Aleksey Sanin49cc9752002-06-14 17:07:10 +00006092 snprintf((char *) prefix, sizeof(prefix), "default");
Daniel Veillardf742d342002-03-07 00:05:35 +00006093 else
William M. Brack13dfa872004-09-18 04:52:08 +00006094 snprintf((char *) prefix, sizeof(prefix), "%.20s", (char *)ns->prefix);
Daniel Veillardf742d342002-03-07 00:05:35 +00006095
Owen Taylor3473f882001-02-23 17:55:21 +00006096 def = xmlSearchNs(doc, tree, prefix);
6097 while (def != NULL) {
6098 if (counter > 1000) return(NULL);
Daniel Veillardf742d342002-03-07 00:05:35 +00006099 if (ns->prefix == NULL)
Aleksey Sanin49cc9752002-06-14 17:07:10 +00006100 snprintf((char *) prefix, sizeof(prefix), "default%d", counter++);
Daniel Veillardf742d342002-03-07 00:05:35 +00006101 else
William M. Brack13dfa872004-09-18 04:52:08 +00006102 snprintf((char *) prefix, sizeof(prefix), "%.20s%d",
Daniel Veillardaa6de472008-08-25 14:53:31 +00006103 (char *)ns->prefix, counter++);
Owen Taylor3473f882001-02-23 17:55:21 +00006104 def = xmlSearchNs(doc, tree, prefix);
6105 }
6106
6107 /*
Daniel Veillardd1640922001-12-17 15:30:10 +00006108 * OK, now we are ready to create a new one.
Owen Taylor3473f882001-02-23 17:55:21 +00006109 */
6110 def = xmlNewNs(tree, ns->href, prefix);
6111 return(def);
6112}
6113
Daniel Veillard652327a2003-09-29 18:02:38 +00006114#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00006115/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00006116 * xmlReconciliateNs:
Owen Taylor3473f882001-02-23 17:55:21 +00006117 * @doc: the document
6118 * @tree: a node defining the subtree to reconciliate
6119 *
6120 * This function checks that all the namespaces declared within the given
6121 * tree are properly declared. This is needed for example after Copy or Cut
6122 * and then paste operations. The subtree may still hold pointers to
6123 * namespace declarations outside the subtree or invalid/masked. As much
Daniel Veillardd1640922001-12-17 15:30:10 +00006124 * as possible the function try to reuse the existing namespaces found in
Owen Taylor3473f882001-02-23 17:55:21 +00006125 * the new environment. If not possible the new namespaces are redeclared
6126 * on @tree at the top of the given subtree.
6127 * Returns the number of namespace declarations created or -1 in case of error.
6128 */
6129int
6130xmlReconciliateNs(xmlDocPtr doc, xmlNodePtr tree) {
6131 xmlNsPtr *oldNs = NULL;
6132 xmlNsPtr *newNs = NULL;
6133 int sizeCache = 0;
6134 int nbCache = 0;
6135
6136 xmlNsPtr n;
6137 xmlNodePtr node = tree;
6138 xmlAttrPtr attr;
6139 int ret = 0, i;
6140
Daniel Veillardce244ad2004-11-05 10:03:46 +00006141 if ((node == NULL) || (node->type != XML_ELEMENT_NODE)) return(-1);
6142 if ((doc == NULL) || (doc->type != XML_DOCUMENT_NODE)) return(-1);
6143 if (node->doc != doc) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00006144 while (node != NULL) {
6145 /*
6146 * Reconciliate the node namespace
6147 */
6148 if (node->ns != NULL) {
6149 /*
6150 * initialize the cache if needed
6151 */
6152 if (sizeCache == 0) {
6153 sizeCache = 10;
6154 oldNs = (xmlNsPtr *) xmlMalloc(sizeCache *
6155 sizeof(xmlNsPtr));
6156 if (oldNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006157 xmlTreeErrMemory("fixing namespaces");
Owen Taylor3473f882001-02-23 17:55:21 +00006158 return(-1);
6159 }
6160 newNs = (xmlNsPtr *) xmlMalloc(sizeCache *
6161 sizeof(xmlNsPtr));
6162 if (newNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006163 xmlTreeErrMemory("fixing namespaces");
Owen Taylor3473f882001-02-23 17:55:21 +00006164 xmlFree(oldNs);
6165 return(-1);
6166 }
6167 }
6168 for (i = 0;i < nbCache;i++) {
6169 if (oldNs[i] == node->ns) {
6170 node->ns = newNs[i];
6171 break;
6172 }
6173 }
6174 if (i == nbCache) {
6175 /*
Daniel Veillardd1640922001-12-17 15:30:10 +00006176 * OK we need to recreate a new namespace definition
Owen Taylor3473f882001-02-23 17:55:21 +00006177 */
6178 n = xmlNewReconciliedNs(doc, tree, node->ns);
6179 if (n != NULL) { /* :-( what if else ??? */
6180 /*
6181 * check if we need to grow the cache buffers.
6182 */
6183 if (sizeCache <= nbCache) {
6184 sizeCache *= 2;
6185 oldNs = (xmlNsPtr *) xmlRealloc(oldNs, sizeCache *
6186 sizeof(xmlNsPtr));
6187 if (oldNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006188 xmlTreeErrMemory("fixing namespaces");
Owen Taylor3473f882001-02-23 17:55:21 +00006189 xmlFree(newNs);
6190 return(-1);
6191 }
6192 newNs = (xmlNsPtr *) xmlRealloc(newNs, sizeCache *
6193 sizeof(xmlNsPtr));
6194 if (newNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006195 xmlTreeErrMemory("fixing namespaces");
Owen Taylor3473f882001-02-23 17:55:21 +00006196 xmlFree(oldNs);
6197 return(-1);
6198 }
6199 }
6200 newNs[nbCache] = n;
6201 oldNs[nbCache++] = node->ns;
6202 node->ns = n;
6203 }
6204 }
6205 }
6206 /*
6207 * now check for namespace hold by attributes on the node.
6208 */
Daniel Veillardb5f11972006-10-14 08:46:40 +00006209 if (node->type == XML_ELEMENT_NODE) {
6210 attr = node->properties;
6211 while (attr != NULL) {
6212 if (attr->ns != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00006213 /*
Daniel Veillardb5f11972006-10-14 08:46:40 +00006214 * initialize the cache if needed
Owen Taylor3473f882001-02-23 17:55:21 +00006215 */
Daniel Veillardb5f11972006-10-14 08:46:40 +00006216 if (sizeCache == 0) {
6217 sizeCache = 10;
6218 oldNs = (xmlNsPtr *) xmlMalloc(sizeCache *
6219 sizeof(xmlNsPtr));
6220 if (oldNs == NULL) {
6221 xmlTreeErrMemory("fixing namespaces");
6222 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00006223 }
Daniel Veillardb5f11972006-10-14 08:46:40 +00006224 newNs = (xmlNsPtr *) xmlMalloc(sizeCache *
6225 sizeof(xmlNsPtr));
6226 if (newNs == NULL) {
6227 xmlTreeErrMemory("fixing namespaces");
6228 xmlFree(oldNs);
6229 return(-1);
6230 }
6231 }
6232 for (i = 0;i < nbCache;i++) {
6233 if (oldNs[i] == attr->ns) {
6234 attr->ns = newNs[i];
6235 break;
6236 }
6237 }
6238 if (i == nbCache) {
6239 /*
6240 * OK we need to recreate a new namespace definition
6241 */
6242 n = xmlNewReconciliedNs(doc, tree, attr->ns);
6243 if (n != NULL) { /* :-( what if else ??? */
6244 /*
6245 * check if we need to grow the cache buffers.
6246 */
6247 if (sizeCache <= nbCache) {
6248 sizeCache *= 2;
6249 oldNs = (xmlNsPtr *) xmlRealloc(oldNs,
6250 sizeCache * sizeof(xmlNsPtr));
6251 if (oldNs == NULL) {
6252 xmlTreeErrMemory("fixing namespaces");
6253 xmlFree(newNs);
6254 return(-1);
6255 }
6256 newNs = (xmlNsPtr *) xmlRealloc(newNs,
6257 sizeCache * sizeof(xmlNsPtr));
6258 if (newNs == NULL) {
6259 xmlTreeErrMemory("fixing namespaces");
6260 xmlFree(oldNs);
6261 return(-1);
6262 }
6263 }
6264 newNs[nbCache] = n;
6265 oldNs[nbCache++] = attr->ns;
6266 attr->ns = n;
6267 }
Owen Taylor3473f882001-02-23 17:55:21 +00006268 }
6269 }
Daniel Veillardb5f11972006-10-14 08:46:40 +00006270 attr = attr->next;
Owen Taylor3473f882001-02-23 17:55:21 +00006271 }
Owen Taylor3473f882001-02-23 17:55:21 +00006272 }
6273
6274 /*
6275 * Browse the full subtree, deep first
6276 */
Daniel Veillardb5f11972006-10-14 08:46:40 +00006277 if ((node->children != NULL) && (node->type != XML_ENTITY_REF_NODE)) {
Owen Taylor3473f882001-02-23 17:55:21 +00006278 /* deep first */
6279 node = node->children;
6280 } else if ((node != tree) && (node->next != NULL)) {
6281 /* then siblings */
6282 node = node->next;
6283 } else if (node != tree) {
6284 /* go up to parents->next if needed */
6285 while (node != tree) {
6286 if (node->parent != NULL)
6287 node = node->parent;
6288 if ((node != tree) && (node->next != NULL)) {
6289 node = node->next;
6290 break;
6291 }
6292 if (node->parent == NULL) {
6293 node = NULL;
6294 break;
6295 }
6296 }
6297 /* exit condition */
Daniel Veillardaa6de472008-08-25 14:53:31 +00006298 if (node == tree)
Owen Taylor3473f882001-02-23 17:55:21 +00006299 node = NULL;
Daniel Veillard1e774382002-03-06 17:35:40 +00006300 } else
6301 break;
Owen Taylor3473f882001-02-23 17:55:21 +00006302 }
Daniel Veillardf742d342002-03-07 00:05:35 +00006303 if (oldNs != NULL)
6304 xmlFree(oldNs);
6305 if (newNs != NULL)
6306 xmlFree(newNs);
Owen Taylor3473f882001-02-23 17:55:21 +00006307 return(ret);
6308}
Daniel Veillard652327a2003-09-29 18:02:38 +00006309#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00006310
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006311static xmlAttrPtr
6312xmlGetPropNodeInternal(xmlNodePtr node, const xmlChar *name,
6313 const xmlChar *nsName, int useDTD)
6314{
6315 xmlAttrPtr prop;
6316
6317 if ((node == NULL) || (node->type != XML_ELEMENT_NODE) || (name == NULL))
6318 return(NULL);
6319
6320 if (node->properties != NULL) {
6321 prop = node->properties;
6322 if (nsName == NULL) {
6323 /*
6324 * We want the attr to be in no namespace.
6325 */
6326 do {
6327 if ((prop->ns == NULL) && xmlStrEqual(prop->name, name)) {
6328 return(prop);
6329 }
6330 prop = prop->next;
6331 } while (prop != NULL);
6332 } else {
6333 /*
6334 * We want the attr to be in the specified namespace.
6335 */
6336 do {
6337 if ((prop->ns != NULL) && xmlStrEqual(prop->name, name) &&
6338 ((prop->ns->href == nsName) ||
6339 xmlStrEqual(prop->ns->href, nsName)))
6340 {
6341 return(prop);
6342 }
6343 prop = prop->next;
6344 } while (prop != NULL);
6345 }
6346 }
6347
6348#ifdef LIBXML_TREE_ENABLED
6349 if (! useDTD)
6350 return(NULL);
6351 /*
6352 * Check if there is a default/fixed attribute declaration in
6353 * the internal or external subset.
Daniel Veillardaa6de472008-08-25 14:53:31 +00006354 */
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006355 if ((node->doc != NULL) && (node->doc->intSubset != NULL)) {
6356 xmlDocPtr doc = node->doc;
6357 xmlAttributePtr attrDecl = NULL;
6358 xmlChar *elemQName, *tmpstr = NULL;
6359
6360 /*
Daniel Veillardaa6de472008-08-25 14:53:31 +00006361 * We need the QName of the element for the DTD-lookup.
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006362 */
6363 if ((node->ns != NULL) && (node->ns->prefix != NULL)) {
6364 tmpstr = xmlStrdup(node->ns->prefix);
6365 tmpstr = xmlStrcat(tmpstr, BAD_CAST ":");
6366 tmpstr = xmlStrcat(tmpstr, node->name);
6367 if (tmpstr == NULL)
6368 return(NULL);
6369 elemQName = tmpstr;
6370 } else
6371 elemQName = (xmlChar *) node->name;
6372 if (nsName == NULL) {
6373 /*
6374 * The common and nice case: Attr in no namespace.
6375 */
6376 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset,
6377 elemQName, name, NULL);
6378 if ((attrDecl == NULL) && (doc->extSubset != NULL)) {
6379 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset,
6380 elemQName, name, NULL);
6381 }
6382 } else {
6383 xmlNsPtr *nsList, *cur;
6384
6385 /*
6386 * The ugly case: Search using the prefixes of in-scope
6387 * ns-decls corresponding to @nsName.
6388 */
6389 nsList = xmlGetNsList(node->doc, node);
6390 if (nsList == NULL) {
6391 if (tmpstr != NULL)
6392 xmlFree(tmpstr);
6393 return(NULL);
6394 }
6395 cur = nsList;
6396 while (*cur != NULL) {
6397 if (xmlStrEqual((*cur)->href, nsName)) {
6398 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, elemQName,
6399 name, (*cur)->prefix);
6400 if (attrDecl)
6401 break;
6402 if (doc->extSubset != NULL) {
6403 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, elemQName,
6404 name, (*cur)->prefix);
6405 if (attrDecl)
6406 break;
6407 }
6408 }
6409 cur++;
6410 }
6411 xmlFree(nsList);
Daniel Veillardaa6de472008-08-25 14:53:31 +00006412 }
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006413 if (tmpstr != NULL)
6414 xmlFree(tmpstr);
6415 /*
6416 * Only default/fixed attrs are relevant.
6417 */
6418 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL))
6419 return((xmlAttrPtr) attrDecl);
6420 }
6421#endif /* LIBXML_TREE_ENABLED */
6422 return(NULL);
6423}
6424
6425static xmlChar*
6426xmlGetPropNodeValueInternal(xmlAttrPtr prop)
6427{
6428 if (prop == NULL)
6429 return(NULL);
6430 if (prop->type == XML_ATTRIBUTE_NODE) {
6431 /*
6432 * Note that we return at least the empty string.
6433 * TODO: Do we really always want that?
6434 */
6435 if (prop->children != NULL) {
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00006436 if ((prop->children->next == NULL) &&
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006437 ((prop->children->type == XML_TEXT_NODE) ||
6438 (prop->children->type == XML_CDATA_SECTION_NODE)))
6439 {
6440 /*
6441 * Optimization for the common case: only 1 text node.
6442 */
6443 return(xmlStrdup(prop->children->content));
6444 } else {
6445 xmlChar *ret;
6446
6447 ret = xmlNodeListGetString(prop->doc, prop->children, 1);
6448 if (ret != NULL)
6449 return(ret);
6450 }
6451 }
6452 return(xmlStrdup((xmlChar *)""));
6453 } else if (prop->type == XML_ATTRIBUTE_DECL) {
6454 return(xmlStrdup(((xmlAttributePtr)prop)->defaultValue));
6455 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00006456 return(NULL);
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006457}
6458
Owen Taylor3473f882001-02-23 17:55:21 +00006459/**
6460 * xmlHasProp:
6461 * @node: the node
6462 * @name: the attribute name
6463 *
6464 * Search an attribute associated to a node
6465 * This function also looks in DTD attribute declaration for #FIXED or
6466 * default declaration values unless DTD use has been turned off.
6467 *
Daniel Veillardaa6de472008-08-25 14:53:31 +00006468 * Returns the attribute or the attribute declaration or NULL if
Owen Taylor3473f882001-02-23 17:55:21 +00006469 * neither was found.
6470 */
6471xmlAttrPtr
6472xmlHasProp(xmlNodePtr node, const xmlChar *name) {
6473 xmlAttrPtr prop;
6474 xmlDocPtr doc;
6475
Daniel Veillard8874b942005-08-25 13:19:21 +00006476 if ((node == NULL) || (node->type != XML_ELEMENT_NODE) || (name == NULL))
6477 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006478 /*
6479 * Check on the properties attached to the node
6480 */
6481 prop = node->properties;
6482 while (prop != NULL) {
6483 if (xmlStrEqual(prop->name, name)) {
6484 return(prop);
6485 }
6486 prop = prop->next;
6487 }
6488 if (!xmlCheckDTD) return(NULL);
6489
6490 /*
6491 * Check if there is a default declaration in the internal
6492 * or external subsets
6493 */
6494 doc = node->doc;
6495 if (doc != NULL) {
6496 xmlAttributePtr attrDecl;
6497 if (doc->intSubset != NULL) {
6498 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name);
6499 if ((attrDecl == NULL) && (doc->extSubset != NULL))
6500 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name);
Daniel Veillard75eb1ad2003-07-07 14:42:44 +00006501 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL))
6502 /* return attribute declaration only if a default value is given
6503 (that includes #FIXED declarations) */
Owen Taylor3473f882001-02-23 17:55:21 +00006504 return((xmlAttrPtr) attrDecl);
6505 }
6506 }
6507 return(NULL);
6508}
6509
6510/**
Daniel Veillarde95e2392001-06-06 10:46:28 +00006511 * xmlHasNsProp:
6512 * @node: the node
6513 * @name: the attribute name
Daniel Veillardca2366a2001-06-11 12:09:01 +00006514 * @nameSpace: the URI of the namespace
Daniel Veillarde95e2392001-06-06 10:46:28 +00006515 *
6516 * Search for an attribute associated to a node
6517 * This attribute has to be anchored in the namespace specified.
6518 * This does the entity substitution.
6519 * This function looks in DTD attribute declaration for #FIXED or
6520 * default declaration values unless DTD use has been turned off.
William M. Brack2c228442004-10-03 04:10:00 +00006521 * Note that a namespace of NULL indicates to use the default namespace.
Daniel Veillarde95e2392001-06-06 10:46:28 +00006522 *
6523 * Returns the attribute or the attribute declaration or NULL
6524 * if neither was found.
6525 */
6526xmlAttrPtr
Daniel Veillardca2366a2001-06-11 12:09:01 +00006527xmlHasNsProp(xmlNodePtr node, const xmlChar *name, const xmlChar *nameSpace) {
Daniel Veillarde95e2392001-06-06 10:46:28 +00006528
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006529 return(xmlGetPropNodeInternal(node, name, nameSpace, xmlCheckDTD));
Daniel Veillarde95e2392001-06-06 10:46:28 +00006530}
6531
6532/**
Owen Taylor3473f882001-02-23 17:55:21 +00006533 * xmlGetProp:
6534 * @node: the node
6535 * @name: the attribute name
6536 *
6537 * Search and get the value of an attribute associated to a node
6538 * This does the entity substitution.
6539 * This function looks in DTD attribute declaration for #FIXED or
6540 * default declaration values unless DTD use has been turned off.
Daniel Veillard784b9352003-02-16 15:50:27 +00006541 * NOTE: this function acts independently of namespaces associated
Daniel Veillard71531f32003-02-05 13:19:53 +00006542 * to the attribute. Use xmlGetNsProp() or xmlGetNoNsProp()
6543 * for namespace aware processing.
Owen Taylor3473f882001-02-23 17:55:21 +00006544 *
6545 * Returns the attribute value or NULL if not found.
Daniel Veillardbd9afb52002-09-25 22:25:35 +00006546 * It's up to the caller to free the memory with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00006547 */
6548xmlChar *
6549xmlGetProp(xmlNodePtr node, const xmlChar *name) {
Daniel Veillardaa6de472008-08-25 14:53:31 +00006550 xmlAttrPtr prop;
Owen Taylor3473f882001-02-23 17:55:21 +00006551
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006552 prop = xmlHasProp(node, name);
6553 if (prop == NULL)
6554 return(NULL);
Daniel Veillardaa6de472008-08-25 14:53:31 +00006555 return(xmlGetPropNodeValueInternal(prop));
Owen Taylor3473f882001-02-23 17:55:21 +00006556}
6557
6558/**
Daniel Veillard71531f32003-02-05 13:19:53 +00006559 * xmlGetNoNsProp:
6560 * @node: the node
6561 * @name: the attribute name
6562 *
6563 * Search and get the value of an attribute associated to a node
6564 * This does the entity substitution.
6565 * This function looks in DTD attribute declaration for #FIXED or
6566 * default declaration values unless DTD use has been turned off.
6567 * This function is similar to xmlGetProp except it will accept only
6568 * an attribute in no namespace.
6569 *
6570 * Returns the attribute value or NULL if not found.
6571 * It's up to the caller to free the memory with xmlFree().
6572 */
6573xmlChar *
6574xmlGetNoNsProp(xmlNodePtr node, const xmlChar *name) {
6575 xmlAttrPtr prop;
Daniel Veillardaa6de472008-08-25 14:53:31 +00006576
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006577 prop = xmlGetPropNodeInternal(node, name, NULL, xmlCheckDTD);
6578 if (prop == NULL)
Daniel Veillard8874b942005-08-25 13:19:21 +00006579 return(NULL);
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006580 return(xmlGetPropNodeValueInternal(prop));
Daniel Veillard71531f32003-02-05 13:19:53 +00006581}
6582
6583/**
Owen Taylor3473f882001-02-23 17:55:21 +00006584 * xmlGetNsProp:
6585 * @node: the node
6586 * @name: the attribute name
Daniel Veillardca2366a2001-06-11 12:09:01 +00006587 * @nameSpace: the URI of the namespace
Owen Taylor3473f882001-02-23 17:55:21 +00006588 *
6589 * Search and get the value of an attribute associated to a node
6590 * This attribute has to be anchored in the namespace specified.
6591 * This does the entity substitution.
6592 * This function looks in DTD attribute declaration for #FIXED or
6593 * default declaration values unless DTD use has been turned off.
6594 *
6595 * Returns the attribute value or NULL if not found.
Daniel Veillardbd9afb52002-09-25 22:25:35 +00006596 * It's up to the caller to free the memory with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00006597 */
6598xmlChar *
Daniel Veillardca2366a2001-06-11 12:09:01 +00006599xmlGetNsProp(xmlNodePtr node, const xmlChar *name, const xmlChar *nameSpace) {
Owen Taylor3473f882001-02-23 17:55:21 +00006600 xmlAttrPtr prop;
Owen Taylor3473f882001-02-23 17:55:21 +00006601
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006602 prop = xmlGetPropNodeInternal(node, name, nameSpace, xmlCheckDTD);
6603 if (prop == NULL)
Owen Taylor3473f882001-02-23 17:55:21 +00006604 return(NULL);
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006605 return(xmlGetPropNodeValueInternal(prop));
Owen Taylor3473f882001-02-23 17:55:21 +00006606}
6607
Daniel Veillard2156d432004-03-04 15:59:36 +00006608#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
6609/**
6610 * xmlUnsetProp:
6611 * @node: the node
6612 * @name: the attribute name
6613 *
6614 * Remove an attribute carried by a node.
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006615 * This handles only attributes in no namespace.
Daniel Veillard2156d432004-03-04 15:59:36 +00006616 * Returns 0 if successful, -1 if not found
6617 */
6618int
6619xmlUnsetProp(xmlNodePtr node, const xmlChar *name) {
Kasimier T. Buchcik65c2f1d2005-10-17 12:39:58 +00006620 xmlAttrPtr prop;
Daniel Veillard2156d432004-03-04 15:59:36 +00006621
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006622 prop = xmlGetPropNodeInternal(node, name, NULL, 0);
6623 if (prop == NULL)
Daniel Veillard2156d432004-03-04 15:59:36 +00006624 return(-1);
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006625 xmlUnlinkNode((xmlNodePtr) prop);
6626 xmlFreeProp(prop);
6627 return(0);
Daniel Veillard2156d432004-03-04 15:59:36 +00006628}
6629
6630/**
6631 * xmlUnsetNsProp:
6632 * @node: the node
6633 * @ns: the namespace definition
6634 * @name: the attribute name
6635 *
6636 * Remove an attribute carried by a node.
6637 * Returns 0 if successful, -1 if not found
6638 */
6639int
6640xmlUnsetNsProp(xmlNodePtr node, xmlNsPtr ns, const xmlChar *name) {
Kasimier T. Buchcik65c2f1d2005-10-17 12:39:58 +00006641 xmlAttrPtr prop;
Daniel Veillardaa6de472008-08-25 14:53:31 +00006642
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006643 prop = xmlGetPropNodeInternal(node, name, (ns != NULL) ? ns->href : NULL, 0);
6644 if (prop == NULL)
Daniel Veillard2156d432004-03-04 15:59:36 +00006645 return(-1);
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006646 xmlUnlinkNode((xmlNodePtr) prop);
6647 xmlFreeProp(prop);
6648 return(0);
Daniel Veillard2156d432004-03-04 15:59:36 +00006649}
6650#endif
6651
6652#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00006653/**
6654 * xmlSetProp:
6655 * @node: the node
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006656 * @name: the attribute name (a QName)
Owen Taylor3473f882001-02-23 17:55:21 +00006657 * @value: the attribute value
6658 *
6659 * Set (or reset) an attribute carried by a node.
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006660 * If @name has a prefix, then the corresponding
6661 * namespace-binding will be used, if in scope; it is an
6662 * error it there's no such ns-binding for the prefix in
6663 * scope.
Owen Taylor3473f882001-02-23 17:55:21 +00006664 * Returns the attribute pointer.
Daniel Veillardaa6de472008-08-25 14:53:31 +00006665 *
Owen Taylor3473f882001-02-23 17:55:21 +00006666 */
6667xmlAttrPtr
6668xmlSetProp(xmlNodePtr node, const xmlChar *name, const xmlChar *value) {
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00006669 int len;
6670 const xmlChar *nqname;
Owen Taylor3473f882001-02-23 17:55:21 +00006671
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00006672 if ((node == NULL) || (name == NULL) || (node->type != XML_ELEMENT_NODE))
Owen Taylor3473f882001-02-23 17:55:21 +00006673 return(NULL);
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00006674
6675 /*
6676 * handle QNames
6677 */
6678 nqname = xmlSplitQName3(name, &len);
6679 if (nqname != NULL) {
6680 xmlNsPtr ns;
6681 xmlChar *prefix = xmlStrndup(name, len);
6682 ns = xmlSearchNs(node->doc, node, prefix);
6683 if (prefix != NULL)
6684 xmlFree(prefix);
6685 if (ns != NULL)
6686 return(xmlSetNsProp(node, ns, nqname, value));
6687 }
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006688 return(xmlSetNsProp(node, NULL, name, value));
Owen Taylor3473f882001-02-23 17:55:21 +00006689}
6690
6691/**
6692 * xmlSetNsProp:
6693 * @node: the node
6694 * @ns: the namespace definition
6695 * @name: the attribute name
6696 * @value: the attribute value
6697 *
6698 * Set (or reset) an attribute carried by a node.
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006699 * The ns structure must be in scope, this is not checked
Owen Taylor3473f882001-02-23 17:55:21 +00006700 *
6701 * Returns the attribute pointer.
6702 */
6703xmlAttrPtr
6704xmlSetNsProp(xmlNodePtr node, xmlNsPtr ns, const xmlChar *name,
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006705 const xmlChar *value)
6706{
Owen Taylor3473f882001-02-23 17:55:21 +00006707 xmlAttrPtr prop;
Daniel Veillardaa6de472008-08-25 14:53:31 +00006708
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006709 if (ns && (ns->href == NULL))
Owen Taylor3473f882001-02-23 17:55:21 +00006710 return(NULL);
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006711 prop = xmlGetPropNodeInternal(node, name, (ns != NULL) ? ns->href : NULL, 0);
6712 if (prop != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00006713 /*
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006714 * Modify the attribute's value.
6715 */
6716 if (prop->atype == XML_ATTRIBUTE_ID) {
6717 xmlRemoveID(node->doc, prop);
6718 prop->atype = XML_ATTRIBUTE_ID;
6719 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00006720 if (prop->children != NULL)
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006721 xmlFreeNodeList(prop->children);
6722 prop->children = NULL;
6723 prop->last = NULL;
6724 prop->ns = ns;
6725 if (value != NULL) {
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006726 xmlNodePtr tmp;
Daniel Veillardaa6de472008-08-25 14:53:31 +00006727
Daniel Veillard6f8611f2008-02-15 08:33:21 +00006728 if(!xmlCheckUTF8(value)) {
6729 xmlTreeErr(XML_TREE_NOT_UTF8, (xmlNodePtr) node->doc,
6730 NULL);
6731 if (node->doc != NULL)
6732 node->doc->encoding = xmlStrdup(BAD_CAST "ISO-8859-1");
6733 }
6734 prop->children = xmlNewDocText(node->doc, value);
Owen Taylor3473f882001-02-23 17:55:21 +00006735 prop->last = NULL;
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006736 tmp = prop->children;
6737 while (tmp != NULL) {
6738 tmp->parent = (xmlNodePtr) prop;
6739 if (tmp->next == NULL)
6740 prop->last = tmp;
6741 tmp = tmp->next;
6742 }
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006743 }
6744 if (prop->atype == XML_ATTRIBUTE_ID)
6745 xmlAddID(NULL, node->doc, value, prop);
6746 return(prop);
Owen Taylor3473f882001-02-23 17:55:21 +00006747 }
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006748 /*
6749 * No equal attr found; create a new one.
6750 */
6751 return(xmlNewPropInternal(node, ns, name, value, 0));
Owen Taylor3473f882001-02-23 17:55:21 +00006752}
6753
Daniel Veillard652327a2003-09-29 18:02:38 +00006754#endif /* LIBXML_TREE_ENABLED */
Daniel Veillard75bea542001-05-11 17:41:21 +00006755
6756/**
Owen Taylor3473f882001-02-23 17:55:21 +00006757 * xmlNodeIsText:
6758 * @node: the node
Daniel Veillardaa6de472008-08-25 14:53:31 +00006759 *
Owen Taylor3473f882001-02-23 17:55:21 +00006760 * Is this node a Text node ?
6761 * Returns 1 yes, 0 no
6762 */
6763int
6764xmlNodeIsText(xmlNodePtr node) {
6765 if (node == NULL) return(0);
6766
6767 if (node->type == XML_TEXT_NODE) return(1);
6768 return(0);
6769}
6770
6771/**
6772 * xmlIsBlankNode:
6773 * @node: the node
Daniel Veillardaa6de472008-08-25 14:53:31 +00006774 *
Owen Taylor3473f882001-02-23 17:55:21 +00006775 * Checks whether this node is an empty or whitespace only
6776 * (and possibly ignorable) text-node.
6777 *
6778 * Returns 1 yes, 0 no
6779 */
6780int
6781xmlIsBlankNode(xmlNodePtr node) {
6782 const xmlChar *cur;
6783 if (node == NULL) return(0);
6784
Daniel Veillard7db37732001-07-12 01:20:08 +00006785 if ((node->type != XML_TEXT_NODE) &&
6786 (node->type != XML_CDATA_SECTION_NODE))
6787 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006788 if (node->content == NULL) return(1);
Owen Taylor3473f882001-02-23 17:55:21 +00006789 cur = node->content;
Owen Taylor3473f882001-02-23 17:55:21 +00006790 while (*cur != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00006791 if (!IS_BLANK_CH(*cur)) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006792 cur++;
6793 }
6794
6795 return(1);
6796}
6797
6798/**
6799 * xmlTextConcat:
6800 * @node: the node
6801 * @content: the content
Daniel Veillard60087f32001-10-10 09:45:09 +00006802 * @len: @content length
Daniel Veillardaa6de472008-08-25 14:53:31 +00006803 *
Owen Taylor3473f882001-02-23 17:55:21 +00006804 * Concat the given string at the end of the existing node content
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00006805 *
6806 * Returns -1 in case of error, 0 otherwise
Owen Taylor3473f882001-02-23 17:55:21 +00006807 */
6808
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00006809int
Owen Taylor3473f882001-02-23 17:55:21 +00006810xmlTextConcat(xmlNodePtr node, const xmlChar *content, int len) {
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00006811 if (node == NULL) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00006812
6813 if ((node->type != XML_TEXT_NODE) &&
Rob Richardsa02f1992006-09-16 14:04:26 +00006814 (node->type != XML_CDATA_SECTION_NODE) &&
6815 (node->type != XML_COMMENT_NODE) &&
6816 (node->type != XML_PI_NODE)) {
Owen Taylor3473f882001-02-23 17:55:21 +00006817#ifdef DEBUG_TREE
6818 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00006819 "xmlTextConcat: node is not text nor CDATA\n");
Owen Taylor3473f882001-02-23 17:55:21 +00006820#endif
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00006821 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00006822 }
William M. Brack7762bb12004-01-04 14:49:01 +00006823 /* need to check if content is currently in the dictionary */
Daniel Veillard8874b942005-08-25 13:19:21 +00006824 if ((node->content == (xmlChar *) &(node->properties)) ||
6825 ((node->doc != NULL) && (node->doc->dict != NULL) &&
6826 xmlDictOwns(node->doc->dict, node->content))) {
William M. Brack7762bb12004-01-04 14:49:01 +00006827 node->content = xmlStrncatNew(node->content, content, len);
6828 } else {
6829 node->content = xmlStrncat(node->content, content, len);
6830 }
Daniel Veillard8874b942005-08-25 13:19:21 +00006831 node->properties = NULL;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00006832 if (node->content == NULL)
6833 return(-1);
6834 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006835}
6836
6837/************************************************************************
6838 * *
6839 * Output : to a FILE or in memory *
6840 * *
6841 ************************************************************************/
6842
Owen Taylor3473f882001-02-23 17:55:21 +00006843/**
6844 * xmlBufferCreate:
6845 *
6846 * routine to create an XML buffer.
6847 * returns the new structure.
6848 */
6849xmlBufferPtr
6850xmlBufferCreate(void) {
6851 xmlBufferPtr ret;
6852
6853 ret = (xmlBufferPtr) xmlMalloc(sizeof(xmlBuffer));
6854 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006855 xmlTreeErrMemory("creating buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00006856 return(NULL);
6857 }
6858 ret->use = 0;
Daniel Veillarde356c282001-03-10 12:32:04 +00006859 ret->size = xmlDefaultBufferSize;
Owen Taylor3473f882001-02-23 17:55:21 +00006860 ret->alloc = xmlBufferAllocScheme;
Daniel Veillard3c908dc2003-04-19 00:07:51 +00006861 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar));
Owen Taylor3473f882001-02-23 17:55:21 +00006862 if (ret->content == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006863 xmlTreeErrMemory("creating buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00006864 xmlFree(ret);
6865 return(NULL);
6866 }
6867 ret->content[0] = 0;
Daniel Veillarde83e93e2008-08-30 12:52:26 +00006868 ret->contentIO = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00006869 return(ret);
6870}
6871
6872/**
6873 * xmlBufferCreateSize:
6874 * @size: initial size of buffer
6875 *
6876 * routine to create an XML buffer.
6877 * returns the new structure.
6878 */
6879xmlBufferPtr
6880xmlBufferCreateSize(size_t size) {
6881 xmlBufferPtr ret;
6882
6883 ret = (xmlBufferPtr) xmlMalloc(sizeof(xmlBuffer));
6884 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006885 xmlTreeErrMemory("creating buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00006886 return(NULL);
6887 }
6888 ret->use = 0;
6889 ret->alloc = xmlBufferAllocScheme;
6890 ret->size = (size ? size+2 : 0); /* +1 for ending null */
6891 if (ret->size){
Daniel Veillard3c908dc2003-04-19 00:07:51 +00006892 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar));
Owen Taylor3473f882001-02-23 17:55:21 +00006893 if (ret->content == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006894 xmlTreeErrMemory("creating buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00006895 xmlFree(ret);
6896 return(NULL);
6897 }
6898 ret->content[0] = 0;
6899 } else
6900 ret->content = NULL;
Daniel Veillarde83e93e2008-08-30 12:52:26 +00006901 ret->contentIO = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00006902 return(ret);
6903}
6904
6905/**
Daniel Veillard53350552003-09-18 13:35:51 +00006906 * xmlBufferCreateStatic:
6907 * @mem: the memory area
6908 * @size: the size in byte
6909 *
MST 2003 John Flecka0e7e932003-12-19 03:13:47 +00006910 * routine to create an XML buffer from an immutable memory area.
6911 * The area won't be modified nor copied, and is expected to be
Daniel Veillard53350552003-09-18 13:35:51 +00006912 * present until the end of the buffer lifetime.
6913 *
6914 * returns the new structure.
6915 */
6916xmlBufferPtr
6917xmlBufferCreateStatic(void *mem, size_t size) {
6918 xmlBufferPtr ret;
6919
6920 if ((mem == NULL) || (size == 0))
6921 return(NULL);
6922
6923 ret = (xmlBufferPtr) xmlMalloc(sizeof(xmlBuffer));
6924 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006925 xmlTreeErrMemory("creating buffer");
Daniel Veillard53350552003-09-18 13:35:51 +00006926 return(NULL);
6927 }
6928 ret->use = size;
6929 ret->size = size;
6930 ret->alloc = XML_BUFFER_ALLOC_IMMUTABLE;
6931 ret->content = (xmlChar *) mem;
6932 return(ret);
6933}
6934
6935/**
Owen Taylor3473f882001-02-23 17:55:21 +00006936 * xmlBufferSetAllocationScheme:
Daniel Veillardbd9afb52002-09-25 22:25:35 +00006937 * @buf: the buffer to tune
Owen Taylor3473f882001-02-23 17:55:21 +00006938 * @scheme: allocation scheme to use
6939 *
6940 * Sets the allocation scheme for this buffer
6941 */
6942void
Daniel Veillardaa6de472008-08-25 14:53:31 +00006943xmlBufferSetAllocationScheme(xmlBufferPtr buf,
Owen Taylor3473f882001-02-23 17:55:21 +00006944 xmlBufferAllocationScheme scheme) {
6945 if (buf == NULL) {
6946#ifdef DEBUG_BUFFER
6947 xmlGenericError(xmlGenericErrorContext,
6948 "xmlBufferSetAllocationScheme: buf == NULL\n");
6949#endif
6950 return;
6951 }
Daniel Veillardda3fee42008-09-01 13:08:57 +00006952 if ((buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) ||
6953 (buf->alloc == XML_BUFFER_ALLOC_IO)) return;
6954 if ((scheme == XML_BUFFER_ALLOC_DOUBLEIT) ||
6955 (scheme == XML_BUFFER_ALLOC_EXACT) ||
6956 (scheme == XML_BUFFER_ALLOC_IMMUTABLE))
6957 buf->alloc = scheme;
Owen Taylor3473f882001-02-23 17:55:21 +00006958}
6959
6960/**
6961 * xmlBufferFree:
6962 * @buf: the buffer to free
6963 *
Daniel Veillard9d06d302002-01-22 18:15:52 +00006964 * Frees an XML buffer. It frees both the content and the structure which
6965 * encapsulate it.
Owen Taylor3473f882001-02-23 17:55:21 +00006966 */
6967void
6968xmlBufferFree(xmlBufferPtr buf) {
6969 if (buf == NULL) {
6970#ifdef DEBUG_BUFFER
6971 xmlGenericError(xmlGenericErrorContext,
6972 "xmlBufferFree: buf == NULL\n");
6973#endif
6974 return;
6975 }
Daniel Veillard53350552003-09-18 13:35:51 +00006976
Daniel Veillarde83e93e2008-08-30 12:52:26 +00006977 if ((buf->alloc == XML_BUFFER_ALLOC_IO) &&
6978 (buf->contentIO != NULL)) {
6979 xmlFree(buf->contentIO);
6980 } else if ((buf->content != NULL) &&
Daniel Veillard53350552003-09-18 13:35:51 +00006981 (buf->alloc != XML_BUFFER_ALLOC_IMMUTABLE)) {
Owen Taylor3473f882001-02-23 17:55:21 +00006982 xmlFree(buf->content);
6983 }
Owen Taylor3473f882001-02-23 17:55:21 +00006984 xmlFree(buf);
6985}
6986
6987/**
6988 * xmlBufferEmpty:
6989 * @buf: the buffer
6990 *
6991 * empty a buffer.
6992 */
6993void
6994xmlBufferEmpty(xmlBufferPtr buf) {
Daniel Veillardd005b9e2004-11-03 17:07:05 +00006995 if (buf == NULL) return;
Owen Taylor3473f882001-02-23 17:55:21 +00006996 if (buf->content == NULL) return;
6997 buf->use = 0;
Daniel Veillard53350552003-09-18 13:35:51 +00006998 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) {
Daniel Veillard16fa96c2003-09-23 21:50:54 +00006999 buf->content = BAD_CAST "";
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007000 } else if ((buf->alloc == XML_BUFFER_ALLOC_IO) &&
7001 (buf->contentIO != NULL)) {
7002 size_t start_buf = buf->content - buf->contentIO;
7003
7004 buf->size += start_buf;
7005 buf->content = buf->contentIO;
7006 buf->content[0] = 0;
Daniel Veillard53350552003-09-18 13:35:51 +00007007 } else {
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007008 buf->content[0] = 0;
7009 }
Owen Taylor3473f882001-02-23 17:55:21 +00007010}
7011
7012/**
7013 * xmlBufferShrink:
7014 * @buf: the buffer to dump
7015 * @len: the number of xmlChar to remove
7016 *
7017 * Remove the beginning of an XML buffer.
7018 *
Daniel Veillardd1640922001-12-17 15:30:10 +00007019 * Returns the number of #xmlChar removed, or -1 in case of failure.
Owen Taylor3473f882001-02-23 17:55:21 +00007020 */
7021int
7022xmlBufferShrink(xmlBufferPtr buf, unsigned int len) {
Daniel Veillard3d97e662004-11-04 10:49:00 +00007023 if (buf == NULL) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00007024 if (len == 0) return(0);
7025 if (len > buf->use) return(-1);
7026
7027 buf->use -= len;
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007028 if ((buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) ||
7029 ((buf->alloc == XML_BUFFER_ALLOC_IO) && (buf->contentIO != NULL))) {
7030 /*
7031 * we just move the content pointer, but also make sure
7032 * the perceived buffer size has shrinked accordingly
7033 */
Daniel Veillard53350552003-09-18 13:35:51 +00007034 buf->content += len;
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007035 buf->size -= len;
7036
7037 /*
7038 * sometimes though it maybe be better to really shrink
7039 * on IO buffers
7040 */
7041 if ((buf->alloc == XML_BUFFER_ALLOC_IO) && (buf->contentIO != NULL)) {
7042 size_t start_buf = buf->content - buf->contentIO;
7043 if (start_buf >= buf->size) {
7044 memmove(buf->contentIO, &buf->content[0], buf->use);
7045 buf->content = buf->contentIO;
7046 buf->content[buf->use] = 0;
7047 buf->size += start_buf;
7048 }
7049 }
Daniel Veillard53350552003-09-18 13:35:51 +00007050 } else {
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007051 memmove(buf->content, &buf->content[len], buf->use);
Daniel Veillard53350552003-09-18 13:35:51 +00007052 buf->content[buf->use] = 0;
7053 }
Owen Taylor3473f882001-02-23 17:55:21 +00007054 return(len);
7055}
7056
7057/**
7058 * xmlBufferGrow:
7059 * @buf: the buffer
7060 * @len: the minimum free size to allocate
7061 *
7062 * Grow the available space of an XML buffer.
7063 *
7064 * Returns the new available space or -1 in case of error
7065 */
7066int
7067xmlBufferGrow(xmlBufferPtr buf, unsigned int len) {
7068 int size;
7069 xmlChar *newbuf;
7070
Daniel Veillard3d97e662004-11-04 10:49:00 +00007071 if (buf == NULL) return(-1);
7072
Daniel Veillard53350552003-09-18 13:35:51 +00007073 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00007074 if (len + buf->use < buf->size) return(0);
7075
Daniel Veillardee20cd72009-08-22 15:18:31 +02007076 /*
7077 * Windows has a BIG problem on realloc timing, so we try to double
7078 * the buffer size (if that's enough) (bug 146697)
7079 * Apparently BSD too, and it's probably best for linux too
7080 * On an embedded system this may be something to change
7081 */
7082#if 1
William M. Brack30fe43f2004-07-26 18:00:58 +00007083 if (buf->size > len)
7084 size = buf->size * 2;
7085 else
7086 size = buf->use + len + 100;
7087#else
Owen Taylor3473f882001-02-23 17:55:21 +00007088 size = buf->use + len + 100;
William M. Brack30fe43f2004-07-26 18:00:58 +00007089#endif
Owen Taylor3473f882001-02-23 17:55:21 +00007090
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007091 if ((buf->alloc == XML_BUFFER_ALLOC_IO) && (buf->contentIO != NULL)) {
7092 size_t start_buf = buf->content - buf->contentIO;
7093
7094 newbuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + size);
7095 if (newbuf == NULL) {
7096 xmlTreeErrMemory("growing buffer");
7097 return(-1);
7098 }
7099 buf->contentIO = newbuf;
7100 buf->content = newbuf + start_buf;
7101 } else {
7102 newbuf = (xmlChar *) xmlRealloc(buf->content, size);
7103 if (newbuf == NULL) {
7104 xmlTreeErrMemory("growing buffer");
7105 return(-1);
7106 }
7107 buf->content = newbuf;
Daniel Veillard18ec16e2003-10-07 23:16:40 +00007108 }
Owen Taylor3473f882001-02-23 17:55:21 +00007109 buf->size = size;
7110 return(buf->size - buf->use);
7111}
7112
7113/**
7114 * xmlBufferDump:
7115 * @file: the file output
7116 * @buf: the buffer to dump
7117 *
7118 * Dumps an XML buffer to a FILE *.
Daniel Veillardd1640922001-12-17 15:30:10 +00007119 * Returns the number of #xmlChar written
Owen Taylor3473f882001-02-23 17:55:21 +00007120 */
7121int
7122xmlBufferDump(FILE *file, xmlBufferPtr buf) {
7123 int ret;
7124
7125 if (buf == NULL) {
7126#ifdef DEBUG_BUFFER
7127 xmlGenericError(xmlGenericErrorContext,
7128 "xmlBufferDump: buf == NULL\n");
7129#endif
7130 return(0);
7131 }
7132 if (buf->content == NULL) {
7133#ifdef DEBUG_BUFFER
7134 xmlGenericError(xmlGenericErrorContext,
7135 "xmlBufferDump: buf->content == NULL\n");
7136#endif
7137 return(0);
7138 }
Daniel Veillardcd337f02001-11-22 18:20:37 +00007139 if (file == NULL)
7140 file = stdout;
Owen Taylor3473f882001-02-23 17:55:21 +00007141 ret = fwrite(buf->content, sizeof(xmlChar), buf->use, file);
7142 return(ret);
7143}
7144
7145/**
7146 * xmlBufferContent:
7147 * @buf: the buffer
7148 *
Daniel Veillard5e2dace2001-07-18 19:30:27 +00007149 * Function to extract the content of a buffer
7150 *
Owen Taylor3473f882001-02-23 17:55:21 +00007151 * Returns the internal content
7152 */
7153
Daniel Veillard5e2dace2001-07-18 19:30:27 +00007154const xmlChar *
Owen Taylor3473f882001-02-23 17:55:21 +00007155xmlBufferContent(const xmlBufferPtr buf)
7156{
7157 if(!buf)
7158 return NULL;
7159
7160 return buf->content;
7161}
7162
7163/**
7164 * xmlBufferLength:
Daniel Veillardaa6de472008-08-25 14:53:31 +00007165 * @buf: the buffer
Owen Taylor3473f882001-02-23 17:55:21 +00007166 *
Daniel Veillard5e2dace2001-07-18 19:30:27 +00007167 * Function to get the length of a buffer
7168 *
Owen Taylor3473f882001-02-23 17:55:21 +00007169 * Returns the length of data in the internal content
7170 */
7171
7172int
7173xmlBufferLength(const xmlBufferPtr buf)
7174{
7175 if(!buf)
7176 return 0;
7177
7178 return buf->use;
7179}
7180
7181/**
7182 * xmlBufferResize:
7183 * @buf: the buffer to resize
7184 * @size: the desired size
7185 *
Daniel Veillardd1640922001-12-17 15:30:10 +00007186 * Resize a buffer to accommodate minimum size of @size.
Owen Taylor3473f882001-02-23 17:55:21 +00007187 *
7188 * Returns 0 in case of problems, 1 otherwise
7189 */
7190int
7191xmlBufferResize(xmlBufferPtr buf, unsigned int size)
7192{
7193 unsigned int newSize;
7194 xmlChar* rebuf = NULL;
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007195 size_t start_buf;
Owen Taylor3473f882001-02-23 17:55:21 +00007196
Daniel Veillardd005b9e2004-11-03 17:07:05 +00007197 if (buf == NULL)
7198 return(0);
7199
Daniel Veillard53350552003-09-18 13:35:51 +00007200 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return(0);
7201
Owen Taylor3473f882001-02-23 17:55:21 +00007202 /* Don't resize if we don't have to */
7203 if (size < buf->size)
7204 return 1;
7205
7206 /* figure out new size */
7207 switch (buf->alloc){
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007208 case XML_BUFFER_ALLOC_IO:
7209 case XML_BUFFER_ALLOC_DOUBLEIT:
7210 /*take care of empty case*/
7211 newSize = (buf->size ? buf->size*2 : size + 10);
Daniel Veillard1dc9feb2008-11-17 15:59:21 +00007212 while (size > newSize) {
7213 if (newSize > UINT_MAX / 2) {
7214 xmlTreeErrMemory("growing buffer");
7215 return 0;
7216 }
7217 newSize *= 2;
7218 }
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007219 break;
7220 case XML_BUFFER_ALLOC_EXACT:
7221 newSize = size+10;
7222 break;
7223 default:
7224 newSize = size+10;
7225 break;
Owen Taylor3473f882001-02-23 17:55:21 +00007226 }
7227
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007228 if ((buf->alloc == XML_BUFFER_ALLOC_IO) && (buf->contentIO != NULL)) {
7229 start_buf = buf->content - buf->contentIO;
7230
7231 if (start_buf > newSize) {
7232 /* move data back to start */
7233 memmove(buf->contentIO, buf->content, buf->use);
7234 buf->content = buf->contentIO;
7235 buf->content[buf->use] = 0;
7236 buf->size += start_buf;
7237 } else {
7238 rebuf = (xmlChar *) xmlRealloc(buf->contentIO, start_buf + newSize);
7239 if (rebuf == NULL) {
7240 xmlTreeErrMemory("growing buffer");
7241 return 0;
7242 }
7243 buf->contentIO = rebuf;
7244 buf->content = rebuf + start_buf;
Daniel Veillard6155d8a2003-08-19 15:01:28 +00007245 }
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007246 } else {
7247 if (buf->content == NULL) {
7248 rebuf = (xmlChar *) xmlMallocAtomic(newSize);
7249 } else if (buf->size - buf->use < 100) {
7250 rebuf = (xmlChar *) xmlRealloc(buf->content, newSize);
7251 } else {
7252 /*
7253 * if we are reallocating a buffer far from being full, it's
7254 * better to make a new allocation and copy only the used range
7255 * and free the old one.
7256 */
7257 rebuf = (xmlChar *) xmlMallocAtomic(newSize);
7258 if (rebuf != NULL) {
7259 memcpy(rebuf, buf->content, buf->use);
7260 xmlFree(buf->content);
7261 rebuf[buf->use] = 0;
7262 }
7263 }
7264 if (rebuf == NULL) {
7265 xmlTreeErrMemory("growing buffer");
7266 return 0;
7267 }
7268 buf->content = rebuf;
Daniel Veillard6155d8a2003-08-19 15:01:28 +00007269 }
Owen Taylor3473f882001-02-23 17:55:21 +00007270 buf->size = newSize;
7271
7272 return 1;
7273}
7274
7275/**
7276 * xmlBufferAdd:
7277 * @buf: the buffer to dump
Daniel Veillardd1640922001-12-17 15:30:10 +00007278 * @str: the #xmlChar string
7279 * @len: the number of #xmlChar to add
Owen Taylor3473f882001-02-23 17:55:21 +00007280 *
Daniel Veillard60087f32001-10-10 09:45:09 +00007281 * Add a string range to an XML buffer. if len == -1, the length of
Owen Taylor3473f882001-02-23 17:55:21 +00007282 * str is recomputed.
William M. Bracka3215c72004-07-31 16:24:01 +00007283 *
7284 * Returns 0 successful, a positive error code number otherwise
7285 * and -1 in case of internal or API error.
Owen Taylor3473f882001-02-23 17:55:21 +00007286 */
William M. Bracka3215c72004-07-31 16:24:01 +00007287int
Owen Taylor3473f882001-02-23 17:55:21 +00007288xmlBufferAdd(xmlBufferPtr buf, const xmlChar *str, int len) {
7289 unsigned int needSize;
7290
Daniel Veillardd005b9e2004-11-03 17:07:05 +00007291 if ((str == NULL) || (buf == NULL)) {
William M. Bracka3215c72004-07-31 16:24:01 +00007292 return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00007293 }
William M. Bracka3215c72004-07-31 16:24:01 +00007294 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00007295 if (len < -1) {
7296#ifdef DEBUG_BUFFER
7297 xmlGenericError(xmlGenericErrorContext,
7298 "xmlBufferAdd: len < 0\n");
7299#endif
William M. Bracka3215c72004-07-31 16:24:01 +00007300 return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00007301 }
William M. Bracka3215c72004-07-31 16:24:01 +00007302 if (len == 0) return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00007303
7304 if (len < 0)
7305 len = xmlStrlen(str);
7306
Daniel Veillardc9923322007-04-24 18:12:06 +00007307 if (len < 0) return -1;
7308 if (len == 0) return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00007309
7310 needSize = buf->use + len + 2;
7311 if (needSize > buf->size){
7312 if (!xmlBufferResize(buf, needSize)){
Daniel Veillard18ec16e2003-10-07 23:16:40 +00007313 xmlTreeErrMemory("growing buffer");
William M. Bracka3215c72004-07-31 16:24:01 +00007314 return XML_ERR_NO_MEMORY;
Owen Taylor3473f882001-02-23 17:55:21 +00007315 }
7316 }
7317
7318 memmove(&buf->content[buf->use], str, len*sizeof(xmlChar));
7319 buf->use += len;
7320 buf->content[buf->use] = 0;
William M. Bracka3215c72004-07-31 16:24:01 +00007321 return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00007322}
7323
7324/**
7325 * xmlBufferAddHead:
7326 * @buf: the buffer
Daniel Veillardd1640922001-12-17 15:30:10 +00007327 * @str: the #xmlChar string
7328 * @len: the number of #xmlChar to add
Owen Taylor3473f882001-02-23 17:55:21 +00007329 *
7330 * Add a string range to the beginning of an XML buffer.
Daniel Veillard60087f32001-10-10 09:45:09 +00007331 * if len == -1, the length of @str is recomputed.
William M. Bracka3215c72004-07-31 16:24:01 +00007332 *
7333 * Returns 0 successful, a positive error code number otherwise
7334 * and -1 in case of internal or API error.
Owen Taylor3473f882001-02-23 17:55:21 +00007335 */
William M. Bracka3215c72004-07-31 16:24:01 +00007336int
Owen Taylor3473f882001-02-23 17:55:21 +00007337xmlBufferAddHead(xmlBufferPtr buf, const xmlChar *str, int len) {
7338 unsigned int needSize;
7339
Daniel Veillardd005b9e2004-11-03 17:07:05 +00007340 if (buf == NULL)
7341 return(-1);
William M. Bracka3215c72004-07-31 16:24:01 +00007342 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00007343 if (str == NULL) {
7344#ifdef DEBUG_BUFFER
7345 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00007346 "xmlBufferAddHead: str == NULL\n");
Owen Taylor3473f882001-02-23 17:55:21 +00007347#endif
William M. Bracka3215c72004-07-31 16:24:01 +00007348 return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00007349 }
7350 if (len < -1) {
7351#ifdef DEBUG_BUFFER
7352 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00007353 "xmlBufferAddHead: len < 0\n");
Owen Taylor3473f882001-02-23 17:55:21 +00007354#endif
William M. Bracka3215c72004-07-31 16:24:01 +00007355 return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00007356 }
William M. Bracka3215c72004-07-31 16:24:01 +00007357 if (len == 0) return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00007358
7359 if (len < 0)
7360 len = xmlStrlen(str);
7361
William M. Bracka3215c72004-07-31 16:24:01 +00007362 if (len <= 0) return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00007363
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007364 if ((buf->alloc == XML_BUFFER_ALLOC_IO) && (buf->contentIO != NULL)) {
7365 size_t start_buf = buf->content - buf->contentIO;
7366
7367 if (start_buf > (unsigned int) len) {
7368 /*
7369 * We can add it in the space previously shrinked
7370 */
7371 buf->content -= len;
7372 memmove(&buf->content[0], str, len);
7373 buf->use += len;
7374 buf->size += len;
7375 return(0);
7376 }
7377 }
Owen Taylor3473f882001-02-23 17:55:21 +00007378 needSize = buf->use + len + 2;
7379 if (needSize > buf->size){
7380 if (!xmlBufferResize(buf, needSize)){
Daniel Veillard18ec16e2003-10-07 23:16:40 +00007381 xmlTreeErrMemory("growing buffer");
William M. Bracka3215c72004-07-31 16:24:01 +00007382 return XML_ERR_NO_MEMORY;
Owen Taylor3473f882001-02-23 17:55:21 +00007383 }
7384 }
7385
Daniel Veillarde83e93e2008-08-30 12:52:26 +00007386 memmove(&buf->content[len], &buf->content[0], buf->use);
7387 memmove(&buf->content[0], str, len);
Owen Taylor3473f882001-02-23 17:55:21 +00007388 buf->use += len;
7389 buf->content[buf->use] = 0;
William M. Bracka3215c72004-07-31 16:24:01 +00007390 return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00007391}
7392
7393/**
7394 * xmlBufferCat:
William M. Bracka3215c72004-07-31 16:24:01 +00007395 * @buf: the buffer to add to
Daniel Veillardd1640922001-12-17 15:30:10 +00007396 * @str: the #xmlChar string
Owen Taylor3473f882001-02-23 17:55:21 +00007397 *
7398 * Append a zero terminated string to an XML buffer.
William M. Bracka3215c72004-07-31 16:24:01 +00007399 *
7400 * Returns 0 successful, a positive error code number otherwise
7401 * and -1 in case of internal or API error.
Owen Taylor3473f882001-02-23 17:55:21 +00007402 */
William M. Bracka3215c72004-07-31 16:24:01 +00007403int
Owen Taylor3473f882001-02-23 17:55:21 +00007404xmlBufferCat(xmlBufferPtr buf, const xmlChar *str) {
Daniel Veillardd005b9e2004-11-03 17:07:05 +00007405 if (buf == NULL)
7406 return(-1);
William M. Bracka3215c72004-07-31 16:24:01 +00007407 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return -1;
7408 if (str == NULL) return -1;
7409 return xmlBufferAdd(buf, str, -1);
Owen Taylor3473f882001-02-23 17:55:21 +00007410}
7411
7412/**
7413 * xmlBufferCCat:
7414 * @buf: the buffer to dump
7415 * @str: the C char string
7416 *
7417 * Append a zero terminated C string to an XML buffer.
William M. Bracka3215c72004-07-31 16:24:01 +00007418 *
7419 * Returns 0 successful, a positive error code number otherwise
7420 * and -1 in case of internal or API error.
Owen Taylor3473f882001-02-23 17:55:21 +00007421 */
William M. Bracka3215c72004-07-31 16:24:01 +00007422int
Owen Taylor3473f882001-02-23 17:55:21 +00007423xmlBufferCCat(xmlBufferPtr buf, const char *str) {
7424 const char *cur;
7425
Daniel Veillardd005b9e2004-11-03 17:07:05 +00007426 if (buf == NULL)
7427 return(-1);
William M. Bracka3215c72004-07-31 16:24:01 +00007428 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00007429 if (str == NULL) {
7430#ifdef DEBUG_BUFFER
7431 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00007432 "xmlBufferCCat: str == NULL\n");
Owen Taylor3473f882001-02-23 17:55:21 +00007433#endif
William M. Bracka3215c72004-07-31 16:24:01 +00007434 return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00007435 }
7436 for (cur = str;*cur != 0;cur++) {
7437 if (buf->use + 10 >= buf->size) {
7438 if (!xmlBufferResize(buf, buf->use+10)){
Daniel Veillard18ec16e2003-10-07 23:16:40 +00007439 xmlTreeErrMemory("growing buffer");
William M. Bracka3215c72004-07-31 16:24:01 +00007440 return XML_ERR_NO_MEMORY;
Owen Taylor3473f882001-02-23 17:55:21 +00007441 }
7442 }
7443 buf->content[buf->use++] = *cur;
7444 }
7445 buf->content[buf->use] = 0;
William M. Bracka3215c72004-07-31 16:24:01 +00007446 return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00007447}
7448
7449/**
7450 * xmlBufferWriteCHAR:
7451 * @buf: the XML buffer
7452 * @string: the string to add
7453 *
7454 * routine which manages and grows an output buffer. This one adds
7455 * xmlChars at the end of the buffer.
7456 */
7457void
Daniel Veillard53350552003-09-18 13:35:51 +00007458xmlBufferWriteCHAR(xmlBufferPtr buf, const xmlChar *string) {
Daniel Veillardd005b9e2004-11-03 17:07:05 +00007459 if (buf == NULL)
7460 return;
Daniel Veillard53350552003-09-18 13:35:51 +00007461 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return;
Owen Taylor3473f882001-02-23 17:55:21 +00007462 xmlBufferCat(buf, string);
7463}
7464
7465/**
7466 * xmlBufferWriteChar:
7467 * @buf: the XML buffer output
7468 * @string: the string to add
7469 *
7470 * routine which manage and grows an output buffer. This one add
7471 * C chars at the end of the array.
7472 */
7473void
7474xmlBufferWriteChar(xmlBufferPtr buf, const char *string) {
Daniel Veillardd005b9e2004-11-03 17:07:05 +00007475 if (buf == NULL)
7476 return;
Daniel Veillard53350552003-09-18 13:35:51 +00007477 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return;
Owen Taylor3473f882001-02-23 17:55:21 +00007478 xmlBufferCCat(buf, string);
7479}
7480
7481
7482/**
7483 * xmlBufferWriteQuotedString:
7484 * @buf: the XML buffer output
7485 * @string: the string to add
7486 *
7487 * routine which manage and grows an output buffer. This one writes
Daniel Veillardd1640922001-12-17 15:30:10 +00007488 * a quoted or double quoted #xmlChar string, checking first if it holds
Owen Taylor3473f882001-02-23 17:55:21 +00007489 * quote or double-quotes internally
7490 */
7491void
7492xmlBufferWriteQuotedString(xmlBufferPtr buf, const xmlChar *string) {
Daniel Veillard39057f42003-08-04 01:33:43 +00007493 const xmlChar *cur, *base;
Daniel Veillardd005b9e2004-11-03 17:07:05 +00007494 if (buf == NULL)
7495 return;
Daniel Veillard53350552003-09-18 13:35:51 +00007496 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return;
Daniel Veillard39057f42003-08-04 01:33:43 +00007497 if (xmlStrchr(string, '\"')) {
Daniel Veillard20aa0fb2003-08-04 19:43:15 +00007498 if (xmlStrchr(string, '\'')) {
Owen Taylor3473f882001-02-23 17:55:21 +00007499#ifdef DEBUG_BUFFER
7500 xmlGenericError(xmlGenericErrorContext,
7501 "xmlBufferWriteQuotedString: string contains quote and double-quotes !\n");
7502#endif
Daniel Veillard39057f42003-08-04 01:33:43 +00007503 xmlBufferCCat(buf, "\"");
7504 base = cur = string;
7505 while(*cur != 0){
7506 if(*cur == '"'){
7507 if (base != cur)
7508 xmlBufferAdd(buf, base, cur - base);
7509 xmlBufferAdd(buf, BAD_CAST "&quot;", 6);
7510 cur++;
7511 base = cur;
7512 }
7513 else {
7514 cur++;
7515 }
7516 }
7517 if (base != cur)
7518 xmlBufferAdd(buf, base, cur - base);
7519 xmlBufferCCat(buf, "\"");
Owen Taylor3473f882001-02-23 17:55:21 +00007520 }
Daniel Veillard39057f42003-08-04 01:33:43 +00007521 else{
7522 xmlBufferCCat(buf, "\'");
7523 xmlBufferCat(buf, string);
7524 xmlBufferCCat(buf, "\'");
7525 }
Owen Taylor3473f882001-02-23 17:55:21 +00007526 } else {
7527 xmlBufferCCat(buf, "\"");
7528 xmlBufferCat(buf, string);
7529 xmlBufferCCat(buf, "\"");
7530 }
7531}
7532
7533
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00007534/**
7535 * xmlGetDocCompressMode:
7536 * @doc: the document
7537 *
7538 * get the compression ratio for a document, ZLIB based
7539 * Returns 0 (uncompressed) to 9 (max compression)
7540 */
7541int
7542xmlGetDocCompressMode (xmlDocPtr doc) {
7543 if (doc == NULL) return(-1);
7544 return(doc->compression);
7545}
7546
7547/**
7548 * xmlSetDocCompressMode:
7549 * @doc: the document
7550 * @mode: the compression ratio
7551 *
7552 * set the compression ratio for a document, ZLIB based
7553 * Correct values: 0 (uncompressed) to 9 (max compression)
7554 */
7555void
7556xmlSetDocCompressMode (xmlDocPtr doc, int mode) {
7557 if (doc == NULL) return;
7558 if (mode < 0) doc->compression = 0;
7559 else if (mode > 9) doc->compression = 9;
7560 else doc->compression = mode;
7561}
7562
7563/**
7564 * xmlGetCompressMode:
7565 *
7566 * get the default compression mode used, ZLIB based.
7567 * Returns 0 (uncompressed) to 9 (max compression)
7568 */
7569int
7570xmlGetCompressMode(void)
7571{
7572 return (xmlCompressMode);
7573}
7574
7575/**
7576 * xmlSetCompressMode:
7577 * @mode: the compression ratio
7578 *
7579 * set the default compression mode used, ZLIB based
7580 * Correct values: 0 (uncompressed) to 9 (max compression)
7581 */
7582void
7583xmlSetCompressMode(int mode) {
7584 if (mode < 0) xmlCompressMode = 0;
7585 else if (mode > 9) xmlCompressMode = 9;
7586 else xmlCompressMode = mode;
7587}
7588
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007589#define XML_TREE_NSMAP_PARENT -1
7590#define XML_TREE_NSMAP_XML -2
7591#define XML_TREE_NSMAP_DOC -3
7592#define XML_TREE_NSMAP_CUSTOM -4
7593
7594typedef struct xmlNsMapItem *xmlNsMapItemPtr;
7595struct xmlNsMapItem {
7596 xmlNsMapItemPtr next;
7597 xmlNsMapItemPtr prev;
7598 xmlNsPtr oldNs; /* old ns decl reference */
7599 xmlNsPtr newNs; /* new ns decl reference */
7600 int shadowDepth; /* Shadowed at this depth */
7601 /*
7602 * depth:
7603 * >= 0 == @node's ns-decls
7604 * -1 == @parent's ns-decls
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00007605 * -2 == the doc->oldNs XML ns-decl
7606 * -3 == the doc->oldNs storage ns-decls
7607 * -4 == ns-decls provided via custom ns-handling
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007608 */
7609 int depth;
7610};
7611
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007612typedef struct xmlNsMap *xmlNsMapPtr;
7613struct xmlNsMap {
7614 xmlNsMapItemPtr first;
7615 xmlNsMapItemPtr last;
7616 xmlNsMapItemPtr pool;
7617};
7618
7619#define XML_NSMAP_NOTEMPTY(m) (((m) != NULL) && ((m)->first != NULL))
7620#define XML_NSMAP_FOREACH(m, i) for (i = (m)->first; i != NULL; i = (i)->next)
7621#define XML_NSMAP_POP(m, i) \
7622 i = (m)->last; \
7623 (m)->last = (i)->prev; \
7624 if ((m)->last == NULL) \
7625 (m)->first = NULL; \
7626 else \
7627 (m)->last->next = NULL; \
7628 (i)->next = (m)->pool; \
7629 (m)->pool = i;
7630
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007631/*
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007632* xmlDOMWrapNsMapFree:
7633* @map: the ns-map
Daniel Veillardaa6de472008-08-25 14:53:31 +00007634*
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007635* Frees the ns-map
7636*/
7637static void
7638xmlDOMWrapNsMapFree(xmlNsMapPtr nsmap)
7639{
7640 xmlNsMapItemPtr cur, tmp;
7641
7642 if (nsmap == NULL)
7643 return;
7644 cur = nsmap->pool;
7645 while (cur != NULL) {
7646 tmp = cur;
7647 cur = cur->next;
7648 xmlFree(tmp);
7649 }
7650 cur = nsmap->first;
7651 while (cur != NULL) {
7652 tmp = cur;
7653 cur = cur->next;
7654 xmlFree(tmp);
7655 }
7656 xmlFree(nsmap);
7657}
7658
7659/*
7660* xmlDOMWrapNsMapAddItem:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007661* @map: the ns-map
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007662* @oldNs: the old ns-struct
7663* @newNs: the new ns-struct
7664* @depth: depth and ns-kind information
Daniel Veillardaa6de472008-08-25 14:53:31 +00007665*
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007666* Adds an ns-mapping item.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007667*/
7668static xmlNsMapItemPtr
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00007669xmlDOMWrapNsMapAddItem(xmlNsMapPtr *nsmap, int position,
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007670 xmlNsPtr oldNs, xmlNsPtr newNs, int depth)
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007671{
7672 xmlNsMapItemPtr ret;
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007673 xmlNsMapPtr map;
7674
7675 if (nsmap == NULL)
7676 return(NULL);
7677 if ((position != -1) && (position != 0))
7678 return(NULL);
7679 map = *nsmap;
7680
7681 if (map == NULL) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007682 /*
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007683 * Create the ns-map.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007684 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007685 map = (xmlNsMapPtr) xmlMalloc(sizeof(struct xmlNsMap));
7686 if (map == NULL) {
7687 xmlTreeErrMemory("allocating namespace map");
7688 return (NULL);
7689 }
7690 memset(map, 0, sizeof(struct xmlNsMap));
7691 *nsmap = map;
7692 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00007693
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007694 if (map->pool != NULL) {
7695 /*
7696 * Reuse an item from the pool.
7697 */
7698 ret = map->pool;
7699 map->pool = ret->next;
7700 memset(ret, 0, sizeof(struct xmlNsMapItem));
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007701 } else {
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007702 /*
7703 * Create a new item.
7704 */
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007705 ret = (xmlNsMapItemPtr) xmlMalloc(sizeof(struct xmlNsMapItem));
7706 if (ret == NULL) {
7707 xmlTreeErrMemory("allocating namespace map item");
7708 return (NULL);
7709 }
7710 memset(ret, 0, sizeof(struct xmlNsMapItem));
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007711 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00007712
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007713 if (map->first == NULL) {
7714 /*
7715 * First ever.
Daniel Veillardaa6de472008-08-25 14:53:31 +00007716 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007717 map->first = ret;
7718 map->last = ret;
7719 } else if (position == -1) {
7720 /*
7721 * Append.
7722 */
7723 ret->prev = map->last;
7724 map->last->next = ret;
Daniel Veillardaa6de472008-08-25 14:53:31 +00007725 map->last = ret;
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007726 } else if (position == 0) {
7727 /*
7728 * Set on first position.
7729 */
7730 map->first->prev = ret;
Daniel Veillardaa6de472008-08-25 14:53:31 +00007731 ret->next = map->first;
7732 map->first = ret;
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007733 } else
7734 return(NULL);
7735
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007736 ret->oldNs = oldNs;
7737 ret->newNs = newNs;
7738 ret->shadowDepth = -1;
7739 ret->depth = depth;
7740 return (ret);
7741}
7742
7743/*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007744* xmlDOMWrapStoreNs:
7745* @doc: the doc
7746* @nsName: the namespace name
7747* @prefix: the prefix
Daniel Veillardaa6de472008-08-25 14:53:31 +00007748*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007749* Creates or reuses an xmlNs struct on doc->oldNs with
7750* the given prefix and namespace name.
Daniel Veillardaa6de472008-08-25 14:53:31 +00007751*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007752* Returns the aquired ns struct or NULL in case of an API
7753* or internal error.
7754*/
7755static xmlNsPtr
7756xmlDOMWrapStoreNs(xmlDocPtr doc,
7757 const xmlChar *nsName,
7758 const xmlChar *prefix)
7759{
7760 xmlNsPtr ns;
7761
7762 if (doc == NULL)
7763 return (NULL);
7764 ns = xmlTreeEnsureXMLDecl(doc);
7765 if (ns == NULL)
7766 return (NULL);
7767 if (ns->next != NULL) {
7768 /* Reuse. */
7769 ns = ns->next;
7770 while (ns != NULL) {
7771 if (((ns->prefix == prefix) ||
7772 xmlStrEqual(ns->prefix, prefix)) &&
7773 xmlStrEqual(ns->href, nsName)) {
7774 return (ns);
7775 }
7776 if (ns->next == NULL)
7777 break;
7778 ns = ns->next;
7779 }
7780 }
7781 /* Create. */
7782 ns->next = xmlNewNs(NULL, nsName, prefix);
7783 return (ns->next);
7784}
7785
7786/*
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00007787* xmlDOMWrapNewCtxt:
7788*
7789* Allocates and initializes a new DOM-wrapper context.
7790*
Daniel Veillardaa6de472008-08-25 14:53:31 +00007791* Returns the xmlDOMWrapCtxtPtr or NULL in case of an internal errror.
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00007792*/
7793xmlDOMWrapCtxtPtr
7794xmlDOMWrapNewCtxt(void)
7795{
7796 xmlDOMWrapCtxtPtr ret;
7797
7798 ret = xmlMalloc(sizeof(xmlDOMWrapCtxt));
7799 if (ret == NULL) {
7800 xmlTreeErrMemory("allocating DOM-wrapper context");
7801 return (NULL);
7802 }
7803 memset(ret, 0, sizeof(xmlDOMWrapCtxt));
7804 return (ret);
7805}
7806
7807/*
7808* xmlDOMWrapFreeCtxt:
7809* @ctxt: the DOM-wrapper context
7810*
7811* Frees the DOM-wrapper context.
7812*/
7813void
7814xmlDOMWrapFreeCtxt(xmlDOMWrapCtxtPtr ctxt)
7815{
7816 if (ctxt == NULL)
7817 return;
7818 if (ctxt->namespaceMap != NULL)
7819 xmlDOMWrapNsMapFree((xmlNsMapPtr) ctxt->namespaceMap);
7820 /*
7821 * TODO: Store the namespace map in the context.
7822 */
7823 xmlFree(ctxt);
7824}
7825
7826/*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007827* xmlTreeLookupNsListByPrefix:
7828* @nsList: a list of ns-structs
7829* @prefix: the searched prefix
Daniel Veillardaa6de472008-08-25 14:53:31 +00007830*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007831* Searches for a ns-decl with the given prefix in @nsList.
Daniel Veillardaa6de472008-08-25 14:53:31 +00007832*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007833* Returns the ns-decl if found, NULL if not found and on
7834* API errors.
7835*/
7836static xmlNsPtr
7837xmlTreeNSListLookupByPrefix(xmlNsPtr nsList, const xmlChar *prefix)
7838{
7839 if (nsList == NULL)
7840 return (NULL);
7841 {
7842 xmlNsPtr ns;
7843 ns = nsList;
7844 do {
7845 if ((prefix == ns->prefix) ||
7846 xmlStrEqual(prefix, ns->prefix)) {
7847 return (ns);
7848 }
7849 ns = ns->next;
7850 } while (ns != NULL);
7851 }
7852 return (NULL);
7853}
7854
7855/*
7856*
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00007857* xmlDOMWrapNSNormGatherInScopeNs:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007858* @map: the namespace map
7859* @node: the node to start with
Daniel Veillardaa6de472008-08-25 14:53:31 +00007860*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007861* Puts in-scope namespaces into the ns-map.
Daniel Veillardaa6de472008-08-25 14:53:31 +00007862*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007863* Returns 0 on success, -1 on API or internal errors.
7864*/
7865static int
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007866xmlDOMWrapNSNormGatherInScopeNs(xmlNsMapPtr *map,
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007867 xmlNodePtr node)
7868{
7869 xmlNodePtr cur;
7870 xmlNsPtr ns;
7871 xmlNsMapItemPtr mi;
7872 int shadowed;
7873
7874 if ((map == NULL) || (*map != NULL))
7875 return (-1);
7876 /*
7877 * Get in-scope ns-decls of @parent.
7878 */
7879 cur = node;
7880 while ((cur != NULL) && (cur != (xmlNodePtr) cur->doc)) {
7881 if (cur->type == XML_ELEMENT_NODE) {
7882 if (cur->nsDef != NULL) {
7883 ns = cur->nsDef;
7884 do {
7885 shadowed = 0;
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007886 if (XML_NSMAP_NOTEMPTY(*map)) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007887 /*
7888 * Skip shadowed prefixes.
7889 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007890 XML_NSMAP_FOREACH(*map, mi) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007891 if ((ns->prefix == mi->newNs->prefix) ||
7892 xmlStrEqual(ns->prefix, mi->newNs->prefix)) {
7893 shadowed = 1;
7894 break;
7895 }
7896 }
7897 }
7898 /*
7899 * Insert mapping.
7900 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00007901 mi = xmlDOMWrapNsMapAddItem(map, 0, NULL,
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007902 ns, XML_TREE_NSMAP_PARENT);
7903 if (mi == NULL)
7904 return (-1);
7905 if (shadowed)
7906 mi->shadowDepth = 0;
7907 ns = ns->next;
7908 } while (ns != NULL);
7909 }
7910 }
7911 cur = cur->parent;
7912 }
7913 return (0);
7914}
7915
7916/*
7917* XML_TREE_ADOPT_STR: If we have a dest-dict, put @str in the dict;
7918* otherwise copy it, when it was in the source-dict.
7919*/
7920#define XML_TREE_ADOPT_STR(str) \
7921 if (adoptStr && (str != NULL)) { \
7922 if (destDoc->dict) { \
Daniel Veillard7e21fd12005-07-03 21:44:07 +00007923 const xmlChar *old = str; \
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007924 str = xmlDictLookup(destDoc->dict, str, -1); \
Daniel Veillard7e21fd12005-07-03 21:44:07 +00007925 if ((sourceDoc == NULL) || (sourceDoc->dict == NULL) || \
7926 (!xmlDictOwns(sourceDoc->dict, old))) \
Daniel Veillard39e5c892005-07-03 22:48:50 +00007927 xmlFree((char *)old); \
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007928 } else if ((sourceDoc) && (sourceDoc->dict) && \
7929 xmlDictOwns(sourceDoc->dict, str)) { \
7930 str = BAD_CAST xmlStrdup(str); \
7931 } \
7932 }
7933
7934/*
7935* XML_TREE_ADOPT_STR_2: If @str was in the source-dict, then
7936* put it in dest-dict or copy it.
7937*/
7938#define XML_TREE_ADOPT_STR_2(str) \
7939 if (adoptStr && (str != NULL) && (sourceDoc != NULL) && \
7940 (sourceDoc->dict != NULL) && \
7941 xmlDictOwns(sourceDoc->dict, cur->content)) { \
7942 if (destDoc->dict) \
7943 cur->content = (xmlChar *) \
7944 xmlDictLookup(destDoc->dict, cur->content, -1); \
7945 else \
7946 cur->content = xmlStrdup(BAD_CAST cur->content); \
7947 }
7948
7949/*
7950* xmlDOMWrapNSNormAddNsMapItem2:
7951*
7952* For internal use. Adds a ns-decl mapping.
7953*
Daniel Veillardaa6de472008-08-25 14:53:31 +00007954* Returns 0 on success, -1 on internal errors.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007955*/
7956static int
7957xmlDOMWrapNSNormAddNsMapItem2(xmlNsPtr **list, int *size, int *number,
7958 xmlNsPtr oldNs, xmlNsPtr newNs)
7959{
7960 if (*list == NULL) {
7961 *list = (xmlNsPtr *) xmlMalloc(6 * sizeof(xmlNsPtr));
7962 if (*list == NULL) {
7963 xmlTreeErrMemory("alloc ns map item");
7964 return(-1);
7965 }
7966 *size = 3;
7967 *number = 0;
7968 } else if ((*number) >= (*size)) {
7969 *size *= 2;
7970 *list = (xmlNsPtr *) xmlRealloc(*list,
7971 (*size) * 2 * sizeof(xmlNsPtr));
7972 if (*list == NULL) {
7973 xmlTreeErrMemory("realloc ns map item");
7974 return(-1);
7975 }
7976 }
7977 (*list)[2 * (*number)] = oldNs;
7978 (*list)[2 * (*number) +1] = newNs;
7979 (*number)++;
7980 return (0);
7981}
7982
7983/*
7984* xmlDOMWrapRemoveNode:
Daniel Veillard304e78c2005-07-03 16:19:41 +00007985* @ctxt: a DOM wrapper context
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007986* @doc: the doc
7987* @node: the node to be removed.
Daniel Veillard304e78c2005-07-03 16:19:41 +00007988* @options: set of options, unused at the moment
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007989*
7990* Unlinks the given node from its owner.
7991* This will substitute ns-references to node->nsDef for
7992* ns-references to doc->oldNs, thus ensuring the removed
7993* branch to be autark wrt ns-references.
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00007994*
7995* NOTE: This function was not intensively tested.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007996*
7997* Returns 0 on success, 1 if the node is not supported,
Daniel Veillardaa6de472008-08-25 14:53:31 +00007998* -1 on API and internal errors.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007999*/
8000int
8001xmlDOMWrapRemoveNode(xmlDOMWrapCtxtPtr ctxt, xmlDocPtr doc,
8002 xmlNodePtr node, int options ATTRIBUTE_UNUSED)
8003{
8004 xmlNsPtr *list = NULL;
8005 int sizeList, nbList, i, j;
8006 xmlNsPtr ns;
8007
8008 if ((node == NULL) || (doc == NULL) || (node->doc != doc))
8009 return (-1);
8010
8011 /* TODO: 0 or -1 ? */
8012 if (node->parent == NULL)
8013 return (0);
8014
Daniel Veillardaa6de472008-08-25 14:53:31 +00008015 switch (node->type) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008016 case XML_TEXT_NODE:
8017 case XML_CDATA_SECTION_NODE:
8018 case XML_ENTITY_REF_NODE:
8019 case XML_PI_NODE:
8020 case XML_COMMENT_NODE:
8021 xmlUnlinkNode(node);
8022 return (0);
Daniel Veillardaa6de472008-08-25 14:53:31 +00008023 case XML_ELEMENT_NODE:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008024 case XML_ATTRIBUTE_NODE:
8025 break;
8026 default:
8027 return (1);
8028 }
8029 xmlUnlinkNode(node);
8030 /*
8031 * Save out-of-scope ns-references in doc->oldNs.
8032 */
8033 do {
8034 switch (node->type) {
8035 case XML_ELEMENT_NODE:
8036 if ((ctxt == NULL) && (node->nsDef != NULL)) {
8037 ns = node->nsDef;
8038 do {
8039 if (xmlDOMWrapNSNormAddNsMapItem2(&list, &sizeList,
8040 &nbList, ns, ns) == -1)
8041 goto internal_error;
8042 ns = ns->next;
8043 } while (ns != NULL);
8044 }
8045 /* No break on purpose. */
8046 case XML_ATTRIBUTE_NODE:
Daniel Veillardaa6de472008-08-25 14:53:31 +00008047 if (node->ns != NULL) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008048 /*
8049 * Find a mapping.
8050 */
8051 if (list != NULL) {
8052 for (i = 0, j = 0; i < nbList; i++, j += 2) {
8053 if (node->ns == list[j]) {
8054 node->ns = list[++j];
8055 goto next_node;
8056 }
8057 }
8058 }
8059 ns = NULL;
8060 if (ctxt != NULL) {
8061 /*
8062 * User defined.
8063 */
8064 } else {
8065 /*
8066 * Add to doc's oldNs.
8067 */
8068 ns = xmlDOMWrapStoreNs(doc, node->ns->href,
8069 node->ns->prefix);
8070 if (ns == NULL)
8071 goto internal_error;
8072 }
8073 if (ns != NULL) {
8074 /*
8075 * Add mapping.
8076 */
8077 if (xmlDOMWrapNSNormAddNsMapItem2(&list, &sizeList,
8078 &nbList, node->ns, ns) == -1)
8079 goto internal_error;
8080 }
8081 node->ns = ns;
8082 }
8083 if ((node->type == XML_ELEMENT_NODE) &&
8084 (node->properties != NULL)) {
8085 node = (xmlNodePtr) node->properties;
8086 continue;
8087 }
8088 break;
8089 default:
8090 goto next_sibling;
Daniel Veillardaa6de472008-08-25 14:53:31 +00008091 }
8092next_node:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008093 if ((node->type == XML_ELEMENT_NODE) &&
8094 (node->children != NULL)) {
8095 node = node->children;
8096 continue;
8097 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00008098next_sibling:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008099 if (node == NULL)
8100 break;
8101 if (node->next != NULL)
8102 node = node->next;
8103 else {
8104 node = node->parent;
8105 goto next_sibling;
8106 }
8107 } while (node != NULL);
8108
8109 if (list != NULL)
8110 xmlFree(list);
8111 return (0);
8112
8113internal_error:
8114 if (list != NULL)
8115 xmlFree(list);
8116 return (-1);
8117}
8118
8119/*
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008120* xmlSearchNsByNamespaceStrict:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008121* @doc: the document
8122* @node: the start node
8123* @nsName: the searched namespace name
8124* @retNs: the resulting ns-decl
8125* @prefixed: if the found ns-decl must have a prefix (for attributes)
8126*
8127* Dynamically searches for a ns-declaration which matches
8128* the given @nsName in the ancestor-or-self axis of @node.
8129*
8130* Returns 1 if a ns-decl was found, 0 if not and -1 on API
8131* and internal errors.
8132*/
8133static int
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008134xmlSearchNsByNamespaceStrict(xmlDocPtr doc, xmlNodePtr node,
8135 const xmlChar* nsName,
8136 xmlNsPtr *retNs, int prefixed)
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008137{
8138 xmlNodePtr cur, prev = NULL, out = NULL;
8139 xmlNsPtr ns, prevns;
8140
8141 if ((doc == NULL) || (nsName == NULL) || (retNs == NULL))
8142 return (-1);
8143
8144 *retNs = NULL;
8145 if (xmlStrEqual(nsName, XML_XML_NAMESPACE)) {
8146 *retNs = xmlTreeEnsureXMLDecl(doc);
8147 if (*retNs == NULL)
8148 return (-1);
8149 return (1);
8150 }
8151 cur = node;
8152 do {
8153 if (cur->type == XML_ELEMENT_NODE) {
8154 if (cur->nsDef != NULL) {
8155 for (ns = cur->nsDef; ns != NULL; ns = ns->next) {
8156 if (prefixed && (ns->prefix == NULL))
8157 continue;
8158 if (prev != NULL) {
8159 /*
8160 * Check the last level of ns-decls for a
8161 * shadowing prefix.
8162 */
8163 prevns = prev->nsDef;
8164 do {
8165 if ((prevns->prefix == ns->prefix) ||
8166 ((prevns->prefix != NULL) &&
8167 (ns->prefix != NULL) &&
8168 xmlStrEqual(prevns->prefix, ns->prefix))) {
8169 /*
8170 * Shadowed.
8171 */
8172 break;
8173 }
8174 prevns = prevns->next;
8175 } while (prevns != NULL);
8176 if (prevns != NULL)
8177 continue;
8178 }
8179 /*
8180 * Ns-name comparison.
8181 */
8182 if ((nsName == ns->href) ||
8183 xmlStrEqual(nsName, ns->href)) {
8184 /*
8185 * At this point the prefix can only be shadowed,
8186 * if we are the the (at least) 3rd level of
8187 * ns-decls.
8188 */
8189 if (out) {
8190 int ret;
Daniel Veillardaa6de472008-08-25 14:53:31 +00008191
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008192 ret = xmlNsInScope(doc, node, prev, ns->prefix);
8193 if (ret < 0)
8194 return (-1);
8195 /*
8196 * TODO: Should we try to find a matching ns-name
8197 * only once? This here keeps on searching.
8198 * I think we should try further since, there might
8199 * be an other matching ns-decl with an unshadowed
8200 * prefix.
8201 */
8202 if (! ret)
8203 continue;
8204 }
8205 *retNs = ns;
8206 return (1);
8207 }
8208 }
8209 out = prev;
8210 prev = cur;
8211 }
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008212 } else if ((cur->type == XML_ENTITY_NODE) ||
8213 (cur->type == XML_ENTITY_DECL))
8214 return (0);
8215 cur = cur->parent;
8216 } while ((cur != NULL) && (cur->doc != (xmlDocPtr) cur));
8217 return (0);
8218}
8219
8220/*
8221* xmlSearchNsByPrefixStrict:
8222* @doc: the document
8223* @node: the start node
8224* @prefix: the searched namespace prefix
8225* @retNs: the resulting ns-decl
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008226*
8227* Dynamically searches for a ns-declaration which matches
8228* the given @nsName in the ancestor-or-self axis of @node.
8229*
8230* Returns 1 if a ns-decl was found, 0 if not and -1 on API
8231* and internal errors.
8232*/
8233static int
8234xmlSearchNsByPrefixStrict(xmlDocPtr doc, xmlNodePtr node,
8235 const xmlChar* prefix,
8236 xmlNsPtr *retNs)
8237{
8238 xmlNodePtr cur;
8239 xmlNsPtr ns;
8240
8241 if ((doc == NULL) || (node == NULL))
8242 return (-1);
8243
8244 if (retNs)
8245 *retNs = NULL;
8246 if (IS_STR_XML(prefix)) {
8247 if (retNs) {
8248 *retNs = xmlTreeEnsureXMLDecl(doc);
8249 if (*retNs == NULL)
8250 return (-1);
8251 }
8252 return (1);
8253 }
8254 cur = node;
8255 do {
8256 if (cur->type == XML_ELEMENT_NODE) {
8257 if (cur->nsDef != NULL) {
8258 ns = cur->nsDef;
Daniel Veillardaa6de472008-08-25 14:53:31 +00008259 do {
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008260 if ((prefix == ns->prefix) ||
8261 xmlStrEqual(prefix, ns->prefix))
8262 {
8263 /*
8264 * Disabled namespaces, e.g. xmlns:abc="".
8265 */
8266 if (ns->href == NULL)
8267 return(0);
8268 if (retNs)
8269 *retNs = ns;
8270 return (1);
8271 }
8272 ns = ns->next;
Daniel Veillardaa6de472008-08-25 14:53:31 +00008273 } while (ns != NULL);
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008274 }
8275 } else if ((cur->type == XML_ENTITY_NODE) ||
8276 (cur->type == XML_ENTITY_DECL))
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008277 return (0);
8278 cur = cur->parent;
8279 } while ((cur != NULL) && (cur->doc != (xmlDocPtr) cur));
8280 return (0);
8281}
8282
8283/*
8284* xmlDOMWrapNSNormDeclareNsForced:
8285* @doc: the doc
8286* @elem: the element-node to declare on
8287* @nsName: the namespace-name of the ns-decl
8288* @prefix: the preferred prefix of the ns-decl
8289* @checkShadow: ensure that the new ns-decl doesn't shadow ancestor ns-decls
8290*
8291* Declares a new namespace on @elem. It tries to use the
8292* given @prefix; if a ns-decl with the given prefix is already existent
8293* on @elem, it will generate an other prefix.
8294*
8295* Returns 1 if a ns-decl was found, 0 if not and -1 on API
8296* and internal errors.
8297*/
8298static xmlNsPtr
8299xmlDOMWrapNSNormDeclareNsForced(xmlDocPtr doc,
8300 xmlNodePtr elem,
8301 const xmlChar *nsName,
8302 const xmlChar *prefix,
8303 int checkShadow)
8304{
8305
8306 xmlNsPtr ret;
8307 char buf[50];
8308 const xmlChar *pref;
8309 int counter = 0;
8310 /*
8311 * Create a ns-decl on @anchor.
8312 */
8313 pref = prefix;
8314 while (1) {
8315 /*
8316 * Lookup whether the prefix is unused in elem's ns-decls.
8317 */
8318 if ((elem->nsDef != NULL) &&
8319 (xmlTreeNSListLookupByPrefix(elem->nsDef, pref) != NULL))
8320 goto ns_next_prefix;
8321 if (checkShadow && elem->parent &&
8322 ((xmlNodePtr) elem->parent->doc != elem->parent)) {
8323 /*
8324 * Does it shadow ancestor ns-decls?
8325 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008326 if (xmlSearchNsByPrefixStrict(doc, elem->parent, pref, NULL) == 1)
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008327 goto ns_next_prefix;
8328 }
8329 ret = xmlNewNs(NULL, nsName, pref);
8330 if (ret == NULL)
8331 return (NULL);
8332 if (elem->nsDef == NULL)
8333 elem->nsDef = ret;
8334 else {
8335 xmlNsPtr ns2 = elem->nsDef;
8336 while (ns2->next != NULL)
8337 ns2 = ns2->next;
8338 ns2->next = ret;
8339 }
8340 return (ret);
8341ns_next_prefix:
8342 counter++;
8343 if (counter > 1000)
8344 return (NULL);
8345 if (prefix == NULL) {
8346 snprintf((char *) buf, sizeof(buf),
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008347 "ns_%d", counter);
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008348 } else
8349 snprintf((char *) buf, sizeof(buf),
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008350 "%.30s_%d", (char *)prefix, counter);
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008351 pref = BAD_CAST buf;
8352 }
8353}
8354
8355/*
8356* xmlDOMWrapNSNormAquireNormalizedNs:
8357* @doc: the doc
8358* @elem: the element-node to declare namespaces on
8359* @ns: the ns-struct to use for the search
8360* @retNs: the found/created ns-struct
8361* @nsMap: the ns-map
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008362* @depth: the current tree depth
8363* @ancestorsOnly: search in ancestor ns-decls only
8364* @prefixed: if the searched ns-decl must have a prefix (for attributes)
8365*
8366* Searches for a matching ns-name in the ns-decls of @nsMap, if not
8367* found it will either declare it on @elem, or store it in doc->oldNs.
8368* If a new ns-decl needs to be declared on @elem, it tries to use the
8369* @ns->prefix for it, if this prefix is already in use on @elem, it will
8370* change the prefix or the new ns-decl.
8371*
8372* Returns 0 if succeeded, -1 otherwise and on API/internal errors.
8373*/
8374static int
8375xmlDOMWrapNSNormAquireNormalizedNs(xmlDocPtr doc,
8376 xmlNodePtr elem,
8377 xmlNsPtr ns,
8378 xmlNsPtr *retNs,
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008379 xmlNsMapPtr *nsMap,
Daniel Veillardaa6de472008-08-25 14:53:31 +00008380
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008381 int depth,
8382 int ancestorsOnly,
8383 int prefixed)
8384{
Daniel Veillardaa6de472008-08-25 14:53:31 +00008385 xmlNsMapItemPtr mi;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008386
8387 if ((doc == NULL) || (ns == NULL) || (retNs == NULL) ||
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008388 (nsMap == NULL))
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008389 return (-1);
8390
8391 *retNs = NULL;
8392 /*
8393 * Handle XML namespace.
8394 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008395 if (IS_STR_XML(ns->prefix)) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008396 /*
8397 * Insert XML namespace mapping.
8398 */
8399 *retNs = xmlTreeEnsureXMLDecl(doc);
8400 if (*retNs == NULL)
8401 return (-1);
8402 return (0);
8403 }
8404 /*
8405 * If the search should be done in ancestors only and no
8406 * @elem (the first ancestor) was specified, then skip the search.
8407 */
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008408 if ((XML_NSMAP_NOTEMPTY(*nsMap)) &&
8409 (! (ancestorsOnly && (elem == NULL))))
Daniel Veillardaa6de472008-08-25 14:53:31 +00008410 {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008411 /*
8412 * Try to find an equal ns-name in in-scope ns-decls.
8413 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008414 XML_NSMAP_FOREACH(*nsMap, mi) {
Daniel Veillardaa6de472008-08-25 14:53:31 +00008415 if ((mi->depth >= XML_TREE_NSMAP_PARENT) &&
8416 /*
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008417 * ancestorsOnly: This should be turned on to gain speed,
8418 * if one knows that the branch itself was already
8419 * ns-wellformed and no stale references existed.
8420 * I.e. it searches in the ancestor axis only.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008421 */
8422 ((! ancestorsOnly) || (mi->depth == XML_TREE_NSMAP_PARENT)) &&
8423 /* Skip shadowed prefixes. */
Daniel Veillardaa6de472008-08-25 14:53:31 +00008424 (mi->shadowDepth == -1) &&
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008425 /* Skip xmlns="" or xmlns:foo="". */
8426 ((mi->newNs->href != NULL) &&
Daniel Veillardaa6de472008-08-25 14:53:31 +00008427 (mi->newNs->href[0] != 0)) &&
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008428 /* Ensure a prefix if wanted. */
8429 ((! prefixed) || (mi->newNs->prefix != NULL)) &&
8430 /* Equal ns name */
8431 ((mi->newNs->href == ns->href) ||
8432 xmlStrEqual(mi->newNs->href, ns->href))) {
8433 /* Set the mapping. */
8434 mi->oldNs = ns;
8435 *retNs = mi->newNs;
8436 return (0);
8437 }
8438 }
8439 }
8440 /*
8441 * No luck, the namespace is out of scope or shadowed.
8442 */
8443 if (elem == NULL) {
8444 xmlNsPtr tmpns;
8445
8446 /*
8447 * Store ns-decls in "oldNs" of the document-node.
8448 */
8449 tmpns = xmlDOMWrapStoreNs(doc, ns->href, ns->prefix);
8450 if (tmpns == NULL)
8451 return (-1);
8452 /*
8453 * Insert mapping.
Daniel Veillardaa6de472008-08-25 14:53:31 +00008454 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008455 if (xmlDOMWrapNsMapAddItem(nsMap, -1, ns,
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008456 tmpns, XML_TREE_NSMAP_DOC) == NULL) {
8457 xmlFreeNs(tmpns);
8458 return (-1);
8459 }
8460 *retNs = tmpns;
8461 } else {
8462 xmlNsPtr tmpns;
8463
8464 tmpns = xmlDOMWrapNSNormDeclareNsForced(doc, elem, ns->href,
8465 ns->prefix, 0);
8466 if (tmpns == NULL)
8467 return (-1);
8468
8469 if (*nsMap != NULL) {
8470 /*
8471 * Does it shadow ancestor ns-decls?
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008472 */
8473 XML_NSMAP_FOREACH(*nsMap, mi) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008474 if ((mi->depth < depth) &&
8475 (mi->shadowDepth == -1) &&
8476 ((ns->prefix == mi->newNs->prefix) ||
8477 xmlStrEqual(ns->prefix, mi->newNs->prefix))) {
8478 /*
8479 * Shadows.
8480 */
8481 mi->shadowDepth = depth;
8482 break;
8483 }
8484 }
8485 }
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008486 if (xmlDOMWrapNsMapAddItem(nsMap, -1, ns, tmpns, depth) == NULL) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008487 xmlFreeNs(tmpns);
8488 return (-1);
8489 }
8490 *retNs = tmpns;
8491 }
8492 return (0);
8493}
8494
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008495typedef enum {
Daniel Veillardaa6de472008-08-25 14:53:31 +00008496 XML_DOM_RECONNS_REMOVEREDUND = 1<<0
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008497} xmlDOMReconcileNSOptions;
8498
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008499/*
8500* xmlDOMWrapReconcileNamespaces:
Daniel Veillard304e78c2005-07-03 16:19:41 +00008501* @ctxt: DOM wrapper context, unused at the moment
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008502* @elem: the element-node
8503* @options: option flags
8504*
8505* Ensures that ns-references point to ns-decls hold on element-nodes.
8506* Ensures that the tree is namespace wellformed by creating additional
8507* ns-decls where needed. Note that, since prefixes of already existent
8508* ns-decls can be shadowed by this process, it could break QNames in
8509* attribute values or element content.
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008510*
8511* NOTE: This function was not intensively tested.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008512*
8513* Returns 0 if succeeded, -1 otherwise and on API/internal errors.
Daniel Veillardaa6de472008-08-25 14:53:31 +00008514*/
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008515
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008516int
8517xmlDOMWrapReconcileNamespaces(xmlDOMWrapCtxtPtr ctxt ATTRIBUTE_UNUSED,
8518 xmlNodePtr elem,
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008519 int options)
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008520{
8521 int depth = -1, adoptns = 0, parnsdone = 0;
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008522 xmlNsPtr ns, prevns;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008523 xmlDocPtr doc;
8524 xmlNodePtr cur, curElem = NULL;
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008525 xmlNsMapPtr nsMap = NULL;
8526 xmlNsMapItemPtr /* topmi = NULL, */ mi;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008527 /* @ancestorsOnly should be set by an option flag. */
8528 int ancestorsOnly = 0;
Daniel Veillardaa6de472008-08-25 14:53:31 +00008529 int optRemoveRedundantNS =
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008530 ((xmlDOMReconcileNSOptions) options & XML_DOM_RECONNS_REMOVEREDUND) ? 1 : 0;
8531 xmlNsPtr *listRedund = NULL;
8532 int sizeRedund = 0, nbRedund = 0, ret, i, j;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008533
8534 if ((elem == NULL) || (elem->doc == NULL) ||
8535 (elem->type != XML_ELEMENT_NODE))
8536 return (-1);
8537
8538 doc = elem->doc;
8539 cur = elem;
8540 do {
8541 switch (cur->type) {
8542 case XML_ELEMENT_NODE:
8543 adoptns = 1;
8544 curElem = cur;
8545 depth++;
8546 /*
8547 * Namespace declarations.
8548 */
8549 if (cur->nsDef != NULL) {
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008550 prevns = NULL;
Kasimier T. Buchcike8f8d752006-02-02 12:13:07 +00008551 ns = cur->nsDef;
8552 while (ns != NULL) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008553 if (! parnsdone) {
8554 if ((elem->parent) &&
8555 ((xmlNodePtr) elem->parent->doc != elem->parent)) {
8556 /*
8557 * Gather ancestor in-scope ns-decls.
8558 */
8559 if (xmlDOMWrapNSNormGatherInScopeNs(&nsMap,
8560 elem->parent) == -1)
8561 goto internal_error;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008562 }
8563 parnsdone = 1;
8564 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00008565
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008566 /*
8567 * Lookup the ns ancestor-axis for equal ns-decls in scope.
8568 */
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008569 if (optRemoveRedundantNS && XML_NSMAP_NOTEMPTY(nsMap)) {
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008570 XML_NSMAP_FOREACH(nsMap, mi) {
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008571 if ((mi->depth >= XML_TREE_NSMAP_PARENT) &&
8572 (mi->shadowDepth == -1) &&
8573 ((ns->prefix == mi->newNs->prefix) ||
8574 xmlStrEqual(ns->prefix, mi->newNs->prefix)) &&
8575 ((ns->href == mi->newNs->href) ||
8576 xmlStrEqual(ns->href, mi->newNs->href)))
Daniel Veillardaa6de472008-08-25 14:53:31 +00008577 {
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008578 /*
8579 * A redundant ns-decl was found.
8580 * Add it to the list of redundant ns-decls.
8581 */
8582 if (xmlDOMWrapNSNormAddNsMapItem2(&listRedund,
8583 &sizeRedund, &nbRedund, ns, mi->newNs) == -1)
8584 goto internal_error;
8585 /*
8586 * Remove the ns-decl from the element-node.
Daniel Veillardaa6de472008-08-25 14:53:31 +00008587 */
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008588 if (prevns)
8589 prevns->next = ns->next;
8590 else
Daniel Veillardaa6de472008-08-25 14:53:31 +00008591 cur->nsDef = ns->next;
Kasimier T. Buchcike8f8d752006-02-02 12:13:07 +00008592 goto next_ns_decl;
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008593 }
8594 }
8595 }
8596
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008597 /*
8598 * Skip ns-references handling if the referenced
8599 * ns-decl is declared on the same element.
8600 */
8601 if ((cur->ns != NULL) && adoptns && (cur->ns == ns))
Daniel Veillardaa6de472008-08-25 14:53:31 +00008602 adoptns = 0;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008603 /*
8604 * Does it shadow any ns-decl?
8605 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008606 if (XML_NSMAP_NOTEMPTY(nsMap)) {
8607 XML_NSMAP_FOREACH(nsMap, mi) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008608 if ((mi->depth >= XML_TREE_NSMAP_PARENT) &&
8609 (mi->shadowDepth == -1) &&
8610 ((ns->prefix == mi->newNs->prefix) ||
8611 xmlStrEqual(ns->prefix, mi->newNs->prefix))) {
Daniel Veillardaa6de472008-08-25 14:53:31 +00008612
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008613 mi->shadowDepth = depth;
8614 }
8615 }
8616 }
8617 /*
8618 * Push mapping.
8619 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008620 if (xmlDOMWrapNsMapAddItem(&nsMap, -1, ns, ns,
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008621 depth) == NULL)
Daniel Veillardaa6de472008-08-25 14:53:31 +00008622 goto internal_error;
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008623
8624 prevns = ns;
Kasimier T. Buchcike8f8d752006-02-02 12:13:07 +00008625next_ns_decl:
Daniel Veillardaa6de472008-08-25 14:53:31 +00008626 ns = ns->next;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008627 }
8628 }
8629 if (! adoptns)
8630 goto ns_end;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008631 /* No break on purpose. */
8632 case XML_ATTRIBUTE_NODE:
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008633 /* No ns, no fun. */
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008634 if (cur->ns == NULL)
8635 goto ns_end;
Daniel Veillardaa6de472008-08-25 14:53:31 +00008636
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008637 if (! parnsdone) {
8638 if ((elem->parent) &&
8639 ((xmlNodePtr) elem->parent->doc != elem->parent)) {
8640 if (xmlDOMWrapNSNormGatherInScopeNs(&nsMap,
8641 elem->parent) == -1)
8642 goto internal_error;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008643 }
8644 parnsdone = 1;
8645 }
8646 /*
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008647 * Adjust the reference if this was a redundant ns-decl.
8648 */
8649 if (listRedund) {
8650 for (i = 0, j = 0; i < nbRedund; i++, j += 2) {
8651 if (cur->ns == listRedund[j]) {
8652 cur->ns = listRedund[++j];
8653 break;
8654 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00008655 }
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008656 }
8657 /*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008658 * Adopt ns-references.
8659 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008660 if (XML_NSMAP_NOTEMPTY(nsMap)) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008661 /*
8662 * Search for a mapping.
8663 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008664 XML_NSMAP_FOREACH(nsMap, mi) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008665 if ((mi->shadowDepth == -1) &&
8666 (cur->ns == mi->oldNs)) {
8667
8668 cur->ns = mi->newNs;
8669 goto ns_end;
8670 }
8671 }
8672 }
8673 /*
8674 * Aquire a normalized ns-decl and add it to the map.
8675 */
8676 if (xmlDOMWrapNSNormAquireNormalizedNs(doc, curElem,
8677 cur->ns, &ns,
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008678 &nsMap, depth,
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008679 ancestorsOnly,
8680 (cur->type == XML_ATTRIBUTE_NODE) ? 1 : 0) == -1)
8681 goto internal_error;
8682 cur->ns = ns;
8683
8684ns_end:
8685 if ((cur->type == XML_ELEMENT_NODE) &&
8686 (cur->properties != NULL)) {
8687 /*
8688 * Process attributes.
8689 */
8690 cur = (xmlNodePtr) cur->properties;
8691 continue;
8692 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00008693 break;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008694 default:
8695 goto next_sibling;
8696 }
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008697into_content:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008698 if ((cur->type == XML_ELEMENT_NODE) &&
8699 (cur->children != NULL)) {
8700 /*
8701 * Process content of element-nodes only.
8702 */
8703 cur = cur->children;
8704 continue;
8705 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00008706next_sibling:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008707 if (cur == elem)
8708 break;
8709 if (cur->type == XML_ELEMENT_NODE) {
Daniel Veillardaa6de472008-08-25 14:53:31 +00008710 if (XML_NSMAP_NOTEMPTY(nsMap)) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008711 /*
8712 * Pop mappings.
8713 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008714 while ((nsMap->last != NULL) &&
8715 (nsMap->last->depth >= depth))
8716 {
Daniel Veillardaa6de472008-08-25 14:53:31 +00008717 XML_NSMAP_POP(nsMap, mi)
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008718 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008719 /*
8720 * Unshadow.
8721 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008722 XML_NSMAP_FOREACH(nsMap, mi) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008723 if (mi->shadowDepth >= depth)
8724 mi->shadowDepth = -1;
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008725 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00008726 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008727 depth--;
8728 }
8729 if (cur->next != NULL)
8730 cur = cur->next;
8731 else {
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008732 if (cur->type == XML_ATTRIBUTE_NODE) {
8733 cur = cur->parent;
8734 goto into_content;
8735 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008736 cur = cur->parent;
8737 goto next_sibling;
8738 }
8739 } while (cur != NULL);
Daniel Veillardaa6de472008-08-25 14:53:31 +00008740
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008741 ret = 0;
8742 goto exit;
8743internal_error:
8744 ret = -1;
8745exit:
Daniel Veillardaa6de472008-08-25 14:53:31 +00008746 if (listRedund) {
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008747 for (i = 0, j = 0; i < nbRedund; i++, j += 2) {
8748 xmlFreeNs(listRedund[j]);
8749 }
8750 xmlFree(listRedund);
8751 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008752 if (nsMap != NULL)
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008753 xmlDOMWrapNsMapFree(nsMap);
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008754 return (ret);
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008755}
8756
8757/*
8758* xmlDOMWrapAdoptBranch:
8759* @ctxt: the optional context for custom processing
8760* @sourceDoc: the optional sourceDoc
8761* @node: the element-node to start with
8762* @destDoc: the destination doc for adoption
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008763* @destParent: the optional new parent of @node in @destDoc
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008764* @options: option flags
8765*
8766* Ensures that ns-references point to @destDoc: either to
8767* elements->nsDef entries if @destParent is given, or to
8768* @destDoc->oldNs otherwise.
8769* If @destParent is given, it ensures that the tree is namespace
8770* wellformed by creating additional ns-decls where needed.
8771* Note that, since prefixes of already existent ns-decls can be
8772* shadowed by this process, it could break QNames in attribute
8773* values or element content.
8774*
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008775* NOTE: This function was not intensively tested.
8776*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008777* Returns 0 if succeeded, -1 otherwise and on API/internal errors.
8778*/
8779static int
8780xmlDOMWrapAdoptBranch(xmlDOMWrapCtxtPtr ctxt,
8781 xmlDocPtr sourceDoc,
8782 xmlNodePtr node,
8783 xmlDocPtr destDoc,
8784 xmlNodePtr destParent,
8785 int options ATTRIBUTE_UNUSED)
8786{
8787 int ret = 0;
8788 xmlNodePtr cur, curElem = NULL;
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008789 xmlNsMapPtr nsMap = NULL;
8790 xmlNsMapItemPtr mi;
Daniel Veillard11ce4002006-03-10 00:36:23 +00008791 xmlNsPtr ns = NULL;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008792 int depth = -1, adoptStr = 1;
8793 /* gather @parent's ns-decls. */
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008794 int parnsdone;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008795 /* @ancestorsOnly should be set per option. */
8796 int ancestorsOnly = 0;
Daniel Veillardaa6de472008-08-25 14:53:31 +00008797
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008798 /*
8799 * Optimize string adoption for equal or none dicts.
8800 */
8801 if ((sourceDoc != NULL) &&
8802 (sourceDoc->dict == destDoc->dict))
8803 adoptStr = 0;
8804 else
8805 adoptStr = 1;
8806
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008807 /*
8808 * Get the ns-map from the context if available.
8809 */
8810 if (ctxt)
8811 nsMap = (xmlNsMapPtr) ctxt->namespaceMap;
8812 /*
8813 * Disable search for ns-decls in the parent-axis of the
8814 * desination element, if:
8815 * 1) there's no destination parent
8816 * 2) custom ns-reference handling is used
8817 */
8818 if ((destParent == NULL) ||
8819 (ctxt && ctxt->getNsForNodeFunc))
8820 {
8821 parnsdone = 1;
8822 } else
8823 parnsdone = 0;
8824
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008825 cur = node;
8826 while (cur != NULL) {
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008827 /*
8828 * Paranoid source-doc sanity check.
8829 */
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008830 if (cur->doc != sourceDoc) {
8831 /*
8832 * We'll assume XIncluded nodes if the doc differs.
8833 * TODO: Do we need to reconciliate XIncluded nodes?
8834 * This here skips XIncluded nodes and tries to handle
8835 * broken sequences.
8836 */
8837 if (cur->next == NULL)
8838 goto leave_node;
8839 do {
8840 cur = cur->next;
8841 if ((cur->type == XML_XINCLUDE_END) ||
8842 (cur->doc == node->doc))
8843 break;
8844 } while (cur->next != NULL);
8845
8846 if (cur->doc != node->doc)
8847 goto leave_node;
8848 }
8849 cur->doc = destDoc;
8850 switch (cur->type) {
Daniel Veillardaa6de472008-08-25 14:53:31 +00008851 case XML_XINCLUDE_START:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008852 case XML_XINCLUDE_END:
8853 /*
8854 * TODO
8855 */
8856 return (-1);
Daniel Veillardaa6de472008-08-25 14:53:31 +00008857 case XML_ELEMENT_NODE:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008858 curElem = cur;
8859 depth++;
8860 /*
Daniel Veillardaa6de472008-08-25 14:53:31 +00008861 * Namespace declarations.
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008862 * - ns->href and ns->prefix are never in the dict, so
8863 * we need not move the values over to the destination dict.
8864 * - Note that for custom handling of ns-references,
8865 * the ns-decls need not be stored in the ns-map,
8866 * since they won't be referenced by node->ns.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008867 */
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008868 if ((cur->nsDef) &&
8869 ((ctxt == NULL) || (ctxt->getNsForNodeFunc == NULL)))
8870 {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008871 if (! parnsdone) {
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008872 /*
8873 * Gather @parent's in-scope ns-decls.
8874 */
8875 if (xmlDOMWrapNSNormGatherInScopeNs(&nsMap,
8876 destParent) == -1)
8877 goto internal_error;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008878 parnsdone = 1;
8879 }
8880 for (ns = cur->nsDef; ns != NULL; ns = ns->next) {
8881 /*
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008882 * NOTE: ns->prefix and ns->href are never in the dict.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008883 * XML_TREE_ADOPT_STR(ns->prefix)
8884 * XML_TREE_ADOPT_STR(ns->href)
Daniel Veillardaa6de472008-08-25 14:53:31 +00008885 */
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008886 /*
8887 * Does it shadow any ns-decl?
Daniel Veillardaa6de472008-08-25 14:53:31 +00008888 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008889 if (XML_NSMAP_NOTEMPTY(nsMap)) {
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008890 XML_NSMAP_FOREACH(nsMap, mi) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008891 if ((mi->depth >= XML_TREE_NSMAP_PARENT) &&
8892 (mi->shadowDepth == -1) &&
8893 ((ns->prefix == mi->newNs->prefix) ||
8894 xmlStrEqual(ns->prefix,
8895 mi->newNs->prefix))) {
Daniel Veillardaa6de472008-08-25 14:53:31 +00008896
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008897 mi->shadowDepth = depth;
8898 }
8899 }
8900 }
8901 /*
8902 * Push mapping.
8903 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008904 if (xmlDOMWrapNsMapAddItem(&nsMap, -1,
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008905 ns, ns, depth) == NULL)
8906 goto internal_error;
8907 }
8908 }
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008909 /* No break on purpose. */
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008910 case XML_ATTRIBUTE_NODE:
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008911 /* No namespace, no fun. */
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008912 if (cur->ns == NULL)
8913 goto ns_end;
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008914
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008915 if (! parnsdone) {
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008916 if (xmlDOMWrapNSNormGatherInScopeNs(&nsMap,
8917 destParent) == -1)
8918 goto internal_error;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008919 parnsdone = 1;
8920 }
8921 /*
8922 * Adopt ns-references.
8923 */
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008924 if (XML_NSMAP_NOTEMPTY(nsMap)) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008925 /*
8926 * Search for a mapping.
8927 */
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008928 XML_NSMAP_FOREACH(nsMap, mi) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008929 if ((mi->shadowDepth == -1) &&
8930 (cur->ns == mi->oldNs)) {
8931
8932 cur->ns = mi->newNs;
8933 goto ns_end;
8934 }
8935 }
8936 }
8937 /*
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008938 * No matching namespace in scope. We need a new one.
8939 */
8940 if ((ctxt) && (ctxt->getNsForNodeFunc)) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008941 /*
8942 * User-defined behaviour.
8943 */
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008944 ns = ctxt->getNsForNodeFunc(ctxt, cur,
8945 cur->ns->href, cur->ns->prefix);
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008946 /*
8947 * Insert mapping if ns is available; it's the users fault
8948 * if not.
8949 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008950 if (xmlDOMWrapNsMapAddItem(&nsMap, -1,
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008951 cur->ns, ns, XML_TREE_NSMAP_CUSTOM) == NULL)
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008952 goto internal_error;
8953 cur->ns = ns;
8954 } else {
8955 /*
8956 * Aquire a normalized ns-decl and add it to the map.
8957 */
8958 if (xmlDOMWrapNSNormAquireNormalizedNs(destDoc,
Daniel Veillardaa6de472008-08-25 14:53:31 +00008959 /* ns-decls on curElem or on destDoc->oldNs */
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008960 destParent ? curElem : NULL,
8961 cur->ns, &ns,
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00008962 &nsMap, depth,
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008963 ancestorsOnly,
8964 /* ns-decls must be prefixed for attributes. */
8965 (cur->type == XML_ATTRIBUTE_NODE) ? 1 : 0) == -1)
8966 goto internal_error;
8967 cur->ns = ns;
8968 }
8969ns_end:
8970 /*
8971 * Further node properties.
8972 * TODO: Is this all?
8973 */
8974 XML_TREE_ADOPT_STR(cur->name)
8975 if (cur->type == XML_ELEMENT_NODE) {
8976 cur->psvi = NULL;
8977 cur->line = 0;
8978 cur->extra = 0;
8979 /*
8980 * Walk attributes.
8981 */
8982 if (cur->properties != NULL) {
8983 /*
8984 * Process first attribute node.
8985 */
8986 cur = (xmlNodePtr) cur->properties;
8987 continue;
8988 }
8989 } else {
8990 /*
8991 * Attributes.
8992 */
8993 if ((sourceDoc != NULL) &&
8994 (((xmlAttrPtr) cur)->atype == XML_ATTRIBUTE_ID))
Daniel Veillardaa6de472008-08-25 14:53:31 +00008995 {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008996 xmlRemoveID(sourceDoc, (xmlAttrPtr) cur);
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00008997 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008998 ((xmlAttrPtr) cur)->atype = 0;
8999 ((xmlAttrPtr) cur)->psvi = NULL;
9000 }
9001 break;
9002 case XML_TEXT_NODE:
Daniel Veillardaa6de472008-08-25 14:53:31 +00009003 case XML_CDATA_SECTION_NODE:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009004 /*
9005 * This puts the content in the dest dict, only if
9006 * it was previously in the source dict.
9007 */
Daniel Veillardaa6de472008-08-25 14:53:31 +00009008 XML_TREE_ADOPT_STR_2(cur->content)
9009 goto leave_node;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009010 case XML_ENTITY_REF_NODE:
9011 /*
9012 * Remove reference to the entitity-node.
9013 */
9014 cur->content = NULL;
9015 cur->children = NULL;
9016 cur->last = NULL;
9017 if ((destDoc->intSubset) || (destDoc->extSubset)) {
9018 xmlEntityPtr ent;
9019 /*
9020 * Assign new entity-node if available.
9021 */
9022 ent = xmlGetDocEntity(destDoc, cur->name);
9023 if (ent != NULL) {
9024 cur->content = ent->content;
9025 cur->children = (xmlNodePtr) ent;
9026 cur->last = (xmlNodePtr) ent;
9027 }
9028 }
9029 goto leave_node;
9030 case XML_PI_NODE:
9031 XML_TREE_ADOPT_STR(cur->name)
9032 XML_TREE_ADOPT_STR_2(cur->content)
9033 break;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009034 case XML_COMMENT_NODE:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009035 break;
9036 default:
9037 goto internal_error;
9038 }
9039 /*
9040 * Walk the tree.
9041 */
9042 if (cur->children != NULL) {
9043 cur = cur->children;
9044 continue;
9045 }
9046
9047leave_node:
9048 if (cur == node)
9049 break;
9050 if ((cur->type == XML_ELEMENT_NODE) ||
9051 (cur->type == XML_XINCLUDE_START) ||
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009052 (cur->type == XML_XINCLUDE_END))
9053 {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009054 /*
9055 * TODO: Do we expect nsDefs on XML_XINCLUDE_START?
9056 */
Daniel Veillardaa6de472008-08-25 14:53:31 +00009057 if (XML_NSMAP_NOTEMPTY(nsMap)) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009058 /*
9059 * Pop mappings.
9060 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009061 while ((nsMap->last != NULL) &&
9062 (nsMap->last->depth >= depth))
9063 {
Daniel Veillardaa6de472008-08-25 14:53:31 +00009064 XML_NSMAP_POP(nsMap, mi)
9065 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009066 /*
9067 * Unshadow.
9068 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009069 XML_NSMAP_FOREACH(nsMap, mi) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009070 if (mi->shadowDepth >= depth)
9071 mi->shadowDepth = -1;
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009072 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009073 }
9074 depth--;
9075 }
9076 if (cur->next != NULL)
9077 cur = cur->next;
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009078 else if ((cur->type == XML_ATTRIBUTE_NODE) &&
9079 (cur->parent->children != NULL))
9080 {
9081 cur = cur->parent->children;
9082 } else {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009083 cur = cur->parent;
9084 goto leave_node;
9085 }
9086 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00009087
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009088 goto exit;
9089
Daniel Veillardaa6de472008-08-25 14:53:31 +00009090internal_error:
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009091 ret = -1;
9092
9093exit:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009094 /*
9095 * Cleanup.
9096 */
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009097 if (nsMap != NULL) {
9098 if ((ctxt) && (ctxt->namespaceMap == nsMap)) {
9099 /*
9100 * Just cleanup the map but don't free.
9101 */
9102 if (nsMap->first) {
9103 if (nsMap->pool)
9104 nsMap->last->next = nsMap->pool;
9105 nsMap->pool = nsMap->first;
9106 nsMap->first = NULL;
9107 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00009108 } else
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009109 xmlDOMWrapNsMapFree(nsMap);
9110 }
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009111 return(ret);
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009112}
9113
9114/*
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009115* xmlDOMWrapCloneNode:
9116* @ctxt: the optional context for custom processing
9117* @sourceDoc: the optional sourceDoc
9118* @node: the node to start with
9119* @resNode: the clone of the given @node
9120* @destDoc: the destination doc
9121* @destParent: the optional new parent of @node in @destDoc
Daniel Veillardb2f8f1d2006-04-28 16:30:48 +00009122* @deep: descend into child if set
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009123* @options: option flags
9124*
9125* References of out-of scope ns-decls are remapped to point to @destDoc:
9126* 1) If @destParent is given, then nsDef entries on element-nodes are used
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009127* 2) If *no* @destParent is given, then @destDoc->oldNs entries are used.
9128* This is the case when you don't know already where the cloned branch
9129* will be added to.
Daniel Veillardaa6de472008-08-25 14:53:31 +00009130*
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009131* If @destParent is given, it ensures that the tree is namespace
9132* wellformed by creating additional ns-decls where needed.
9133* Note that, since prefixes of already existent ns-decls can be
9134* shadowed by this process, it could break QNames in attribute
9135* values or element content.
9136* TODO:
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009137* 1) What to do with XInclude? Currently this returns an error for XInclude.
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009138*
9139* Returns 0 if the operation succeeded,
9140* 1 if a node of unsupported (or not yet supported) type was given,
9141* -1 on API/internal errors.
9142*/
9143
9144int
9145xmlDOMWrapCloneNode(xmlDOMWrapCtxtPtr ctxt,
9146 xmlDocPtr sourceDoc,
9147 xmlNodePtr node,
9148 xmlNodePtr *resNode,
9149 xmlDocPtr destDoc,
9150 xmlNodePtr destParent,
9151 int deep,
9152 int options ATTRIBUTE_UNUSED)
9153{
9154 int ret = 0;
9155 xmlNodePtr cur, curElem = NULL;
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009156 xmlNsMapPtr nsMap = NULL;
9157 xmlNsMapItemPtr mi;
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009158 xmlNsPtr ns;
9159 int depth = -1;
9160 /* int adoptStr = 1; */
9161 /* gather @parent's ns-decls. */
9162 int parnsdone = 0;
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009163 /*
Daniel Veillardaa6de472008-08-25 14:53:31 +00009164 * @ancestorsOnly:
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009165 * TODO: @ancestorsOnly should be set per option.
9166 *
9167 */
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009168 int ancestorsOnly = 0;
9169 xmlNodePtr resultClone = NULL, clone = NULL, parentClone = NULL, prevClone = NULL;
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009170 xmlNsPtr cloneNs = NULL, *cloneNsDefSlot = NULL;
9171 xmlDictPtr dict; /* The destination dict */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009172
Daniel Veillard11ce4002006-03-10 00:36:23 +00009173 if ((node == NULL) || (resNode == NULL) || (destDoc == NULL))
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009174 return(-1);
9175 /*
9176 * TODO: Initially we support only element-nodes.
9177 */
9178 if (node->type != XML_ELEMENT_NODE)
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009179 return(1);
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009180 /*
9181 * Check node->doc sanity.
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009182 */
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009183 if ((node->doc != NULL) && (sourceDoc != NULL) &&
9184 (node->doc != sourceDoc)) {
9185 /*
9186 * Might be an XIncluded node.
9187 */
9188 return (-1);
9189 }
9190 if (sourceDoc == NULL)
Daniel Veillardaa6de472008-08-25 14:53:31 +00009191 sourceDoc = node->doc;
Daniel Veillard11ce4002006-03-10 00:36:23 +00009192 if (sourceDoc == NULL)
9193 return (-1);
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009194
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009195 dict = destDoc->dict;
9196 /*
9197 * Reuse the namespace map of the context.
9198 */
9199 if (ctxt)
9200 nsMap = (xmlNsMapPtr) ctxt->namespaceMap;
9201
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009202 *resNode = NULL;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009203
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009204 cur = node;
9205 while (cur != NULL) {
9206 if (cur->doc != sourceDoc) {
9207 /*
9208 * We'll assume XIncluded nodes if the doc differs.
9209 * TODO: Do we need to reconciliate XIncluded nodes?
9210 * TODO: This here returns -1 in this case.
9211 */
Daniel Veillardaa6de472008-08-25 14:53:31 +00009212 goto internal_error;
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009213 }
9214 /*
9215 * Create a new node.
9216 */
9217 switch (cur->type) {
9218 case XML_XINCLUDE_START:
9219 case XML_XINCLUDE_END:
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009220 /*
9221 * TODO: What to do with XInclude?
9222 */
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009223 goto internal_error;
9224 break;
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009225 case XML_ELEMENT_NODE:
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009226 case XML_TEXT_NODE:
Daniel Veillardaa6de472008-08-25 14:53:31 +00009227 case XML_CDATA_SECTION_NODE:
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009228 case XML_COMMENT_NODE:
Daniel Veillardaa6de472008-08-25 14:53:31 +00009229 case XML_PI_NODE:
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009230 case XML_DOCUMENT_FRAG_NODE:
9231 case XML_ENTITY_REF_NODE:
9232 case XML_ENTITY_NODE:
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009233 /*
9234 * Nodes of xmlNode structure.
9235 */
9236 clone = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
9237 if (clone == NULL) {
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009238 xmlTreeErrMemory("xmlDOMWrapCloneNode(): allocating a node");
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009239 goto internal_error;
9240 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00009241 memset(clone, 0, sizeof(xmlNode));
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009242 /*
9243 * Set hierachical links.
9244 */
Daniel Veillardaa6de472008-08-25 14:53:31 +00009245 if (resultClone != NULL) {
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009246 clone->parent = parentClone;
9247 if (prevClone) {
9248 prevClone->next = clone;
9249 clone->prev = prevClone;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009250 } else
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009251 parentClone->children = clone;
9252 } else
9253 resultClone = clone;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009254
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009255 break;
9256 case XML_ATTRIBUTE_NODE:
9257 /*
9258 * Attributes (xmlAttr).
9259 */
9260 clone = (xmlNodePtr) xmlMalloc(sizeof(xmlAttr));
9261 if (clone == NULL) {
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009262 xmlTreeErrMemory("xmlDOMWrapCloneNode(): allocating an attr-node");
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009263 goto internal_error;
9264 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00009265 memset(clone, 0, sizeof(xmlAttr));
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009266 /*
9267 * Set hierachical links.
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009268 * TODO: Change this to add to the end of attributes.
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009269 */
9270 if (resultClone != NULL) {
9271 clone->parent = parentClone;
9272 if (prevClone) {
9273 prevClone->next = clone;
9274 clone->prev = prevClone;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009275 } else
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009276 parentClone->properties = (xmlAttrPtr) clone;
9277 } else
9278 resultClone = clone;
9279 break;
9280 default:
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009281 /*
9282 * TODO QUESTION: Any other nodes expected?
9283 */
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009284 goto internal_error;
9285 }
9286
9287 clone->type = cur->type;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009288 clone->doc = destDoc;
9289
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009290 /*
9291 * Clone the name of the node if any.
9292 */
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009293 if (cur->name == xmlStringText)
9294 clone->name = xmlStringText;
9295 else if (cur->name == xmlStringTextNoenc)
9296 /*
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009297 * NOTE: Although xmlStringTextNoenc is never assigned to a node
9298 * in tree.c, it might be set in Libxslt via
Daniel Veillardaa6de472008-08-25 14:53:31 +00009299 * "xsl:disable-output-escaping".
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009300 */
9301 clone->name = xmlStringTextNoenc;
9302 else if (cur->name == xmlStringComment)
9303 clone->name = xmlStringComment;
9304 else if (cur->name != NULL) {
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009305 DICT_CONST_COPY(cur->name, clone->name);
Daniel Veillardaa6de472008-08-25 14:53:31 +00009306 }
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009307
9308 switch (cur->type) {
9309 case XML_XINCLUDE_START:
9310 case XML_XINCLUDE_END:
9311 /*
9312 * TODO
9313 */
9314 return (-1);
9315 case XML_ELEMENT_NODE:
9316 curElem = cur;
9317 depth++;
9318 /*
9319 * Namespace declarations.
9320 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009321 if (cur->nsDef != NULL) {
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009322 if (! parnsdone) {
9323 if (destParent && (ctxt == NULL)) {
9324 /*
9325 * Gather @parent's in-scope ns-decls.
9326 */
9327 if (xmlDOMWrapNSNormGatherInScopeNs(&nsMap,
9328 destParent) == -1)
Daniel Veillardaa6de472008-08-25 14:53:31 +00009329 goto internal_error;
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009330 }
9331 parnsdone = 1;
9332 }
9333 /*
9334 * Clone namespace declarations.
9335 */
9336 cloneNsDefSlot = &(clone->nsDef);
9337 for (ns = cur->nsDef; ns != NULL; ns = ns->next) {
9338 /*
9339 * Create a new xmlNs.
9340 */
9341 cloneNs = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
9342 if (cloneNs == NULL) {
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009343 xmlTreeErrMemory("xmlDOMWrapCloneNode(): "
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009344 "allocating namespace");
9345 return(-1);
9346 }
9347 memset(cloneNs, 0, sizeof(xmlNs));
9348 cloneNs->type = XML_LOCAL_NAMESPACE;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009349
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009350 if (ns->href != NULL)
9351 cloneNs->href = xmlStrdup(ns->href);
9352 if (ns->prefix != NULL)
9353 cloneNs->prefix = xmlStrdup(ns->prefix);
9354
9355 *cloneNsDefSlot = cloneNs;
9356 cloneNsDefSlot = &(cloneNs->next);
9357
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009358 /*
9359 * Note that for custom handling of ns-references,
9360 * the ns-decls need not be stored in the ns-map,
9361 * since they won't be referenced by node->ns.
9362 */
9363 if ((ctxt == NULL) ||
9364 (ctxt->getNsForNodeFunc == NULL))
9365 {
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009366 /*
9367 * Does it shadow any ns-decl?
9368 */
9369 if (XML_NSMAP_NOTEMPTY(nsMap)) {
Daniel Veillardaa6de472008-08-25 14:53:31 +00009370 XML_NSMAP_FOREACH(nsMap, mi) {
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009371 if ((mi->depth >= XML_TREE_NSMAP_PARENT) &&
9372 (mi->shadowDepth == -1) &&
9373 ((ns->prefix == mi->newNs->prefix) ||
9374 xmlStrEqual(ns->prefix,
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009375 mi->newNs->prefix))) {
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009376 /*
9377 * Mark as shadowed at the current
9378 * depth.
9379 */
9380 mi->shadowDepth = depth;
9381 }
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009382 }
9383 }
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009384 /*
9385 * Push mapping.
9386 */
9387 if (xmlDOMWrapNsMapAddItem(&nsMap, -1,
9388 ns, cloneNs, depth) == NULL)
9389 goto internal_error;
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009390 }
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009391 }
9392 }
9393 /* cur->ns will be processed further down. */
9394 break;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009395 case XML_ATTRIBUTE_NODE:
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009396 /* IDs will be processed further down. */
9397 /* cur->ns will be processed further down. */
9398 break;
9399 case XML_TEXT_NODE:
9400 case XML_CDATA_SECTION_NODE:
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009401 /*
9402 * Note that this will also cover the values of attributes.
9403 */
Daniel Veillardaa6de472008-08-25 14:53:31 +00009404 DICT_COPY(cur->content, clone->content);
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009405 goto leave_node;
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009406 case XML_ENTITY_NODE:
9407 /* TODO: What to do here? */
9408 goto leave_node;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009409 case XML_ENTITY_REF_NODE:
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009410 if (sourceDoc != destDoc) {
9411 if ((destDoc->intSubset) || (destDoc->extSubset)) {
9412 xmlEntityPtr ent;
9413 /*
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009414 * Different doc: Assign new entity-node if available.
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009415 */
9416 ent = xmlGetDocEntity(destDoc, cur->name);
9417 if (ent != NULL) {
9418 clone->content = ent->content;
9419 clone->children = (xmlNodePtr) ent;
9420 clone->last = (xmlNodePtr) ent;
9421 }
9422 }
9423 } else {
9424 /*
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009425 * Same doc: Use the current node's entity declaration
9426 * and value.
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009427 */
9428 clone->content = cur->content;
9429 clone->children = cur->children;
9430 clone->last = cur->last;
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009431 }
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009432 goto leave_node;
9433 case XML_PI_NODE:
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009434 DICT_COPY(cur->content, clone->content);
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009435 goto leave_node;
9436 case XML_COMMENT_NODE:
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009437 DICT_COPY(cur->content, clone->content);
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009438 goto leave_node;
9439 default:
9440 goto internal_error;
9441 }
9442
9443 if (cur->ns == NULL)
9444 goto end_ns_reference;
9445
9446/* handle_ns_reference: */
9447 /*
9448 ** The following will take care of references to ns-decls ********
Daniel Veillardaa6de472008-08-25 14:53:31 +00009449 ** and is intended only for element- and attribute-nodes.
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009450 **
9451 */
9452 if (! parnsdone) {
9453 if (destParent && (ctxt == NULL)) {
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009454 if (xmlDOMWrapNSNormGatherInScopeNs(&nsMap, destParent) == -1)
Daniel Veillardaa6de472008-08-25 14:53:31 +00009455 goto internal_error;
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009456 }
9457 parnsdone = 1;
9458 }
9459 /*
9460 * Adopt ns-references.
9461 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009462 if (XML_NSMAP_NOTEMPTY(nsMap)) {
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009463 /*
9464 * Search for a mapping.
9465 */
Daniel Veillardaa6de472008-08-25 14:53:31 +00009466 XML_NSMAP_FOREACH(nsMap, mi) {
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009467 if ((mi->shadowDepth == -1) &&
9468 (cur->ns == mi->oldNs)) {
9469 /*
9470 * This is the nice case: a mapping was found.
9471 */
9472 clone->ns = mi->newNs;
9473 goto end_ns_reference;
9474 }
9475 }
9476 }
9477 /*
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009478 * No matching namespace in scope. We need a new one.
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009479 */
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009480 if ((ctxt != NULL) && (ctxt->getNsForNodeFunc != NULL)) {
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009481 /*
9482 * User-defined behaviour.
9483 */
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009484 ns = ctxt->getNsForNodeFunc(ctxt, cur,
9485 cur->ns->href, cur->ns->prefix);
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009486 /*
9487 * Add user's mapping.
9488 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009489 if (xmlDOMWrapNsMapAddItem(&nsMap, -1,
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009490 cur->ns, ns, XML_TREE_NSMAP_CUSTOM) == NULL)
9491 goto internal_error;
9492 clone->ns = ns;
9493 } else {
9494 /*
9495 * Aquire a normalized ns-decl and add it to the map.
9496 */
9497 if (xmlDOMWrapNSNormAquireNormalizedNs(destDoc,
Daniel Veillardaa6de472008-08-25 14:53:31 +00009498 /* ns-decls on curElem or on destDoc->oldNs */
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009499 destParent ? curElem : NULL,
9500 cur->ns, &ns,
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009501 &nsMap, depth,
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009502 /* if we need to search only in the ancestor-axis */
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009503 ancestorsOnly,
9504 /* ns-decls must be prefixed for attributes. */
9505 (cur->type == XML_ATTRIBUTE_NODE) ? 1 : 0) == -1)
9506 goto internal_error;
9507 clone->ns = ns;
9508 }
9509
9510end_ns_reference:
9511
9512 /*
9513 * Some post-processing.
9514 *
9515 * Handle ID attributes.
9516 */
9517 if ((clone->type == XML_ATTRIBUTE_NODE) &&
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009518 (clone->parent != NULL))
9519 {
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009520 if (xmlIsID(destDoc, clone->parent, (xmlAttrPtr) clone)) {
Daniel Veillardaa6de472008-08-25 14:53:31 +00009521
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009522 xmlChar *idVal;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009523
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009524 idVal = xmlNodeListGetString(cur->doc, cur->children, 1);
9525 if (idVal != NULL) {
9526 if (xmlAddID(NULL, destDoc, idVal, (xmlAttrPtr) cur) == NULL) {
9527 /* TODO: error message. */
9528 xmlFree(idVal);
9529 goto internal_error;
9530 }
9531 xmlFree(idVal);
9532 }
9533 }
9534 }
9535 /*
9536 **
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009537 ** The following will traverse the tree **************************
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009538 **
Daniel Veillardaa6de472008-08-25 14:53:31 +00009539 *
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009540 * Walk the element's attributes before descending into child-nodes.
9541 */
9542 if ((cur->type == XML_ELEMENT_NODE) && (cur->properties != NULL)) {
9543 prevClone = NULL;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009544 parentClone = clone;
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009545 cur = (xmlNodePtr) cur->properties;
9546 continue;
9547 }
9548into_content:
9549 /*
9550 * Descend into child-nodes.
9551 */
9552 if (cur->children != NULL) {
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009553 if (deep || (cur->type == XML_ATTRIBUTE_NODE)) {
9554 prevClone = NULL;
9555 parentClone = clone;
9556 cur = cur->children;
9557 continue;
9558 }
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009559 }
9560
9561leave_node:
9562 /*
9563 * At this point we are done with the node, its content
9564 * and an element-nodes's attribute-nodes.
9565 */
9566 if (cur == node)
9567 break;
9568 if ((cur->type == XML_ELEMENT_NODE) ||
9569 (cur->type == XML_XINCLUDE_START) ||
9570 (cur->type == XML_XINCLUDE_END)) {
9571 /*
9572 * TODO: Do we expect nsDefs on XML_XINCLUDE_START?
9573 */
Daniel Veillardaa6de472008-08-25 14:53:31 +00009574 if (XML_NSMAP_NOTEMPTY(nsMap)) {
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009575 /*
9576 * Pop mappings.
9577 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009578 while ((nsMap->last != NULL) &&
9579 (nsMap->last->depth >= depth))
9580 {
Daniel Veillardaa6de472008-08-25 14:53:31 +00009581 XML_NSMAP_POP(nsMap, mi)
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009582 }
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009583 /*
9584 * Unshadow.
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009585 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009586 XML_NSMAP_FOREACH(nsMap, mi) {
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009587 if (mi->shadowDepth >= depth)
9588 mi->shadowDepth = -1;
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009589 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00009590 }
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009591 depth--;
9592 }
9593 if (cur->next != NULL) {
9594 prevClone = clone;
9595 cur = cur->next;
9596 } else if (cur->type != XML_ATTRIBUTE_NODE) {
9597 /*
9598 * Set clone->last.
9599 */
Daniel Veillard11ce4002006-03-10 00:36:23 +00009600 if (clone->parent != NULL)
9601 clone->parent->last = clone;
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009602 clone = clone->parent;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009603 parentClone = clone->parent;
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009604 /*
9605 * Process parent --> next;
9606 */
9607 cur = cur->parent;
9608 goto leave_node;
9609 } else {
9610 /* This is for attributes only. */
9611 clone = clone->parent;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009612 parentClone = clone->parent;
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009613 /*
9614 * Process parent-element --> children.
9615 */
9616 cur = cur->parent;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009617 goto into_content;
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009618 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00009619 }
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009620 goto exit;
9621
9622internal_error:
9623 ret = -1;
9624
9625exit:
9626 /*
9627 * Cleanup.
9628 */
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009629 if (nsMap != NULL) {
9630 if ((ctxt) && (ctxt->namespaceMap == nsMap)) {
9631 /*
9632 * Just cleanup the map but don't free.
9633 */
9634 if (nsMap->first) {
9635 if (nsMap->pool)
9636 nsMap->last->next = nsMap->pool;
9637 nsMap->pool = nsMap->first;
9638 nsMap->first = NULL;
9639 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00009640 } else
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009641 xmlDOMWrapNsMapFree(nsMap);
9642 }
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009643 /*
9644 * TODO: Should we try a cleanup of the cloned node in case of a
9645 * fatal error?
9646 */
9647 *resNode = resultClone;
9648 return (ret);
9649}
9650
9651/*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009652* xmlDOMWrapAdoptAttr:
9653* @ctxt: the optional context for custom processing
9654* @sourceDoc: the optional source document of attr
9655* @attr: the attribute-node to be adopted
9656* @destDoc: the destination doc for adoption
9657* @destParent: the optional new parent of @attr in @destDoc
9658* @options: option flags
9659*
9660* @attr is adopted by @destDoc.
9661* Ensures that ns-references point to @destDoc: either to
9662* elements->nsDef entries if @destParent is given, or to
9663* @destDoc->oldNs otherwise.
9664*
9665* Returns 0 if succeeded, -1 otherwise and on API/internal errors.
9666*/
9667static int
9668xmlDOMWrapAdoptAttr(xmlDOMWrapCtxtPtr ctxt,
9669 xmlDocPtr sourceDoc,
9670 xmlAttrPtr attr,
9671 xmlDocPtr destDoc,
9672 xmlNodePtr destParent,
9673 int options ATTRIBUTE_UNUSED)
9674{
9675 xmlNodePtr cur;
9676 int adoptStr = 1;
9677
9678 if ((attr == NULL) || (destDoc == NULL))
9679 return (-1);
Daniel Veillardaa6de472008-08-25 14:53:31 +00009680
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009681 attr->doc = destDoc;
9682 if (attr->ns != NULL) {
9683 xmlNsPtr ns = NULL;
9684
9685 if (ctxt != NULL) {
9686 /* TODO: User defined. */
9687 }
9688 /* XML Namespace. */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009689 if (IS_STR_XML(attr->ns->prefix)) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009690 ns = xmlTreeEnsureXMLDecl(destDoc);
9691 } else if (destParent == NULL) {
9692 /*
9693 * Store in @destDoc->oldNs.
9694 */
9695 ns = xmlDOMWrapStoreNs(destDoc, attr->ns->href, attr->ns->prefix);
9696 } else {
9697 /*
9698 * Declare on @destParent.
9699 */
Kasimier T. Buchcik44353412006-03-06 13:26:16 +00009700 if (xmlSearchNsByNamespaceStrict(destDoc, destParent, attr->ns->href,
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009701 &ns, 1) == -1)
9702 goto internal_error;
9703 if (ns == NULL) {
9704 ns = xmlDOMWrapNSNormDeclareNsForced(destDoc, destParent,
9705 attr->ns->href, attr->ns->prefix, 1);
9706 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00009707 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009708 if (ns == NULL)
9709 goto internal_error;
9710 attr->ns = ns;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009711 }
9712
9713 XML_TREE_ADOPT_STR(attr->name);
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009714 attr->atype = 0;
9715 attr->psvi = NULL;
9716 /*
9717 * Walk content.
9718 */
9719 if (attr->children == NULL)
9720 return (0);
9721 cur = attr->children;
9722 while (cur != NULL) {
9723 cur->doc = destDoc;
9724 switch (cur->type) {
9725 case XML_TEXT_NODE:
9726 case XML_CDATA_SECTION_NODE:
9727 XML_TREE_ADOPT_STR_2(cur->content)
Daniel Veillardaa6de472008-08-25 14:53:31 +00009728 break;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009729 case XML_ENTITY_REF_NODE:
9730 /*
9731 * Remove reference to the entitity-node.
9732 */
9733 cur->content = NULL;
9734 cur->children = NULL;
9735 cur->last = NULL;
9736 if ((destDoc->intSubset) || (destDoc->extSubset)) {
9737 xmlEntityPtr ent;
9738 /*
9739 * Assign new entity-node if available.
9740 */
9741 ent = xmlGetDocEntity(destDoc, cur->name);
9742 if (ent != NULL) {
9743 cur->content = ent->content;
9744 cur->children = (xmlNodePtr) ent;
9745 cur->last = (xmlNodePtr) ent;
Daniel Veillardaa6de472008-08-25 14:53:31 +00009746 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009747 }
9748 break;
9749 default:
9750 break;
9751 }
9752 if (cur->children != NULL) {
9753 cur = cur->children;
9754 continue;
9755 }
9756next_sibling:
9757 if (cur == (xmlNodePtr) attr)
9758 break;
9759 if (cur->next != NULL)
9760 cur = cur->next;
9761 else {
9762 cur = cur->parent;
9763 goto next_sibling;
9764 }
9765 }
9766 return (0);
9767internal_error:
9768 return (-1);
9769}
9770
9771/*
9772* xmlDOMWrapAdoptNode:
9773* @ctxt: the optional context for custom processing
9774* @sourceDoc: the optional sourceDoc
9775* @node: the node to start with
9776* @destDoc: the destination doc
Kasimier T. Buchcik4d9c9482005-06-27 15:04:46 +00009777* @destParent: the optional new parent of @node in @destDoc
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009778* @options: option flags
9779*
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009780* References of out-of scope ns-decls are remapped to point to @destDoc:
9781* 1) If @destParent is given, then nsDef entries on element-nodes are used
9782* 2) If *no* @destParent is given, then @destDoc->oldNs entries are used
9783* This is the case when you have an unliked node and just want to move it
Daniel Veillardaa6de472008-08-25 14:53:31 +00009784* to the context of
9785*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009786* If @destParent is given, it ensures that the tree is namespace
9787* wellformed by creating additional ns-decls where needed.
9788* Note that, since prefixes of already existent ns-decls can be
9789* shadowed by this process, it could break QNames in attribute
9790* values or element content.
Kasimier T. Buchcik978039b2006-06-16 19:46:26 +00009791* NOTE: This function was not intensively tested.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009792*
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009793* Returns 0 if the operation succeeded,
9794* 1 if a node of unsupported type was given,
9795* 2 if a node of not yet supported type was given and
9796* -1 on API/internal errors.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009797*/
9798int
9799xmlDOMWrapAdoptNode(xmlDOMWrapCtxtPtr ctxt,
9800 xmlDocPtr sourceDoc,
9801 xmlNodePtr node,
Daniel Veillardaa6de472008-08-25 14:53:31 +00009802 xmlDocPtr destDoc,
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009803 xmlNodePtr destParent,
9804 int options)
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009805{
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009806 if ((node == NULL) || (destDoc == NULL) ||
9807 ((destParent != NULL) && (destParent->doc != destDoc)))
9808 return(-1);
9809 /*
9810 * Check node->doc sanity.
Daniel Veillardaa6de472008-08-25 14:53:31 +00009811 */
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009812 if ((node->doc != NULL) && (sourceDoc != NULL) &&
9813 (node->doc != sourceDoc)) {
9814 /*
9815 * Might be an XIncluded node.
9816 */
9817 return (-1);
9818 }
9819 if (sourceDoc == NULL)
9820 sourceDoc = node->doc;
9821 if (sourceDoc == destDoc)
9822 return (-1);
9823 switch (node->type) {
Daniel Veillardaa6de472008-08-25 14:53:31 +00009824 case XML_ELEMENT_NODE:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009825 case XML_ATTRIBUTE_NODE:
9826 case XML_TEXT_NODE:
9827 case XML_CDATA_SECTION_NODE:
9828 case XML_ENTITY_REF_NODE:
9829 case XML_PI_NODE:
9830 case XML_COMMENT_NODE:
9831 break;
9832 case XML_DOCUMENT_FRAG_NODE:
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009833 /* TODO: Support document-fragment-nodes. */
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009834 return (2);
9835 default:
9836 return (1);
9837 }
9838 /*
9839 * Unlink only if @node was not already added to @destParent.
9840 */
9841 if ((node->parent != NULL) && (destParent != node->parent))
9842 xmlUnlinkNode(node);
9843
9844 if (node->type == XML_ELEMENT_NODE) {
9845 return (xmlDOMWrapAdoptBranch(ctxt, sourceDoc, node,
9846 destDoc, destParent, options));
9847 } else if (node->type == XML_ATTRIBUTE_NODE) {
9848 return (xmlDOMWrapAdoptAttr(ctxt, sourceDoc,
9849 (xmlAttrPtr) node, destDoc, destParent, options));
Daniel Veillardaa6de472008-08-25 14:53:31 +00009850 } else {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009851 xmlNodePtr cur = node;
9852 int adoptStr = 1;
9853
9854 cur->doc = destDoc;
9855 /*
9856 * Optimize string adoption.
9857 */
9858 if ((sourceDoc != NULL) &&
9859 (sourceDoc->dict == destDoc->dict))
9860 adoptStr = 0;
9861 switch (node->type) {
Daniel Veillardaa6de472008-08-25 14:53:31 +00009862 case XML_TEXT_NODE:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009863 case XML_CDATA_SECTION_NODE:
9864 XML_TREE_ADOPT_STR_2(node->content)
9865 break;
9866 case XML_ENTITY_REF_NODE:
9867 /*
9868 * Remove reference to the entitity-node.
9869 */
9870 node->content = NULL;
9871 node->children = NULL;
9872 node->last = NULL;
9873 if ((destDoc->intSubset) || (destDoc->extSubset)) {
9874 xmlEntityPtr ent;
9875 /*
9876 * Assign new entity-node if available.
9877 */
9878 ent = xmlGetDocEntity(destDoc, node->name);
9879 if (ent != NULL) {
9880 node->content = ent->content;
9881 node->children = (xmlNodePtr) ent;
9882 node->last = (xmlNodePtr) ent;
9883 }
9884 }
9885 XML_TREE_ADOPT_STR(node->name)
9886 break;
Daniel Veillard7e21fd12005-07-03 21:44:07 +00009887 case XML_PI_NODE: {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009888 XML_TREE_ADOPT_STR(node->name)
9889 XML_TREE_ADOPT_STR_2(node->content)
9890 break;
Daniel Veillard7e21fd12005-07-03 21:44:07 +00009891 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009892 default:
9893 break;
9894 }
Daniel Veillardaa6de472008-08-25 14:53:31 +00009895 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009896 return (0);
9897}
9898
Daniel Veillard5d4644e2005-04-01 13:11:58 +00009899#define bottom_tree
9900#include "elfgcchack.h"