blob: 82b90141631b0065d1f428bb54aab9f8ee1d2417 [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 ! */
17
18#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
Daniel Veillard56a4cb82001-03-24 17:00:36 +000046xmlNsPtr xmlNewReconciliedNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns);
47
48/************************************************************************
49 * *
Daniel Veillard18ec16e2003-10-07 23:16:40 +000050 * Tree memory error handler *
51 * *
52 ************************************************************************/
53/**
54 * xmlTreeErrMemory:
55 * @extra: extra informations
56 *
57 * Handle an out of memory condition
58 */
59static void
60xmlTreeErrMemory(const char *extra)
61{
62 __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra);
63}
64
65/**
66 * xmlTreeErr:
67 * @code: the error number
68 * @extra: extra informations
69 *
70 * Handle an out of memory condition
71 */
72static void
73xmlTreeErr(int code, xmlNodePtr node, const char *extra)
74{
75 const char *msg = NULL;
76
77 switch(code) {
78 case XML_TREE_INVALID_HEX:
Daniel Veillardac996a12004-07-30 12:02:58 +000079 msg = "invalid hexadecimal character value\n";
Daniel Veillard18ec16e2003-10-07 23:16:40 +000080 break;
81 case XML_TREE_INVALID_DEC:
Daniel Veillardac996a12004-07-30 12:02:58 +000082 msg = "invalid decimal character value\n";
Daniel Veillard18ec16e2003-10-07 23:16:40 +000083 break;
84 case XML_TREE_UNTERMINATED_ENTITY:
Daniel Veillardac996a12004-07-30 12:02:58 +000085 msg = "unterminated entity reference %15s\n";
Daniel Veillard18ec16e2003-10-07 23:16:40 +000086 break;
87 default:
Daniel Veillardac996a12004-07-30 12:02:58 +000088 msg = "unexpected error number\n";
Daniel Veillard18ec16e2003-10-07 23:16:40 +000089 }
90 __xmlSimpleError(XML_FROM_TREE, code, node, msg, extra);
91}
92
93/************************************************************************
94 * *
Daniel Veillard56a4cb82001-03-24 17:00:36 +000095 * A few static variables and macros *
96 * *
97 ************************************************************************/
Daniel Veillardd0463562001-10-13 09:15:48 +000098/* #undef xmlStringText */
Daniel Veillard22090732001-07-16 00:06:07 +000099const xmlChar xmlStringText[] = { 't', 'e', 'x', 't', 0 };
Daniel Veillardd0463562001-10-13 09:15:48 +0000100/* #undef xmlStringTextNoenc */
Daniel Veillard22090732001-07-16 00:06:07 +0000101const xmlChar xmlStringTextNoenc[] =
Owen Taylor3473f882001-02-23 17:55:21 +0000102 { 't', 'e', 'x', 't', 'n', 'o', 'e', 'n', 'c', 0 };
Daniel Veillardd0463562001-10-13 09:15:48 +0000103/* #undef xmlStringComment */
Daniel Veillard22090732001-07-16 00:06:07 +0000104const xmlChar xmlStringComment[] = { 'c', 'o', 'm', 'm', 'e', 'n', 't', 0 };
105
Owen Taylor3473f882001-02-23 17:55:21 +0000106static int xmlCompressMode = 0;
107static int xmlCheckDTD = 1;
Owen Taylor3473f882001-02-23 17:55:21 +0000108
Owen Taylor3473f882001-02-23 17:55:21 +0000109#define UPDATE_LAST_CHILD_AND_PARENT(n) if ((n) != NULL) { \
110 xmlNodePtr ulccur = (n)->children; \
111 if (ulccur == NULL) { \
112 (n)->last = NULL; \
113 } else { \
114 while (ulccur->next != NULL) { \
115 ulccur->parent = (n); \
116 ulccur = ulccur->next; \
117 } \
118 ulccur->parent = (n); \
119 (n)->last = ulccur; \
120}}
121
122/* #define DEBUG_BUFFER */
123/* #define DEBUG_TREE */
124
125/************************************************************************
126 * *
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +0000127 * Functions to move to entities.c once the *
128 * API freeze is smoothen and they can be made public. *
129 * *
130 ************************************************************************/
131#include <libxml/hash.h>
132
Daniel Veillard652327a2003-09-29 18:02:38 +0000133#ifdef LIBXML_TREE_ENABLED
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +0000134/**
135 * xmlGetEntityFromDtd:
136 * @dtd: A pointer to the DTD to search
137 * @name: The entity name
138 *
139 * Do an entity lookup in the DTD entity hash table and
140 * return the corresponding entity, if found.
141 *
142 * Returns A pointer to the entity structure or NULL if not found.
143 */
144static xmlEntityPtr
145xmlGetEntityFromDtd(xmlDtdPtr dtd, const xmlChar *name) {
146 xmlEntitiesTablePtr table;
147
148 if((dtd != NULL) && (dtd->entities != NULL)) {
149 table = (xmlEntitiesTablePtr) dtd->entities;
150 return((xmlEntityPtr) xmlHashLookup(table, name));
151 /* return(xmlGetEntityFromTable(table, name)); */
152 }
153 return(NULL);
154}
155/**
156 * xmlGetParameterEntityFromDtd:
157 * @dtd: A pointer to the DTD to search
158 * @name: The entity name
159 *
160 * Do an entity lookup in the DTD pararmeter entity hash table and
161 * return the corresponding entity, if found.
162 *
163 * Returns A pointer to the entity structure or NULL if not found.
164 */
165static xmlEntityPtr
166xmlGetParameterEntityFromDtd(xmlDtdPtr dtd, const xmlChar *name) {
167 xmlEntitiesTablePtr table;
168
169 if ((dtd != NULL) && (dtd->pentities != NULL)) {
170 table = (xmlEntitiesTablePtr) dtd->pentities;
171 return((xmlEntityPtr) xmlHashLookup(table, name));
172 /* return(xmlGetEntityFromTable(table, name)); */
173 }
174 return(NULL);
175}
Daniel Veillard652327a2003-09-29 18:02:38 +0000176#endif /* LIBXML_TREE_ENABLED */
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +0000177
178/************************************************************************
179 * *
Daniel Veillardc00cda82003-04-07 10:22:39 +0000180 * QName handling helper *
181 * *
182 ************************************************************************/
183
184/**
185 * xmlBuildQName:
186 * @ncname: the Name
187 * @prefix: the prefix
188 * @memory: preallocated memory
189 * @len: preallocated memory length
190 *
191 * Builds the QName @prefix:@ncname in @memory if there is enough space
192 * and prefix is not NULL nor empty, otherwise allocate a new string.
193 * If prefix is NULL or empty it returns ncname.
194 *
195 * Returns the new string which must be freed by the caller if different from
196 * @memory and @ncname or NULL in case of error
197 */
198xmlChar *
199xmlBuildQName(const xmlChar *ncname, const xmlChar *prefix,
200 xmlChar *memory, int len) {
201 int lenn, lenp;
202 xmlChar *ret;
203
Daniel Veillard3b7840c2003-09-11 23:42:01 +0000204 if (ncname == NULL) return(NULL);
205 if (prefix == NULL) return((xmlChar *) ncname);
Daniel Veillardc00cda82003-04-07 10:22:39 +0000206
207 lenn = strlen((char *) ncname);
208 lenp = strlen((char *) prefix);
209
210 if ((memory == NULL) || (len < lenn + lenp + 2)) {
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000211 ret = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2);
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000212 if (ret == NULL) {
213 xmlTreeErrMemory("building QName");
214 return(NULL);
215 }
Daniel Veillardc00cda82003-04-07 10:22:39 +0000216 } else {
217 ret = memory;
218 }
219 memcpy(&ret[0], prefix, lenp);
220 ret[lenp] = ':';
221 memcpy(&ret[lenp + 1], ncname, lenn);
222 ret[lenn + lenp + 1] = 0;
223 return(ret);
224}
225
226/**
227 * xmlSplitQName2:
228 * @name: the full QName
229 * @prefix: a xmlChar **
230 *
231 * parse an XML qualified name string
232 *
233 * [NS 5] QName ::= (Prefix ':')? LocalPart
234 *
235 * [NS 6] Prefix ::= NCName
236 *
237 * [NS 7] LocalPart ::= NCName
238 *
239 * Returns NULL if not a QName, otherwise the local part, and prefix
240 * is updated to get the Prefix if any.
241 */
242
243xmlChar *
244xmlSplitQName2(const xmlChar *name, xmlChar **prefix) {
245 int len = 0;
246 xmlChar *ret = NULL;
247
Daniel Veillardd5cc0f72004-11-06 19:24:28 +0000248 if (prefix == NULL) return(NULL);
Daniel Veillardc00cda82003-04-07 10:22:39 +0000249 *prefix = NULL;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000250 if (name == NULL) return(NULL);
Daniel Veillardc00cda82003-04-07 10:22:39 +0000251
252#ifndef XML_XML_NAMESPACE
253 /* xml: prefix is not really a namespace */
254 if ((name[0] == 'x') && (name[1] == 'm') &&
255 (name[2] == 'l') && (name[3] == ':'))
256 return(NULL);
257#endif
258
259 /* nasty but valid */
260 if (name[0] == ':')
261 return(NULL);
262
263 /*
264 * we are not trying to validate but just to cut, and yes it will
265 * work even if this is as set of UTF-8 encoded chars
266 */
267 while ((name[len] != 0) && (name[len] != ':'))
268 len++;
269
270 if (name[len] == 0)
271 return(NULL);
272
273 *prefix = xmlStrndup(name, len);
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000274 if (*prefix == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000275 xmlTreeErrMemory("QName split");
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000276 return(NULL);
277 }
Daniel Veillardc00cda82003-04-07 10:22:39 +0000278 ret = xmlStrdup(&name[len + 1]);
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000279 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000280 xmlTreeErrMemory("QName split");
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000281 if (*prefix != NULL) {
282 xmlFree(*prefix);
283 *prefix = NULL;
284 }
285 return(NULL);
286 }
Daniel Veillardc00cda82003-04-07 10:22:39 +0000287
288 return(ret);
289}
290
Daniel Veillard8d73bcb2003-08-04 01:06:15 +0000291/**
292 * xmlSplitQName3:
293 * @name: the full QName
294 * @len: an int *
295 *
296 * parse an XML qualified name string,i
297 *
298 * returns NULL if it is not a Qualified Name, otherwise, update len
299 * with the lenght in byte of the prefix and return a pointer
Daniel Veillard54f9a4f2005-09-03 13:28:24 +0000300 * to the start of the name without the prefix
Daniel Veillard8d73bcb2003-08-04 01:06:15 +0000301 */
302
303const xmlChar *
304xmlSplitQName3(const xmlChar *name, int *len) {
305 int l = 0;
306
307 if (name == NULL) return(NULL);
308 if (len == NULL) return(NULL);
309
310 /* nasty but valid */
311 if (name[0] == ':')
312 return(NULL);
313
314 /*
315 * we are not trying to validate but just to cut, and yes it will
316 * work even if this is as set of UTF-8 encoded chars
317 */
318 while ((name[l] != 0) && (name[l] != ':'))
319 l++;
320
321 if (name[l] == 0)
322 return(NULL);
323
324 *len = l;
325
326 return(&name[l+1]);
327}
328
Daniel Veillardc00cda82003-04-07 10:22:39 +0000329/************************************************************************
330 * *
Daniel Veillardd2298792003-02-14 16:54:11 +0000331 * Check Name, NCName and QName strings *
332 * *
333 ************************************************************************/
334
335#define CUR_SCHAR(s, l) xmlStringCurrentChar(NULL, s, &l)
336
Daniel Veillard6b6d6802005-07-03 21:00:34 +0000337#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) || defined (LIBXML_HTML_ENABLED)
Daniel Veillardd2298792003-02-14 16:54:11 +0000338/**
339 * xmlValidateNCName:
340 * @value: the value to check
341 * @space: allow spaces in front and end of the string
342 *
343 * Check that a value conforms to the lexical space of NCName
344 *
345 * Returns 0 if this validates, a positive error code number otherwise
346 * and -1 in case of internal or API error.
347 */
348int
349xmlValidateNCName(const xmlChar *value, int space) {
350 const xmlChar *cur = value;
351 int c,l;
352
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000353 if (value == NULL)
354 return(-1);
355
Daniel Veillardd2298792003-02-14 16:54:11 +0000356 /*
357 * First quick algorithm for ASCII range
358 */
359 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000360 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +0000361 if (((*cur >= 'a') && (*cur <= 'z')) || ((*cur >= 'A') && (*cur <= 'Z')) ||
362 (*cur == '_'))
363 cur++;
364 else
365 goto try_complex;
366 while (((*cur >= 'a') && (*cur <= 'z')) ||
367 ((*cur >= 'A') && (*cur <= 'Z')) ||
368 ((*cur >= '0') && (*cur <= '9')) ||
369 (*cur == '_') || (*cur == '-') || (*cur == '.'))
370 cur++;
371 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000372 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +0000373 if (*cur == 0)
374 return(0);
375
376try_complex:
377 /*
378 * Second check for chars outside the ASCII range
379 */
380 cur = value;
381 c = CUR_SCHAR(cur, l);
382 if (space) {
383 while (IS_BLANK(c)) {
384 cur += l;
385 c = CUR_SCHAR(cur, l);
386 }
387 }
William M. Brack871611b2003-10-18 04:53:14 +0000388 if ((!IS_LETTER(c)) && (c != '_'))
Daniel Veillardd2298792003-02-14 16:54:11 +0000389 return(1);
390 cur += l;
391 c = CUR_SCHAR(cur, l);
William M. Brack871611b2003-10-18 04:53:14 +0000392 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
393 (c == '-') || (c == '_') || IS_COMBINING(c) ||
394 IS_EXTENDER(c)) {
Daniel Veillardd2298792003-02-14 16:54:11 +0000395 cur += l;
396 c = CUR_SCHAR(cur, l);
397 }
398 if (space) {
399 while (IS_BLANK(c)) {
400 cur += l;
401 c = CUR_SCHAR(cur, l);
402 }
403 }
404 if (c != 0)
405 return(1);
406
407 return(0);
408}
Daniel Veillard2156d432004-03-04 15:59:36 +0000409#endif
Daniel Veillardd2298792003-02-14 16:54:11 +0000410
Daniel Veillard2156d432004-03-04 15:59:36 +0000411#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
Daniel Veillardd2298792003-02-14 16:54:11 +0000412/**
413 * xmlValidateQName:
414 * @value: the value to check
415 * @space: allow spaces in front and end of the string
416 *
417 * Check that a value conforms to the lexical space of QName
418 *
419 * Returns 0 if this validates, a positive error code number otherwise
420 * and -1 in case of internal or API error.
421 */
422int
423xmlValidateQName(const xmlChar *value, int space) {
424 const xmlChar *cur = value;
425 int c,l;
426
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000427 if (value == NULL)
428 return(-1);
Daniel Veillardd2298792003-02-14 16:54:11 +0000429 /*
430 * First quick algorithm for ASCII range
431 */
432 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000433 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +0000434 if (((*cur >= 'a') && (*cur <= 'z')) || ((*cur >= 'A') && (*cur <= 'Z')) ||
435 (*cur == '_'))
436 cur++;
437 else
438 goto try_complex;
439 while (((*cur >= 'a') && (*cur <= 'z')) ||
440 ((*cur >= 'A') && (*cur <= 'Z')) ||
441 ((*cur >= '0') && (*cur <= '9')) ||
442 (*cur == '_') || (*cur == '-') || (*cur == '.'))
443 cur++;
444 if (*cur == ':') {
445 cur++;
446 if (((*cur >= 'a') && (*cur <= 'z')) ||
447 ((*cur >= 'A') && (*cur <= 'Z')) ||
448 (*cur == '_'))
449 cur++;
450 else
451 goto try_complex;
452 while (((*cur >= 'a') && (*cur <= 'z')) ||
453 ((*cur >= 'A') && (*cur <= 'Z')) ||
454 ((*cur >= '0') && (*cur <= '9')) ||
455 (*cur == '_') || (*cur == '-') || (*cur == '.'))
456 cur++;
457 }
458 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000459 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +0000460 if (*cur == 0)
461 return(0);
462
463try_complex:
464 /*
465 * Second check for chars outside the ASCII range
466 */
467 cur = value;
468 c = CUR_SCHAR(cur, l);
469 if (space) {
470 while (IS_BLANK(c)) {
471 cur += l;
472 c = CUR_SCHAR(cur, l);
473 }
474 }
William M. Brack871611b2003-10-18 04:53:14 +0000475 if ((!IS_LETTER(c)) && (c != '_'))
Daniel Veillardd2298792003-02-14 16:54:11 +0000476 return(1);
477 cur += l;
478 c = CUR_SCHAR(cur, l);
William M. Brack871611b2003-10-18 04:53:14 +0000479 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
480 (c == '-') || (c == '_') || IS_COMBINING(c) ||
481 IS_EXTENDER(c)) {
Daniel Veillardd2298792003-02-14 16:54:11 +0000482 cur += l;
483 c = CUR_SCHAR(cur, l);
484 }
485 if (c == ':') {
486 cur += l;
487 c = CUR_SCHAR(cur, l);
William M. Brack871611b2003-10-18 04:53:14 +0000488 if ((!IS_LETTER(c)) && (c != '_'))
Daniel Veillardd2298792003-02-14 16:54:11 +0000489 return(1);
490 cur += l;
491 c = CUR_SCHAR(cur, l);
William M. Brack871611b2003-10-18 04:53:14 +0000492 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') ||
493 (c == '-') || (c == '_') || IS_COMBINING(c) ||
494 IS_EXTENDER(c)) {
Daniel Veillardd2298792003-02-14 16:54:11 +0000495 cur += l;
496 c = CUR_SCHAR(cur, l);
497 }
498 }
499 if (space) {
500 while (IS_BLANK(c)) {
501 cur += l;
502 c = CUR_SCHAR(cur, l);
503 }
504 }
505 if (c != 0)
506 return(1);
507 return(0);
508}
509
510/**
511 * xmlValidateName:
512 * @value: the value to check
513 * @space: allow spaces in front and end of the string
514 *
515 * Check that a value conforms to the lexical space of Name
516 *
517 * Returns 0 if this validates, a positive error code number otherwise
518 * and -1 in case of internal or API error.
519 */
520int
521xmlValidateName(const xmlChar *value, int space) {
522 const xmlChar *cur = value;
523 int c,l;
524
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000525 if (value == NULL)
526 return(-1);
Daniel Veillardd2298792003-02-14 16:54:11 +0000527 /*
528 * First quick algorithm for ASCII range
529 */
530 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000531 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +0000532 if (((*cur >= 'a') && (*cur <= 'z')) || ((*cur >= 'A') && (*cur <= 'Z')) ||
533 (*cur == '_') || (*cur == ':'))
534 cur++;
535 else
536 goto try_complex;
537 while (((*cur >= 'a') && (*cur <= 'z')) ||
538 ((*cur >= 'A') && (*cur <= 'Z')) ||
539 ((*cur >= '0') && (*cur <= '9')) ||
540 (*cur == '_') || (*cur == '-') || (*cur == '.') || (*cur == ':'))
541 cur++;
542 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000543 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +0000544 if (*cur == 0)
545 return(0);
546
547try_complex:
548 /*
549 * Second check for chars outside the ASCII range
550 */
551 cur = value;
552 c = CUR_SCHAR(cur, l);
553 if (space) {
554 while (IS_BLANK(c)) {
555 cur += l;
556 c = CUR_SCHAR(cur, l);
557 }
558 }
William M. Brack871611b2003-10-18 04:53:14 +0000559 if ((!IS_LETTER(c)) && (c != '_') && (c != ':'))
Daniel Veillardd2298792003-02-14 16:54:11 +0000560 return(1);
561 cur += l;
562 c = CUR_SCHAR(cur, l);
William M. Brack871611b2003-10-18 04:53:14 +0000563 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
564 (c == '-') || (c == '_') || IS_COMBINING(c) || IS_EXTENDER(c)) {
Daniel Veillardd2298792003-02-14 16:54:11 +0000565 cur += l;
566 c = CUR_SCHAR(cur, l);
567 }
568 if (space) {
569 while (IS_BLANK(c)) {
570 cur += l;
571 c = CUR_SCHAR(cur, l);
572 }
573 }
574 if (c != 0)
575 return(1);
576 return(0);
577}
578
Daniel Veillardd4310742003-02-18 21:12:46 +0000579/**
580 * xmlValidateNMToken:
581 * @value: the value to check
582 * @space: allow spaces in front and end of the string
583 *
584 * Check that a value conforms to the lexical space of NMToken
585 *
586 * Returns 0 if this validates, a positive error code number otherwise
587 * and -1 in case of internal or API error.
588 */
589int
590xmlValidateNMToken(const xmlChar *value, int space) {
591 const xmlChar *cur = value;
592 int c,l;
593
Daniel Veillard36e5cd52004-11-02 14:52:23 +0000594 if (value == NULL)
595 return(-1);
Daniel Veillardd4310742003-02-18 21:12:46 +0000596 /*
597 * First quick algorithm for ASCII range
598 */
599 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000600 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd4310742003-02-18 21:12:46 +0000601 if (((*cur >= 'a') && (*cur <= 'z')) ||
602 ((*cur >= 'A') && (*cur <= 'Z')) ||
603 ((*cur >= '0') && (*cur <= '9')) ||
604 (*cur == '_') || (*cur == '-') || (*cur == '.') || (*cur == ':'))
605 cur++;
606 else
607 goto try_complex;
608 while (((*cur >= 'a') && (*cur <= 'z')) ||
609 ((*cur >= 'A') && (*cur <= 'Z')) ||
610 ((*cur >= '0') && (*cur <= '9')) ||
611 (*cur == '_') || (*cur == '-') || (*cur == '.') || (*cur == ':'))
612 cur++;
613 if (space)
William M. Brack76e95df2003-10-18 16:20:14 +0000614 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardd4310742003-02-18 21:12:46 +0000615 if (*cur == 0)
616 return(0);
617
618try_complex:
619 /*
620 * Second check for chars outside the ASCII range
621 */
622 cur = value;
623 c = CUR_SCHAR(cur, l);
624 if (space) {
625 while (IS_BLANK(c)) {
626 cur += l;
627 c = CUR_SCHAR(cur, l);
628 }
629 }
William M. Brack871611b2003-10-18 04:53:14 +0000630 if (!(IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
631 (c == '-') || (c == '_') || IS_COMBINING(c) || IS_EXTENDER(c)))
Daniel Veillardd4310742003-02-18 21:12:46 +0000632 return(1);
633 cur += l;
634 c = CUR_SCHAR(cur, l);
William M. Brack871611b2003-10-18 04:53:14 +0000635 while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') ||
636 (c == '-') || (c == '_') || IS_COMBINING(c) || IS_EXTENDER(c)) {
Daniel Veillardd4310742003-02-18 21:12:46 +0000637 cur += l;
638 c = CUR_SCHAR(cur, l);
639 }
640 if (space) {
641 while (IS_BLANK(c)) {
642 cur += l;
643 c = CUR_SCHAR(cur, l);
644 }
645 }
646 if (c != 0)
647 return(1);
648 return(0);
649}
Daniel Veillard652327a2003-09-29 18:02:38 +0000650#endif /* LIBXML_TREE_ENABLED */
Daniel Veillardd4310742003-02-18 21:12:46 +0000651
Daniel Veillardd2298792003-02-14 16:54:11 +0000652/************************************************************************
653 * *
Owen Taylor3473f882001-02-23 17:55:21 +0000654 * Allocation and deallocation of basic structures *
655 * *
656 ************************************************************************/
657
658/**
659 * xmlSetBufferAllocationScheme:
660 * @scheme: allocation method to use
661 *
662 * Set the buffer allocation method. Types are
663 * XML_BUFFER_ALLOC_EXACT - use exact sizes, keeps memory usage down
664 * XML_BUFFER_ALLOC_DOUBLEIT - double buffer when extra needed,
665 * improves performance
666 */
667void
668xmlSetBufferAllocationScheme(xmlBufferAllocationScheme scheme) {
669 xmlBufferAllocScheme = scheme;
670}
671
672/**
673 * xmlGetBufferAllocationScheme:
674 *
675 * Types are
676 * XML_BUFFER_ALLOC_EXACT - use exact sizes, keeps memory usage down
677 * XML_BUFFER_ALLOC_DOUBLEIT - double buffer when extra needed,
678 * improves performance
679 *
680 * Returns the current allocation scheme
681 */
682xmlBufferAllocationScheme
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000683xmlGetBufferAllocationScheme(void) {
Daniel Veillarde043ee12001-04-16 14:08:07 +0000684 return(xmlBufferAllocScheme);
Owen Taylor3473f882001-02-23 17:55:21 +0000685}
686
687/**
688 * xmlNewNs:
689 * @node: the element carrying the namespace
690 * @href: the URI associated
691 * @prefix: the prefix for the namespace
692 *
693 * Creation of a new Namespace. This function will refuse to create
694 * a namespace with a similar prefix than an existing one present on this
695 * node.
696 * We use href==NULL in the case of an element creation where the namespace
697 * was not defined.
Daniel Veillardd1640922001-12-17 15:30:10 +0000698 * Returns a new namespace pointer or NULL
Owen Taylor3473f882001-02-23 17:55:21 +0000699 */
700xmlNsPtr
701xmlNewNs(xmlNodePtr node, const xmlChar *href, const xmlChar *prefix) {
702 xmlNsPtr cur;
703
704 if ((node != NULL) && (node->type != XML_ELEMENT_NODE))
705 return(NULL);
706
Daniel Veillard20ee8c02001-10-05 09:18:14 +0000707 if ((prefix != NULL) && (xmlStrEqual(prefix, BAD_CAST "xml")))
708 return(NULL);
709
Owen Taylor3473f882001-02-23 17:55:21 +0000710 /*
711 * Allocate a new Namespace and fill the fields.
712 */
713 cur = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
714 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000715 xmlTreeErrMemory("building namespace");
Owen Taylor3473f882001-02-23 17:55:21 +0000716 return(NULL);
717 }
718 memset(cur, 0, sizeof(xmlNs));
719 cur->type = XML_LOCAL_NAMESPACE;
720
721 if (href != NULL)
722 cur->href = xmlStrdup(href);
723 if (prefix != NULL)
724 cur->prefix = xmlStrdup(prefix);
725
726 /*
727 * Add it at the end to preserve parsing order ...
728 * and checks for existing use of the prefix
729 */
730 if (node != NULL) {
731 if (node->nsDef == NULL) {
732 node->nsDef = cur;
733 } else {
734 xmlNsPtr prev = node->nsDef;
735
736 if (((prev->prefix == NULL) && (cur->prefix == NULL)) ||
737 (xmlStrEqual(prev->prefix, cur->prefix))) {
738 xmlFreeNs(cur);
739 return(NULL);
740 }
741 while (prev->next != NULL) {
742 prev = prev->next;
743 if (((prev->prefix == NULL) && (cur->prefix == NULL)) ||
744 (xmlStrEqual(prev->prefix, cur->prefix))) {
745 xmlFreeNs(cur);
746 return(NULL);
747 }
748 }
749 prev->next = cur;
750 }
751 }
752 return(cur);
753}
754
755/**
756 * xmlSetNs:
757 * @node: a node in the document
758 * @ns: a namespace pointer
759 *
760 * Associate a namespace to a node, a posteriori.
761 */
762void
763xmlSetNs(xmlNodePtr node, xmlNsPtr ns) {
764 if (node == NULL) {
765#ifdef DEBUG_TREE
766 xmlGenericError(xmlGenericErrorContext,
767 "xmlSetNs: node == NULL\n");
768#endif
769 return;
770 }
771 node->ns = ns;
772}
773
774/**
775 * xmlFreeNs:
776 * @cur: the namespace pointer
777 *
778 * Free up the structures associated to a namespace
779 */
780void
781xmlFreeNs(xmlNsPtr cur) {
782 if (cur == NULL) {
783#ifdef DEBUG_TREE
784 xmlGenericError(xmlGenericErrorContext,
785 "xmlFreeNs : ns == NULL\n");
786#endif
787 return;
788 }
789 if (cur->href != NULL) xmlFree((char *) cur->href);
790 if (cur->prefix != NULL) xmlFree((char *) cur->prefix);
Owen Taylor3473f882001-02-23 17:55:21 +0000791 xmlFree(cur);
792}
793
794/**
795 * xmlFreeNsList:
796 * @cur: the first namespace pointer
797 *
798 * Free up all the structures associated to the chained namespaces.
799 */
800void
801xmlFreeNsList(xmlNsPtr cur) {
802 xmlNsPtr next;
803 if (cur == NULL) {
804#ifdef DEBUG_TREE
805 xmlGenericError(xmlGenericErrorContext,
806 "xmlFreeNsList : ns == NULL\n");
807#endif
808 return;
809 }
810 while (cur != NULL) {
811 next = cur->next;
812 xmlFreeNs(cur);
813 cur = next;
814 }
815}
816
817/**
818 * xmlNewDtd:
819 * @doc: the document pointer
820 * @name: the DTD name
821 * @ExternalID: the external ID
822 * @SystemID: the system ID
823 *
824 * Creation of a new DTD for the external subset. To create an
825 * internal subset, use xmlCreateIntSubset().
826 *
827 * Returns a pointer to the new DTD structure
828 */
829xmlDtdPtr
830xmlNewDtd(xmlDocPtr doc, const xmlChar *name,
831 const xmlChar *ExternalID, const xmlChar *SystemID) {
832 xmlDtdPtr cur;
833
834 if ((doc != NULL) && (doc->extSubset != NULL)) {
835#ifdef DEBUG_TREE
836 xmlGenericError(xmlGenericErrorContext,
837 "xmlNewDtd(%s): document %s already have a DTD %s\n",
838 /* !!! */ (char *) name, doc->name,
839 /* !!! */ (char *)doc->extSubset->name);
840#endif
841 return(NULL);
842 }
843
844 /*
845 * Allocate a new DTD and fill the fields.
846 */
847 cur = (xmlDtdPtr) xmlMalloc(sizeof(xmlDtd));
848 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000849 xmlTreeErrMemory("building DTD");
Owen Taylor3473f882001-02-23 17:55:21 +0000850 return(NULL);
851 }
852 memset(cur, 0 , sizeof(xmlDtd));
853 cur->type = XML_DTD_NODE;
854
855 if (name != NULL)
856 cur->name = xmlStrdup(name);
857 if (ExternalID != NULL)
858 cur->ExternalID = xmlStrdup(ExternalID);
859 if (SystemID != NULL)
860 cur->SystemID = xmlStrdup(SystemID);
861 if (doc != NULL)
862 doc->extSubset = cur;
863 cur->doc = doc;
864
Daniel Veillarda880b122003-04-21 21:36:41 +0000865 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +0000866 xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
Owen Taylor3473f882001-02-23 17:55:21 +0000867 return(cur);
868}
869
870/**
871 * xmlGetIntSubset:
872 * @doc: the document pointer
873 *
874 * Get the internal subset of a document
875 * Returns a pointer to the DTD structure or NULL if not found
876 */
877
878xmlDtdPtr
879xmlGetIntSubset(xmlDocPtr doc) {
880 xmlNodePtr cur;
881
882 if (doc == NULL)
883 return(NULL);
884 cur = doc->children;
885 while (cur != NULL) {
886 if (cur->type == XML_DTD_NODE)
887 return((xmlDtdPtr) cur);
888 cur = cur->next;
889 }
890 return((xmlDtdPtr) doc->intSubset);
891}
892
893/**
894 * xmlCreateIntSubset:
895 * @doc: the document pointer
896 * @name: the DTD name
Daniel Veillarde356c282001-03-10 12:32:04 +0000897 * @ExternalID: the external (PUBLIC) ID
Owen Taylor3473f882001-02-23 17:55:21 +0000898 * @SystemID: the system ID
899 *
900 * Create the internal subset of a document
901 * Returns a pointer to the new DTD structure
902 */
903xmlDtdPtr
904xmlCreateIntSubset(xmlDocPtr doc, const xmlChar *name,
905 const xmlChar *ExternalID, const xmlChar *SystemID) {
906 xmlDtdPtr cur;
907
908 if ((doc != NULL) && (xmlGetIntSubset(doc) != NULL)) {
909#ifdef DEBUG_TREE
910 xmlGenericError(xmlGenericErrorContext,
911
912 "xmlCreateIntSubset(): document %s already have an internal subset\n",
913 doc->name);
914#endif
915 return(NULL);
916 }
917
918 /*
919 * Allocate a new DTD and fill the fields.
920 */
921 cur = (xmlDtdPtr) xmlMalloc(sizeof(xmlDtd));
922 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +0000923 xmlTreeErrMemory("building internal subset");
Owen Taylor3473f882001-02-23 17:55:21 +0000924 return(NULL);
925 }
926 memset(cur, 0, sizeof(xmlDtd));
927 cur->type = XML_DTD_NODE;
928
William M. Bracka3215c72004-07-31 16:24:01 +0000929 if (name != NULL) {
930 cur->name = xmlStrdup(name);
931 if (cur->name == NULL) {
932 xmlTreeErrMemory("building internal subset");
933 xmlFree(cur);
934 return(NULL);
935 }
936 }
937 if (ExternalID != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +0000938 cur->ExternalID = xmlStrdup(ExternalID);
William M. Bracka3215c72004-07-31 16:24:01 +0000939 if (cur->ExternalID == NULL) {
940 xmlTreeErrMemory("building internal subset");
941 if (cur->name != NULL)
942 xmlFree((char *)cur->name);
943 xmlFree(cur);
944 return(NULL);
945 }
946 }
947 if (SystemID != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +0000948 cur->SystemID = xmlStrdup(SystemID);
William M. Bracka3215c72004-07-31 16:24:01 +0000949 if (cur->SystemID == NULL) {
950 xmlTreeErrMemory("building internal subset");
951 if (cur->name != NULL)
952 xmlFree((char *)cur->name);
953 if (cur->ExternalID != NULL)
954 xmlFree((char *)cur->ExternalID);
955 xmlFree(cur);
956 return(NULL);
957 }
958 }
Owen Taylor3473f882001-02-23 17:55:21 +0000959 if (doc != NULL) {
960 doc->intSubset = cur;
961 cur->parent = doc;
962 cur->doc = doc;
963 if (doc->children == NULL) {
964 doc->children = (xmlNodePtr) cur;
965 doc->last = (xmlNodePtr) cur;
966 } else {
Owen Taylor3473f882001-02-23 17:55:21 +0000967 if (doc->type == XML_HTML_DOCUMENT_NODE) {
Daniel Veillarde356c282001-03-10 12:32:04 +0000968 xmlNodePtr prev;
969
Owen Taylor3473f882001-02-23 17:55:21 +0000970 prev = doc->children;
971 prev->prev = (xmlNodePtr) cur;
972 cur->next = prev;
973 doc->children = (xmlNodePtr) cur;
974 } else {
Daniel Veillarde356c282001-03-10 12:32:04 +0000975 xmlNodePtr next;
976
977 next = doc->children;
978 while ((next != NULL) && (next->type != XML_ELEMENT_NODE))
979 next = next->next;
980 if (next == NULL) {
981 cur->prev = doc->last;
982 cur->prev->next = (xmlNodePtr) cur;
983 cur->next = NULL;
984 doc->last = (xmlNodePtr) cur;
985 } else {
986 cur->next = next;
987 cur->prev = next->prev;
988 if (cur->prev == NULL)
989 doc->children = (xmlNodePtr) cur;
990 else
991 cur->prev->next = (xmlNodePtr) cur;
992 next->prev = (xmlNodePtr) cur;
993 }
Owen Taylor3473f882001-02-23 17:55:21 +0000994 }
995 }
996 }
Daniel Veillard8a1b1852003-01-05 22:37:17 +0000997
Daniel Veillarda880b122003-04-21 21:36:41 +0000998 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard8a1b1852003-01-05 22:37:17 +0000999 xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
Owen Taylor3473f882001-02-23 17:55:21 +00001000 return(cur);
1001}
1002
1003/**
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001004 * DICT_FREE:
1005 * @str: a string
1006 *
1007 * Free a string if it is not owned by the "dict" dictionnary in the
1008 * current scope
1009 */
1010#define DICT_FREE(str) \
1011 if ((str) && ((!dict) || \
1012 (xmlDictOwns(dict, (const xmlChar *)(str)) == 0))) \
1013 xmlFree((char *)(str));
1014
1015/**
Owen Taylor3473f882001-02-23 17:55:21 +00001016 * xmlFreeDtd:
1017 * @cur: the DTD structure to free up
1018 *
1019 * Free a DTD structure.
1020 */
1021void
1022xmlFreeDtd(xmlDtdPtr cur) {
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001023 xmlDictPtr dict = NULL;
1024
Owen Taylor3473f882001-02-23 17:55:21 +00001025 if (cur == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001026 return;
1027 }
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001028 if (cur->doc != NULL) dict = cur->doc->dict;
Daniel Veillard5335dc52003-01-01 20:59:38 +00001029
Daniel Veillarda880b122003-04-21 21:36:41 +00001030 if ((__xmlRegisterCallbacks) && (xmlDeregisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00001031 xmlDeregisterNodeDefaultValue((xmlNodePtr)cur);
1032
Owen Taylor3473f882001-02-23 17:55:21 +00001033 if (cur->children != NULL) {
1034 xmlNodePtr next, c = cur->children;
1035
1036 /*
William M. Brack18a04f22004-08-03 16:42:37 +00001037 * Cleanup all nodes which are not part of the specific lists
1038 * of notations, elements, attributes and entities.
Owen Taylor3473f882001-02-23 17:55:21 +00001039 */
1040 while (c != NULL) {
1041 next = c->next;
William M. Brack18a04f22004-08-03 16:42:37 +00001042 if ((c->type != XML_NOTATION_NODE) &&
1043 (c->type != XML_ELEMENT_DECL) &&
1044 (c->type != XML_ATTRIBUTE_DECL) &&
1045 (c->type != XML_ENTITY_DECL)) {
Owen Taylor3473f882001-02-23 17:55:21 +00001046 xmlUnlinkNode(c);
1047 xmlFreeNode(c);
1048 }
1049 c = next;
1050 }
1051 }
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001052 DICT_FREE(cur->name)
1053 DICT_FREE(cur->SystemID)
1054 DICT_FREE(cur->ExternalID)
Owen Taylor3473f882001-02-23 17:55:21 +00001055 /* TODO !!! */
1056 if (cur->notations != NULL)
1057 xmlFreeNotationTable((xmlNotationTablePtr) cur->notations);
1058
1059 if (cur->elements != NULL)
1060 xmlFreeElementTable((xmlElementTablePtr) cur->elements);
1061 if (cur->attributes != NULL)
1062 xmlFreeAttributeTable((xmlAttributeTablePtr) cur->attributes);
1063 if (cur->entities != NULL)
1064 xmlFreeEntitiesTable((xmlEntitiesTablePtr) cur->entities);
1065 if (cur->pentities != NULL)
1066 xmlFreeEntitiesTable((xmlEntitiesTablePtr) cur->pentities);
1067
Owen Taylor3473f882001-02-23 17:55:21 +00001068 xmlFree(cur);
1069}
1070
1071/**
1072 * xmlNewDoc:
1073 * @version: xmlChar string giving the version of XML "1.0"
1074 *
Daniel Veillard5e2dace2001-07-18 19:30:27 +00001075 * Creates a new XML document
1076 *
Owen Taylor3473f882001-02-23 17:55:21 +00001077 * Returns a new document
1078 */
1079xmlDocPtr
1080xmlNewDoc(const xmlChar *version) {
1081 xmlDocPtr cur;
1082
1083 if (version == NULL)
1084 version = (const xmlChar *) "1.0";
1085
1086 /*
1087 * Allocate a new document and fill the fields.
1088 */
1089 cur = (xmlDocPtr) xmlMalloc(sizeof(xmlDoc));
1090 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001091 xmlTreeErrMemory("building doc");
Owen Taylor3473f882001-02-23 17:55:21 +00001092 return(NULL);
1093 }
1094 memset(cur, 0, sizeof(xmlDoc));
1095 cur->type = XML_DOCUMENT_NODE;
1096
1097 cur->version = xmlStrdup(version);
William M. Bracka3215c72004-07-31 16:24:01 +00001098 if (cur->version == NULL) {
1099 xmlTreeErrMemory("building doc");
1100 xmlFree(cur);
1101 return(NULL);
1102 }
Owen Taylor3473f882001-02-23 17:55:21 +00001103 cur->standalone = -1;
1104 cur->compression = -1; /* not initialized */
1105 cur->doc = cur;
Daniel Veillarda6874ca2003-07-29 16:47:24 +00001106 /*
1107 * The in memory encoding is always UTF8
1108 * This field will never change and would
1109 * be obsolete if not for binary compatibility.
1110 */
Daniel Veillardd2f3ec72001-04-11 07:50:02 +00001111 cur->charset = XML_CHAR_ENCODING_UTF8;
Daniel Veillard5335dc52003-01-01 20:59:38 +00001112
Daniel Veillarda880b122003-04-21 21:36:41 +00001113 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00001114 xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
Owen Taylor3473f882001-02-23 17:55:21 +00001115 return(cur);
1116}
1117
1118/**
1119 * xmlFreeDoc:
1120 * @cur: pointer to the document
Owen Taylor3473f882001-02-23 17:55:21 +00001121 *
1122 * Free up all the structures used by a document, tree included.
1123 */
1124void
1125xmlFreeDoc(xmlDocPtr cur) {
Daniel Veillarda9142e72001-06-19 11:07:54 +00001126 xmlDtdPtr extSubset, intSubset;
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001127 xmlDictPtr dict = NULL;
Daniel Veillarda9142e72001-06-19 11:07:54 +00001128
Owen Taylor3473f882001-02-23 17:55:21 +00001129 if (cur == NULL) {
1130#ifdef DEBUG_TREE
1131 xmlGenericError(xmlGenericErrorContext,
1132 "xmlFreeDoc : document == NULL\n");
1133#endif
1134 return;
1135 }
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00001136#ifdef LIBXML_DEBUG_RUNTIME
Daniel Veillardbca3ad22005-08-23 22:14:02 +00001137#ifdef LIBXML_DEBUG_ENABLED
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00001138 xmlDebugCheckDocument(stderr, cur);
1139#endif
Daniel Veillardbca3ad22005-08-23 22:14:02 +00001140#endif
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00001141
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001142 if (cur != NULL) dict = cur->dict;
Daniel Veillard5335dc52003-01-01 20:59:38 +00001143
Daniel Veillarda880b122003-04-21 21:36:41 +00001144 if ((__xmlRegisterCallbacks) && (xmlDeregisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00001145 xmlDeregisterNodeDefaultValue((xmlNodePtr)cur);
1146
Daniel Veillard76d66f42001-05-16 21:05:17 +00001147 /*
1148 * Do this before freeing the children list to avoid ID lookups
1149 */
1150 if (cur->ids != NULL) xmlFreeIDTable((xmlIDTablePtr) cur->ids);
1151 cur->ids = NULL;
1152 if (cur->refs != NULL) xmlFreeRefTable((xmlRefTablePtr) cur->refs);
1153 cur->refs = NULL;
Daniel Veillarda9142e72001-06-19 11:07:54 +00001154 extSubset = cur->extSubset;
1155 intSubset = cur->intSubset;
Daniel Veillard5997aca2002-03-18 18:36:20 +00001156 if (intSubset == extSubset)
1157 extSubset = NULL;
Daniel Veillarda9142e72001-06-19 11:07:54 +00001158 if (extSubset != NULL) {
Daniel Veillard76d66f42001-05-16 21:05:17 +00001159 xmlUnlinkNode((xmlNodePtr) cur->extSubset);
Daniel Veillard76d66f42001-05-16 21:05:17 +00001160 cur->extSubset = NULL;
Daniel Veillarda9142e72001-06-19 11:07:54 +00001161 xmlFreeDtd(extSubset);
Daniel Veillard76d66f42001-05-16 21:05:17 +00001162 }
Daniel Veillarda9142e72001-06-19 11:07:54 +00001163 if (intSubset != NULL) {
Daniel Veillard76d66f42001-05-16 21:05:17 +00001164 xmlUnlinkNode((xmlNodePtr) cur->intSubset);
Daniel Veillard76d66f42001-05-16 21:05:17 +00001165 cur->intSubset = NULL;
Daniel Veillarda9142e72001-06-19 11:07:54 +00001166 xmlFreeDtd(intSubset);
Daniel Veillard76d66f42001-05-16 21:05:17 +00001167 }
1168
1169 if (cur->children != NULL) xmlFreeNodeList(cur->children);
Owen Taylor3473f882001-02-23 17:55:21 +00001170 if (cur->oldNs != NULL) xmlFreeNsList(cur->oldNs);
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001171
1172 DICT_FREE(cur->version)
1173 DICT_FREE(cur->name)
1174 DICT_FREE(cur->encoding)
1175 DICT_FREE(cur->URL)
Owen Taylor3473f882001-02-23 17:55:21 +00001176 xmlFree(cur);
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001177 if (dict) xmlDictFree(dict);
Owen Taylor3473f882001-02-23 17:55:21 +00001178}
1179
1180/**
1181 * xmlStringLenGetNodeList:
1182 * @doc: the document
1183 * @value: the value of the text
1184 * @len: the length of the string value
1185 *
1186 * Parse the value string and build the node list associated. Should
1187 * produce a flat tree with only TEXTs and ENTITY_REFs.
1188 * Returns a pointer to the first child
1189 */
1190xmlNodePtr
1191xmlStringLenGetNodeList(xmlDocPtr doc, const xmlChar *value, int len) {
1192 xmlNodePtr ret = NULL, last = NULL;
1193 xmlNodePtr node;
1194 xmlChar *val;
Daniel Veillard07cb8222003-09-10 10:51:05 +00001195 const xmlChar *cur = value, *end = cur + len;
Owen Taylor3473f882001-02-23 17:55:21 +00001196 const xmlChar *q;
1197 xmlEntityPtr ent;
1198
1199 if (value == NULL) return(NULL);
1200
1201 q = cur;
Daniel Veillard07cb8222003-09-10 10:51:05 +00001202 while ((cur < end) && (*cur != 0)) {
1203 if (cur[0] == '&') {
1204 int charval = 0;
1205 xmlChar tmp;
1206
Owen Taylor3473f882001-02-23 17:55:21 +00001207 /*
1208 * Save the current text.
1209 */
1210 if (cur != q) {
1211 if ((last != NULL) && (last->type == XML_TEXT_NODE)) {
1212 xmlNodeAddContentLen(last, q, cur - q);
1213 } else {
1214 node = xmlNewDocTextLen(doc, q, cur - q);
1215 if (node == NULL) return(ret);
1216 if (last == NULL)
1217 last = ret = node;
1218 else {
1219 last->next = node;
1220 node->prev = last;
1221 last = node;
1222 }
1223 }
1224 }
Owen Taylor3473f882001-02-23 17:55:21 +00001225 q = cur;
Daniel Veillard07cb8222003-09-10 10:51:05 +00001226 if ((cur + 2 < end) && (cur[1] == '#') && (cur[2] == 'x')) {
1227 cur += 3;
1228 if (cur < end)
1229 tmp = *cur;
1230 else
1231 tmp = 0;
1232 while (tmp != ';') { /* Non input consuming loop */
1233 if ((tmp >= '0') && (tmp <= '9'))
1234 charval = charval * 16 + (tmp - '0');
1235 else if ((tmp >= 'a') && (tmp <= 'f'))
1236 charval = charval * 16 + (tmp - 'a') + 10;
1237 else if ((tmp >= 'A') && (tmp <= 'F'))
1238 charval = charval * 16 + (tmp - 'A') + 10;
Owen Taylor3473f882001-02-23 17:55:21 +00001239 else {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001240 xmlTreeErr(XML_TREE_INVALID_HEX, (xmlNodePtr) doc,
1241 NULL);
Daniel Veillard07cb8222003-09-10 10:51:05 +00001242 charval = 0;
1243 break;
1244 }
1245 cur++;
1246 if (cur < end)
1247 tmp = *cur;
1248 else
1249 tmp = 0;
1250 }
1251 if (tmp == ';')
1252 cur++;
1253 q = cur;
1254 } else if ((cur + 1 < end) && (cur[1] == '#')) {
1255 cur += 2;
1256 if (cur < end)
1257 tmp = *cur;
1258 else
1259 tmp = 0;
1260 while (tmp != ';') { /* Non input consuming loops */
1261 if ((tmp >= '0') && (tmp <= '9'))
1262 charval = charval * 10 + (tmp - '0');
1263 else {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001264 xmlTreeErr(XML_TREE_INVALID_DEC, (xmlNodePtr) doc,
1265 NULL);
Daniel Veillard07cb8222003-09-10 10:51:05 +00001266 charval = 0;
1267 break;
1268 }
1269 cur++;
1270 if (cur < end)
1271 tmp = *cur;
1272 else
1273 tmp = 0;
1274 }
1275 if (tmp == ';')
1276 cur++;
1277 q = cur;
1278 } else {
1279 /*
1280 * Read the entity string
1281 */
1282 cur++;
1283 q = cur;
1284 while ((cur < end) && (*cur != 0) && (*cur != ';')) cur++;
1285 if ((cur >= end) || (*cur == 0)) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001286 xmlTreeErr(XML_TREE_UNTERMINATED_ENTITY, (xmlNodePtr) doc,
1287 (const char *) q);
Daniel Veillard07cb8222003-09-10 10:51:05 +00001288 return(ret);
1289 }
1290 if (cur != q) {
1291 /*
1292 * Predefined entities don't generate nodes
1293 */
1294 val = xmlStrndup(q, cur - q);
1295 ent = xmlGetDocEntity(doc, val);
1296 if ((ent != NULL) &&
1297 (ent->etype == XML_INTERNAL_PREDEFINED_ENTITY)) {
1298 if (last == NULL) {
1299 node = xmlNewDocText(doc, ent->content);
1300 last = ret = node;
1301 } else if (last->type != XML_TEXT_NODE) {
1302 node = xmlNewDocText(doc, ent->content);
1303 last = xmlAddNextSibling(last, node);
1304 } else
1305 xmlNodeAddContent(last, ent->content);
1306
1307 } else {
1308 /*
1309 * Create a new REFERENCE_REF node
1310 */
1311 node = xmlNewReference(doc, val);
1312 if (node == NULL) {
1313 if (val != NULL) xmlFree(val);
1314 return(ret);
1315 }
1316 else if ((ent != NULL) && (ent->children == NULL)) {
1317 xmlNodePtr temp;
1318
1319 ent->children = xmlStringGetNodeList(doc,
1320 (const xmlChar*)node->content);
1321 ent->owner = 1;
1322 temp = ent->children;
1323 while (temp) {
1324 temp->parent = (xmlNodePtr)ent;
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00001325 ent->last = temp;
Daniel Veillard07cb8222003-09-10 10:51:05 +00001326 temp = temp->next;
1327 }
1328 }
1329 if (last == NULL) {
1330 last = ret = node;
1331 } else {
1332 last = xmlAddNextSibling(last, node);
1333 }
1334 }
1335 xmlFree(val);
1336 }
1337 cur++;
1338 q = cur;
1339 }
1340 if (charval != 0) {
1341 xmlChar buf[10];
1342 int l;
1343
1344 l = xmlCopyCharMultiByte(buf, charval);
1345 buf[l] = 0;
1346 node = xmlNewDocText(doc, buf);
1347 if (node != NULL) {
1348 if (last == NULL) {
1349 last = ret = node;
1350 } else {
1351 last = xmlAddNextSibling(last, node);
Owen Taylor3473f882001-02-23 17:55:21 +00001352 }
1353 }
Daniel Veillard07cb8222003-09-10 10:51:05 +00001354 charval = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001355 }
Daniel Veillard07cb8222003-09-10 10:51:05 +00001356 } else
Owen Taylor3473f882001-02-23 17:55:21 +00001357 cur++;
1358 }
Daniel Veillard07cb8222003-09-10 10:51:05 +00001359 if ((cur != q) || (ret == NULL)) {
Owen Taylor3473f882001-02-23 17:55:21 +00001360 /*
1361 * Handle the last piece of text.
1362 */
1363 if ((last != NULL) && (last->type == XML_TEXT_NODE)) {
1364 xmlNodeAddContentLen(last, q, cur - q);
1365 } else {
1366 node = xmlNewDocTextLen(doc, q, cur - q);
1367 if (node == NULL) return(ret);
Daniel Veillard07cb8222003-09-10 10:51:05 +00001368 if (last == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001369 last = ret = node;
Daniel Veillard07cb8222003-09-10 10:51:05 +00001370 } else {
1371 last = xmlAddNextSibling(last, node);
Owen Taylor3473f882001-02-23 17:55:21 +00001372 }
1373 }
1374 }
1375 return(ret);
1376}
1377
1378/**
1379 * xmlStringGetNodeList:
1380 * @doc: the document
1381 * @value: the value of the attribute
1382 *
1383 * Parse the value string and build the node list associated. Should
1384 * produce a flat tree with only TEXTs and ENTITY_REFs.
1385 * Returns a pointer to the first child
1386 */
1387xmlNodePtr
1388xmlStringGetNodeList(xmlDocPtr doc, const xmlChar *value) {
1389 xmlNodePtr ret = NULL, last = NULL;
1390 xmlNodePtr node;
1391 xmlChar *val;
1392 const xmlChar *cur = value;
1393 const xmlChar *q;
1394 xmlEntityPtr ent;
1395
1396 if (value == NULL) return(NULL);
1397
1398 q = cur;
1399 while (*cur != 0) {
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001400 if (cur[0] == '&') {
1401 int charval = 0;
1402 xmlChar tmp;
1403
Owen Taylor3473f882001-02-23 17:55:21 +00001404 /*
1405 * Save the current text.
1406 */
1407 if (cur != q) {
1408 if ((last != NULL) && (last->type == XML_TEXT_NODE)) {
1409 xmlNodeAddContentLen(last, q, cur - q);
1410 } else {
1411 node = xmlNewDocTextLen(doc, q, cur - q);
1412 if (node == NULL) return(ret);
1413 if (last == NULL)
1414 last = ret = node;
1415 else {
1416 last->next = node;
1417 node->prev = last;
1418 last = node;
1419 }
1420 }
1421 }
Owen Taylor3473f882001-02-23 17:55:21 +00001422 q = cur;
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001423 if ((cur[1] == '#') && (cur[2] == 'x')) {
1424 cur += 3;
1425 tmp = *cur;
1426 while (tmp != ';') { /* Non input consuming loop */
1427 if ((tmp >= '0') && (tmp <= '9'))
1428 charval = charval * 16 + (tmp - '0');
1429 else if ((tmp >= 'a') && (tmp <= 'f'))
1430 charval = charval * 16 + (tmp - 'a') + 10;
1431 else if ((tmp >= 'A') && (tmp <= 'F'))
1432 charval = charval * 16 + (tmp - 'A') + 10;
Owen Taylor3473f882001-02-23 17:55:21 +00001433 else {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001434 xmlTreeErr(XML_TREE_INVALID_HEX, (xmlNodePtr) doc,
1435 NULL);
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001436 charval = 0;
1437 break;
1438 }
1439 cur++;
1440 tmp = *cur;
1441 }
1442 if (tmp == ';')
1443 cur++;
1444 q = cur;
1445 } else if (cur[1] == '#') {
1446 cur += 2;
1447 tmp = *cur;
1448 while (tmp != ';') { /* Non input consuming loops */
1449 if ((tmp >= '0') && (tmp <= '9'))
1450 charval = charval * 10 + (tmp - '0');
1451 else {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001452 xmlTreeErr(XML_TREE_INVALID_DEC, (xmlNodePtr) doc,
1453 NULL);
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001454 charval = 0;
1455 break;
1456 }
1457 cur++;
1458 tmp = *cur;
1459 }
1460 if (tmp == ';')
1461 cur++;
1462 q = cur;
1463 } else {
1464 /*
1465 * Read the entity string
1466 */
1467 cur++;
1468 q = cur;
1469 while ((*cur != 0) && (*cur != ';')) cur++;
1470 if (*cur == 0) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001471 xmlTreeErr(XML_TREE_UNTERMINATED_ENTITY,
1472 (xmlNodePtr) doc, (const char *) q);
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001473 return(ret);
1474 }
1475 if (cur != q) {
1476 /*
1477 * Predefined entities don't generate nodes
1478 */
1479 val = xmlStrndup(q, cur - q);
1480 ent = xmlGetDocEntity(doc, val);
1481 if ((ent != NULL) &&
1482 (ent->etype == XML_INTERNAL_PREDEFINED_ENTITY)) {
1483 if (last == NULL) {
1484 node = xmlNewDocText(doc, ent->content);
1485 last = ret = node;
Daniel Veillard6f42c132002-01-06 23:05:13 +00001486 } else if (last->type != XML_TEXT_NODE) {
1487 node = xmlNewDocText(doc, ent->content);
1488 last = xmlAddNextSibling(last, node);
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001489 } else
1490 xmlNodeAddContent(last, ent->content);
1491
1492 } else {
1493 /*
1494 * Create a new REFERENCE_REF node
1495 */
1496 node = xmlNewReference(doc, val);
1497 if (node == NULL) {
1498 if (val != NULL) xmlFree(val);
1499 return(ret);
1500 }
Daniel Veillardbf8dae82002-04-18 16:39:10 +00001501 else if ((ent != NULL) && (ent->children == NULL)) {
1502 xmlNodePtr temp;
1503
1504 ent->children = xmlStringGetNodeList(doc,
1505 (const xmlChar*)node->content);
Daniel Veillard2d84a892002-12-30 00:01:08 +00001506 ent->owner = 1;
Daniel Veillardbf8dae82002-04-18 16:39:10 +00001507 temp = ent->children;
1508 while (temp) {
1509 temp->parent = (xmlNodePtr)ent;
1510 temp = temp->next;
1511 }
1512 }
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001513 if (last == NULL) {
1514 last = ret = node;
1515 } else {
1516 last = xmlAddNextSibling(last, node);
1517 }
1518 }
1519 xmlFree(val);
1520 }
1521 cur++;
1522 q = cur;
1523 }
1524 if (charval != 0) {
1525 xmlChar buf[10];
1526 int len;
1527
1528 len = xmlCopyCharMultiByte(buf, charval);
1529 buf[len] = 0;
1530 node = xmlNewDocText(doc, buf);
1531 if (node != NULL) {
1532 if (last == NULL) {
1533 last = ret = node;
1534 } else {
1535 last = xmlAddNextSibling(last, node);
Owen Taylor3473f882001-02-23 17:55:21 +00001536 }
1537 }
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001538
1539 charval = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001540 }
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001541 } else
Owen Taylor3473f882001-02-23 17:55:21 +00001542 cur++;
1543 }
Daniel Veillard75bea542001-05-11 17:41:21 +00001544 if ((cur != q) || (ret == NULL)) {
Owen Taylor3473f882001-02-23 17:55:21 +00001545 /*
1546 * Handle the last piece of text.
1547 */
1548 if ((last != NULL) && (last->type == XML_TEXT_NODE)) {
1549 xmlNodeAddContentLen(last, q, cur - q);
1550 } else {
1551 node = xmlNewDocTextLen(doc, q, cur - q);
1552 if (node == NULL) return(ret);
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001553 if (last == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001554 last = ret = node;
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00001555 } else {
1556 last = xmlAddNextSibling(last, node);
Owen Taylor3473f882001-02-23 17:55:21 +00001557 }
1558 }
1559 }
1560 return(ret);
1561}
1562
1563/**
1564 * xmlNodeListGetString:
1565 * @doc: the document
1566 * @list: a Node list
1567 * @inLine: should we replace entity contents or show their external form
1568 *
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001569 * Build the string equivalent to the text contained in the Node list
Owen Taylor3473f882001-02-23 17:55:21 +00001570 * made of TEXTs and ENTITY_REFs
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001571 *
Daniel Veillardbd9afb52002-09-25 22:25:35 +00001572 * Returns a pointer to the string copy, the caller must free it with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00001573 */
1574xmlChar *
Daniel Veillard7646b182002-04-20 06:41:40 +00001575xmlNodeListGetString(xmlDocPtr doc, xmlNodePtr list, int inLine)
1576{
Owen Taylor3473f882001-02-23 17:55:21 +00001577 xmlNodePtr node = list;
1578 xmlChar *ret = NULL;
1579 xmlEntityPtr ent;
1580
Daniel Veillard7646b182002-04-20 06:41:40 +00001581 if (list == NULL)
1582 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001583
1584 while (node != NULL) {
1585 if ((node->type == XML_TEXT_NODE) ||
Daniel Veillard7646b182002-04-20 06:41:40 +00001586 (node->type == XML_CDATA_SECTION_NODE)) {
1587 if (inLine) {
1588 ret = xmlStrcat(ret, node->content);
Owen Taylor3473f882001-02-23 17:55:21 +00001589 } else {
Daniel Veillard7646b182002-04-20 06:41:40 +00001590 xmlChar *buffer;
Owen Taylor3473f882001-02-23 17:55:21 +00001591
Daniel Veillard7646b182002-04-20 06:41:40 +00001592 buffer = xmlEncodeEntitiesReentrant(doc, node->content);
1593 if (buffer != NULL) {
1594 ret = xmlStrcat(ret, buffer);
1595 xmlFree(buffer);
1596 }
1597 }
1598 } else if (node->type == XML_ENTITY_REF_NODE) {
1599 if (inLine) {
1600 ent = xmlGetDocEntity(doc, node->name);
1601 if (ent != NULL) {
1602 xmlChar *buffer;
1603
1604 /* an entity content can be any "well balanced chunk",
1605 * i.e. the result of the content [43] production:
1606 * http://www.w3.org/TR/REC-xml#NT-content.
1607 * So it can contain text, CDATA section or nested
1608 * entity reference nodes (among others).
1609 * -> we recursive call xmlNodeListGetString()
1610 * which handles these types */
1611 buffer = xmlNodeListGetString(doc, ent->children, 1);
1612 if (buffer != NULL) {
1613 ret = xmlStrcat(ret, buffer);
1614 xmlFree(buffer);
1615 }
1616 } else {
1617 ret = xmlStrcat(ret, node->content);
1618 }
1619 } else {
1620 xmlChar buf[2];
1621
1622 buf[0] = '&';
1623 buf[1] = 0;
1624 ret = xmlStrncat(ret, buf, 1);
1625 ret = xmlStrcat(ret, node->name);
1626 buf[0] = ';';
1627 buf[1] = 0;
1628 ret = xmlStrncat(ret, buf, 1);
1629 }
1630 }
1631#if 0
1632 else {
1633 xmlGenericError(xmlGenericErrorContext,
1634 "xmlGetNodeListString : invalid node type %d\n",
1635 node->type);
1636 }
1637#endif
1638 node = node->next;
1639 }
1640 return (ret);
1641}
Daniel Veillard652327a2003-09-29 18:02:38 +00001642
1643#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001644/**
1645 * xmlNodeListGetRawString:
1646 * @doc: the document
1647 * @list: a Node list
1648 * @inLine: should we replace entity contents or show their external form
1649 *
Daniel Veillarda9b66d02002-12-11 14:23:49 +00001650 * Builds the string equivalent to the text contained in the Node list
Owen Taylor3473f882001-02-23 17:55:21 +00001651 * made of TEXTs and ENTITY_REFs, contrary to xmlNodeListGetString()
1652 * this function doesn't do any character encoding handling.
1653 *
Daniel Veillardbd9afb52002-09-25 22:25:35 +00001654 * Returns a pointer to the string copy, the caller must free it with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00001655 */
1656xmlChar *
Daniel Veillard7646b182002-04-20 06:41:40 +00001657xmlNodeListGetRawString(xmlDocPtr doc, xmlNodePtr list, int inLine)
1658{
Owen Taylor3473f882001-02-23 17:55:21 +00001659 xmlNodePtr node = list;
1660 xmlChar *ret = NULL;
1661 xmlEntityPtr ent;
1662
Daniel Veillard7646b182002-04-20 06:41:40 +00001663 if (list == NULL)
1664 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001665
1666 while (node != NULL) {
Daniel Veillard7db37732001-07-12 01:20:08 +00001667 if ((node->type == XML_TEXT_NODE) ||
Daniel Veillard7646b182002-04-20 06:41:40 +00001668 (node->type == XML_CDATA_SECTION_NODE)) {
1669 if (inLine) {
1670 ret = xmlStrcat(ret, node->content);
Owen Taylor3473f882001-02-23 17:55:21 +00001671 } else {
Daniel Veillard7646b182002-04-20 06:41:40 +00001672 xmlChar *buffer;
1673
1674 buffer = xmlEncodeSpecialChars(doc, node->content);
1675 if (buffer != NULL) {
1676 ret = xmlStrcat(ret, buffer);
1677 xmlFree(buffer);
1678 }
1679 }
1680 } else if (node->type == XML_ENTITY_REF_NODE) {
1681 if (inLine) {
1682 ent = xmlGetDocEntity(doc, node->name);
1683 if (ent != NULL) {
1684 xmlChar *buffer;
1685
1686 /* an entity content can be any "well balanced chunk",
1687 * i.e. the result of the content [43] production:
1688 * http://www.w3.org/TR/REC-xml#NT-content.
1689 * So it can contain text, CDATA section or nested
1690 * entity reference nodes (among others).
1691 * -> we recursive call xmlNodeListGetRawString()
1692 * which handles these types */
1693 buffer =
1694 xmlNodeListGetRawString(doc, ent->children, 1);
1695 if (buffer != NULL) {
1696 ret = xmlStrcat(ret, buffer);
1697 xmlFree(buffer);
1698 }
1699 } else {
1700 ret = xmlStrcat(ret, node->content);
1701 }
1702 } else {
1703 xmlChar buf[2];
1704
1705 buf[0] = '&';
1706 buf[1] = 0;
1707 ret = xmlStrncat(ret, buf, 1);
1708 ret = xmlStrcat(ret, node->name);
1709 buf[0] = ';';
1710 buf[1] = 0;
1711 ret = xmlStrncat(ret, buf, 1);
1712 }
1713 }
Owen Taylor3473f882001-02-23 17:55:21 +00001714#if 0
Daniel Veillard7646b182002-04-20 06:41:40 +00001715 else {
1716 xmlGenericError(xmlGenericErrorContext,
1717 "xmlGetNodeListString : invalid node type %d\n",
1718 node->type);
1719 }
Owen Taylor3473f882001-02-23 17:55:21 +00001720#endif
Daniel Veillard7646b182002-04-20 06:41:40 +00001721 node = node->next;
Owen Taylor3473f882001-02-23 17:55:21 +00001722 }
Daniel Veillard7646b182002-04-20 06:41:40 +00001723 return (ret);
Owen Taylor3473f882001-02-23 17:55:21 +00001724}
Daniel Veillard652327a2003-09-29 18:02:38 +00001725#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001726
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001727static xmlAttrPtr
1728xmlNewPropInternal(xmlNodePtr node, xmlNsPtr ns,
1729 const xmlChar * name, const xmlChar * value,
1730 int eatname)
1731{
Owen Taylor3473f882001-02-23 17:55:21 +00001732 xmlAttrPtr cur;
1733 xmlDocPtr doc = NULL;
1734
Daniel Veillard5cd3e8c2005-03-27 11:25:28 +00001735 if ((node != NULL) && (node->type != XML_ELEMENT_NODE)) {
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001736 if (eatname == 1)
1737 xmlFree((xmlChar *) name);
1738 return (NULL);
1739 }
Owen Taylor3473f882001-02-23 17:55:21 +00001740
1741 /*
1742 * Allocate a new property and fill the fields.
1743 */
1744 cur = (xmlAttrPtr) xmlMalloc(sizeof(xmlAttr));
1745 if (cur == NULL) {
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001746 if (eatname == 1)
1747 xmlFree((xmlChar *) name);
1748 xmlTreeErrMemory("building attribute");
1749 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001750 }
1751 memset(cur, 0, sizeof(xmlAttr));
1752 cur->type = XML_ATTRIBUTE_NODE;
1753
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001754 cur->parent = node;
Owen Taylor3473f882001-02-23 17:55:21 +00001755 if (node != NULL) {
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001756 doc = node->doc;
1757 cur->doc = doc;
Owen Taylor3473f882001-02-23 17:55:21 +00001758 }
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001759 cur->ns = ns;
Daniel Veillard5cd3e8c2005-03-27 11:25:28 +00001760
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001761 if (eatname == 0) {
1762 if ((doc != NULL) && (doc->dict != NULL))
1763 cur->name = (xmlChar *) xmlDictLookup(doc->dict, name, -1);
1764 else
1765 cur->name = xmlStrdup(name);
1766 } else
1767 cur->name = name;
Daniel Veillard5cd3e8c2005-03-27 11:25:28 +00001768
Owen Taylor3473f882001-02-23 17:55:21 +00001769 if (value != NULL) {
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001770 xmlChar *buffer;
1771 xmlNodePtr tmp;
Owen Taylor3473f882001-02-23 17:55:21 +00001772
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001773 buffer = xmlEncodeEntitiesReentrant(doc, value);
1774 cur->children = xmlStringGetNodeList(doc, buffer);
1775 cur->last = NULL;
1776 tmp = cur->children;
1777 while (tmp != NULL) {
1778 tmp->parent = (xmlNodePtr) cur;
1779 if (tmp->next == NULL)
1780 cur->last = tmp;
1781 tmp = tmp->next;
1782 }
1783 xmlFree(buffer);
1784 }
Owen Taylor3473f882001-02-23 17:55:21 +00001785
1786 /*
1787 * Add it at the end to preserve parsing order ...
1788 */
1789 if (node != NULL) {
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001790 if (node->properties == NULL) {
1791 node->properties = cur;
1792 } else {
1793 xmlAttrPtr prev = node->properties;
Owen Taylor3473f882001-02-23 17:55:21 +00001794
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001795 while (prev->next != NULL)
1796 prev = prev->next;
1797 prev->next = cur;
1798 cur->prev = prev;
1799 }
Owen Taylor3473f882001-02-23 17:55:21 +00001800 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00001801
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001802 if (xmlIsID((node == NULL) ? NULL : node->doc, node, cur) == 1)
1803 xmlAddID(NULL, node->doc, value, cur);
1804
Daniel Veillarda880b122003-04-21 21:36:41 +00001805 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00001806 xmlRegisterNodeDefaultValue((xmlNodePtr) cur);
1807 return (cur);
Owen Taylor3473f882001-02-23 17:55:21 +00001808}
Daniel Veillard5cd3e8c2005-03-27 11:25:28 +00001809
1810#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || \
1811 defined(LIBXML_SCHEMAS_ENABLED)
1812/**
1813 * xmlNewProp:
1814 * @node: the holding node
1815 * @name: the name of the attribute
1816 * @value: the value of the attribute
1817 *
1818 * Create a new property carried by a node.
1819 * Returns a pointer to the attribute
1820 */
1821xmlAttrPtr
1822xmlNewProp(xmlNodePtr node, const xmlChar *name, const xmlChar *value) {
1823
1824 if (name == NULL) {
1825#ifdef DEBUG_TREE
1826 xmlGenericError(xmlGenericErrorContext,
1827 "xmlNewProp : name == NULL\n");
1828#endif
1829 return(NULL);
1830 }
1831
1832 return xmlNewPropInternal(node, NULL, name, value, 0);
1833}
Daniel Veillard652327a2003-09-29 18:02:38 +00001834#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001835
1836/**
1837 * xmlNewNsProp:
1838 * @node: the holding node
1839 * @ns: the namespace
1840 * @name: the name of the attribute
1841 * @value: the value of the attribute
1842 *
1843 * Create a new property tagged with a namespace and carried by a node.
1844 * Returns a pointer to the attribute
1845 */
1846xmlAttrPtr
1847xmlNewNsProp(xmlNodePtr node, xmlNsPtr ns, const xmlChar *name,
1848 const xmlChar *value) {
Owen Taylor3473f882001-02-23 17:55:21 +00001849
1850 if (name == NULL) {
1851#ifdef DEBUG_TREE
1852 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00001853 "xmlNewNsProp : name == NULL\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001854#endif
1855 return(NULL);
1856 }
1857
Daniel Veillard5cd3e8c2005-03-27 11:25:28 +00001858 return xmlNewPropInternal(node, ns, name, value, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00001859}
1860
1861/**
Daniel Veillard46de64e2002-05-29 08:21:33 +00001862 * xmlNewNsPropEatName:
1863 * @node: the holding node
1864 * @ns: the namespace
1865 * @name: the name of the attribute
1866 * @value: the value of the attribute
1867 *
1868 * Create a new property tagged with a namespace and carried by a node.
1869 * Returns a pointer to the attribute
1870 */
1871xmlAttrPtr
1872xmlNewNsPropEatName(xmlNodePtr node, xmlNsPtr ns, xmlChar *name,
1873 const xmlChar *value) {
Daniel Veillard46de64e2002-05-29 08:21:33 +00001874
1875 if (name == NULL) {
1876#ifdef DEBUG_TREE
1877 xmlGenericError(xmlGenericErrorContext,
1878 "xmlNewNsPropEatName : name == NULL\n");
1879#endif
1880 return(NULL);
1881 }
1882
Daniel Veillard5cd3e8c2005-03-27 11:25:28 +00001883 return xmlNewPropInternal(node, ns, name, value, 1);
Daniel Veillard46de64e2002-05-29 08:21:33 +00001884}
1885
1886/**
Owen Taylor3473f882001-02-23 17:55:21 +00001887 * xmlNewDocProp:
1888 * @doc: the document
1889 * @name: the name of the attribute
1890 * @value: the value of the attribute
1891 *
1892 * Create a new property carried by a document.
1893 * Returns a pointer to the attribute
1894 */
1895xmlAttrPtr
1896xmlNewDocProp(xmlDocPtr doc, const xmlChar *name, const xmlChar *value) {
1897 xmlAttrPtr cur;
1898
1899 if (name == NULL) {
1900#ifdef DEBUG_TREE
1901 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00001902 "xmlNewDocProp : name == NULL\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001903#endif
1904 return(NULL);
1905 }
1906
1907 /*
1908 * Allocate a new property and fill the fields.
1909 */
1910 cur = (xmlAttrPtr) xmlMalloc(sizeof(xmlAttr));
1911 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00001912 xmlTreeErrMemory("building attribute");
Owen Taylor3473f882001-02-23 17:55:21 +00001913 return(NULL);
1914 }
1915 memset(cur, 0, sizeof(xmlAttr));
1916 cur->type = XML_ATTRIBUTE_NODE;
1917
Daniel Veillard03a53c32004-10-26 16:06:51 +00001918 if ((doc != NULL) && (doc->dict != NULL))
1919 cur->name = xmlDictLookup(doc->dict, name, -1);
1920 else
1921 cur->name = xmlStrdup(name);
Owen Taylor3473f882001-02-23 17:55:21 +00001922 cur->doc = doc;
1923 if (value != NULL) {
1924 xmlNodePtr tmp;
1925
1926 cur->children = xmlStringGetNodeList(doc, value);
1927 cur->last = NULL;
1928
1929 tmp = cur->children;
1930 while (tmp != NULL) {
1931 tmp->parent = (xmlNodePtr) cur;
1932 if (tmp->next == NULL)
1933 cur->last = tmp;
1934 tmp = tmp->next;
1935 }
1936 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00001937
Daniel Veillarda880b122003-04-21 21:36:41 +00001938 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00001939 xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
Owen Taylor3473f882001-02-23 17:55:21 +00001940 return(cur);
1941}
1942
1943/**
1944 * xmlFreePropList:
1945 * @cur: the first property in the list
1946 *
1947 * Free a property and all its siblings, all the children are freed too.
1948 */
1949void
1950xmlFreePropList(xmlAttrPtr cur) {
1951 xmlAttrPtr next;
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001952 if (cur == NULL) return;
Owen Taylor3473f882001-02-23 17:55:21 +00001953 while (cur != NULL) {
1954 next = cur->next;
1955 xmlFreeProp(cur);
1956 cur = next;
1957 }
1958}
1959
1960/**
1961 * xmlFreeProp:
1962 * @cur: an attribute
1963 *
1964 * Free one attribute, all the content is freed too
1965 */
1966void
1967xmlFreeProp(xmlAttrPtr cur) {
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001968 xmlDictPtr dict = NULL;
1969 if (cur == NULL) return;
1970
1971 if (cur->doc != NULL) dict = cur->doc->dict;
Daniel Veillard5335dc52003-01-01 20:59:38 +00001972
Daniel Veillarda880b122003-04-21 21:36:41 +00001973 if ((__xmlRegisterCallbacks) && (xmlDeregisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00001974 xmlDeregisterNodeDefaultValue((xmlNodePtr)cur);
1975
Owen Taylor3473f882001-02-23 17:55:21 +00001976 /* Check for ID removal -> leading to invalid references ! */
Daniel Veillardda6f4af2005-06-20 17:17:54 +00001977 if ((cur->doc != NULL) && (cur->atype == XML_ATTRIBUTE_ID)) {
1978 xmlRemoveID(cur->doc, cur);
Daniel Veillard76d66f42001-05-16 21:05:17 +00001979 }
Owen Taylor3473f882001-02-23 17:55:21 +00001980 if (cur->children != NULL) xmlFreeNodeList(cur->children);
Daniel Veillarde96a2a42003-09-24 21:23:56 +00001981 DICT_FREE(cur->name)
Owen Taylor3473f882001-02-23 17:55:21 +00001982 xmlFree(cur);
1983}
1984
Daniel Veillard652327a2003-09-29 18:02:38 +00001985#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001986/**
1987 * xmlRemoveProp:
1988 * @cur: an attribute
1989 *
1990 * Unlink and free one attribute, all the content is freed too
1991 * Note this doesn't work for namespace definition attributes
1992 *
1993 * Returns 0 if success and -1 in case of error.
1994 */
1995int
1996xmlRemoveProp(xmlAttrPtr cur) {
1997 xmlAttrPtr tmp;
1998 if (cur == NULL) {
1999#ifdef DEBUG_TREE
2000 xmlGenericError(xmlGenericErrorContext,
2001 "xmlRemoveProp : cur == NULL\n");
2002#endif
2003 return(-1);
2004 }
2005 if (cur->parent == NULL) {
2006#ifdef DEBUG_TREE
2007 xmlGenericError(xmlGenericErrorContext,
2008 "xmlRemoveProp : cur->parent == NULL\n");
2009#endif
2010 return(-1);
2011 }
2012 tmp = cur->parent->properties;
2013 if (tmp == cur) {
2014 cur->parent->properties = cur->next;
Rob Richards19dc9612005-10-28 16:15:16 +00002015 if (cur->next != NULL)
2016 cur->next->prev = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00002017 xmlFreeProp(cur);
2018 return(0);
2019 }
2020 while (tmp != NULL) {
2021 if (tmp->next == cur) {
2022 tmp->next = cur->next;
2023 if (tmp->next != NULL)
2024 tmp->next->prev = tmp;
2025 xmlFreeProp(cur);
2026 return(0);
2027 }
2028 tmp = tmp->next;
2029 }
2030#ifdef DEBUG_TREE
2031 xmlGenericError(xmlGenericErrorContext,
2032 "xmlRemoveProp : attribute not owned by its node\n");
2033#endif
2034 return(-1);
2035}
Daniel Veillard652327a2003-09-29 18:02:38 +00002036#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002037
2038/**
Daniel Veillard03a53c32004-10-26 16:06:51 +00002039 * xmlNewDocPI:
2040 * @doc: the target document
Owen Taylor3473f882001-02-23 17:55:21 +00002041 * @name: the processing instruction name
2042 * @content: the PI content
2043 *
2044 * Creation of a processing instruction element.
2045 * Returns a pointer to the new node object.
2046 */
2047xmlNodePtr
Daniel Veillard03a53c32004-10-26 16:06:51 +00002048xmlNewDocPI(xmlDocPtr doc, const xmlChar *name, const xmlChar *content) {
Owen Taylor3473f882001-02-23 17:55:21 +00002049 xmlNodePtr cur;
2050
2051 if (name == NULL) {
2052#ifdef DEBUG_TREE
2053 xmlGenericError(xmlGenericErrorContext,
2054 "xmlNewPI : name == NULL\n");
2055#endif
2056 return(NULL);
2057 }
2058
2059 /*
2060 * Allocate a new node and fill the fields.
2061 */
2062 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2063 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002064 xmlTreeErrMemory("building PI");
Owen Taylor3473f882001-02-23 17:55:21 +00002065 return(NULL);
2066 }
2067 memset(cur, 0, sizeof(xmlNode));
2068 cur->type = XML_PI_NODE;
2069
Daniel Veillard03a53c32004-10-26 16:06:51 +00002070 if ((doc != NULL) && (doc->dict != NULL))
2071 cur->name = xmlDictLookup(doc->dict, name, -1);
2072 else
2073 cur->name = xmlStrdup(name);
Owen Taylor3473f882001-02-23 17:55:21 +00002074 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002075 cur->content = xmlStrdup(content);
Owen Taylor3473f882001-02-23 17:55:21 +00002076 }
Daniel Veillarda03e3652004-11-02 18:45:30 +00002077 cur->doc = doc;
Daniel Veillard5335dc52003-01-01 20:59:38 +00002078
Daniel Veillarda880b122003-04-21 21:36:41 +00002079 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002080 xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002081 return(cur);
2082}
2083
2084/**
Daniel Veillard03a53c32004-10-26 16:06:51 +00002085 * xmlNewPI:
2086 * @name: the processing instruction name
2087 * @content: the PI content
2088 *
2089 * Creation of a processing instruction element.
2090 * Use xmlDocNewPI preferably to get string interning
2091 *
2092 * Returns a pointer to the new node object.
2093 */
2094xmlNodePtr
2095xmlNewPI(const xmlChar *name, const xmlChar *content) {
2096 return(xmlNewDocPI(NULL, name, content));
2097}
2098
2099/**
Owen Taylor3473f882001-02-23 17:55:21 +00002100 * xmlNewNode:
2101 * @ns: namespace if any
2102 * @name: the node name
2103 *
Daniel Veillardd1640922001-12-17 15:30:10 +00002104 * Creation of a new node element. @ns is optional (NULL).
Owen Taylor3473f882001-02-23 17:55:21 +00002105 *
William M. Brackd7cf7f82003-11-14 07:13:16 +00002106 * Returns a pointer to the new node object. Uses xmlStrdup() to make
2107 * copy of @name.
Owen Taylor3473f882001-02-23 17:55:21 +00002108 */
2109xmlNodePtr
2110xmlNewNode(xmlNsPtr ns, const xmlChar *name) {
2111 xmlNodePtr cur;
2112
2113 if (name == NULL) {
2114#ifdef DEBUG_TREE
2115 xmlGenericError(xmlGenericErrorContext,
2116 "xmlNewNode : name == NULL\n");
2117#endif
2118 return(NULL);
2119 }
2120
2121 /*
2122 * Allocate a new node and fill the fields.
2123 */
2124 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2125 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002126 xmlTreeErrMemory("building node");
Owen Taylor3473f882001-02-23 17:55:21 +00002127 return(NULL);
2128 }
2129 memset(cur, 0, sizeof(xmlNode));
2130 cur->type = XML_ELEMENT_NODE;
2131
2132 cur->name = xmlStrdup(name);
2133 cur->ns = ns;
Daniel Veillard5335dc52003-01-01 20:59:38 +00002134
Daniel Veillarda880b122003-04-21 21:36:41 +00002135 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002136 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002137 return(cur);
2138}
2139
2140/**
Daniel Veillard46de64e2002-05-29 08:21:33 +00002141 * xmlNewNodeEatName:
2142 * @ns: namespace if any
2143 * @name: the node name
2144 *
2145 * Creation of a new node element. @ns is optional (NULL).
2146 *
William M. Brackd7cf7f82003-11-14 07:13:16 +00002147 * Returns a pointer to the new node object, with pointer @name as
2148 * new node's name. Use xmlNewNode() if a copy of @name string is
2149 * is needed as new node's name.
Daniel Veillard46de64e2002-05-29 08:21:33 +00002150 */
2151xmlNodePtr
2152xmlNewNodeEatName(xmlNsPtr ns, xmlChar *name) {
2153 xmlNodePtr cur;
2154
2155 if (name == NULL) {
2156#ifdef DEBUG_TREE
2157 xmlGenericError(xmlGenericErrorContext,
2158 "xmlNewNode : name == NULL\n");
2159#endif
2160 return(NULL);
2161 }
2162
2163 /*
2164 * Allocate a new node and fill the fields.
2165 */
2166 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2167 if (cur == NULL) {
Daniel Veillard5cd3e8c2005-03-27 11:25:28 +00002168 xmlFree(name);
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002169 xmlTreeErrMemory("building node");
Daniel Veillard46de64e2002-05-29 08:21:33 +00002170 return(NULL);
2171 }
2172 memset(cur, 0, sizeof(xmlNode));
2173 cur->type = XML_ELEMENT_NODE;
2174
2175 cur->name = name;
2176 cur->ns = ns;
Daniel Veillard8a1b1852003-01-05 22:37:17 +00002177
Daniel Veillarda880b122003-04-21 21:36:41 +00002178 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard8a1b1852003-01-05 22:37:17 +00002179 xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
Daniel Veillard46de64e2002-05-29 08:21:33 +00002180 return(cur);
2181}
2182
2183/**
Owen Taylor3473f882001-02-23 17:55:21 +00002184 * xmlNewDocNode:
2185 * @doc: the document
2186 * @ns: namespace if any
2187 * @name: the node name
2188 * @content: the XML text content if any
2189 *
2190 * Creation of a new node element within a document. @ns and @content
Daniel Veillardd1640922001-12-17 15:30:10 +00002191 * are optional (NULL).
Owen Taylor3473f882001-02-23 17:55:21 +00002192 * NOTE: @content is supposed to be a piece of XML CDATA, so it allow entities
2193 * references, but XML special chars need to be escaped first by using
2194 * xmlEncodeEntitiesReentrant(). Use xmlNewDocRawNode() if you don't
2195 * need entities support.
2196 *
2197 * Returns a pointer to the new node object.
2198 */
2199xmlNodePtr
2200xmlNewDocNode(xmlDocPtr doc, xmlNsPtr ns,
2201 const xmlChar *name, const xmlChar *content) {
2202 xmlNodePtr cur;
2203
Daniel Veillard95ddcd32004-10-26 21:53:55 +00002204 if ((doc != NULL) && (doc->dict != NULL))
Daniel Veillard03a53c32004-10-26 16:06:51 +00002205 cur = xmlNewNodeEatName(ns, (xmlChar *)
2206 xmlDictLookup(doc->dict, name, -1));
2207 else
2208 cur = xmlNewNode(ns, name);
Owen Taylor3473f882001-02-23 17:55:21 +00002209 if (cur != NULL) {
2210 cur->doc = doc;
2211 if (content != NULL) {
2212 cur->children = xmlStringGetNodeList(doc, content);
2213 UPDATE_LAST_CHILD_AND_PARENT(cur)
2214 }
2215 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002216
Owen Taylor3473f882001-02-23 17:55:21 +00002217 return(cur);
2218}
2219
Daniel Veillard46de64e2002-05-29 08:21:33 +00002220/**
2221 * xmlNewDocNodeEatName:
2222 * @doc: the document
2223 * @ns: namespace if any
2224 * @name: the node name
2225 * @content: the XML text content if any
2226 *
2227 * Creation of a new node element within a document. @ns and @content
2228 * are optional (NULL).
2229 * NOTE: @content is supposed to be a piece of XML CDATA, so it allow entities
2230 * references, but XML special chars need to be escaped first by using
2231 * xmlEncodeEntitiesReentrant(). Use xmlNewDocRawNode() if you don't
2232 * need entities support.
2233 *
2234 * Returns a pointer to the new node object.
2235 */
2236xmlNodePtr
2237xmlNewDocNodeEatName(xmlDocPtr doc, xmlNsPtr ns,
2238 xmlChar *name, const xmlChar *content) {
2239 xmlNodePtr cur;
2240
2241 cur = xmlNewNodeEatName(ns, name);
2242 if (cur != NULL) {
2243 cur->doc = doc;
2244 if (content != NULL) {
2245 cur->children = xmlStringGetNodeList(doc, content);
2246 UPDATE_LAST_CHILD_AND_PARENT(cur)
2247 }
2248 }
2249 return(cur);
2250}
2251
Daniel Veillard652327a2003-09-29 18:02:38 +00002252#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002253/**
2254 * xmlNewDocRawNode:
2255 * @doc: the document
2256 * @ns: namespace if any
2257 * @name: the node name
2258 * @content: the text content if any
2259 *
2260 * Creation of a new node element within a document. @ns and @content
Daniel Veillardd1640922001-12-17 15:30:10 +00002261 * are optional (NULL).
Owen Taylor3473f882001-02-23 17:55:21 +00002262 *
2263 * Returns a pointer to the new node object.
2264 */
2265xmlNodePtr
2266xmlNewDocRawNode(xmlDocPtr doc, xmlNsPtr ns,
2267 const xmlChar *name, const xmlChar *content) {
2268 xmlNodePtr cur;
2269
Daniel Veillard95ddcd32004-10-26 21:53:55 +00002270 cur = xmlNewDocNode(doc, ns, name, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00002271 if (cur != NULL) {
2272 cur->doc = doc;
2273 if (content != NULL) {
2274 cur->children = xmlNewDocText(doc, content);
2275 UPDATE_LAST_CHILD_AND_PARENT(cur)
2276 }
2277 }
2278 return(cur);
2279}
2280
2281/**
2282 * xmlNewDocFragment:
2283 * @doc: the document owning the fragment
2284 *
2285 * Creation of a new Fragment node.
2286 * Returns a pointer to the new node object.
2287 */
2288xmlNodePtr
2289xmlNewDocFragment(xmlDocPtr doc) {
2290 xmlNodePtr cur;
2291
2292 /*
2293 * Allocate a new DocumentFragment node and fill the fields.
2294 */
2295 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2296 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002297 xmlTreeErrMemory("building fragment");
Owen Taylor3473f882001-02-23 17:55:21 +00002298 return(NULL);
2299 }
2300 memset(cur, 0, sizeof(xmlNode));
2301 cur->type = XML_DOCUMENT_FRAG_NODE;
2302
2303 cur->doc = doc;
Daniel Veillard5335dc52003-01-01 20:59:38 +00002304
Daniel Veillarda880b122003-04-21 21:36:41 +00002305 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002306 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002307 return(cur);
2308}
Daniel Veillard652327a2003-09-29 18:02:38 +00002309#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002310
2311/**
2312 * xmlNewText:
2313 * @content: the text content
2314 *
2315 * Creation of a new text node.
2316 * Returns a pointer to the new node object.
2317 */
2318xmlNodePtr
2319xmlNewText(const xmlChar *content) {
2320 xmlNodePtr cur;
2321
2322 /*
2323 * Allocate a new node and fill the fields.
2324 */
2325 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2326 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002327 xmlTreeErrMemory("building text");
Owen Taylor3473f882001-02-23 17:55:21 +00002328 return(NULL);
2329 }
2330 memset(cur, 0, sizeof(xmlNode));
2331 cur->type = XML_TEXT_NODE;
2332
2333 cur->name = xmlStringText;
2334 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002335 cur->content = xmlStrdup(content);
Owen Taylor3473f882001-02-23 17:55:21 +00002336 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002337
Daniel Veillarda880b122003-04-21 21:36:41 +00002338 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002339 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002340 return(cur);
2341}
2342
Daniel Veillard652327a2003-09-29 18:02:38 +00002343#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002344/**
2345 * xmlNewTextChild:
2346 * @parent: the parent node
2347 * @ns: a namespace if any
2348 * @name: the name of the child
2349 * @content: the text content of the child if any.
2350 *
2351 * Creation of a new child element, added at the end of @parent children list.
MST 2003 John Flecke1f70492003-12-20 23:43:28 +00002352 * @ns and @content parameters are optional (NULL). If @ns is NULL, the newly
2353 * created element inherits the namespace of @parent. If @content is non NULL,
William M. Brackd7cf7f82003-11-14 07:13:16 +00002354 * a child TEXT node will be created containing the string @content.
MST 2003 John Fleck8b03bc52003-12-17 03:45:01 +00002355 * NOTE: Use xmlNewChild() if @content will contain entities that need to be
2356 * preserved. Use this function, xmlNewTextChild(), if you need to ensure that
2357 * reserved XML chars that might appear in @content, such as the ampersand,
2358 * greater-than or less-than signs, are automatically replaced by their XML
2359 * escaped entity representations.
Owen Taylor3473f882001-02-23 17:55:21 +00002360 *
2361 * Returns a pointer to the new node object.
2362 */
2363xmlNodePtr
2364xmlNewTextChild(xmlNodePtr parent, xmlNsPtr ns,
2365 const xmlChar *name, const xmlChar *content) {
2366 xmlNodePtr cur, prev;
2367
2368 if (parent == NULL) {
2369#ifdef DEBUG_TREE
2370 xmlGenericError(xmlGenericErrorContext,
2371 "xmlNewTextChild : parent == NULL\n");
2372#endif
2373 return(NULL);
2374 }
2375
2376 if (name == NULL) {
2377#ifdef DEBUG_TREE
2378 xmlGenericError(xmlGenericErrorContext,
2379 "xmlNewTextChild : name == NULL\n");
2380#endif
2381 return(NULL);
2382 }
2383
2384 /*
2385 * Allocate a new node
2386 */
Daniel Veillard254b1262003-11-01 17:04:58 +00002387 if (parent->type == XML_ELEMENT_NODE) {
2388 if (ns == NULL)
2389 cur = xmlNewDocRawNode(parent->doc, parent->ns, name, content);
2390 else
2391 cur = xmlNewDocRawNode(parent->doc, ns, name, content);
2392 } else if ((parent->type == XML_DOCUMENT_NODE) ||
2393 (parent->type == XML_HTML_DOCUMENT_NODE)) {
2394 if (ns == NULL)
2395 cur = xmlNewDocRawNode((xmlDocPtr) parent, NULL, name, content);
2396 else
2397 cur = xmlNewDocRawNode((xmlDocPtr) parent, ns, name, content);
2398 } else if (parent->type == XML_DOCUMENT_FRAG_NODE) {
2399 cur = xmlNewDocRawNode( parent->doc, ns, name, content);
2400 } else {
2401 return(NULL);
2402 }
Owen Taylor3473f882001-02-23 17:55:21 +00002403 if (cur == NULL) return(NULL);
2404
2405 /*
2406 * add the new element at the end of the children list.
2407 */
2408 cur->type = XML_ELEMENT_NODE;
2409 cur->parent = parent;
2410 cur->doc = parent->doc;
2411 if (parent->children == NULL) {
2412 parent->children = cur;
2413 parent->last = cur;
2414 } else {
2415 prev = parent->last;
2416 prev->next = cur;
2417 cur->prev = prev;
2418 parent->last = cur;
2419 }
2420
2421 return(cur);
2422}
Daniel Veillard652327a2003-09-29 18:02:38 +00002423#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002424
2425/**
2426 * xmlNewCharRef:
2427 * @doc: the document
2428 * @name: the char ref string, starting with # or "&# ... ;"
2429 *
2430 * Creation of a new character reference node.
2431 * Returns a pointer to the new node object.
2432 */
2433xmlNodePtr
2434xmlNewCharRef(xmlDocPtr doc, const xmlChar *name) {
2435 xmlNodePtr cur;
2436
Daniel Veillard36e5cd52004-11-02 14:52:23 +00002437 if (name == NULL)
2438 return(NULL);
2439
Owen Taylor3473f882001-02-23 17:55:21 +00002440 /*
2441 * Allocate a new node and fill the fields.
2442 */
2443 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2444 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002445 xmlTreeErrMemory("building character reference");
Owen Taylor3473f882001-02-23 17:55:21 +00002446 return(NULL);
2447 }
2448 memset(cur, 0, sizeof(xmlNode));
2449 cur->type = XML_ENTITY_REF_NODE;
2450
2451 cur->doc = doc;
2452 if (name[0] == '&') {
2453 int len;
2454 name++;
2455 len = xmlStrlen(name);
2456 if (name[len - 1] == ';')
2457 cur->name = xmlStrndup(name, len - 1);
2458 else
2459 cur->name = xmlStrndup(name, len);
2460 } else
2461 cur->name = xmlStrdup(name);
Daniel Veillard5335dc52003-01-01 20:59:38 +00002462
Daniel Veillarda880b122003-04-21 21:36:41 +00002463 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002464 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002465 return(cur);
2466}
2467
2468/**
2469 * xmlNewReference:
2470 * @doc: the document
2471 * @name: the reference name, or the reference string with & and ;
2472 *
2473 * Creation of a new reference node.
2474 * Returns a pointer to the new node object.
2475 */
2476xmlNodePtr
2477xmlNewReference(xmlDocPtr doc, const xmlChar *name) {
2478 xmlNodePtr cur;
2479 xmlEntityPtr ent;
2480
Daniel Veillard36e5cd52004-11-02 14:52:23 +00002481 if (name == NULL)
2482 return(NULL);
2483
Owen Taylor3473f882001-02-23 17:55:21 +00002484 /*
2485 * Allocate a new node and fill the fields.
2486 */
2487 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2488 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002489 xmlTreeErrMemory("building reference");
Owen Taylor3473f882001-02-23 17:55:21 +00002490 return(NULL);
2491 }
2492 memset(cur, 0, sizeof(xmlNode));
2493 cur->type = XML_ENTITY_REF_NODE;
2494
2495 cur->doc = doc;
2496 if (name[0] == '&') {
2497 int len;
2498 name++;
2499 len = xmlStrlen(name);
2500 if (name[len - 1] == ';')
2501 cur->name = xmlStrndup(name, len - 1);
2502 else
2503 cur->name = xmlStrndup(name, len);
2504 } else
2505 cur->name = xmlStrdup(name);
2506
2507 ent = xmlGetDocEntity(doc, cur->name);
2508 if (ent != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002509 cur->content = ent->content;
Owen Taylor3473f882001-02-23 17:55:21 +00002510 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002511 * The parent pointer in entity is a DTD pointer and thus is NOT
Owen Taylor3473f882001-02-23 17:55:21 +00002512 * updated. Not sure if this is 100% correct.
2513 * -George
2514 */
2515 cur->children = (xmlNodePtr) ent;
2516 cur->last = (xmlNodePtr) ent;
2517 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002518
Daniel Veillarda880b122003-04-21 21:36:41 +00002519 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002520 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002521 return(cur);
2522}
2523
2524/**
2525 * xmlNewDocText:
2526 * @doc: the document
2527 * @content: the text content
2528 *
2529 * Creation of a new text node within a document.
2530 * Returns a pointer to the new node object.
2531 */
2532xmlNodePtr
2533xmlNewDocText(xmlDocPtr doc, const xmlChar *content) {
2534 xmlNodePtr cur;
2535
2536 cur = xmlNewText(content);
2537 if (cur != NULL) cur->doc = doc;
2538 return(cur);
2539}
2540
2541/**
2542 * xmlNewTextLen:
2543 * @content: the text content
2544 * @len: the text len.
2545 *
Daniel Veillard60087f32001-10-10 09:45:09 +00002546 * Creation of a new text node with an extra parameter for the content's length
Owen Taylor3473f882001-02-23 17:55:21 +00002547 * Returns a pointer to the new node object.
2548 */
2549xmlNodePtr
2550xmlNewTextLen(const xmlChar *content, int len) {
2551 xmlNodePtr cur;
2552
2553 /*
2554 * Allocate a new node and fill the fields.
2555 */
2556 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2557 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002558 xmlTreeErrMemory("building text");
Owen Taylor3473f882001-02-23 17:55:21 +00002559 return(NULL);
2560 }
2561 memset(cur, 0, sizeof(xmlNode));
2562 cur->type = XML_TEXT_NODE;
2563
2564 cur->name = xmlStringText;
2565 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002566 cur->content = xmlStrndup(content, len);
Owen Taylor3473f882001-02-23 17:55:21 +00002567 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002568
Daniel Veillarda880b122003-04-21 21:36:41 +00002569 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002570 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002571 return(cur);
2572}
2573
2574/**
2575 * xmlNewDocTextLen:
2576 * @doc: the document
2577 * @content: the text content
2578 * @len: the text len.
2579 *
Daniel Veillard60087f32001-10-10 09:45:09 +00002580 * Creation of a new text node with an extra content length parameter. The
Owen Taylor3473f882001-02-23 17:55:21 +00002581 * text node pertain to a given document.
2582 * Returns a pointer to the new node object.
2583 */
2584xmlNodePtr
2585xmlNewDocTextLen(xmlDocPtr doc, const xmlChar *content, int len) {
2586 xmlNodePtr cur;
2587
2588 cur = xmlNewTextLen(content, len);
2589 if (cur != NULL) cur->doc = doc;
2590 return(cur);
2591}
2592
2593/**
2594 * xmlNewComment:
2595 * @content: the comment content
2596 *
2597 * Creation of a new node containing a comment.
2598 * Returns a pointer to the new node object.
2599 */
2600xmlNodePtr
2601xmlNewComment(const xmlChar *content) {
2602 xmlNodePtr cur;
2603
2604 /*
2605 * Allocate a new node and fill the fields.
2606 */
2607 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2608 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002609 xmlTreeErrMemory("building comment");
Owen Taylor3473f882001-02-23 17:55:21 +00002610 return(NULL);
2611 }
2612 memset(cur, 0, sizeof(xmlNode));
2613 cur->type = XML_COMMENT_NODE;
2614
2615 cur->name = xmlStringComment;
2616 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002617 cur->content = xmlStrdup(content);
Owen Taylor3473f882001-02-23 17:55:21 +00002618 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002619
Daniel Veillarda880b122003-04-21 21:36:41 +00002620 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002621 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002622 return(cur);
2623}
2624
2625/**
2626 * xmlNewCDataBlock:
2627 * @doc: the document
Daniel Veillardd1640922001-12-17 15:30:10 +00002628 * @content: the CDATA block content content
Owen Taylor3473f882001-02-23 17:55:21 +00002629 * @len: the length of the block
2630 *
Daniel Veillardd1640922001-12-17 15:30:10 +00002631 * Creation of a new node containing a CDATA block.
Owen Taylor3473f882001-02-23 17:55:21 +00002632 * Returns a pointer to the new node object.
2633 */
2634xmlNodePtr
2635xmlNewCDataBlock(xmlDocPtr doc, const xmlChar *content, int len) {
2636 xmlNodePtr cur;
2637
2638 /*
2639 * Allocate a new node and fill the fields.
2640 */
2641 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
2642 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00002643 xmlTreeErrMemory("building CDATA");
Owen Taylor3473f882001-02-23 17:55:21 +00002644 return(NULL);
2645 }
2646 memset(cur, 0, sizeof(xmlNode));
2647 cur->type = XML_CDATA_SECTION_NODE;
Daniel Veillard56a4cb82001-03-24 17:00:36 +00002648 cur->doc = doc;
Owen Taylor3473f882001-02-23 17:55:21 +00002649
2650 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002651 cur->content = xmlStrndup(content, len);
Owen Taylor3473f882001-02-23 17:55:21 +00002652 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00002653
Daniel Veillarda880b122003-04-21 21:36:41 +00002654 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00002655 xmlRegisterNodeDefaultValue(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00002656 return(cur);
2657}
2658
2659/**
2660 * xmlNewDocComment:
2661 * @doc: the document
2662 * @content: the comment content
2663 *
Daniel Veillardd1640922001-12-17 15:30:10 +00002664 * Creation of a new node containing a comment within a document.
Owen Taylor3473f882001-02-23 17:55:21 +00002665 * Returns a pointer to the new node object.
2666 */
2667xmlNodePtr
2668xmlNewDocComment(xmlDocPtr doc, const xmlChar *content) {
2669 xmlNodePtr cur;
2670
2671 cur = xmlNewComment(content);
2672 if (cur != NULL) cur->doc = doc;
2673 return(cur);
2674}
2675
2676/**
2677 * xmlSetTreeDoc:
2678 * @tree: the top element
2679 * @doc: the document
2680 *
2681 * update all nodes under the tree to point to the right document
2682 */
2683void
2684xmlSetTreeDoc(xmlNodePtr tree, xmlDocPtr doc) {
Daniel Veillard19e96c32001-07-09 10:32:59 +00002685 xmlAttrPtr prop;
2686
Owen Taylor3473f882001-02-23 17:55:21 +00002687 if (tree == NULL)
2688 return;
Owen Taylor3473f882001-02-23 17:55:21 +00002689 if (tree->doc != doc) {
Daniel Veillard36065812002-01-24 15:02:46 +00002690 if(tree->type == XML_ELEMENT_NODE) {
2691 prop = tree->properties;
2692 while (prop != NULL) {
2693 prop->doc = doc;
2694 xmlSetListDoc(prop->children, doc);
2695 prop = prop->next;
2696 }
Daniel Veillard19e96c32001-07-09 10:32:59 +00002697 }
Owen Taylor3473f882001-02-23 17:55:21 +00002698 if (tree->children != NULL)
2699 xmlSetListDoc(tree->children, doc);
2700 tree->doc = doc;
2701 }
2702}
2703
2704/**
2705 * xmlSetListDoc:
Daniel Veillardd1640922001-12-17 15:30:10 +00002706 * @list: the first element
Owen Taylor3473f882001-02-23 17:55:21 +00002707 * @doc: the document
2708 *
2709 * update all nodes in the list to point to the right document
2710 */
2711void
2712xmlSetListDoc(xmlNodePtr list, xmlDocPtr doc) {
2713 xmlNodePtr cur;
2714
2715 if (list == NULL)
2716 return;
2717 cur = list;
2718 while (cur != NULL) {
2719 if (cur->doc != doc)
2720 xmlSetTreeDoc(cur, doc);
2721 cur = cur->next;
2722 }
2723}
2724
Daniel Veillard2156d432004-03-04 15:59:36 +00002725#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00002726/**
2727 * xmlNewChild:
2728 * @parent: the parent node
2729 * @ns: a namespace if any
2730 * @name: the name of the child
2731 * @content: the XML content of the child if any.
2732 *
2733 * Creation of a new child element, added at the end of @parent children list.
MST 2003 John Flecke1f70492003-12-20 23:43:28 +00002734 * @ns and @content parameters are optional (NULL). If @ns is NULL, the newly
2735 * created element inherits the namespace of @parent. If @content is non NULL,
Owen Taylor3473f882001-02-23 17:55:21 +00002736 * a child list containing the TEXTs and ENTITY_REFs node will be created.
MST 2003 John Fleck8b03bc52003-12-17 03:45:01 +00002737 * NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity
2738 * references. XML special chars must be escaped first by using
2739 * xmlEncodeEntitiesReentrant(), or xmlNewTextChild() should be used.
Owen Taylor3473f882001-02-23 17:55:21 +00002740 *
2741 * Returns a pointer to the new node object.
2742 */
2743xmlNodePtr
2744xmlNewChild(xmlNodePtr parent, xmlNsPtr ns,
2745 const xmlChar *name, const xmlChar *content) {
2746 xmlNodePtr cur, prev;
2747
2748 if (parent == NULL) {
2749#ifdef DEBUG_TREE
2750 xmlGenericError(xmlGenericErrorContext,
2751 "xmlNewChild : parent == NULL\n");
2752#endif
2753 return(NULL);
2754 }
2755
2756 if (name == NULL) {
2757#ifdef DEBUG_TREE
2758 xmlGenericError(xmlGenericErrorContext,
2759 "xmlNewChild : name == NULL\n");
2760#endif
2761 return(NULL);
2762 }
2763
2764 /*
2765 * Allocate a new node
2766 */
Daniel Veillard36eea2d2002-02-04 00:17:01 +00002767 if (parent->type == XML_ELEMENT_NODE) {
2768 if (ns == NULL)
2769 cur = xmlNewDocNode(parent->doc, parent->ns, name, content);
2770 else
2771 cur = xmlNewDocNode(parent->doc, ns, name, content);
2772 } else if ((parent->type == XML_DOCUMENT_NODE) ||
2773 (parent->type == XML_HTML_DOCUMENT_NODE)) {
2774 if (ns == NULL)
2775 cur = xmlNewDocNode((xmlDocPtr) parent, NULL, name, content);
2776 else
2777 cur = xmlNewDocNode((xmlDocPtr) parent, ns, name, content);
Daniel Veillard7e3f1402002-10-28 18:52:57 +00002778 } else if (parent->type == XML_DOCUMENT_FRAG_NODE) {
2779 cur = xmlNewDocNode( parent->doc, ns, name, content);
Daniel Veillard36eea2d2002-02-04 00:17:01 +00002780 } else {
2781 return(NULL);
2782 }
Owen Taylor3473f882001-02-23 17:55:21 +00002783 if (cur == NULL) return(NULL);
2784
2785 /*
2786 * add the new element at the end of the children list.
2787 */
2788 cur->type = XML_ELEMENT_NODE;
2789 cur->parent = parent;
2790 cur->doc = parent->doc;
2791 if (parent->children == NULL) {
2792 parent->children = cur;
2793 parent->last = cur;
2794 } else {
2795 prev = parent->last;
2796 prev->next = cur;
2797 cur->prev = prev;
2798 parent->last = cur;
2799 }
2800
2801 return(cur);
2802}
Daniel Veillard652327a2003-09-29 18:02:38 +00002803#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002804
2805/**
Rob Richards65815122006-02-25 17:13:33 +00002806 * xmlAddPropSibling:
2807 * @prev: the attribute to which @prop is added after
2808 * @cur: the base attribute passed to calling function
2809 * @prop: the new attribute
2810 *
2811 * Add a new attribute after @prev using @cur as base attribute.
2812 * When inserting before @cur, @prev is passed as @cur->prev.
2813 * When inserting after @cur, @prev is passed as @cur.
2814 * If an existing attribute is found it is detroyed prior to adding @prop.
2815 *
2816 * Returns the attribute being inserted or NULL in case of error.
2817 */
2818static xmlNodePtr
2819xmlAddPropSibling(xmlNodePtr prev, xmlNodePtr cur, xmlNodePtr prop) {
2820 xmlAttrPtr attr;
2821
2822 if (cur->type != XML_ATTRIBUTE_NODE)
2823 return(NULL);
2824
2825 /* check if an attribute with the same name exists */
2826 if (prop->ns == NULL)
2827 attr = xmlHasNsProp(cur->parent, prop->name, NULL);
2828 else
2829 attr = xmlHasNsProp(cur->parent, prop->name, prop->ns->href);
2830
2831 if (prop->doc != cur->doc) {
2832 xmlSetTreeDoc(prop, cur->doc);
2833 }
2834 prop->parent = cur->parent;
2835 prop->prev = prev;
2836 if (prev != NULL) {
2837 prop->next = prev->next;
2838 prev->next = prop;
2839 if (prop->next)
2840 prop->next->prev = prop;
2841 } else {
2842 prop->next = cur;
2843 cur->prev = prop;
2844 }
2845 if (prop->prev == NULL && prop->parent != NULL)
2846 prop->parent->properties = (xmlAttrPtr) prop;
2847 if ((attr != NULL) && (attr->type != XML_ATTRIBUTE_DECL)) {
2848 /* different instance, destroy it (attributes must be unique) */
2849 xmlRemoveProp((xmlAttrPtr) attr);
2850 }
2851 return prop;
2852}
2853
2854/**
Owen Taylor3473f882001-02-23 17:55:21 +00002855 * xmlAddNextSibling:
2856 * @cur: the child node
2857 * @elem: the new node
2858 *
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002859 * Add a new node @elem as the next sibling of @cur
2860 * If the new node was already inserted in a document it is
Owen Taylor3473f882001-02-23 17:55:21 +00002861 * first unlinked from its existing context.
2862 * As a result of text merging @elem may be freed.
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002863 * If the new node is ATTRIBUTE, it is added into properties instead of children.
2864 * If there is an attribute with equal name, it is first destroyed.
Owen Taylor3473f882001-02-23 17:55:21 +00002865 *
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002866 * Returns the new node or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00002867 */
2868xmlNodePtr
2869xmlAddNextSibling(xmlNodePtr cur, xmlNodePtr elem) {
2870 if (cur == NULL) {
2871#ifdef DEBUG_TREE
2872 xmlGenericError(xmlGenericErrorContext,
2873 "xmlAddNextSibling : cur == NULL\n");
2874#endif
2875 return(NULL);
2876 }
2877 if (elem == NULL) {
2878#ifdef DEBUG_TREE
2879 xmlGenericError(xmlGenericErrorContext,
2880 "xmlAddNextSibling : elem == NULL\n");
2881#endif
2882 return(NULL);
2883 }
2884
Rob Richards19dc9612005-10-28 16:15:16 +00002885 if (cur == elem) {
2886#ifdef DEBUG_TREE
2887 xmlGenericError(xmlGenericErrorContext,
2888 "xmlAddNextSibling : cur == elem\n");
2889#endif
2890 return(NULL);
2891 }
2892
Owen Taylor3473f882001-02-23 17:55:21 +00002893 xmlUnlinkNode(elem);
2894
2895 if (elem->type == XML_TEXT_NODE) {
2896 if (cur->type == XML_TEXT_NODE) {
Owen Taylor3473f882001-02-23 17:55:21 +00002897 xmlNodeAddContent(cur, elem->content);
Owen Taylor3473f882001-02-23 17:55:21 +00002898 xmlFreeNode(elem);
2899 return(cur);
2900 }
Daniel Veillard9e1c72d2001-08-31 20:03:19 +00002901 if ((cur->next != NULL) && (cur->next->type == XML_TEXT_NODE) &&
2902 (cur->name == cur->next->name)) {
Owen Taylor3473f882001-02-23 17:55:21 +00002903 xmlChar *tmp;
2904
2905 tmp = xmlStrdup(elem->content);
2906 tmp = xmlStrcat(tmp, cur->next->content);
2907 xmlNodeSetContent(cur->next, tmp);
2908 xmlFree(tmp);
Owen Taylor3473f882001-02-23 17:55:21 +00002909 xmlFreeNode(elem);
2910 return(cur->next);
2911 }
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002912 } else if (elem->type == XML_ATTRIBUTE_NODE) {
Rob Richards65815122006-02-25 17:13:33 +00002913 return xmlAddPropSibling(cur, cur, elem);
Owen Taylor3473f882001-02-23 17:55:21 +00002914 }
2915
2916 if (elem->doc != cur->doc) {
2917 xmlSetTreeDoc(elem, cur->doc);
2918 }
2919 elem->parent = cur->parent;
2920 elem->prev = cur;
2921 elem->next = cur->next;
2922 cur->next = elem;
2923 if (elem->next != NULL)
2924 elem->next->prev = elem;
Rob Richards65815122006-02-25 17:13:33 +00002925 if ((elem->parent != NULL) && (elem->parent->last == cur))
Owen Taylor3473f882001-02-23 17:55:21 +00002926 elem->parent->last = elem;
2927 return(elem);
2928}
2929
William M. Brack21e4ef22005-01-02 09:53:13 +00002930#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || \
2931 defined(LIBXML_SCHEMAS_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00002932/**
2933 * xmlAddPrevSibling:
2934 * @cur: the child node
2935 * @elem: the new node
2936 *
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002937 * Add a new node @elem as the previous sibling of @cur
Owen Taylor3473f882001-02-23 17:55:21 +00002938 * merging adjacent TEXT nodes (@elem may be freed)
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002939 * If the new node was already inserted in a document it is
Owen Taylor3473f882001-02-23 17:55:21 +00002940 * first unlinked from its existing context.
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002941 * If the new node is ATTRIBUTE, it is added into properties instead of children.
2942 * If there is an attribute with equal name, it is first destroyed.
Owen Taylor3473f882001-02-23 17:55:21 +00002943 *
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002944 * Returns the new node or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00002945 */
2946xmlNodePtr
2947xmlAddPrevSibling(xmlNodePtr cur, xmlNodePtr elem) {
2948 if (cur == NULL) {
2949#ifdef DEBUG_TREE
2950 xmlGenericError(xmlGenericErrorContext,
2951 "xmlAddPrevSibling : cur == NULL\n");
2952#endif
2953 return(NULL);
2954 }
2955 if (elem == NULL) {
2956#ifdef DEBUG_TREE
2957 xmlGenericError(xmlGenericErrorContext,
2958 "xmlAddPrevSibling : elem == NULL\n");
2959#endif
2960 return(NULL);
2961 }
2962
Rob Richards19dc9612005-10-28 16:15:16 +00002963 if (cur == elem) {
2964#ifdef DEBUG_TREE
2965 xmlGenericError(xmlGenericErrorContext,
2966 "xmlAddPrevSibling : cur == elem\n");
2967#endif
2968 return(NULL);
2969 }
2970
Owen Taylor3473f882001-02-23 17:55:21 +00002971 xmlUnlinkNode(elem);
2972
2973 if (elem->type == XML_TEXT_NODE) {
2974 if (cur->type == XML_TEXT_NODE) {
Owen Taylor3473f882001-02-23 17:55:21 +00002975 xmlChar *tmp;
2976
2977 tmp = xmlStrdup(elem->content);
2978 tmp = xmlStrcat(tmp, cur->content);
2979 xmlNodeSetContent(cur, tmp);
2980 xmlFree(tmp);
Owen Taylor3473f882001-02-23 17:55:21 +00002981 xmlFreeNode(elem);
2982 return(cur);
2983 }
Daniel Veillard9e1c72d2001-08-31 20:03:19 +00002984 if ((cur->prev != NULL) && (cur->prev->type == XML_TEXT_NODE) &&
2985 (cur->name == cur->prev->name)) {
Owen Taylor3473f882001-02-23 17:55:21 +00002986 xmlNodeAddContent(cur->prev, elem->content);
Owen Taylor3473f882001-02-23 17:55:21 +00002987 xmlFreeNode(elem);
2988 return(cur->prev);
2989 }
Daniel Veillardbd227ae2002-01-24 16:05:41 +00002990 } else if (elem->type == XML_ATTRIBUTE_NODE) {
Rob Richards65815122006-02-25 17:13:33 +00002991 return xmlAddPropSibling(cur->prev, cur, elem);
Owen Taylor3473f882001-02-23 17:55:21 +00002992 }
2993
2994 if (elem->doc != cur->doc) {
2995 xmlSetTreeDoc(elem, cur->doc);
2996 }
2997 elem->parent = cur->parent;
2998 elem->next = cur;
2999 elem->prev = cur->prev;
3000 cur->prev = elem;
3001 if (elem->prev != NULL)
3002 elem->prev->next = elem;
Rob Richards65815122006-02-25 17:13:33 +00003003 if ((elem->parent != NULL) && (elem->parent->children == cur)) {
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003004 elem->parent->children = elem;
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003005 }
Owen Taylor3473f882001-02-23 17:55:21 +00003006 return(elem);
3007}
Daniel Veillard652327a2003-09-29 18:02:38 +00003008#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00003009
3010/**
3011 * xmlAddSibling:
3012 * @cur: the child node
3013 * @elem: the new node
3014 *
3015 * Add a new element @elem to the list of siblings of @cur
3016 * merging adjacent TEXT nodes (@elem may be freed)
3017 * If the new element was already inserted in a document it is
3018 * first unlinked from its existing context.
3019 *
3020 * Returns the new element or NULL in case of error.
3021 */
3022xmlNodePtr
3023xmlAddSibling(xmlNodePtr cur, xmlNodePtr elem) {
3024 xmlNodePtr parent;
3025
3026 if (cur == NULL) {
3027#ifdef DEBUG_TREE
3028 xmlGenericError(xmlGenericErrorContext,
3029 "xmlAddSibling : cur == NULL\n");
3030#endif
3031 return(NULL);
3032 }
3033
3034 if (elem == NULL) {
3035#ifdef DEBUG_TREE
3036 xmlGenericError(xmlGenericErrorContext,
3037 "xmlAddSibling : elem == NULL\n");
3038#endif
3039 return(NULL);
3040 }
3041
3042 /*
3043 * Constant time is we can rely on the ->parent->last to find
3044 * the last sibling.
3045 */
Rob Richards65815122006-02-25 17:13:33 +00003046 if ((cur->type != XML_ATTRIBUTE_NODE) && (cur->parent != NULL) &&
Owen Taylor3473f882001-02-23 17:55:21 +00003047 (cur->parent->children != NULL) &&
3048 (cur->parent->last != NULL) &&
3049 (cur->parent->last->next == NULL)) {
3050 cur = cur->parent->last;
3051 } else {
3052 while (cur->next != NULL) cur = cur->next;
3053 }
3054
3055 xmlUnlinkNode(elem);
3056
Daniel Veillarde22dd5c2003-10-29 12:53:27 +00003057 if ((cur->type == XML_TEXT_NODE) && (elem->type == XML_TEXT_NODE) &&
3058 (cur->name == elem->name)) {
Owen Taylor3473f882001-02-23 17:55:21 +00003059 xmlNodeAddContent(cur, elem->content);
Owen Taylor3473f882001-02-23 17:55:21 +00003060 xmlFreeNode(elem);
3061 return(cur);
Rob Richards65815122006-02-25 17:13:33 +00003062 } else if (elem->type == XML_ATTRIBUTE_NODE) {
3063 return xmlAddPropSibling(cur, cur, elem);
Owen Taylor3473f882001-02-23 17:55:21 +00003064 }
3065
3066 if (elem->doc != cur->doc) {
3067 xmlSetTreeDoc(elem, cur->doc);
3068 }
3069 parent = cur->parent;
3070 elem->prev = cur;
3071 elem->next = NULL;
3072 elem->parent = parent;
3073 cur->next = elem;
3074 if (parent != NULL)
3075 parent->last = elem;
3076
3077 return(elem);
3078}
3079
3080/**
3081 * xmlAddChildList:
3082 * @parent: the parent node
3083 * @cur: the first node in the list
3084 *
3085 * Add a list of node at the end of the child list of the parent
3086 * merging adjacent TEXT nodes (@cur may be freed)
3087 *
3088 * Returns the last child or NULL in case of error.
3089 */
3090xmlNodePtr
3091xmlAddChildList(xmlNodePtr parent, xmlNodePtr cur) {
3092 xmlNodePtr prev;
3093
3094 if (parent == NULL) {
3095#ifdef DEBUG_TREE
3096 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00003097 "xmlAddChildList : parent == NULL\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003098#endif
3099 return(NULL);
3100 }
3101
3102 if (cur == NULL) {
3103#ifdef DEBUG_TREE
3104 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00003105 "xmlAddChildList : child == NULL\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003106#endif
3107 return(NULL);
3108 }
3109
3110 if ((cur->doc != NULL) && (parent->doc != NULL) &&
3111 (cur->doc != parent->doc)) {
3112#ifdef DEBUG_TREE
3113 xmlGenericError(xmlGenericErrorContext,
3114 "Elements moved to a different document\n");
3115#endif
3116 }
3117
3118 /*
3119 * add the first element at the end of the children list.
3120 */
Daniel Veillard5335dc52003-01-01 20:59:38 +00003121
Owen Taylor3473f882001-02-23 17:55:21 +00003122 if (parent->children == NULL) {
3123 parent->children = cur;
3124 } else {
3125 /*
3126 * If cur and parent->last both are TEXT nodes, then merge them.
3127 */
3128 if ((cur->type == XML_TEXT_NODE) &&
3129 (parent->last->type == XML_TEXT_NODE) &&
3130 (cur->name == parent->last->name)) {
Daniel Veillard5335dc52003-01-01 20:59:38 +00003131 xmlNodeAddContent(parent->last, cur->content);
Owen Taylor3473f882001-02-23 17:55:21 +00003132 /*
3133 * if it's the only child, nothing more to be done.
3134 */
3135 if (cur->next == NULL) {
3136 xmlFreeNode(cur);
3137 return(parent->last);
3138 }
3139 prev = cur;
3140 cur = cur->next;
3141 xmlFreeNode(prev);
3142 }
3143 prev = parent->last;
3144 prev->next = cur;
3145 cur->prev = prev;
3146 }
3147 while (cur->next != NULL) {
3148 cur->parent = parent;
3149 if (cur->doc != parent->doc) {
3150 xmlSetTreeDoc(cur, parent->doc);
3151 }
3152 cur = cur->next;
3153 }
3154 cur->parent = parent;
3155 cur->doc = parent->doc; /* the parent may not be linked to a doc ! */
3156 parent->last = cur;
3157
3158 return(cur);
3159}
3160
3161/**
3162 * xmlAddChild:
3163 * @parent: the parent node
3164 * @cur: the child node
3165 *
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003166 * Add a new node to @parent, at the end of the child (or property) list
Owen Taylor3473f882001-02-23 17:55:21 +00003167 * merging adjacent TEXT nodes (in which case @cur is freed)
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003168 * If the new node is ATTRIBUTE, it is added into properties instead of children.
3169 * If there is an attribute with equal name, it is first destroyed.
3170 *
Owen Taylor3473f882001-02-23 17:55:21 +00003171 * Returns the child or NULL in case of error.
3172 */
3173xmlNodePtr
3174xmlAddChild(xmlNodePtr parent, xmlNodePtr cur) {
3175 xmlNodePtr prev;
3176
3177 if (parent == NULL) {
3178#ifdef DEBUG_TREE
3179 xmlGenericError(xmlGenericErrorContext,
3180 "xmlAddChild : parent == NULL\n");
3181#endif
3182 return(NULL);
3183 }
3184
3185 if (cur == NULL) {
3186#ifdef DEBUG_TREE
3187 xmlGenericError(xmlGenericErrorContext,
3188 "xmlAddChild : child == NULL\n");
3189#endif
3190 return(NULL);
3191 }
3192
Rob Richards19dc9612005-10-28 16:15:16 +00003193 if (parent == cur) {
3194#ifdef DEBUG_TREE
3195 xmlGenericError(xmlGenericErrorContext,
3196 "xmlAddChild : parent == cur\n");
3197#endif
3198 return(NULL);
3199 }
Owen Taylor3473f882001-02-23 17:55:21 +00003200 /*
3201 * If cur is a TEXT node, merge its content with adjacent TEXT nodes
Owen Taylor3473f882001-02-23 17:55:21 +00003202 * cur is then freed.
3203 */
3204 if (cur->type == XML_TEXT_NODE) {
Daniel Veillard7db37732001-07-12 01:20:08 +00003205 if ((parent->type == XML_TEXT_NODE) &&
Daniel Veillard5335dc52003-01-01 20:59:38 +00003206 (parent->content != NULL) &&
Rob Richards19dc9612005-10-28 16:15:16 +00003207 (parent->name == cur->name)) {
Owen Taylor3473f882001-02-23 17:55:21 +00003208 xmlNodeAddContent(parent, cur->content);
Owen Taylor3473f882001-02-23 17:55:21 +00003209 xmlFreeNode(cur);
3210 return(parent);
3211 }
3212 if ((parent->last != NULL) && (parent->last->type == XML_TEXT_NODE) &&
Daniel Veillard5335dc52003-01-01 20:59:38 +00003213 (parent->last->name == cur->name) &&
3214 (parent->last != cur)) {
Owen Taylor3473f882001-02-23 17:55:21 +00003215 xmlNodeAddContent(parent->last, cur->content);
Owen Taylor3473f882001-02-23 17:55:21 +00003216 xmlFreeNode(cur);
3217 return(parent->last);
3218 }
3219 }
3220
3221 /*
3222 * add the new element at the end of the children list.
3223 */
Daniel Veillard5335dc52003-01-01 20:59:38 +00003224 prev = cur->parent;
Owen Taylor3473f882001-02-23 17:55:21 +00003225 cur->parent = parent;
3226 if (cur->doc != parent->doc) {
3227 xmlSetTreeDoc(cur, parent->doc);
3228 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00003229 /* this check prevents a loop on tree-traversions if a developer
3230 * tries to add a node to its parent multiple times
3231 */
3232 if (prev == parent)
3233 return(cur);
Owen Taylor3473f882001-02-23 17:55:21 +00003234
3235 /*
Daniel Veillard7db37732001-07-12 01:20:08 +00003236 * Coalescing
Owen Taylor3473f882001-02-23 17:55:21 +00003237 */
Daniel Veillard7db37732001-07-12 01:20:08 +00003238 if ((parent->type == XML_TEXT_NODE) &&
Daniel Veillard5335dc52003-01-01 20:59:38 +00003239 (parent->content != NULL) &&
3240 (parent != cur)) {
Daniel Veillard7db37732001-07-12 01:20:08 +00003241 xmlNodeAddContent(parent, cur->content);
Daniel Veillard7db37732001-07-12 01:20:08 +00003242 xmlFreeNode(cur);
3243 return(parent);
Owen Taylor3473f882001-02-23 17:55:21 +00003244 }
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003245 if (cur->type == XML_ATTRIBUTE_NODE) {
Rob Richards19dc9612005-10-28 16:15:16 +00003246 if (parent->type != XML_ELEMENT_NODE)
3247 return(NULL);
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003248 if (parent->properties == NULL) {
3249 parent->properties = (xmlAttrPtr) cur;
3250 } else {
3251 /* check if an attribute with the same name exists */
3252 xmlAttrPtr lastattr;
Owen Taylor3473f882001-02-23 17:55:21 +00003253
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003254 if (cur->ns == NULL)
Rob Richardsc342ec62005-10-25 00:10:12 +00003255 lastattr = xmlHasNsProp(parent, cur->name, NULL);
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003256 else
3257 lastattr = xmlHasNsProp(parent, cur->name, cur->ns->href);
Rob Richardsc342ec62005-10-25 00:10:12 +00003258 if ((lastattr != NULL) && (lastattr != (xmlAttrPtr) cur) && (lastattr->type != XML_ATTRIBUTE_DECL)) {
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003259 /* different instance, destroy it (attributes must be unique) */
Rob Richards19dc9612005-10-28 16:15:16 +00003260 xmlUnlinkNode((xmlNodePtr) lastattr);
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003261 xmlFreeProp(lastattr);
3262 }
Rob Richards19dc9612005-10-28 16:15:16 +00003263 if (lastattr == (xmlAttrPtr) cur)
3264 return(cur);
Daniel Veillardbd227ae2002-01-24 16:05:41 +00003265 /* find the end */
3266 lastattr = parent->properties;
3267 while (lastattr->next != NULL) {
3268 lastattr = lastattr->next;
3269 }
3270 lastattr->next = (xmlAttrPtr) cur;
3271 ((xmlAttrPtr) cur)->prev = lastattr;
3272 }
3273 } else {
3274 if (parent->children == NULL) {
3275 parent->children = cur;
3276 parent->last = cur;
3277 } else {
3278 prev = parent->last;
3279 prev->next = cur;
3280 cur->prev = prev;
3281 parent->last = cur;
3282 }
3283 }
Owen Taylor3473f882001-02-23 17:55:21 +00003284 return(cur);
3285}
3286
3287/**
3288 * xmlGetLastChild:
3289 * @parent: the parent node
3290 *
3291 * Search the last child of a node.
3292 * Returns the last child or NULL if none.
3293 */
3294xmlNodePtr
3295xmlGetLastChild(xmlNodePtr parent) {
3296 if (parent == NULL) {
3297#ifdef DEBUG_TREE
3298 xmlGenericError(xmlGenericErrorContext,
3299 "xmlGetLastChild : parent == NULL\n");
3300#endif
3301 return(NULL);
3302 }
3303 return(parent->last);
3304}
3305
3306/**
3307 * xmlFreeNodeList:
3308 * @cur: the first node in the list
3309 *
3310 * Free a node and all its siblings, this is a recursive behaviour, all
3311 * the children are freed too.
3312 */
3313void
3314xmlFreeNodeList(xmlNodePtr cur) {
3315 xmlNodePtr next;
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003316 xmlDictPtr dict = NULL;
3317
3318 if (cur == NULL) return;
Daniel Veillarde6a55192002-01-14 17:11:53 +00003319 if (cur->type == XML_NAMESPACE_DECL) {
3320 xmlFreeNsList((xmlNsPtr) cur);
3321 return;
3322 }
Daniel Veillard9adc0462003-03-24 18:39:54 +00003323 if ((cur->type == XML_DOCUMENT_NODE) ||
3324#ifdef LIBXML_DOCB_ENABLED
3325 (cur->type == XML_DOCB_DOCUMENT_NODE) ||
Daniel Veillard9adc0462003-03-24 18:39:54 +00003326#endif
Daniel Veillard6560a422003-03-27 21:25:38 +00003327 (cur->type == XML_HTML_DOCUMENT_NODE)) {
Daniel Veillard9adc0462003-03-24 18:39:54 +00003328 xmlFreeDoc((xmlDocPtr) cur);
3329 return;
3330 }
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003331 if (cur->doc != NULL) dict = cur->doc->dict;
Owen Taylor3473f882001-02-23 17:55:21 +00003332 while (cur != NULL) {
3333 next = cur->next;
Daniel Veillard02141ea2001-04-30 11:46:40 +00003334 if (cur->type != XML_DTD_NODE) {
Daniel Veillard5335dc52003-01-01 20:59:38 +00003335
Daniel Veillarda880b122003-04-21 21:36:41 +00003336 if ((__xmlRegisterCallbacks) && (xmlDeregisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00003337 xmlDeregisterNodeDefaultValue(cur);
3338
Daniel Veillard02141ea2001-04-30 11:46:40 +00003339 if ((cur->children != NULL) &&
3340 (cur->type != XML_ENTITY_REF_NODE))
3341 xmlFreeNodeList(cur->children);
Daniel Veillard01c13b52002-12-10 15:19:08 +00003342 if (((cur->type == XML_ELEMENT_NODE) ||
3343 (cur->type == XML_XINCLUDE_START) ||
3344 (cur->type == XML_XINCLUDE_END)) &&
Daniel Veillarde1ca5032002-12-09 14:13:43 +00003345 (cur->properties != NULL))
Daniel Veillard02141ea2001-04-30 11:46:40 +00003346 xmlFreePropList(cur->properties);
Daniel Veillard7db37732001-07-12 01:20:08 +00003347 if ((cur->type != XML_ELEMENT_NODE) &&
3348 (cur->type != XML_XINCLUDE_START) &&
3349 (cur->type != XML_XINCLUDE_END) &&
Daniel Veillard8874b942005-08-25 13:19:21 +00003350 (cur->type != XML_ENTITY_REF_NODE) &&
3351 (cur->content != (xmlChar *) &(cur->properties))) {
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003352 DICT_FREE(cur->content)
Daniel Veillard7db37732001-07-12 01:20:08 +00003353 }
3354 if (((cur->type == XML_ELEMENT_NODE) ||
3355 (cur->type == XML_XINCLUDE_START) ||
3356 (cur->type == XML_XINCLUDE_END)) &&
3357 (cur->nsDef != NULL))
3358 xmlFreeNsList(cur->nsDef);
3359
Daniel Veillard9cc6dc62001-06-11 08:09:20 +00003360 /*
3361 * When a node is a text node or a comment, it uses a global static
3362 * variable for the name of the node.
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003363 * Otherwise the node name might come from the document's
3364 * dictionnary
Daniel Veillard9cc6dc62001-06-11 08:09:20 +00003365 */
Daniel Veillard02141ea2001-04-30 11:46:40 +00003366 if ((cur->name != NULL) &&
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003367 (cur->type != XML_TEXT_NODE) &&
3368 (cur->type != XML_COMMENT_NODE))
3369 DICT_FREE(cur->name)
Daniel Veillard02141ea2001-04-30 11:46:40 +00003370 xmlFree(cur);
3371 }
Owen Taylor3473f882001-02-23 17:55:21 +00003372 cur = next;
3373 }
3374}
3375
3376/**
3377 * xmlFreeNode:
3378 * @cur: the node
3379 *
3380 * Free a node, this is a recursive behaviour, all the children are freed too.
3381 * This doesn't unlink the child from the list, use xmlUnlinkNode() first.
3382 */
3383void
3384xmlFreeNode(xmlNodePtr cur) {
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003385 xmlDictPtr dict = NULL;
3386
3387 if (cur == NULL) return;
Daniel Veillard5335dc52003-01-01 20:59:38 +00003388
Daniel Veillard02141ea2001-04-30 11:46:40 +00003389 /* use xmlFreeDtd for DTD nodes */
Daniel Veillarde6a55192002-01-14 17:11:53 +00003390 if (cur->type == XML_DTD_NODE) {
3391 xmlFreeDtd((xmlDtdPtr) cur);
Owen Taylor3473f882001-02-23 17:55:21 +00003392 return;
Daniel Veillarde6a55192002-01-14 17:11:53 +00003393 }
3394 if (cur->type == XML_NAMESPACE_DECL) {
3395 xmlFreeNs((xmlNsPtr) cur);
3396 return;
3397 }
Daniel Veillarda70d62f2002-11-07 14:18:03 +00003398 if (cur->type == XML_ATTRIBUTE_NODE) {
3399 xmlFreeProp((xmlAttrPtr) cur);
3400 return;
3401 }
Daniel Veillard5335dc52003-01-01 20:59:38 +00003402
Daniel Veillarda880b122003-04-21 21:36:41 +00003403 if ((__xmlRegisterCallbacks) && (xmlDeregisterNodeDefaultValue))
Daniel Veillard5335dc52003-01-01 20:59:38 +00003404 xmlDeregisterNodeDefaultValue(cur);
3405
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003406 if (cur->doc != NULL) dict = cur->doc->dict;
3407
Owen Taylor3473f882001-02-23 17:55:21 +00003408 if ((cur->children != NULL) &&
3409 (cur->type != XML_ENTITY_REF_NODE))
3410 xmlFreeNodeList(cur->children);
Daniel Veillard01c13b52002-12-10 15:19:08 +00003411 if (((cur->type == XML_ELEMENT_NODE) ||
3412 (cur->type == XML_XINCLUDE_START) ||
3413 (cur->type == XML_XINCLUDE_END)) &&
3414 (cur->properties != NULL))
Daniel Veillard02141ea2001-04-30 11:46:40 +00003415 xmlFreePropList(cur->properties);
Daniel Veillard7db37732001-07-12 01:20:08 +00003416 if ((cur->type != XML_ELEMENT_NODE) &&
3417 (cur->content != NULL) &&
3418 (cur->type != XML_ENTITY_REF_NODE) &&
3419 (cur->type != XML_XINCLUDE_END) &&
Daniel Veillard8874b942005-08-25 13:19:21 +00003420 (cur->type != XML_XINCLUDE_START) &&
3421 (cur->content != (xmlChar *) &(cur->properties))) {
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003422 DICT_FREE(cur->content)
Daniel Veillard7db37732001-07-12 01:20:08 +00003423 }
3424
Daniel Veillardacd370f2001-06-09 17:17:51 +00003425 /*
3426 * When a node is a text node or a comment, it uses a global static
3427 * variable for the name of the node.
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003428 * Otherwise the node name might come from the document's dictionnary
Daniel Veillardacd370f2001-06-09 17:17:51 +00003429 */
Owen Taylor3473f882001-02-23 17:55:21 +00003430 if ((cur->name != NULL) &&
Daniel Veillarde96a2a42003-09-24 21:23:56 +00003431 (cur->type != XML_TEXT_NODE) &&
3432 (cur->type != XML_COMMENT_NODE))
3433 DICT_FREE(cur->name)
Daniel Veillardacd370f2001-06-09 17:17:51 +00003434
Daniel Veillarde1ca5032002-12-09 14:13:43 +00003435 if (((cur->type == XML_ELEMENT_NODE) ||
3436 (cur->type == XML_XINCLUDE_START) ||
3437 (cur->type == XML_XINCLUDE_END)) &&
3438 (cur->nsDef != NULL))
3439 xmlFreeNsList(cur->nsDef);
Owen Taylor3473f882001-02-23 17:55:21 +00003440 xmlFree(cur);
3441}
3442
3443/**
3444 * xmlUnlinkNode:
3445 * @cur: the node
3446 *
3447 * Unlink a node from it's current context, the node is not freed
3448 */
3449void
3450xmlUnlinkNode(xmlNodePtr cur) {
3451 if (cur == NULL) {
3452#ifdef DEBUG_TREE
3453 xmlGenericError(xmlGenericErrorContext,
3454 "xmlUnlinkNode : node == NULL\n");
3455#endif
3456 return;
3457 }
Daniel Veillard29e43992001-12-13 22:21:58 +00003458 if (cur->type == XML_DTD_NODE) {
3459 xmlDocPtr doc;
3460 doc = cur->doc;
Daniel Veillarda067e652003-05-01 08:03:46 +00003461 if (doc != NULL) {
3462 if (doc->intSubset == (xmlDtdPtr) cur)
3463 doc->intSubset = NULL;
3464 if (doc->extSubset == (xmlDtdPtr) cur)
3465 doc->extSubset = NULL;
3466 }
Daniel Veillard29e43992001-12-13 22:21:58 +00003467 }
Daniel Veillardc169f8b2002-01-22 21:40:13 +00003468 if (cur->parent != NULL) {
3469 xmlNodePtr parent;
3470 parent = cur->parent;
3471 if (cur->type == XML_ATTRIBUTE_NODE) {
3472 if (parent->properties == (xmlAttrPtr) cur)
3473 parent->properties = ((xmlAttrPtr) cur)->next;
3474 } else {
3475 if (parent->children == cur)
3476 parent->children = cur->next;
3477 if (parent->last == cur)
3478 parent->last = cur->prev;
3479 }
3480 cur->parent = NULL;
3481 }
Owen Taylor3473f882001-02-23 17:55:21 +00003482 if (cur->next != NULL)
3483 cur->next->prev = cur->prev;
3484 if (cur->prev != NULL)
3485 cur->prev->next = cur->next;
3486 cur->next = cur->prev = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00003487}
3488
Daniel Veillard2156d432004-03-04 15:59:36 +00003489#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00003490/**
3491 * xmlReplaceNode:
3492 * @old: the old node
3493 * @cur: the node
3494 *
William M. Brackd7cf7f82003-11-14 07:13:16 +00003495 * Unlink the old node from its current context, prune the new one
Daniel Veillardd1640922001-12-17 15:30:10 +00003496 * at the same place. If @cur was already inserted in a document it is
Owen Taylor3473f882001-02-23 17:55:21 +00003497 * first unlinked from its existing context.
3498 *
Daniel Veillardd1640922001-12-17 15:30:10 +00003499 * Returns the @old node
Owen Taylor3473f882001-02-23 17:55:21 +00003500 */
3501xmlNodePtr
3502xmlReplaceNode(xmlNodePtr old, xmlNodePtr cur) {
Daniel Veillardce244ad2004-11-05 10:03:46 +00003503 if (old == cur) return(NULL);
Daniel Veillarda03e3652004-11-02 18:45:30 +00003504 if ((old == NULL) || (old->parent == NULL)) {
Owen Taylor3473f882001-02-23 17:55:21 +00003505#ifdef DEBUG_TREE
3506 xmlGenericError(xmlGenericErrorContext,
Daniel Veillarda03e3652004-11-02 18:45:30 +00003507 "xmlReplaceNode : old == NULL or without parent\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003508#endif
3509 return(NULL);
3510 }
3511 if (cur == NULL) {
3512 xmlUnlinkNode(old);
3513 return(old);
3514 }
3515 if (cur == old) {
3516 return(old);
3517 }
Daniel Veillardc169f8b2002-01-22 21:40:13 +00003518 if ((old->type==XML_ATTRIBUTE_NODE) && (cur->type!=XML_ATTRIBUTE_NODE)) {
3519#ifdef DEBUG_TREE
3520 xmlGenericError(xmlGenericErrorContext,
3521 "xmlReplaceNode : Trying to replace attribute node with other node type\n");
3522#endif
3523 return(old);
3524 }
3525 if ((cur->type==XML_ATTRIBUTE_NODE) && (old->type!=XML_ATTRIBUTE_NODE)) {
3526#ifdef DEBUG_TREE
3527 xmlGenericError(xmlGenericErrorContext,
3528 "xmlReplaceNode : Trying to replace a non-attribute node with attribute node\n");
3529#endif
3530 return(old);
3531 }
Owen Taylor3473f882001-02-23 17:55:21 +00003532 xmlUnlinkNode(cur);
Daniel Veillard64d7d122005-05-11 18:03:42 +00003533 xmlSetTreeDoc(cur, old->doc);
Owen Taylor3473f882001-02-23 17:55:21 +00003534 cur->parent = old->parent;
3535 cur->next = old->next;
3536 if (cur->next != NULL)
3537 cur->next->prev = cur;
3538 cur->prev = old->prev;
3539 if (cur->prev != NULL)
3540 cur->prev->next = cur;
3541 if (cur->parent != NULL) {
Daniel Veillardc169f8b2002-01-22 21:40:13 +00003542 if (cur->type == XML_ATTRIBUTE_NODE) {
3543 if (cur->parent->properties == (xmlAttrPtr)old)
3544 cur->parent->properties = ((xmlAttrPtr) cur);
3545 } else {
3546 if (cur->parent->children == old)
3547 cur->parent->children = cur;
3548 if (cur->parent->last == old)
3549 cur->parent->last = cur;
3550 }
Owen Taylor3473f882001-02-23 17:55:21 +00003551 }
3552 old->next = old->prev = NULL;
3553 old->parent = NULL;
3554 return(old);
3555}
Daniel Veillard652327a2003-09-29 18:02:38 +00003556#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00003557
3558/************************************************************************
3559 * *
3560 * Copy operations *
3561 * *
3562 ************************************************************************/
3563
3564/**
3565 * xmlCopyNamespace:
3566 * @cur: the namespace
3567 *
3568 * Do a copy of the namespace.
3569 *
Daniel Veillardd1640922001-12-17 15:30:10 +00003570 * Returns: a new #xmlNsPtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00003571 */
3572xmlNsPtr
3573xmlCopyNamespace(xmlNsPtr cur) {
3574 xmlNsPtr ret;
3575
3576 if (cur == NULL) return(NULL);
3577 switch (cur->type) {
3578 case XML_LOCAL_NAMESPACE:
3579 ret = xmlNewNs(NULL, cur->href, cur->prefix);
3580 break;
3581 default:
3582#ifdef DEBUG_TREE
3583 xmlGenericError(xmlGenericErrorContext,
3584 "xmlCopyNamespace: invalid type %d\n", cur->type);
3585#endif
3586 return(NULL);
3587 }
3588 return(ret);
3589}
3590
3591/**
3592 * xmlCopyNamespaceList:
3593 * @cur: the first namespace
3594 *
3595 * Do a copy of an namespace list.
3596 *
Daniel Veillardd1640922001-12-17 15:30:10 +00003597 * Returns: a new #xmlNsPtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00003598 */
3599xmlNsPtr
3600xmlCopyNamespaceList(xmlNsPtr cur) {
3601 xmlNsPtr ret = NULL;
3602 xmlNsPtr p = NULL,q;
3603
3604 while (cur != NULL) {
3605 q = xmlCopyNamespace(cur);
3606 if (p == NULL) {
3607 ret = p = q;
3608 } else {
3609 p->next = q;
3610 p = q;
3611 }
3612 cur = cur->next;
3613 }
3614 return(ret);
3615}
3616
3617static xmlNodePtr
3618xmlStaticCopyNodeList(xmlNodePtr node, xmlDocPtr doc, xmlNodePtr parent);
Rob Richards19dc9612005-10-28 16:15:16 +00003619
3620static xmlAttrPtr
3621xmlCopyPropInternal(xmlDocPtr doc, xmlNodePtr target, xmlAttrPtr cur) {
Owen Taylor3473f882001-02-23 17:55:21 +00003622 xmlAttrPtr ret;
3623
3624 if (cur == NULL) return(NULL);
3625 if (target != NULL)
3626 ret = xmlNewDocProp(target->doc, cur->name, NULL);
Rob Richards19dc9612005-10-28 16:15:16 +00003627 else if (doc != NULL)
3628 ret = xmlNewDocProp(doc, cur->name, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003629 else if (cur->parent != NULL)
3630 ret = xmlNewDocProp(cur->parent->doc, cur->name, NULL);
3631 else if (cur->children != NULL)
3632 ret = xmlNewDocProp(cur->children->doc, cur->name, NULL);
3633 else
3634 ret = xmlNewDocProp(NULL, cur->name, NULL);
3635 if (ret == NULL) return(NULL);
3636 ret->parent = target;
Daniel Veillardd4f41aa2002-03-03 14:13:46 +00003637
Owen Taylor3473f882001-02-23 17:55:21 +00003638 if ((cur->ns != NULL) && (target != NULL)) {
Daniel Veillard8107a222002-01-13 14:10:10 +00003639 xmlNsPtr ns;
Daniel Veillard652327a2003-09-29 18:02:38 +00003640
Daniel Veillardd4f41aa2002-03-03 14:13:46 +00003641 ns = xmlSearchNs(target->doc, target, cur->ns->prefix);
3642 if (ns == NULL) {
3643 /*
3644 * Humm, we are copying an element whose namespace is defined
3645 * out of the new tree scope. Search it in the original tree
3646 * and add it at the top of the new tree
3647 */
3648 ns = xmlSearchNs(cur->doc, cur->parent, cur->ns->prefix);
3649 if (ns != NULL) {
3650 xmlNodePtr root = target;
3651 xmlNodePtr pred = NULL;
3652
3653 while (root->parent != NULL) {
3654 pred = root;
3655 root = root->parent;
3656 }
3657 if (root == (xmlNodePtr) target->doc) {
3658 /* correct possibly cycling above the document elt */
3659 root = pred;
3660 }
3661 ret->ns = xmlNewNs(root, ns->href, ns->prefix);
3662 }
3663 } else {
3664 /*
3665 * we have to find something appropriate here since
3666 * we cant be sure, that the namespce we found is identified
3667 * by the prefix
3668 */
Daniel Veillard044fc6b2002-03-04 17:09:44 +00003669 if (xmlStrEqual(ns->href, cur->ns->href)) {
Daniel Veillardd4f41aa2002-03-03 14:13:46 +00003670 /* this is the nice case */
3671 ret->ns = ns;
3672 } else {
3673 /*
3674 * we are in trouble: we need a new reconcilied namespace.
3675 * This is expensive
3676 */
3677 ret->ns = xmlNewReconciliedNs(target->doc, target, cur->ns);
3678 }
3679 }
3680
Owen Taylor3473f882001-02-23 17:55:21 +00003681 } else
3682 ret->ns = NULL;
3683
3684 if (cur->children != NULL) {
3685 xmlNodePtr tmp;
3686
3687 ret->children = xmlStaticCopyNodeList(cur->children, ret->doc, (xmlNodePtr) ret);
3688 ret->last = NULL;
3689 tmp = ret->children;
3690 while (tmp != NULL) {
3691 /* tmp->parent = (xmlNodePtr)ret; */
3692 if (tmp->next == NULL)
3693 ret->last = tmp;
3694 tmp = tmp->next;
3695 }
3696 }
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00003697 /*
3698 * Try to handle IDs
3699 */
Daniel Veillarda3db2e32002-03-08 15:46:57 +00003700 if ((target!= NULL) && (cur!= NULL) &&
3701 (target->doc != NULL) && (cur->doc != NULL) &&
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00003702 (cur->doc->ids != NULL) && (cur->parent != NULL)) {
3703 if (xmlIsID(cur->doc, cur->parent, cur)) {
3704 xmlChar *id;
3705
3706 id = xmlNodeListGetString(cur->doc, cur->children, 1);
3707 if (id != NULL) {
3708 xmlAddID(NULL, target->doc, id, ret);
3709 xmlFree(id);
3710 }
3711 }
3712 }
Owen Taylor3473f882001-02-23 17:55:21 +00003713 return(ret);
3714}
3715
3716/**
Rob Richards19dc9612005-10-28 16:15:16 +00003717 * xmlCopyProp:
3718 * @target: the element where the attribute will be grafted
3719 * @cur: the attribute
3720 *
3721 * Do a copy of the attribute.
3722 *
3723 * Returns: a new #xmlAttrPtr, or NULL in case of error.
3724 */
3725xmlAttrPtr
3726xmlCopyProp(xmlNodePtr target, xmlAttrPtr cur) {
3727 return xmlCopyPropInternal(NULL, target, cur);
3728}
3729
3730/**
Owen Taylor3473f882001-02-23 17:55:21 +00003731 * xmlCopyPropList:
3732 * @target: the element where the attributes will be grafted
3733 * @cur: the first attribute
3734 *
3735 * Do a copy of an attribute list.
3736 *
Daniel Veillardd1640922001-12-17 15:30:10 +00003737 * Returns: a new #xmlAttrPtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00003738 */
3739xmlAttrPtr
3740xmlCopyPropList(xmlNodePtr target, xmlAttrPtr cur) {
3741 xmlAttrPtr ret = NULL;
3742 xmlAttrPtr p = NULL,q;
3743
3744 while (cur != NULL) {
3745 q = xmlCopyProp(target, cur);
William M. Brack13dfa872004-09-18 04:52:08 +00003746 if (q == NULL)
3747 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003748 if (p == NULL) {
3749 ret = p = q;
3750 } else {
3751 p->next = q;
3752 q->prev = p;
3753 p = q;
3754 }
3755 cur = cur->next;
3756 }
3757 return(ret);
3758}
3759
3760/*
Daniel Veillardd1640922001-12-17 15:30:10 +00003761 * NOTE about the CopyNode operations !
Owen Taylor3473f882001-02-23 17:55:21 +00003762 *
Daniel Veillardd1640922001-12-17 15:30:10 +00003763 * They are split into external and internal parts for one
Owen Taylor3473f882001-02-23 17:55:21 +00003764 * tricky reason: namespaces. Doing a direct copy of a node
3765 * say RPM:Copyright without changing the namespace pointer to
3766 * something else can produce stale links. One way to do it is
3767 * to keep a reference counter but this doesn't work as soon
3768 * as one move the element or the subtree out of the scope of
3769 * the existing namespace. The actual solution seems to add
3770 * a copy of the namespace at the top of the copied tree if
3771 * not available in the subtree.
3772 * Hence two functions, the public front-end call the inner ones
William M. Brack57e9e912004-03-09 16:19:02 +00003773 * The argument "recursive" normally indicates a recursive copy
3774 * of the node with values 0 (no) and 1 (yes). For XInclude,
3775 * however, we allow a value of 2 to indicate copy properties and
3776 * namespace info, but don't recurse on children.
Owen Taylor3473f882001-02-23 17:55:21 +00003777 */
3778
3779static xmlNodePtr
Daniel Veillard3ec4c612001-08-28 20:39:49 +00003780xmlStaticCopyNode(const xmlNodePtr node, xmlDocPtr doc, xmlNodePtr parent,
William M. Brack57e9e912004-03-09 16:19:02 +00003781 int extended) {
Owen Taylor3473f882001-02-23 17:55:21 +00003782 xmlNodePtr ret;
3783
3784 if (node == NULL) return(NULL);
Daniel Veillard39196eb2001-06-19 18:09:42 +00003785 switch (node->type) {
3786 case XML_TEXT_NODE:
3787 case XML_CDATA_SECTION_NODE:
3788 case XML_ELEMENT_NODE:
Daniel Veillardec6725e2002-09-05 11:12:45 +00003789 case XML_DOCUMENT_FRAG_NODE:
Daniel Veillard39196eb2001-06-19 18:09:42 +00003790 case XML_ENTITY_REF_NODE:
3791 case XML_ENTITY_NODE:
3792 case XML_PI_NODE:
3793 case XML_COMMENT_NODE:
Daniel Veillard1d0bfab2001-07-26 11:49:41 +00003794 case XML_XINCLUDE_START:
3795 case XML_XINCLUDE_END:
3796 break;
3797 case XML_ATTRIBUTE_NODE:
Rob Richards19dc9612005-10-28 16:15:16 +00003798 return((xmlNodePtr) xmlCopyPropInternal(doc, parent, (xmlAttrPtr) node));
Daniel Veillard1d0bfab2001-07-26 11:49:41 +00003799 case XML_NAMESPACE_DECL:
3800 return((xmlNodePtr) xmlCopyNamespaceList((xmlNsPtr) node));
3801
Daniel Veillard39196eb2001-06-19 18:09:42 +00003802 case XML_DOCUMENT_NODE:
3803 case XML_HTML_DOCUMENT_NODE:
3804#ifdef LIBXML_DOCB_ENABLED
3805 case XML_DOCB_DOCUMENT_NODE:
3806#endif
Daniel Veillard652327a2003-09-29 18:02:38 +00003807#ifdef LIBXML_TREE_ENABLED
William M. Brack57e9e912004-03-09 16:19:02 +00003808 return((xmlNodePtr) xmlCopyDoc((xmlDocPtr) node, extended));
Daniel Veillard652327a2003-09-29 18:02:38 +00003809#endif /* LIBXML_TREE_ENABLED */
Daniel Veillard39196eb2001-06-19 18:09:42 +00003810 case XML_DOCUMENT_TYPE_NODE:
Daniel Veillard39196eb2001-06-19 18:09:42 +00003811 case XML_NOTATION_NODE:
3812 case XML_DTD_NODE:
3813 case XML_ELEMENT_DECL:
3814 case XML_ATTRIBUTE_DECL:
3815 case XML_ENTITY_DECL:
3816 return(NULL);
3817 }
Daniel Veillardb33c2012001-04-25 12:59:04 +00003818
Owen Taylor3473f882001-02-23 17:55:21 +00003819 /*
3820 * Allocate a new node and fill the fields.
3821 */
3822 ret = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
3823 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00003824 xmlTreeErrMemory("copying node");
Owen Taylor3473f882001-02-23 17:55:21 +00003825 return(NULL);
3826 }
3827 memset(ret, 0, sizeof(xmlNode));
3828 ret->type = node->type;
3829
3830 ret->doc = doc;
3831 ret->parent = parent;
3832 if (node->name == xmlStringText)
3833 ret->name = xmlStringText;
3834 else if (node->name == xmlStringTextNoenc)
3835 ret->name = xmlStringTextNoenc;
3836 else if (node->name == xmlStringComment)
3837 ret->name = xmlStringComment;
Daniel Veillard03a53c32004-10-26 16:06:51 +00003838 else if (node->name != NULL) {
3839 if ((doc != NULL) && (doc->dict != NULL))
3840 ret->name = xmlDictLookup(doc->dict, node->name, -1);
3841 else
3842 ret->name = xmlStrdup(node->name);
3843 }
Daniel Veillard7db37732001-07-12 01:20:08 +00003844 if ((node->type != XML_ELEMENT_NODE) &&
3845 (node->content != NULL) &&
3846 (node->type != XML_ENTITY_REF_NODE) &&
3847 (node->type != XML_XINCLUDE_END) &&
3848 (node->type != XML_XINCLUDE_START)) {
Owen Taylor3473f882001-02-23 17:55:21 +00003849 ret->content = xmlStrdup(node->content);
Daniel Veillard8107a222002-01-13 14:10:10 +00003850 }else{
3851 if (node->type == XML_ELEMENT_NODE)
Daniel Veillard3e35f8e2003-10-21 00:05:38 +00003852 ret->line = node->line;
Owen Taylor3473f882001-02-23 17:55:21 +00003853 }
Daniel Veillardacb2bda2002-01-13 16:15:43 +00003854 if (parent != NULL) {
3855 xmlNodePtr tmp;
3856
Daniel Veillard8a1b1852003-01-05 22:37:17 +00003857 /*
3858 * this is a tricky part for the node register thing:
3859 * in case ret does get coalesced in xmlAddChild
3860 * the deregister-node callback is called; so we register ret now already
3861 */
Daniel Veillarda880b122003-04-21 21:36:41 +00003862 if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
Daniel Veillard8a1b1852003-01-05 22:37:17 +00003863 xmlRegisterNodeDefaultValue((xmlNodePtr)ret);
3864
Daniel Veillardacb2bda2002-01-13 16:15:43 +00003865 tmp = xmlAddChild(parent, ret);
3866 /* node could have coalesced */
3867 if (tmp != ret)
3868 return(tmp);
3869 }
Owen Taylor3473f882001-02-23 17:55:21 +00003870
William M. Brack57e9e912004-03-09 16:19:02 +00003871 if (!extended)
Daniel Veillard8a1b1852003-01-05 22:37:17 +00003872 goto out;
Daniel Veillard8874b942005-08-25 13:19:21 +00003873 if ((node->type == XML_ELEMENT_NODE) && (node->nsDef != NULL))
Owen Taylor3473f882001-02-23 17:55:21 +00003874 ret->nsDef = xmlCopyNamespaceList(node->nsDef);
3875
3876 if (node->ns != NULL) {
3877 xmlNsPtr ns;
3878
3879 ns = xmlSearchNs(doc, ret, node->ns->prefix);
3880 if (ns == NULL) {
3881 /*
3882 * Humm, we are copying an element whose namespace is defined
3883 * out of the new tree scope. Search it in the original tree
3884 * and add it at the top of the new tree
3885 */
3886 ns = xmlSearchNs(node->doc, node, node->ns->prefix);
3887 if (ns != NULL) {
3888 xmlNodePtr root = ret;
3889
3890 while (root->parent != NULL) root = root->parent;
Daniel Veillarde82a9922001-04-22 12:12:58 +00003891 ret->ns = xmlNewNs(root, ns->href, ns->prefix);
Owen Taylor3473f882001-02-23 17:55:21 +00003892 }
3893 } else {
3894 /*
3895 * reference the existing namespace definition in our own tree.
3896 */
3897 ret->ns = ns;
3898 }
3899 }
Daniel Veillard8874b942005-08-25 13:19:21 +00003900 if ((node->type == XML_ELEMENT_NODE) && (node->properties != NULL))
Owen Taylor3473f882001-02-23 17:55:21 +00003901 ret->properties = xmlCopyPropList(ret, node->properties);
Daniel Veillardb33c2012001-04-25 12:59:04 +00003902 if (node->type == XML_ENTITY_REF_NODE) {
3903 if ((doc == NULL) || (node->doc != doc)) {
3904 /*
3905 * The copied node will go into a separate document, so
Daniel Veillardd1640922001-12-17 15:30:10 +00003906 * to avoid dangling references to the ENTITY_DECL node
Daniel Veillardb33c2012001-04-25 12:59:04 +00003907 * we cannot keep the reference. Try to find it in the
3908 * target document.
3909 */
3910 ret->children = (xmlNodePtr) xmlGetDocEntity(doc, ret->name);
3911 } else {
3912 ret->children = node->children;
3913 }
Daniel Veillard0ec98632001-11-14 15:04:32 +00003914 ret->last = ret->children;
William M. Brack57e9e912004-03-09 16:19:02 +00003915 } else if ((node->children != NULL) && (extended != 2)) {
Owen Taylor3473f882001-02-23 17:55:21 +00003916 ret->children = xmlStaticCopyNodeList(node->children, doc, ret);
Daniel Veillard0ec98632001-11-14 15:04:32 +00003917 UPDATE_LAST_CHILD_AND_PARENT(ret)
3918 }
Daniel Veillard8a1b1852003-01-05 22:37:17 +00003919
3920out:
3921 /* if parent != NULL we already registered the node above */
Daniel Veillardac996a12004-07-30 12:02:58 +00003922 if ((parent == NULL) &&
3923 ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue)))
Daniel Veillard8a1b1852003-01-05 22:37:17 +00003924 xmlRegisterNodeDefaultValue((xmlNodePtr)ret);
Owen Taylor3473f882001-02-23 17:55:21 +00003925 return(ret);
3926}
3927
3928static xmlNodePtr
3929xmlStaticCopyNodeList(xmlNodePtr node, xmlDocPtr doc, xmlNodePtr parent) {
3930 xmlNodePtr ret = NULL;
3931 xmlNodePtr p = NULL,q;
3932
3933 while (node != NULL) {
Daniel Veillard652327a2003-09-29 18:02:38 +00003934#ifdef LIBXML_TREE_ENABLED
Daniel Veillard1d0bfab2001-07-26 11:49:41 +00003935 if (node->type == XML_DTD_NODE ) {
Daniel Veillard4497e692001-06-09 14:19:02 +00003936 if (doc == NULL) {
3937 node = node->next;
3938 continue;
3939 }
Daniel Veillardb33c2012001-04-25 12:59:04 +00003940 if (doc->intSubset == NULL) {
3941 q = (xmlNodePtr) xmlCopyDtd( (xmlDtdPtr) node );
3942 q->doc = doc;
3943 q->parent = parent;
3944 doc->intSubset = (xmlDtdPtr) q;
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00003945 xmlAddChild(parent, q);
Daniel Veillardb33c2012001-04-25 12:59:04 +00003946 } else {
3947 q = (xmlNodePtr) doc->intSubset;
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00003948 xmlAddChild(parent, q);
Daniel Veillardb33c2012001-04-25 12:59:04 +00003949 }
3950 } else
Daniel Veillard652327a2003-09-29 18:02:38 +00003951#endif /* LIBXML_TREE_ENABLED */
Daniel Veillardb33c2012001-04-25 12:59:04 +00003952 q = xmlStaticCopyNode(node, doc, parent, 1);
Owen Taylor3473f882001-02-23 17:55:21 +00003953 if (ret == NULL) {
3954 q->prev = NULL;
3955 ret = p = q;
Daniel Veillardacb2bda2002-01-13 16:15:43 +00003956 } else if (p != q) {
3957 /* the test is required if xmlStaticCopyNode coalesced 2 text nodes */
Owen Taylor3473f882001-02-23 17:55:21 +00003958 p->next = q;
3959 q->prev = p;
3960 p = q;
3961 }
3962 node = node->next;
3963 }
3964 return(ret);
3965}
3966
3967/**
3968 * xmlCopyNode:
3969 * @node: the node
William M. Brack57e9e912004-03-09 16:19:02 +00003970 * @extended: if 1 do a recursive copy (properties, namespaces and children
3971 * when applicable)
3972 * if 2 copy properties and namespaces (when applicable)
Owen Taylor3473f882001-02-23 17:55:21 +00003973 *
3974 * Do a copy of the node.
3975 *
Daniel Veillardd1640922001-12-17 15:30:10 +00003976 * Returns: a new #xmlNodePtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00003977 */
3978xmlNodePtr
William M. Brack57e9e912004-03-09 16:19:02 +00003979xmlCopyNode(const xmlNodePtr node, int extended) {
Owen Taylor3473f882001-02-23 17:55:21 +00003980 xmlNodePtr ret;
3981
William M. Brack57e9e912004-03-09 16:19:02 +00003982 ret = xmlStaticCopyNode(node, NULL, NULL, extended);
Owen Taylor3473f882001-02-23 17:55:21 +00003983 return(ret);
3984}
3985
3986/**
Daniel Veillard82daa812001-04-12 08:55:36 +00003987 * xmlDocCopyNode:
3988 * @node: the node
Daniel Veillardd1640922001-12-17 15:30:10 +00003989 * @doc: the document
William M. Brack57e9e912004-03-09 16:19:02 +00003990 * @extended: if 1 do a recursive copy (properties, namespaces and children
3991 * when applicable)
3992 * if 2 copy properties and namespaces (when applicable)
Daniel Veillard82daa812001-04-12 08:55:36 +00003993 *
3994 * Do a copy of the node to a given document.
3995 *
Daniel Veillardd1640922001-12-17 15:30:10 +00003996 * Returns: a new #xmlNodePtr, or NULL in case of error.
Daniel Veillard82daa812001-04-12 08:55:36 +00003997 */
3998xmlNodePtr
William M. Brack57e9e912004-03-09 16:19:02 +00003999xmlDocCopyNode(const xmlNodePtr node, xmlDocPtr doc, int extended) {
Daniel Veillard82daa812001-04-12 08:55:36 +00004000 xmlNodePtr ret;
4001
William M. Brack57e9e912004-03-09 16:19:02 +00004002 ret = xmlStaticCopyNode(node, doc, NULL, extended);
Daniel Veillard82daa812001-04-12 08:55:36 +00004003 return(ret);
4004}
4005
4006/**
Daniel Veillard03a53c32004-10-26 16:06:51 +00004007 * xmlDocCopyNodeList:
4008 * @doc: the target document
4009 * @node: the first node in the list.
4010 *
4011 * Do a recursive copy of the node list.
4012 *
4013 * Returns: a new #xmlNodePtr, or NULL in case of error.
4014 */
4015xmlNodePtr xmlDocCopyNodeList(xmlDocPtr doc, const xmlNodePtr node) {
4016 xmlNodePtr ret = xmlStaticCopyNodeList(node, doc, NULL);
4017 return(ret);
4018}
4019
4020/**
Owen Taylor3473f882001-02-23 17:55:21 +00004021 * xmlCopyNodeList:
4022 * @node: the first node in the list.
4023 *
4024 * Do a recursive copy of the node list.
Daniel Veillard03a53c32004-10-26 16:06:51 +00004025 * Use xmlDocCopyNodeList() if possible to ensure string interning.
Owen Taylor3473f882001-02-23 17:55:21 +00004026 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004027 * Returns: a new #xmlNodePtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00004028 */
Daniel Veillard3ec4c612001-08-28 20:39:49 +00004029xmlNodePtr xmlCopyNodeList(const xmlNodePtr node) {
Owen Taylor3473f882001-02-23 17:55:21 +00004030 xmlNodePtr ret = xmlStaticCopyNodeList(node, NULL, NULL);
4031 return(ret);
4032}
4033
Daniel Veillard2156d432004-03-04 15:59:36 +00004034#if defined(LIBXML_TREE_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00004035/**
Owen Taylor3473f882001-02-23 17:55:21 +00004036 * xmlCopyDtd:
4037 * @dtd: the dtd
4038 *
4039 * Do a copy of the dtd.
4040 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004041 * Returns: a new #xmlDtdPtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00004042 */
4043xmlDtdPtr
4044xmlCopyDtd(xmlDtdPtr dtd) {
4045 xmlDtdPtr ret;
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004046 xmlNodePtr cur, p = NULL, q;
Owen Taylor3473f882001-02-23 17:55:21 +00004047
4048 if (dtd == NULL) return(NULL);
4049 ret = xmlNewDtd(NULL, dtd->name, dtd->ExternalID, dtd->SystemID);
4050 if (ret == NULL) return(NULL);
4051 if (dtd->entities != NULL)
4052 ret->entities = (void *) xmlCopyEntitiesTable(
4053 (xmlEntitiesTablePtr) dtd->entities);
4054 if (dtd->notations != NULL)
4055 ret->notations = (void *) xmlCopyNotationTable(
4056 (xmlNotationTablePtr) dtd->notations);
4057 if (dtd->elements != NULL)
4058 ret->elements = (void *) xmlCopyElementTable(
4059 (xmlElementTablePtr) dtd->elements);
4060 if (dtd->attributes != NULL)
4061 ret->attributes = (void *) xmlCopyAttributeTable(
4062 (xmlAttributeTablePtr) dtd->attributes);
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004063 if (dtd->pentities != NULL)
4064 ret->pentities = (void *) xmlCopyEntitiesTable(
4065 (xmlEntitiesTablePtr) dtd->pentities);
4066
4067 cur = dtd->children;
4068 while (cur != NULL) {
4069 q = NULL;
4070
4071 if (cur->type == XML_ENTITY_DECL) {
4072 xmlEntityPtr tmp = (xmlEntityPtr) cur;
4073 switch (tmp->etype) {
4074 case XML_INTERNAL_GENERAL_ENTITY:
4075 case XML_EXTERNAL_GENERAL_PARSED_ENTITY:
4076 case XML_EXTERNAL_GENERAL_UNPARSED_ENTITY:
4077 q = (xmlNodePtr) xmlGetEntityFromDtd(ret, tmp->name);
4078 break;
4079 case XML_INTERNAL_PARAMETER_ENTITY:
4080 case XML_EXTERNAL_PARAMETER_ENTITY:
4081 q = (xmlNodePtr)
4082 xmlGetParameterEntityFromDtd(ret, tmp->name);
4083 break;
4084 case XML_INTERNAL_PREDEFINED_ENTITY:
4085 break;
4086 }
4087 } else if (cur->type == XML_ELEMENT_DECL) {
4088 xmlElementPtr tmp = (xmlElementPtr) cur;
4089 q = (xmlNodePtr)
4090 xmlGetDtdQElementDesc(ret, tmp->name, tmp->prefix);
4091 } else if (cur->type == XML_ATTRIBUTE_DECL) {
4092 xmlAttributePtr tmp = (xmlAttributePtr) cur;
4093 q = (xmlNodePtr)
4094 xmlGetDtdQAttrDesc(ret, tmp->elem, tmp->name, tmp->prefix);
4095 } else if (cur->type == XML_COMMENT_NODE) {
4096 q = xmlCopyNode(cur, 0);
4097 }
4098
4099 if (q == NULL) {
4100 cur = cur->next;
4101 continue;
4102 }
4103
4104 if (p == NULL)
4105 ret->children = q;
4106 else
4107 p->next = q;
4108
4109 q->prev = p;
4110 q->parent = (xmlNodePtr) ret;
4111 q->next = NULL;
4112 ret->last = q;
4113 p = q;
4114 cur = cur->next;
4115 }
4116
Owen Taylor3473f882001-02-23 17:55:21 +00004117 return(ret);
4118}
Daniel Veillard2156d432004-03-04 15:59:36 +00004119#endif
Owen Taylor3473f882001-02-23 17:55:21 +00004120
Daniel Veillard2156d432004-03-04 15:59:36 +00004121#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00004122/**
4123 * xmlCopyDoc:
4124 * @doc: the document
William M. Brack57e9e912004-03-09 16:19:02 +00004125 * @recursive: if not zero do a recursive copy.
Owen Taylor3473f882001-02-23 17:55:21 +00004126 *
4127 * Do a copy of the document info. If recursive, the content tree will
Daniel Veillardcbaf3992001-12-31 16:16:02 +00004128 * be copied too as well as DTD, namespaces and entities.
Owen Taylor3473f882001-02-23 17:55:21 +00004129 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004130 * Returns: a new #xmlDocPtr, or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00004131 */
4132xmlDocPtr
4133xmlCopyDoc(xmlDocPtr doc, int recursive) {
4134 xmlDocPtr ret;
4135
4136 if (doc == NULL) return(NULL);
4137 ret = xmlNewDoc(doc->version);
4138 if (ret == NULL) return(NULL);
4139 if (doc->name != NULL)
4140 ret->name = xmlMemStrdup(doc->name);
4141 if (doc->encoding != NULL)
4142 ret->encoding = xmlStrdup(doc->encoding);
Daniel Veillardf59507d2005-01-27 17:26:49 +00004143 if (doc->URL != NULL)
4144 ret->URL = xmlStrdup(doc->URL);
Owen Taylor3473f882001-02-23 17:55:21 +00004145 ret->charset = doc->charset;
4146 ret->compression = doc->compression;
4147 ret->standalone = doc->standalone;
4148 if (!recursive) return(ret);
4149
Daniel Veillardb33c2012001-04-25 12:59:04 +00004150 ret->last = NULL;
4151 ret->children = NULL;
Daniel Veillard2156d432004-03-04 15:59:36 +00004152#ifdef LIBXML_TREE_ENABLED
Daniel Veillardb33c2012001-04-25 12:59:04 +00004153 if (doc->intSubset != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00004154 ret->intSubset = xmlCopyDtd(doc->intSubset);
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +00004155 xmlSetTreeDoc((xmlNodePtr)ret->intSubset, ret);
Daniel Veillardb33c2012001-04-25 12:59:04 +00004156 ret->intSubset->parent = ret;
4157 }
Daniel Veillard2156d432004-03-04 15:59:36 +00004158#endif
Owen Taylor3473f882001-02-23 17:55:21 +00004159 if (doc->oldNs != NULL)
4160 ret->oldNs = xmlCopyNamespaceList(doc->oldNs);
4161 if (doc->children != NULL) {
4162 xmlNodePtr tmp;
Daniel Veillardb33c2012001-04-25 12:59:04 +00004163
4164 ret->children = xmlStaticCopyNodeList(doc->children, ret,
4165 (xmlNodePtr)ret);
Owen Taylor3473f882001-02-23 17:55:21 +00004166 ret->last = NULL;
4167 tmp = ret->children;
4168 while (tmp != NULL) {
4169 if (tmp->next == NULL)
4170 ret->last = tmp;
4171 tmp = tmp->next;
4172 }
4173 }
4174 return(ret);
4175}
Daniel Veillard652327a2003-09-29 18:02:38 +00004176#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00004177
4178/************************************************************************
4179 * *
4180 * Content access functions *
4181 * *
4182 ************************************************************************/
4183
4184/**
Daniel Veillard8faa7832001-11-26 15:58:08 +00004185 * xmlGetLineNo:
Daniel Veillard01c13b52002-12-10 15:19:08 +00004186 * @node: valid node
Daniel Veillard8faa7832001-11-26 15:58:08 +00004187 *
William M. Brackd7cf7f82003-11-14 07:13:16 +00004188 * Get line number of @node. This requires activation of this option
Daniel Veillardd1640922001-12-17 15:30:10 +00004189 * before invoking the parser by calling xmlLineNumbersDefault(1)
Daniel Veillard8faa7832001-11-26 15:58:08 +00004190 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004191 * Returns the line number if successful, -1 otherwise
Daniel Veillard8faa7832001-11-26 15:58:08 +00004192 */
4193long
4194xmlGetLineNo(xmlNodePtr node)
4195{
4196 long result = -1;
4197
4198 if (!node)
4199 return result;
Daniel Veillard73da77e2005-08-24 14:05:37 +00004200 if ((node->type == XML_ELEMENT_NODE) ||
4201 (node->type == XML_TEXT_NODE) ||
4202 (node->type == XML_COMMENT_NODE) ||
4203 (node->type == XML_PI_NODE))
Daniel Veillard3e35f8e2003-10-21 00:05:38 +00004204 result = (long) node->line;
Daniel Veillard8faa7832001-11-26 15:58:08 +00004205 else if ((node->prev != NULL) &&
4206 ((node->prev->type == XML_ELEMENT_NODE) ||
Daniel Veillard73da77e2005-08-24 14:05:37 +00004207 (node->prev->type == XML_TEXT_NODE) ||
4208 (node->prev->type == XML_COMMENT_NODE) ||
4209 (node->prev->type == XML_PI_NODE)))
Daniel Veillard8faa7832001-11-26 15:58:08 +00004210 result = xmlGetLineNo(node->prev);
4211 else if ((node->parent != NULL) &&
Daniel Veillard73da77e2005-08-24 14:05:37 +00004212 (node->parent->type == XML_ELEMENT_NODE))
Daniel Veillard8faa7832001-11-26 15:58:08 +00004213 result = xmlGetLineNo(node->parent);
4214
4215 return result;
4216}
4217
Daniel Veillard2156d432004-03-04 15:59:36 +00004218#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_DEBUG_ENABLED)
Daniel Veillard8faa7832001-11-26 15:58:08 +00004219/**
4220 * xmlGetNodePath:
4221 * @node: a node
4222 *
4223 * Build a structure based Path for the given node
4224 *
4225 * Returns the new path or NULL in case of error. The caller must free
4226 * the returned string
4227 */
4228xmlChar *
4229xmlGetNodePath(xmlNodePtr node)
4230{
4231 xmlNodePtr cur, tmp, next;
4232 xmlChar *buffer = NULL, *temp;
4233 size_t buf_len;
4234 xmlChar *buf;
Daniel Veillard96c3a3b2002-10-14 15:39:04 +00004235 const char *sep;
Daniel Veillard8faa7832001-11-26 15:58:08 +00004236 const char *name;
4237 char nametemp[100];
4238 int occur = 0;
4239
4240 if (node == NULL)
4241 return (NULL);
4242
4243 buf_len = 500;
Daniel Veillard3c908dc2003-04-19 00:07:51 +00004244 buffer = (xmlChar *) xmlMallocAtomic(buf_len * sizeof(xmlChar));
Daniel Veillard18ec16e2003-10-07 23:16:40 +00004245 if (buffer == NULL) {
4246 xmlTreeErrMemory("getting node path");
Daniel Veillard8faa7832001-11-26 15:58:08 +00004247 return (NULL);
Daniel Veillard18ec16e2003-10-07 23:16:40 +00004248 }
Daniel Veillard3c908dc2003-04-19 00:07:51 +00004249 buf = (xmlChar *) xmlMallocAtomic(buf_len * sizeof(xmlChar));
Daniel Veillard8faa7832001-11-26 15:58:08 +00004250 if (buf == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00004251 xmlTreeErrMemory("getting node path");
Daniel Veillard8faa7832001-11-26 15:58:08 +00004252 xmlFree(buffer);
4253 return (NULL);
4254 }
4255
4256 buffer[0] = 0;
4257 cur = node;
4258 do {
4259 name = "";
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00004260 sep = "?";
Daniel Veillard8faa7832001-11-26 15:58:08 +00004261 occur = 0;
4262 if ((cur->type == XML_DOCUMENT_NODE) ||
4263 (cur->type == XML_HTML_DOCUMENT_NODE)) {
4264 if (buffer[0] == '/')
4265 break;
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00004266 sep = "/";
Daniel Veillard8faa7832001-11-26 15:58:08 +00004267 next = NULL;
4268 } else if (cur->type == XML_ELEMENT_NODE) {
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00004269 sep = "/";
Daniel Veillard8faa7832001-11-26 15:58:08 +00004270 name = (const char *) cur->name;
4271 if (cur->ns) {
William M. Brack84d83e32003-12-23 03:45:17 +00004272 if (cur->ns->prefix != NULL)
William M. Brack13dfa872004-09-18 04:52:08 +00004273 snprintf(nametemp, sizeof(nametemp) - 1, "%s:%s",
4274 (char *)cur->ns->prefix, (char *)cur->name);
William M. Brack84d83e32003-12-23 03:45:17 +00004275 else
William M. Brack13dfa872004-09-18 04:52:08 +00004276 snprintf(nametemp, sizeof(nametemp) - 1, "%s",
4277 (char *)cur->name);
Daniel Veillard8faa7832001-11-26 15:58:08 +00004278 nametemp[sizeof(nametemp) - 1] = 0;
4279 name = nametemp;
4280 }
4281 next = cur->parent;
4282
4283 /*
4284 * Thumbler index computation
Daniel Veillardc00cda82003-04-07 10:22:39 +00004285 * TODO: the ocurence test seems bogus for namespaced names
Daniel Veillard8faa7832001-11-26 15:58:08 +00004286 */
4287 tmp = cur->prev;
4288 while (tmp != NULL) {
Daniel Veillard0f04f8e2002-09-17 23:04:40 +00004289 if ((tmp->type == XML_ELEMENT_NODE) &&
Daniel Veillard0996a162005-02-05 14:00:10 +00004290 (xmlStrEqual(cur->name, tmp->name)) &&
4291 ((tmp->ns == cur->ns) ||
4292 ((tmp->ns != NULL) && (cur->ns != NULL) &&
4293 (xmlStrEqual(cur->ns->prefix, tmp->ns->prefix)))))
Daniel Veillard8faa7832001-11-26 15:58:08 +00004294 occur++;
4295 tmp = tmp->prev;
4296 }
4297 if (occur == 0) {
4298 tmp = cur->next;
Daniel Veillard8606bbb2002-11-12 12:36:52 +00004299 while (tmp != NULL && occur == 0) {
4300 if ((tmp->type == XML_ELEMENT_NODE) &&
Daniel Veillard0996a162005-02-05 14:00:10 +00004301 (xmlStrEqual(cur->name, tmp->name)) &&
4302 ((tmp->ns == cur->ns) ||
4303 ((tmp->ns != NULL) && (cur->ns != NULL) &&
4304 (xmlStrEqual(cur->ns->prefix, tmp->ns->prefix)))))
Daniel Veillard8faa7832001-11-26 15:58:08 +00004305 occur++;
4306 tmp = tmp->next;
4307 }
4308 if (occur != 0)
4309 occur = 1;
4310 } else
4311 occur++;
Daniel Veillard8606bbb2002-11-12 12:36:52 +00004312 } else if (cur->type == XML_COMMENT_NODE) {
4313 sep = "/";
4314 name = "comment()";
4315 next = cur->parent;
4316
4317 /*
4318 * Thumbler index computation
4319 */
4320 tmp = cur->prev;
4321 while (tmp != NULL) {
4322 if (tmp->type == XML_COMMENT_NODE)
4323 occur++;
4324 tmp = tmp->prev;
4325 }
4326 if (occur == 0) {
4327 tmp = cur->next;
4328 while (tmp != NULL && occur == 0) {
4329 if (tmp->type == XML_COMMENT_NODE)
4330 occur++;
4331 tmp = tmp->next;
4332 }
4333 if (occur != 0)
4334 occur = 1;
4335 } else
4336 occur++;
4337 } else if ((cur->type == XML_TEXT_NODE) ||
4338 (cur->type == XML_CDATA_SECTION_NODE)) {
4339 sep = "/";
4340 name = "text()";
4341 next = cur->parent;
4342
4343 /*
4344 * Thumbler index computation
4345 */
4346 tmp = cur->prev;
4347 while (tmp != NULL) {
Kasimier T. Buchcikeb468702006-02-15 10:57:50 +00004348 if ((tmp->type == XML_TEXT_NODE) ||
4349 (tmp->type == XML_CDATA_SECTION_NODE))
Daniel Veillard8606bbb2002-11-12 12:36:52 +00004350 occur++;
4351 tmp = tmp->prev;
4352 }
Kasimier T. Buchcikeb468702006-02-15 10:57:50 +00004353 /*
4354 * Evaluate if this is the only text- or CDATA-section-node;
4355 * if yes, then we'll get "text()", otherwise "text()[1]".
4356 */
Daniel Veillard8606bbb2002-11-12 12:36:52 +00004357 if (occur == 0) {
4358 tmp = cur->next;
Kasimier T. Buchcikeb468702006-02-15 10:57:50 +00004359 while (tmp != NULL) {
4360 if ((tmp->type == XML_TEXT_NODE) ||
4361 (tmp->type == XML_CDATA_SECTION_NODE))
4362 {
4363 occur = 1;
4364 break;
4365 }
4366 tmp = tmp->next;
4367 }
Daniel Veillard8606bbb2002-11-12 12:36:52 +00004368 } else
4369 occur++;
4370 } else if (cur->type == XML_PI_NODE) {
4371 sep = "/";
4372 snprintf(nametemp, sizeof(nametemp) - 1,
William M. Brack13dfa872004-09-18 04:52:08 +00004373 "processing-instruction('%s')", (char *)cur->name);
Daniel Veillard8606bbb2002-11-12 12:36:52 +00004374 nametemp[sizeof(nametemp) - 1] = 0;
4375 name = nametemp;
4376
4377 next = cur->parent;
4378
4379 /*
4380 * Thumbler index computation
4381 */
4382 tmp = cur->prev;
4383 while (tmp != NULL) {
4384 if ((tmp->type == XML_PI_NODE) &&
4385 (xmlStrEqual(cur->name, tmp->name)))
4386 occur++;
4387 tmp = tmp->prev;
4388 }
4389 if (occur == 0) {
4390 tmp = cur->next;
4391 while (tmp != NULL && occur == 0) {
4392 if ((tmp->type == XML_PI_NODE) &&
4393 (xmlStrEqual(cur->name, tmp->name)))
4394 occur++;
4395 tmp = tmp->next;
4396 }
4397 if (occur != 0)
4398 occur = 1;
4399 } else
4400 occur++;
4401
Daniel Veillard8faa7832001-11-26 15:58:08 +00004402 } else if (cur->type == XML_ATTRIBUTE_NODE) {
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00004403 sep = "/@";
Daniel Veillard8faa7832001-11-26 15:58:08 +00004404 name = (const char *) (((xmlAttrPtr) cur)->name);
Daniel Veillard365c8062005-07-19 11:31:55 +00004405 if (cur->ns) {
4406 if (cur->ns->prefix != NULL)
4407 snprintf(nametemp, sizeof(nametemp) - 1, "%s:%s",
4408 (char *)cur->ns->prefix, (char *)cur->name);
4409 else
4410 snprintf(nametemp, sizeof(nametemp) - 1, "%s",
4411 (char *)cur->name);
4412 nametemp[sizeof(nametemp) - 1] = 0;
4413 name = nametemp;
4414 }
Daniel Veillard8faa7832001-11-26 15:58:08 +00004415 next = ((xmlAttrPtr) cur)->parent;
4416 } else {
4417 next = cur->parent;
4418 }
4419
4420 /*
4421 * Make sure there is enough room
4422 */
4423 if (xmlStrlen(buffer) + sizeof(nametemp) + 20 > buf_len) {
4424 buf_len =
4425 2 * buf_len + xmlStrlen(buffer) + sizeof(nametemp) + 20;
4426 temp = (xmlChar *) xmlRealloc(buffer, buf_len);
4427 if (temp == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00004428 xmlTreeErrMemory("getting node path");
Daniel Veillard8faa7832001-11-26 15:58:08 +00004429 xmlFree(buf);
4430 xmlFree(buffer);
4431 return (NULL);
4432 }
4433 buffer = temp;
4434 temp = (xmlChar *) xmlRealloc(buf, buf_len);
4435 if (temp == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00004436 xmlTreeErrMemory("getting node path");
Daniel Veillard8faa7832001-11-26 15:58:08 +00004437 xmlFree(buf);
4438 xmlFree(buffer);
4439 return (NULL);
4440 }
4441 buf = temp;
4442 }
4443 if (occur == 0)
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00004444 snprintf((char *) buf, buf_len, "%s%s%s",
Daniel Veillard8faa7832001-11-26 15:58:08 +00004445 sep, name, (char *) buffer);
4446 else
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00004447 snprintf((char *) buf, buf_len, "%s%s[%d]%s",
Daniel Veillard8faa7832001-11-26 15:58:08 +00004448 sep, name, occur, (char *) buffer);
William M. Brack13dfa872004-09-18 04:52:08 +00004449 snprintf((char *) buffer, buf_len, "%s", (char *)buf);
Daniel Veillard8faa7832001-11-26 15:58:08 +00004450 cur = next;
4451 } while (cur != NULL);
4452 xmlFree(buf);
4453 return (buffer);
4454}
Daniel Veillard652327a2003-09-29 18:02:38 +00004455#endif /* LIBXML_TREE_ENABLED */
Daniel Veillard8faa7832001-11-26 15:58:08 +00004456
4457/**
Owen Taylor3473f882001-02-23 17:55:21 +00004458 * xmlDocGetRootElement:
4459 * @doc: the document
4460 *
4461 * Get the root element of the document (doc->children is a list
4462 * containing possibly comments, PIs, etc ...).
4463 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004464 * Returns the #xmlNodePtr for the root or NULL
Owen Taylor3473f882001-02-23 17:55:21 +00004465 */
4466xmlNodePtr
4467xmlDocGetRootElement(xmlDocPtr doc) {
4468 xmlNodePtr ret;
4469
4470 if (doc == NULL) return(NULL);
4471 ret = doc->children;
4472 while (ret != NULL) {
4473 if (ret->type == XML_ELEMENT_NODE)
4474 return(ret);
4475 ret = ret->next;
4476 }
4477 return(ret);
4478}
4479
Daniel Veillard2156d432004-03-04 15:59:36 +00004480#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00004481/**
4482 * xmlDocSetRootElement:
4483 * @doc: the document
4484 * @root: the new document root element
4485 *
4486 * Set the root element of the document (doc->children is a list
4487 * containing possibly comments, PIs, etc ...).
4488 *
4489 * Returns the old root element if any was found
4490 */
4491xmlNodePtr
4492xmlDocSetRootElement(xmlDocPtr doc, xmlNodePtr root) {
4493 xmlNodePtr old = NULL;
4494
4495 if (doc == NULL) return(NULL);
Daniel Veillardc575b992002-02-08 13:28:40 +00004496 if (root == NULL)
4497 return(NULL);
4498 xmlUnlinkNode(root);
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00004499 xmlSetTreeDoc(root, doc);
Daniel Veillardc575b992002-02-08 13:28:40 +00004500 root->parent = (xmlNodePtr) doc;
Owen Taylor3473f882001-02-23 17:55:21 +00004501 old = doc->children;
4502 while (old != NULL) {
4503 if (old->type == XML_ELEMENT_NODE)
4504 break;
4505 old = old->next;
4506 }
4507 if (old == NULL) {
4508 if (doc->children == NULL) {
4509 doc->children = root;
4510 doc->last = root;
4511 } else {
4512 xmlAddSibling(doc->children, root);
4513 }
4514 } else {
4515 xmlReplaceNode(old, root);
4516 }
4517 return(old);
4518}
Daniel Veillard2156d432004-03-04 15:59:36 +00004519#endif
Owen Taylor3473f882001-02-23 17:55:21 +00004520
Daniel Veillard2156d432004-03-04 15:59:36 +00004521#if defined(LIBXML_TREE_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00004522/**
4523 * xmlNodeSetLang:
4524 * @cur: the node being changed
Daniel Veillardd1640922001-12-17 15:30:10 +00004525 * @lang: the language description
Owen Taylor3473f882001-02-23 17:55:21 +00004526 *
4527 * Set the language of a node, i.e. the values of the xml:lang
4528 * attribute.
4529 */
4530void
4531xmlNodeSetLang(xmlNodePtr cur, const xmlChar *lang) {
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004532 xmlNsPtr ns;
4533
Owen Taylor3473f882001-02-23 17:55:21 +00004534 if (cur == NULL) return;
4535 switch(cur->type) {
4536 case XML_TEXT_NODE:
4537 case XML_CDATA_SECTION_NODE:
4538 case XML_COMMENT_NODE:
4539 case XML_DOCUMENT_NODE:
4540 case XML_DOCUMENT_TYPE_NODE:
4541 case XML_DOCUMENT_FRAG_NODE:
4542 case XML_NOTATION_NODE:
4543 case XML_HTML_DOCUMENT_NODE:
4544 case XML_DTD_NODE:
4545 case XML_ELEMENT_DECL:
4546 case XML_ATTRIBUTE_DECL:
4547 case XML_ENTITY_DECL:
4548 case XML_PI_NODE:
4549 case XML_ENTITY_REF_NODE:
4550 case XML_ENTITY_NODE:
4551 case XML_NAMESPACE_DECL:
Daniel Veillardeae522a2001-04-23 13:41:34 +00004552#ifdef LIBXML_DOCB_ENABLED
4553 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00004554#endif
4555 case XML_XINCLUDE_START:
4556 case XML_XINCLUDE_END:
4557 return;
4558 case XML_ELEMENT_NODE:
4559 case XML_ATTRIBUTE_NODE:
4560 break;
4561 }
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004562 ns = xmlSearchNsByHref(cur->doc, cur, XML_XML_NAMESPACE);
4563 if (ns == NULL)
4564 return;
4565 xmlSetNsProp(cur, ns, BAD_CAST "lang", lang);
Owen Taylor3473f882001-02-23 17:55:21 +00004566}
Daniel Veillard652327a2003-09-29 18:02:38 +00004567#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00004568
4569/**
4570 * xmlNodeGetLang:
4571 * @cur: the node being checked
4572 *
4573 * Searches the language of a node, i.e. the values of the xml:lang
4574 * attribute or the one carried by the nearest ancestor.
4575 *
4576 * Returns a pointer to the lang value, or NULL if not found
Daniel Veillardbd9afb52002-09-25 22:25:35 +00004577 * It's up to the caller to free the memory with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00004578 */
4579xmlChar *
4580xmlNodeGetLang(xmlNodePtr cur) {
4581 xmlChar *lang;
4582
4583 while (cur != NULL) {
Daniel Veillardc17337c2001-05-09 10:51:31 +00004584 lang = xmlGetNsProp(cur, BAD_CAST "lang", XML_XML_NAMESPACE);
Owen Taylor3473f882001-02-23 17:55:21 +00004585 if (lang != NULL)
4586 return(lang);
4587 cur = cur->parent;
4588 }
4589 return(NULL);
4590}
4591
4592
Daniel Veillard652327a2003-09-29 18:02:38 +00004593#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00004594/**
4595 * xmlNodeSetSpacePreserve:
4596 * @cur: the node being changed
4597 * @val: the xml:space value ("0": default, 1: "preserve")
4598 *
4599 * Set (or reset) the space preserving behaviour of a node, i.e. the
4600 * value of the xml:space attribute.
4601 */
4602void
4603xmlNodeSetSpacePreserve(xmlNodePtr cur, int val) {
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004604 xmlNsPtr ns;
4605
Owen Taylor3473f882001-02-23 17:55:21 +00004606 if (cur == NULL) return;
4607 switch(cur->type) {
4608 case XML_TEXT_NODE:
4609 case XML_CDATA_SECTION_NODE:
4610 case XML_COMMENT_NODE:
4611 case XML_DOCUMENT_NODE:
4612 case XML_DOCUMENT_TYPE_NODE:
4613 case XML_DOCUMENT_FRAG_NODE:
4614 case XML_NOTATION_NODE:
4615 case XML_HTML_DOCUMENT_NODE:
4616 case XML_DTD_NODE:
4617 case XML_ELEMENT_DECL:
4618 case XML_ATTRIBUTE_DECL:
4619 case XML_ENTITY_DECL:
4620 case XML_PI_NODE:
4621 case XML_ENTITY_REF_NODE:
4622 case XML_ENTITY_NODE:
4623 case XML_NAMESPACE_DECL:
4624 case XML_XINCLUDE_START:
4625 case XML_XINCLUDE_END:
Daniel Veillardeae522a2001-04-23 13:41:34 +00004626#ifdef LIBXML_DOCB_ENABLED
4627 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00004628#endif
4629 return;
4630 case XML_ELEMENT_NODE:
4631 case XML_ATTRIBUTE_NODE:
4632 break;
4633 }
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004634 ns = xmlSearchNsByHref(cur->doc, cur, XML_XML_NAMESPACE);
4635 if (ns == NULL)
4636 return;
Owen Taylor3473f882001-02-23 17:55:21 +00004637 switch (val) {
4638 case 0:
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004639 xmlSetNsProp(cur, ns, BAD_CAST "space", BAD_CAST "default");
Owen Taylor3473f882001-02-23 17:55:21 +00004640 break;
4641 case 1:
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004642 xmlSetNsProp(cur, ns, BAD_CAST "space", BAD_CAST "preserve");
Owen Taylor3473f882001-02-23 17:55:21 +00004643 break;
4644 }
4645}
Daniel Veillard652327a2003-09-29 18:02:38 +00004646#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00004647
4648/**
4649 * xmlNodeGetSpacePreserve:
4650 * @cur: the node being checked
4651 *
4652 * Searches the space preserving behaviour of a node, i.e. the values
4653 * of the xml:space attribute or the one carried by the nearest
4654 * ancestor.
4655 *
Daniel Veillardd1640922001-12-17 15:30:10 +00004656 * Returns -1 if xml:space is not inherited, 0 if "default", 1 if "preserve"
Owen Taylor3473f882001-02-23 17:55:21 +00004657 */
4658int
4659xmlNodeGetSpacePreserve(xmlNodePtr cur) {
4660 xmlChar *space;
4661
4662 while (cur != NULL) {
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004663 space = xmlGetNsProp(cur, BAD_CAST "space", XML_XML_NAMESPACE);
Owen Taylor3473f882001-02-23 17:55:21 +00004664 if (space != NULL) {
4665 if (xmlStrEqual(space, BAD_CAST "preserve")) {
4666 xmlFree(space);
4667 return(1);
4668 }
4669 if (xmlStrEqual(space, BAD_CAST "default")) {
4670 xmlFree(space);
4671 return(0);
4672 }
4673 xmlFree(space);
4674 }
4675 cur = cur->parent;
4676 }
4677 return(-1);
4678}
4679
Daniel Veillard652327a2003-09-29 18:02:38 +00004680#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00004681/**
4682 * xmlNodeSetName:
4683 * @cur: the node being changed
4684 * @name: the new tag name
4685 *
4686 * Set (or reset) the name of a node.
4687 */
4688void
4689xmlNodeSetName(xmlNodePtr cur, const xmlChar *name) {
Daniel Veillardce244ad2004-11-05 10:03:46 +00004690 xmlDocPtr doc;
4691 xmlDictPtr dict;
4692
Owen Taylor3473f882001-02-23 17:55:21 +00004693 if (cur == NULL) return;
4694 if (name == NULL) return;
4695 switch(cur->type) {
4696 case XML_TEXT_NODE:
4697 case XML_CDATA_SECTION_NODE:
4698 case XML_COMMENT_NODE:
4699 case XML_DOCUMENT_TYPE_NODE:
4700 case XML_DOCUMENT_FRAG_NODE:
4701 case XML_NOTATION_NODE:
4702 case XML_HTML_DOCUMENT_NODE:
4703 case XML_NAMESPACE_DECL:
4704 case XML_XINCLUDE_START:
4705 case XML_XINCLUDE_END:
Daniel Veillardeae522a2001-04-23 13:41:34 +00004706#ifdef LIBXML_DOCB_ENABLED
4707 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00004708#endif
4709 return;
4710 case XML_ELEMENT_NODE:
4711 case XML_ATTRIBUTE_NODE:
4712 case XML_PI_NODE:
4713 case XML_ENTITY_REF_NODE:
4714 case XML_ENTITY_NODE:
4715 case XML_DTD_NODE:
4716 case XML_DOCUMENT_NODE:
4717 case XML_ELEMENT_DECL:
4718 case XML_ATTRIBUTE_DECL:
4719 case XML_ENTITY_DECL:
4720 break;
4721 }
Daniel Veillardce244ad2004-11-05 10:03:46 +00004722 doc = cur->doc;
4723 if (doc != NULL)
4724 dict = doc->dict;
4725 else
4726 dict = NULL;
4727 if (dict != NULL) {
4728 if ((cur->name != NULL) && (!xmlDictOwns(dict, cur->name)))
4729 xmlFree((xmlChar *) cur->name);
4730 cur->name = xmlDictLookup(dict, name, -1);
4731 } else {
4732 if (cur->name != NULL) xmlFree((xmlChar *) cur->name);
4733 cur->name = xmlStrdup(name);
4734 }
Owen Taylor3473f882001-02-23 17:55:21 +00004735}
Daniel Veillard2156d432004-03-04 15:59:36 +00004736#endif
Owen Taylor3473f882001-02-23 17:55:21 +00004737
Daniel Veillard2156d432004-03-04 15:59:36 +00004738#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00004739/**
4740 * xmlNodeSetBase:
4741 * @cur: the node being changed
4742 * @uri: the new base URI
4743 *
4744 * Set (or reset) the base URI of a node, i.e. the value of the
4745 * xml:base attribute.
4746 */
4747void
Daniel Veillardf85ce8e2003-09-22 10:24:45 +00004748xmlNodeSetBase(xmlNodePtr cur, const xmlChar* uri) {
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004749 xmlNsPtr ns;
4750
Owen Taylor3473f882001-02-23 17:55:21 +00004751 if (cur == NULL) return;
4752 switch(cur->type) {
4753 case XML_TEXT_NODE:
4754 case XML_CDATA_SECTION_NODE:
4755 case XML_COMMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00004756 case XML_DOCUMENT_TYPE_NODE:
4757 case XML_DOCUMENT_FRAG_NODE:
4758 case XML_NOTATION_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00004759 case XML_DTD_NODE:
4760 case XML_ELEMENT_DECL:
4761 case XML_ATTRIBUTE_DECL:
4762 case XML_ENTITY_DECL:
4763 case XML_PI_NODE:
4764 case XML_ENTITY_REF_NODE:
4765 case XML_ENTITY_NODE:
4766 case XML_NAMESPACE_DECL:
4767 case XML_XINCLUDE_START:
4768 case XML_XINCLUDE_END:
Owen Taylor3473f882001-02-23 17:55:21 +00004769 return;
4770 case XML_ELEMENT_NODE:
4771 case XML_ATTRIBUTE_NODE:
4772 break;
Daniel Veillard4cbe4702002-05-05 06:57:27 +00004773 case XML_DOCUMENT_NODE:
4774#ifdef LIBXML_DOCB_ENABLED
4775 case XML_DOCB_DOCUMENT_NODE:
4776#endif
4777 case XML_HTML_DOCUMENT_NODE: {
4778 xmlDocPtr doc = (xmlDocPtr) cur;
4779
4780 if (doc->URL != NULL)
4781 xmlFree((xmlChar *) doc->URL);
4782 if (uri == NULL)
4783 doc->URL = NULL;
4784 else
4785 doc->URL = xmlStrdup(uri);
4786 return;
4787 }
Owen Taylor3473f882001-02-23 17:55:21 +00004788 }
Daniel Veillardcfa0d812002-01-17 08:46:58 +00004789
4790 ns = xmlSearchNsByHref(cur->doc, cur, XML_XML_NAMESPACE);
4791 if (ns == NULL)
4792 return;
4793 xmlSetNsProp(cur, ns, BAD_CAST "base", uri);
Owen Taylor3473f882001-02-23 17:55:21 +00004794}
Daniel Veillard652327a2003-09-29 18:02:38 +00004795#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00004796
4797/**
Owen Taylor3473f882001-02-23 17:55:21 +00004798 * xmlNodeGetBase:
4799 * @doc: the document the node pertains to
4800 * @cur: the node being checked
4801 *
4802 * Searches for the BASE URL. The code should work on both XML
4803 * and HTML document even if base mechanisms are completely different.
4804 * It returns the base as defined in RFC 2396 sections
4805 * 5.1.1. Base URI within Document Content
4806 * and
4807 * 5.1.2. Base URI from the Encapsulating Entity
4808 * However it does not return the document base (5.1.3), use
4809 * xmlDocumentGetBase() for this
4810 *
4811 * Returns a pointer to the base URL, or NULL if not found
Daniel Veillardbd9afb52002-09-25 22:25:35 +00004812 * It's up to the caller to free the memory with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00004813 */
4814xmlChar *
4815xmlNodeGetBase(xmlDocPtr doc, xmlNodePtr cur) {
Daniel Veillardb8c9be92001-07-09 16:01:19 +00004816 xmlChar *oldbase = NULL;
4817 xmlChar *base, *newbase;
Owen Taylor3473f882001-02-23 17:55:21 +00004818
4819 if ((cur == NULL) && (doc == NULL))
4820 return(NULL);
4821 if (doc == NULL) doc = cur->doc;
4822 if ((doc != NULL) && (doc->type == XML_HTML_DOCUMENT_NODE)) {
4823 cur = doc->children;
4824 while ((cur != NULL) && (cur->name != NULL)) {
4825 if (cur->type != XML_ELEMENT_NODE) {
4826 cur = cur->next;
4827 continue;
4828 }
4829 if (!xmlStrcasecmp(cur->name, BAD_CAST "html")) {
4830 cur = cur->children;
4831 continue;
4832 }
4833 if (!xmlStrcasecmp(cur->name, BAD_CAST "head")) {
4834 cur = cur->children;
4835 continue;
4836 }
4837 if (!xmlStrcasecmp(cur->name, BAD_CAST "base")) {
4838 return(xmlGetProp(cur, BAD_CAST "href"));
4839 }
4840 cur = cur->next;
4841 }
4842 return(NULL);
4843 }
4844 while (cur != NULL) {
4845 if (cur->type == XML_ENTITY_DECL) {
4846 xmlEntityPtr ent = (xmlEntityPtr) cur;
4847 return(xmlStrdup(ent->URI));
4848 }
Daniel Veillard42596ad2001-05-22 16:57:14 +00004849 if (cur->type == XML_ELEMENT_NODE) {
Daniel Veillardb8c9be92001-07-09 16:01:19 +00004850 base = xmlGetNsProp(cur, BAD_CAST "base", XML_XML_NAMESPACE);
Daniel Veillard42596ad2001-05-22 16:57:14 +00004851 if (base != NULL) {
Daniel Veillardb8c9be92001-07-09 16:01:19 +00004852 if (oldbase != NULL) {
4853 newbase = xmlBuildURI(oldbase, base);
4854 if (newbase != NULL) {
4855 xmlFree(oldbase);
4856 xmlFree(base);
4857 oldbase = newbase;
4858 } else {
4859 xmlFree(oldbase);
4860 xmlFree(base);
4861 return(NULL);
4862 }
4863 } else {
4864 oldbase = base;
4865 }
4866 if ((!xmlStrncmp(oldbase, BAD_CAST "http://", 7)) ||
4867 (!xmlStrncmp(oldbase, BAD_CAST "ftp://", 6)) ||
4868 (!xmlStrncmp(oldbase, BAD_CAST "urn:", 4)))
4869 return(oldbase);
Daniel Veillard42596ad2001-05-22 16:57:14 +00004870 }
4871 }
Owen Taylor3473f882001-02-23 17:55:21 +00004872 cur = cur->parent;
4873 }
Daniel Veillardb8c9be92001-07-09 16:01:19 +00004874 if ((doc != NULL) && (doc->URL != NULL)) {
4875 if (oldbase == NULL)
4876 return(xmlStrdup(doc->URL));
4877 newbase = xmlBuildURI(oldbase, doc->URL);
4878 xmlFree(oldbase);
4879 return(newbase);
4880 }
4881 return(oldbase);
Owen Taylor3473f882001-02-23 17:55:21 +00004882}
4883
4884/**
Daniel Veillard78697292003-10-19 20:44:43 +00004885 * xmlNodeBufGetContent:
4886 * @buffer: a buffer
4887 * @cur: the node being read
4888 *
4889 * Read the value of a node @cur, this can be either the text carried
4890 * directly by this node if it's a TEXT node or the aggregate string
4891 * of the values carried by this node child's (TEXT and ENTITY_REF).
4892 * Entity references are substituted.
4893 * Fills up the buffer @buffer with this value
4894 *
4895 * Returns 0 in case of success and -1 in case of error.
4896 */
4897int
4898xmlNodeBufGetContent(xmlBufferPtr buffer, xmlNodePtr cur)
4899{
4900 if ((cur == NULL) || (buffer == NULL)) return(-1);
4901 switch (cur->type) {
4902 case XML_CDATA_SECTION_NODE:
4903 case XML_TEXT_NODE:
4904 xmlBufferCat(buffer, cur->content);
4905 break;
4906 case XML_DOCUMENT_FRAG_NODE:
4907 case XML_ELEMENT_NODE:{
4908 xmlNodePtr tmp = cur;
4909
4910 while (tmp != NULL) {
4911 switch (tmp->type) {
4912 case XML_CDATA_SECTION_NODE:
4913 case XML_TEXT_NODE:
4914 if (tmp->content != NULL)
4915 xmlBufferCat(buffer, tmp->content);
4916 break;
4917 case XML_ENTITY_REF_NODE:
Rob Richards77b92ff2005-12-20 15:55:14 +00004918 xmlNodeBufGetContent(buffer, tmp);
4919 break;
Daniel Veillard78697292003-10-19 20:44:43 +00004920 default:
4921 break;
4922 }
4923 /*
4924 * Skip to next node
4925 */
4926 if (tmp->children != NULL) {
4927 if (tmp->children->type != XML_ENTITY_DECL) {
4928 tmp = tmp->children;
4929 continue;
4930 }
4931 }
4932 if (tmp == cur)
4933 break;
4934
4935 if (tmp->next != NULL) {
4936 tmp = tmp->next;
4937 continue;
4938 }
4939
4940 do {
4941 tmp = tmp->parent;
4942 if (tmp == NULL)
4943 break;
4944 if (tmp == cur) {
4945 tmp = NULL;
4946 break;
4947 }
4948 if (tmp->next != NULL) {
4949 tmp = tmp->next;
4950 break;
4951 }
4952 } while (tmp != NULL);
4953 }
4954 break;
4955 }
4956 case XML_ATTRIBUTE_NODE:{
4957 xmlAttrPtr attr = (xmlAttrPtr) cur;
4958 xmlNodePtr tmp = attr->children;
4959
4960 while (tmp != NULL) {
4961 if (tmp->type == XML_TEXT_NODE)
4962 xmlBufferCat(buffer, tmp->content);
4963 else
4964 xmlNodeBufGetContent(buffer, tmp);
4965 tmp = tmp->next;
4966 }
4967 break;
4968 }
4969 case XML_COMMENT_NODE:
4970 case XML_PI_NODE:
4971 xmlBufferCat(buffer, cur->content);
4972 break;
4973 case XML_ENTITY_REF_NODE:{
4974 xmlEntityPtr ent;
4975 xmlNodePtr tmp;
4976
4977 /* lookup entity declaration */
4978 ent = xmlGetDocEntity(cur->doc, cur->name);
4979 if (ent == NULL)
4980 return(-1);
4981
4982 /* an entity content can be any "well balanced chunk",
4983 * i.e. the result of the content [43] production:
4984 * http://www.w3.org/TR/REC-xml#NT-content
4985 * -> we iterate through child nodes and recursive call
4986 * xmlNodeGetContent() which handles all possible node types */
4987 tmp = ent->children;
4988 while (tmp) {
4989 xmlNodeBufGetContent(buffer, tmp);
4990 tmp = tmp->next;
4991 }
4992 break;
4993 }
4994 case XML_ENTITY_NODE:
4995 case XML_DOCUMENT_TYPE_NODE:
4996 case XML_NOTATION_NODE:
4997 case XML_DTD_NODE:
4998 case XML_XINCLUDE_START:
4999 case XML_XINCLUDE_END:
5000 break;
5001 case XML_DOCUMENT_NODE:
5002#ifdef LIBXML_DOCB_ENABLED
5003 case XML_DOCB_DOCUMENT_NODE:
5004#endif
5005 case XML_HTML_DOCUMENT_NODE:
5006 cur = cur->children;
5007 while (cur!= NULL) {
5008 if ((cur->type == XML_ELEMENT_NODE) ||
5009 (cur->type == XML_TEXT_NODE) ||
5010 (cur->type == XML_CDATA_SECTION_NODE)) {
5011 xmlNodeBufGetContent(buffer, cur);
5012 }
5013 cur = cur->next;
5014 }
5015 break;
5016 case XML_NAMESPACE_DECL:
5017 xmlBufferCat(buffer, ((xmlNsPtr) cur)->href);
5018 break;
5019 case XML_ELEMENT_DECL:
5020 case XML_ATTRIBUTE_DECL:
5021 case XML_ENTITY_DECL:
5022 break;
5023 }
5024 return(0);
5025}
5026/**
Owen Taylor3473f882001-02-23 17:55:21 +00005027 * xmlNodeGetContent:
5028 * @cur: the node being read
5029 *
5030 * Read the value of a node, this can be either the text carried
5031 * directly by this node if it's a TEXT node or the aggregate string
5032 * of the values carried by this node child's (TEXT and ENTITY_REF).
Daniel Veillardd1640922001-12-17 15:30:10 +00005033 * Entity references are substituted.
5034 * Returns a new #xmlChar * or NULL if no content is available.
Daniel Veillardbd9afb52002-09-25 22:25:35 +00005035 * It's up to the caller to free the memory with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00005036 */
5037xmlChar *
Daniel Veillard7646b182002-04-20 06:41:40 +00005038xmlNodeGetContent(xmlNodePtr cur)
5039{
5040 if (cur == NULL)
5041 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005042 switch (cur->type) {
5043 case XML_DOCUMENT_FRAG_NODE:
Daniel Veillard7646b182002-04-20 06:41:40 +00005044 case XML_ELEMENT_NODE:{
Daniel Veillard7646b182002-04-20 06:41:40 +00005045 xmlBufferPtr buffer;
5046 xmlChar *ret;
Owen Taylor3473f882001-02-23 17:55:21 +00005047
Daniel Veillard814a76d2003-01-23 18:24:20 +00005048 buffer = xmlBufferCreateSize(64);
Daniel Veillard7646b182002-04-20 06:41:40 +00005049 if (buffer == NULL)
5050 return (NULL);
Daniel Veillardc4696922003-10-19 21:47:14 +00005051 xmlNodeBufGetContent(buffer, cur);
Daniel Veillard7646b182002-04-20 06:41:40 +00005052 ret = buffer->content;
5053 buffer->content = NULL;
5054 xmlBufferFree(buffer);
5055 return (ret);
5056 }
5057 case XML_ATTRIBUTE_NODE:{
5058 xmlAttrPtr attr = (xmlAttrPtr) cur;
5059
5060 if (attr->parent != NULL)
5061 return (xmlNodeListGetString
5062 (attr->parent->doc, attr->children, 1));
5063 else
5064 return (xmlNodeListGetString(NULL, attr->children, 1));
5065 break;
5066 }
Owen Taylor3473f882001-02-23 17:55:21 +00005067 case XML_COMMENT_NODE:
5068 case XML_PI_NODE:
Daniel Veillard7646b182002-04-20 06:41:40 +00005069 if (cur->content != NULL)
5070 return (xmlStrdup(cur->content));
5071 return (NULL);
5072 case XML_ENTITY_REF_NODE:{
5073 xmlEntityPtr ent;
Daniel Veillard7646b182002-04-20 06:41:40 +00005074 xmlBufferPtr buffer;
5075 xmlChar *ret;
5076
5077 /* lookup entity declaration */
5078 ent = xmlGetDocEntity(cur->doc, cur->name);
5079 if (ent == NULL)
5080 return (NULL);
5081
5082 buffer = xmlBufferCreate();
5083 if (buffer == NULL)
5084 return (NULL);
5085
Daniel Veillardc4696922003-10-19 21:47:14 +00005086 xmlNodeBufGetContent(buffer, cur);
Daniel Veillard7646b182002-04-20 06:41:40 +00005087
5088 ret = buffer->content;
5089 buffer->content = NULL;
5090 xmlBufferFree(buffer);
5091 return (ret);
5092 }
Owen Taylor3473f882001-02-23 17:55:21 +00005093 case XML_ENTITY_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005094 case XML_DOCUMENT_TYPE_NODE:
5095 case XML_NOTATION_NODE:
5096 case XML_DTD_NODE:
Daniel Veillard7646b182002-04-20 06:41:40 +00005097 case XML_XINCLUDE_START:
5098 case XML_XINCLUDE_END:
Daniel Veillard9adc0462003-03-24 18:39:54 +00005099 return (NULL);
5100 case XML_DOCUMENT_NODE:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005101#ifdef LIBXML_DOCB_ENABLED
Daniel Veillard7646b182002-04-20 06:41:40 +00005102 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005103#endif
Daniel Veillard9adc0462003-03-24 18:39:54 +00005104 case XML_HTML_DOCUMENT_NODE: {
Daniel Veillardc4696922003-10-19 21:47:14 +00005105 xmlBufferPtr buffer;
5106 xmlChar *ret;
Daniel Veillard9adc0462003-03-24 18:39:54 +00005107
Daniel Veillardc4696922003-10-19 21:47:14 +00005108 buffer = xmlBufferCreate();
5109 if (buffer == NULL)
5110 return (NULL);
5111
5112 xmlNodeBufGetContent(buffer, (xmlNodePtr) cur);
5113
5114 ret = buffer->content;
5115 buffer->content = NULL;
5116 xmlBufferFree(buffer);
5117 return (ret);
Daniel Veillard9adc0462003-03-24 18:39:54 +00005118 }
Daniel Veillard96c3a3b2002-10-14 15:39:04 +00005119 case XML_NAMESPACE_DECL: {
5120 xmlChar *tmp;
5121
5122 tmp = xmlStrdup(((xmlNsPtr) cur)->href);
5123 return (tmp);
5124 }
Owen Taylor3473f882001-02-23 17:55:21 +00005125 case XML_ELEMENT_DECL:
Daniel Veillard7646b182002-04-20 06:41:40 +00005126 /* TODO !!! */
5127 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005128 case XML_ATTRIBUTE_DECL:
Daniel Veillard7646b182002-04-20 06:41:40 +00005129 /* TODO !!! */
5130 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005131 case XML_ENTITY_DECL:
Daniel Veillard7646b182002-04-20 06:41:40 +00005132 /* TODO !!! */
5133 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005134 case XML_CDATA_SECTION_NODE:
5135 case XML_TEXT_NODE:
Daniel Veillard7646b182002-04-20 06:41:40 +00005136 if (cur->content != NULL)
5137 return (xmlStrdup(cur->content));
5138 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005139 }
Daniel Veillard7646b182002-04-20 06:41:40 +00005140 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005141}
Daniel Veillard652327a2003-09-29 18:02:38 +00005142
Owen Taylor3473f882001-02-23 17:55:21 +00005143/**
5144 * xmlNodeSetContent:
5145 * @cur: the node being modified
5146 * @content: the new value of the content
5147 *
5148 * Replace the content of a node.
5149 */
5150void
5151xmlNodeSetContent(xmlNodePtr cur, const xmlChar *content) {
5152 if (cur == NULL) {
5153#ifdef DEBUG_TREE
5154 xmlGenericError(xmlGenericErrorContext,
5155 "xmlNodeSetContent : node == NULL\n");
5156#endif
5157 return;
5158 }
5159 switch (cur->type) {
5160 case XML_DOCUMENT_FRAG_NODE:
5161 case XML_ELEMENT_NODE:
Daniel Veillard2c748c62002-01-16 15:37:50 +00005162 case XML_ATTRIBUTE_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005163 if (cur->children != NULL) xmlFreeNodeList(cur->children);
5164 cur->children = xmlStringGetNodeList(cur->doc, content);
5165 UPDATE_LAST_CHILD_AND_PARENT(cur)
5166 break;
Owen Taylor3473f882001-02-23 17:55:21 +00005167 case XML_TEXT_NODE:
5168 case XML_CDATA_SECTION_NODE:
5169 case XML_ENTITY_REF_NODE:
5170 case XML_ENTITY_NODE:
5171 case XML_PI_NODE:
5172 case XML_COMMENT_NODE:
Daniel Veillard8874b942005-08-25 13:19:21 +00005173 if ((cur->content != NULL) &&
5174 (cur->content != (xmlChar *) &(cur->properties))) {
William M. Brack7762bb12004-01-04 14:49:01 +00005175 if (!((cur->doc != NULL) && (cur->doc->dict != NULL) &&
Daniel Veillardc587bce2005-05-10 15:28:08 +00005176 (xmlDictOwns(cur->doc->dict, cur->content))))
William M. Brack7762bb12004-01-04 14:49:01 +00005177 xmlFree(cur->content);
Owen Taylor3473f882001-02-23 17:55:21 +00005178 }
5179 if (cur->children != NULL) xmlFreeNodeList(cur->children);
5180 cur->last = cur->children = NULL;
5181 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00005182 cur->content = xmlStrdup(content);
Owen Taylor3473f882001-02-23 17:55:21 +00005183 } else
5184 cur->content = NULL;
Daniel Veillard8874b942005-08-25 13:19:21 +00005185 cur->properties = NULL;
5186 cur->nsDef = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00005187 break;
5188 case XML_DOCUMENT_NODE:
5189 case XML_HTML_DOCUMENT_NODE:
5190 case XML_DOCUMENT_TYPE_NODE:
5191 case XML_XINCLUDE_START:
5192 case XML_XINCLUDE_END:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005193#ifdef LIBXML_DOCB_ENABLED
5194 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005195#endif
5196 break;
5197 case XML_NOTATION_NODE:
5198 break;
5199 case XML_DTD_NODE:
5200 break;
5201 case XML_NAMESPACE_DECL:
5202 break;
5203 case XML_ELEMENT_DECL:
5204 /* TODO !!! */
5205 break;
5206 case XML_ATTRIBUTE_DECL:
5207 /* TODO !!! */
5208 break;
5209 case XML_ENTITY_DECL:
5210 /* TODO !!! */
5211 break;
5212 }
5213}
5214
Daniel Veillard652327a2003-09-29 18:02:38 +00005215#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00005216/**
5217 * xmlNodeSetContentLen:
5218 * @cur: the node being modified
5219 * @content: the new value of the content
5220 * @len: the size of @content
5221 *
5222 * Replace the content of a node.
5223 */
5224void
5225xmlNodeSetContentLen(xmlNodePtr cur, const xmlChar *content, int len) {
5226 if (cur == NULL) {
5227#ifdef DEBUG_TREE
5228 xmlGenericError(xmlGenericErrorContext,
5229 "xmlNodeSetContentLen : node == NULL\n");
5230#endif
5231 return;
5232 }
5233 switch (cur->type) {
5234 case XML_DOCUMENT_FRAG_NODE:
5235 case XML_ELEMENT_NODE:
Daniel Veillard2c748c62002-01-16 15:37:50 +00005236 case XML_ATTRIBUTE_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005237 if (cur->children != NULL) xmlFreeNodeList(cur->children);
5238 cur->children = xmlStringLenGetNodeList(cur->doc, content, len);
5239 UPDATE_LAST_CHILD_AND_PARENT(cur)
5240 break;
Owen Taylor3473f882001-02-23 17:55:21 +00005241 case XML_TEXT_NODE:
5242 case XML_CDATA_SECTION_NODE:
5243 case XML_ENTITY_REF_NODE:
5244 case XML_ENTITY_NODE:
5245 case XML_PI_NODE:
5246 case XML_COMMENT_NODE:
5247 case XML_NOTATION_NODE:
Daniel Veillard8874b942005-08-25 13:19:21 +00005248 if ((cur->content != NULL) &&
5249 (cur->content != (xmlChar *) &(cur->properties))) {
5250 if (!((cur->doc != NULL) && (cur->doc->dict != NULL) &&
5251 (xmlDictOwns(cur->doc->dict, cur->content))))
5252 xmlFree(cur->content);
Owen Taylor3473f882001-02-23 17:55:21 +00005253 }
5254 if (cur->children != NULL) xmlFreeNodeList(cur->children);
5255 cur->children = cur->last = NULL;
5256 if (content != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00005257 cur->content = xmlStrndup(content, len);
Owen Taylor3473f882001-02-23 17:55:21 +00005258 } else
5259 cur->content = NULL;
Daniel Veillard8874b942005-08-25 13:19:21 +00005260 cur->properties = NULL;
5261 cur->nsDef = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00005262 break;
5263 case XML_DOCUMENT_NODE:
5264 case XML_DTD_NODE:
5265 case XML_HTML_DOCUMENT_NODE:
5266 case XML_DOCUMENT_TYPE_NODE:
5267 case XML_NAMESPACE_DECL:
5268 case XML_XINCLUDE_START:
5269 case XML_XINCLUDE_END:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005270#ifdef LIBXML_DOCB_ENABLED
5271 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005272#endif
5273 break;
5274 case XML_ELEMENT_DECL:
5275 /* TODO !!! */
5276 break;
5277 case XML_ATTRIBUTE_DECL:
5278 /* TODO !!! */
5279 break;
5280 case XML_ENTITY_DECL:
5281 /* TODO !!! */
5282 break;
5283 }
5284}
Daniel Veillard652327a2003-09-29 18:02:38 +00005285#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00005286
5287/**
5288 * xmlNodeAddContentLen:
5289 * @cur: the node being modified
5290 * @content: extra content
5291 * @len: the size of @content
5292 *
5293 * Append the extra substring to the node content.
5294 */
5295void
5296xmlNodeAddContentLen(xmlNodePtr cur, const xmlChar *content, int len) {
5297 if (cur == NULL) {
5298#ifdef DEBUG_TREE
5299 xmlGenericError(xmlGenericErrorContext,
5300 "xmlNodeAddContentLen : node == NULL\n");
5301#endif
5302 return;
5303 }
5304 if (len <= 0) return;
5305 switch (cur->type) {
5306 case XML_DOCUMENT_FRAG_NODE:
5307 case XML_ELEMENT_NODE: {
Daniel Veillardacb2bda2002-01-13 16:15:43 +00005308 xmlNodePtr last, newNode, tmp;
Owen Taylor3473f882001-02-23 17:55:21 +00005309
Daniel Veillard7db37732001-07-12 01:20:08 +00005310 last = cur->last;
Owen Taylor3473f882001-02-23 17:55:21 +00005311 newNode = xmlNewTextLen(content, len);
5312 if (newNode != NULL) {
Daniel Veillardacb2bda2002-01-13 16:15:43 +00005313 tmp = xmlAddChild(cur, newNode);
5314 if (tmp != newNode)
5315 return;
Owen Taylor3473f882001-02-23 17:55:21 +00005316 if ((last != NULL) && (last->next == newNode)) {
5317 xmlTextMerge(last, newNode);
5318 }
5319 }
5320 break;
5321 }
5322 case XML_ATTRIBUTE_NODE:
5323 break;
5324 case XML_TEXT_NODE:
5325 case XML_CDATA_SECTION_NODE:
5326 case XML_ENTITY_REF_NODE:
5327 case XML_ENTITY_NODE:
5328 case XML_PI_NODE:
5329 case XML_COMMENT_NODE:
5330 case XML_NOTATION_NODE:
5331 if (content != NULL) {
Daniel Veillard8874b942005-08-25 13:19:21 +00005332 if ((cur->content == (xmlChar *) &(cur->properties)) ||
5333 ((cur->doc != NULL) && (cur->doc->dict != NULL) &&
5334 xmlDictOwns(cur->doc->dict, cur->content))) {
5335 cur->content = xmlStrncatNew(cur->content, content, len);
5336 cur->properties = NULL;
5337 cur->nsDef = NULL;
William M. Brack7762bb12004-01-04 14:49:01 +00005338 break;
5339 }
Owen Taylor3473f882001-02-23 17:55:21 +00005340 cur->content = xmlStrncat(cur->content, content, len);
Owen Taylor3473f882001-02-23 17:55:21 +00005341 }
5342 case XML_DOCUMENT_NODE:
5343 case XML_DTD_NODE:
5344 case XML_HTML_DOCUMENT_NODE:
5345 case XML_DOCUMENT_TYPE_NODE:
5346 case XML_NAMESPACE_DECL:
5347 case XML_XINCLUDE_START:
5348 case XML_XINCLUDE_END:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005349#ifdef LIBXML_DOCB_ENABLED
5350 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005351#endif
5352 break;
5353 case XML_ELEMENT_DECL:
5354 case XML_ATTRIBUTE_DECL:
5355 case XML_ENTITY_DECL:
5356 break;
5357 }
5358}
5359
5360/**
5361 * xmlNodeAddContent:
5362 * @cur: the node being modified
5363 * @content: extra content
5364 *
5365 * Append the extra substring to the node content.
5366 */
5367void
5368xmlNodeAddContent(xmlNodePtr cur, const xmlChar *content) {
5369 int len;
5370
5371 if (cur == NULL) {
5372#ifdef DEBUG_TREE
5373 xmlGenericError(xmlGenericErrorContext,
5374 "xmlNodeAddContent : node == NULL\n");
5375#endif
5376 return;
5377 }
5378 if (content == NULL) return;
5379 len = xmlStrlen(content);
5380 xmlNodeAddContentLen(cur, content, len);
5381}
5382
5383/**
5384 * xmlTextMerge:
5385 * @first: the first text node
5386 * @second: the second text node being merged
5387 *
5388 * Merge two text nodes into one
5389 * Returns the first text node augmented
5390 */
5391xmlNodePtr
5392xmlTextMerge(xmlNodePtr first, xmlNodePtr second) {
5393 if (first == NULL) return(second);
5394 if (second == NULL) return(first);
5395 if (first->type != XML_TEXT_NODE) return(first);
5396 if (second->type != XML_TEXT_NODE) return(first);
5397 if (second->name != first->name)
5398 return(first);
Owen Taylor3473f882001-02-23 17:55:21 +00005399 xmlNodeAddContent(first, second->content);
Owen Taylor3473f882001-02-23 17:55:21 +00005400 xmlUnlinkNode(second);
5401 xmlFreeNode(second);
5402 return(first);
5403}
5404
Daniel Veillard2156d432004-03-04 15:59:36 +00005405#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00005406/**
5407 * xmlGetNsList:
5408 * @doc: the document
5409 * @node: the current node
5410 *
5411 * Search all the namespace applying to a given element.
Daniel Veillardd1640922001-12-17 15:30:10 +00005412 * Returns an NULL terminated array of all the #xmlNsPtr found
Owen Taylor3473f882001-02-23 17:55:21 +00005413 * that need to be freed by the caller or NULL if no
5414 * namespace if defined
5415 */
5416xmlNsPtr *
Daniel Veillard77044732001-06-29 21:31:07 +00005417xmlGetNsList(xmlDocPtr doc ATTRIBUTE_UNUSED, xmlNodePtr node)
5418{
Owen Taylor3473f882001-02-23 17:55:21 +00005419 xmlNsPtr cur;
5420 xmlNsPtr *ret = NULL;
5421 int nbns = 0;
5422 int maxns = 10;
5423 int i;
5424
5425 while (node != NULL) {
Daniel Veillard77044732001-06-29 21:31:07 +00005426 if (node->type == XML_ELEMENT_NODE) {
5427 cur = node->nsDef;
5428 while (cur != NULL) {
5429 if (ret == NULL) {
5430 ret =
5431 (xmlNsPtr *) xmlMalloc((maxns + 1) *
5432 sizeof(xmlNsPtr));
5433 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005434 xmlTreeErrMemory("getting namespace list");
Daniel Veillard77044732001-06-29 21:31:07 +00005435 return (NULL);
5436 }
5437 ret[nbns] = NULL;
5438 }
5439 for (i = 0; i < nbns; i++) {
5440 if ((cur->prefix == ret[i]->prefix) ||
5441 (xmlStrEqual(cur->prefix, ret[i]->prefix)))
5442 break;
5443 }
5444 if (i >= nbns) {
5445 if (nbns >= maxns) {
5446 maxns *= 2;
5447 ret = (xmlNsPtr *) xmlRealloc(ret,
5448 (maxns +
5449 1) *
5450 sizeof(xmlNsPtr));
5451 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005452 xmlTreeErrMemory("getting namespace list");
Daniel Veillard77044732001-06-29 21:31:07 +00005453 return (NULL);
5454 }
5455 }
5456 ret[nbns++] = cur;
5457 ret[nbns] = NULL;
5458 }
Owen Taylor3473f882001-02-23 17:55:21 +00005459
Daniel Veillard77044732001-06-29 21:31:07 +00005460 cur = cur->next;
5461 }
5462 }
5463 node = node->parent;
Owen Taylor3473f882001-02-23 17:55:21 +00005464 }
Daniel Veillard77044732001-06-29 21:31:07 +00005465 return (ret);
Owen Taylor3473f882001-02-23 17:55:21 +00005466}
Daniel Veillard652327a2003-09-29 18:02:38 +00005467#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00005468
5469/**
5470 * xmlSearchNs:
5471 * @doc: the document
5472 * @node: the current node
Daniel Veillard77851712001-02-27 21:54:07 +00005473 * @nameSpace: the namespace prefix
Owen Taylor3473f882001-02-23 17:55:21 +00005474 *
5475 * Search a Ns registered under a given name space for a document.
5476 * recurse on the parents until it finds the defined namespace
5477 * or return NULL otherwise.
5478 * @nameSpace can be NULL, this is a search for the default namespace.
5479 * We don't allow to cross entities boundaries. If you don't declare
5480 * the namespace within those you will be in troubles !!! A warning
5481 * is generated to cover this case.
5482 *
5483 * Returns the namespace pointer or NULL.
5484 */
5485xmlNsPtr
5486xmlSearchNs(xmlDocPtr doc, xmlNodePtr node, const xmlChar *nameSpace) {
Daniel Veillardf4e56292003-10-28 14:27:41 +00005487
Owen Taylor3473f882001-02-23 17:55:21 +00005488 xmlNsPtr cur;
Daniel Veillardf4e56292003-10-28 14:27:41 +00005489 xmlNodePtr orig = node;
Owen Taylor3473f882001-02-23 17:55:21 +00005490
5491 if (node == NULL) return(NULL);
5492 if ((nameSpace != NULL) &&
5493 (xmlStrEqual(nameSpace, (const xmlChar *)"xml"))) {
Daniel Veillard6f46f6c2002-08-01 12:22:24 +00005494 if ((doc == NULL) && (node->type == XML_ELEMENT_NODE)) {
5495 /*
5496 * The XML-1.0 namespace is normally held on the root
5497 * element. In this case exceptionally create it on the
5498 * node element.
5499 */
5500 cur = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
5501 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005502 xmlTreeErrMemory("searching namespace");
Daniel Veillard6f46f6c2002-08-01 12:22:24 +00005503 return(NULL);
5504 }
5505 memset(cur, 0, sizeof(xmlNs));
5506 cur->type = XML_LOCAL_NAMESPACE;
5507 cur->href = xmlStrdup(XML_XML_NAMESPACE);
5508 cur->prefix = xmlStrdup((const xmlChar *)"xml");
5509 cur->next = node->nsDef;
5510 node->nsDef = cur;
5511 return(cur);
5512 }
Owen Taylor3473f882001-02-23 17:55:21 +00005513 if (doc->oldNs == NULL) {
5514 /*
5515 * Allocate a new Namespace and fill the fields.
5516 */
5517 doc->oldNs = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
5518 if (doc->oldNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005519 xmlTreeErrMemory("searching namespace");
Owen Taylor3473f882001-02-23 17:55:21 +00005520 return(NULL);
5521 }
5522 memset(doc->oldNs, 0, sizeof(xmlNs));
5523 doc->oldNs->type = XML_LOCAL_NAMESPACE;
5524
5525 doc->oldNs->href = xmlStrdup(XML_XML_NAMESPACE);
5526 doc->oldNs->prefix = xmlStrdup((const xmlChar *)"xml");
5527 }
5528 return(doc->oldNs);
5529 }
5530 while (node != NULL) {
5531 if ((node->type == XML_ENTITY_REF_NODE) ||
5532 (node->type == XML_ENTITY_NODE) ||
5533 (node->type == XML_ENTITY_DECL))
5534 return(NULL);
5535 if (node->type == XML_ELEMENT_NODE) {
5536 cur = node->nsDef;
5537 while (cur != NULL) {
5538 if ((cur->prefix == NULL) && (nameSpace == NULL) &&
5539 (cur->href != NULL))
5540 return(cur);
5541 if ((cur->prefix != NULL) && (nameSpace != NULL) &&
5542 (cur->href != NULL) &&
5543 (xmlStrEqual(cur->prefix, nameSpace)))
5544 return(cur);
5545 cur = cur->next;
5546 }
Daniel Veillardf4e56292003-10-28 14:27:41 +00005547 if (orig != node) {
5548 cur = node->ns;
5549 if (cur != NULL) {
5550 if ((cur->prefix == NULL) && (nameSpace == NULL) &&
5551 (cur->href != NULL))
5552 return(cur);
5553 if ((cur->prefix != NULL) && (nameSpace != NULL) &&
5554 (cur->href != NULL) &&
5555 (xmlStrEqual(cur->prefix, nameSpace)))
5556 return(cur);
5557 }
5558 }
Owen Taylor3473f882001-02-23 17:55:21 +00005559 }
5560 node = node->parent;
5561 }
5562 return(NULL);
5563}
5564
5565/**
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005566 * xmlNsInScope:
5567 * @doc: the document
5568 * @node: the current node
5569 * @ancestor: the ancestor carrying the namespace
5570 * @prefix: the namespace prefix
5571 *
5572 * Verify that the given namespace held on @ancestor is still in scope
5573 * on node.
5574 *
5575 * Returns 1 if true, 0 if false and -1 in case of error.
5576 */
5577static int
Daniel Veillardbdbe0d42003-09-14 19:56:14 +00005578xmlNsInScope(xmlDocPtr doc ATTRIBUTE_UNUSED, xmlNodePtr node,
5579 xmlNodePtr ancestor, const xmlChar * prefix)
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005580{
5581 xmlNsPtr tst;
5582
5583 while ((node != NULL) && (node != ancestor)) {
5584 if ((node->type == XML_ENTITY_REF_NODE) ||
5585 (node->type == XML_ENTITY_NODE) ||
5586 (node->type == XML_ENTITY_DECL))
5587 return (-1);
5588 if (node->type == XML_ELEMENT_NODE) {
5589 tst = node->nsDef;
5590 while (tst != NULL) {
5591 if ((tst->prefix == NULL)
5592 && (prefix == NULL))
5593 return (0);
5594 if ((tst->prefix != NULL)
5595 && (prefix != NULL)
5596 && (xmlStrEqual(tst->prefix, prefix)))
5597 return (0);
5598 tst = tst->next;
5599 }
5600 }
5601 node = node->parent;
5602 }
5603 if (node != ancestor)
5604 return (-1);
5605 return (1);
5606}
5607
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005608/**
Owen Taylor3473f882001-02-23 17:55:21 +00005609 * xmlSearchNsByHref:
5610 * @doc: the document
5611 * @node: the current node
5612 * @href: the namespace value
5613 *
5614 * Search a Ns aliasing a given URI. Recurse on the parents until it finds
5615 * the defined namespace or return NULL otherwise.
5616 * Returns the namespace pointer or NULL.
5617 */
5618xmlNsPtr
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005619xmlSearchNsByHref(xmlDocPtr doc, xmlNodePtr node, const xmlChar * href)
5620{
Owen Taylor3473f882001-02-23 17:55:21 +00005621 xmlNsPtr cur;
5622 xmlNodePtr orig = node;
Daniel Veillard62040be2004-05-17 03:17:26 +00005623 int is_attr;
Owen Taylor3473f882001-02-23 17:55:21 +00005624
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005625 if ((node == NULL) || (href == NULL))
5626 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005627 if (xmlStrEqual(href, XML_XML_NAMESPACE)) {
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005628 /*
5629 * Only the document can hold the XML spec namespace.
5630 */
5631 if ((doc == NULL) && (node->type == XML_ELEMENT_NODE)) {
5632 /*
5633 * The XML-1.0 namespace is normally held on the root
5634 * element. In this case exceptionally create it on the
5635 * node element.
5636 */
5637 cur = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
5638 if (cur == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005639 xmlTreeErrMemory("searching namespace");
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005640 return (NULL);
5641 }
5642 memset(cur, 0, sizeof(xmlNs));
5643 cur->type = XML_LOCAL_NAMESPACE;
5644 cur->href = xmlStrdup(XML_XML_NAMESPACE);
5645 cur->prefix = xmlStrdup((const xmlChar *) "xml");
5646 cur->next = node->nsDef;
5647 node->nsDef = cur;
5648 return (cur);
5649 }
5650 if (doc->oldNs == NULL) {
5651 /*
5652 * Allocate a new Namespace and fill the fields.
5653 */
5654 doc->oldNs = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
5655 if (doc->oldNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005656 xmlTreeErrMemory("searching namespace");
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005657 return (NULL);
5658 }
5659 memset(doc->oldNs, 0, sizeof(xmlNs));
5660 doc->oldNs->type = XML_LOCAL_NAMESPACE;
Owen Taylor3473f882001-02-23 17:55:21 +00005661
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005662 doc->oldNs->href = xmlStrdup(XML_XML_NAMESPACE);
5663 doc->oldNs->prefix = xmlStrdup((const xmlChar *) "xml");
5664 }
5665 return (doc->oldNs);
Owen Taylor3473f882001-02-23 17:55:21 +00005666 }
Daniel Veillard62040be2004-05-17 03:17:26 +00005667 is_attr = (node->type == XML_ATTRIBUTE_NODE);
Owen Taylor3473f882001-02-23 17:55:21 +00005668 while (node != NULL) {
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005669 if ((node->type == XML_ENTITY_REF_NODE) ||
5670 (node->type == XML_ENTITY_NODE) ||
5671 (node->type == XML_ENTITY_DECL))
5672 return (NULL);
5673 if (node->type == XML_ELEMENT_NODE) {
5674 cur = node->nsDef;
5675 while (cur != NULL) {
5676 if ((cur->href != NULL) && (href != NULL) &&
5677 (xmlStrEqual(cur->href, href))) {
Daniel Veillard62040be2004-05-17 03:17:26 +00005678 if (((!is_attr) || (cur->prefix != NULL)) &&
Kasimier T. Buchcikba70cc02005-02-28 10:28:21 +00005679 (xmlNsInScope(doc, orig, node, cur->prefix) == 1))
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005680 return (cur);
5681 }
5682 cur = cur->next;
5683 }
Daniel Veillardf4e56292003-10-28 14:27:41 +00005684 if (orig != node) {
5685 cur = node->ns;
5686 if (cur != NULL) {
5687 if ((cur->href != NULL) && (href != NULL) &&
5688 (xmlStrEqual(cur->href, href))) {
Daniel Veillard62040be2004-05-17 03:17:26 +00005689 if (((!is_attr) || (cur->prefix != NULL)) &&
Kasimier T. Buchcikba70cc02005-02-28 10:28:21 +00005690 (xmlNsInScope(doc, orig, node, cur->prefix) == 1))
Daniel Veillardf4e56292003-10-28 14:27:41 +00005691 return (cur);
5692 }
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005693 }
Daniel Veillardf4e56292003-10-28 14:27:41 +00005694 }
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005695 }
5696 node = node->parent;
Owen Taylor3473f882001-02-23 17:55:21 +00005697 }
Daniel Veillard2a3fea32003-09-12 09:44:56 +00005698 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005699}
5700
5701/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00005702 * xmlNewReconciliedNs:
Owen Taylor3473f882001-02-23 17:55:21 +00005703 * @doc: the document
5704 * @tree: a node expected to hold the new namespace
5705 * @ns: the original namespace
5706 *
5707 * This function tries to locate a namespace definition in a tree
5708 * ancestors, or create a new namespace definition node similar to
5709 * @ns trying to reuse the same prefix. However if the given prefix is
5710 * null (default namespace) or reused within the subtree defined by
5711 * @tree or on one of its ancestors then a new prefix is generated.
5712 * Returns the (new) namespace definition or NULL in case of error
5713 */
5714xmlNsPtr
5715xmlNewReconciliedNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns) {
5716 xmlNsPtr def;
5717 xmlChar prefix[50];
5718 int counter = 1;
5719
5720 if (tree == NULL) {
5721#ifdef DEBUG_TREE
5722 xmlGenericError(xmlGenericErrorContext,
5723 "xmlNewReconciliedNs : tree == NULL\n");
5724#endif
5725 return(NULL);
5726 }
Daniel Veillardce244ad2004-11-05 10:03:46 +00005727 if ((ns == NULL) || (ns->type != XML_NAMESPACE_DECL)) {
Owen Taylor3473f882001-02-23 17:55:21 +00005728#ifdef DEBUG_TREE
5729 xmlGenericError(xmlGenericErrorContext,
5730 "xmlNewReconciliedNs : ns == NULL\n");
5731#endif
5732 return(NULL);
5733 }
5734 /*
5735 * Search an existing namespace definition inherited.
5736 */
5737 def = xmlSearchNsByHref(doc, tree, ns->href);
5738 if (def != NULL)
5739 return(def);
5740
5741 /*
5742 * Find a close prefix which is not already in use.
5743 * Let's strip namespace prefixes longer than 20 chars !
5744 */
Daniel Veillardf742d342002-03-07 00:05:35 +00005745 if (ns->prefix == NULL)
Aleksey Sanin49cc9752002-06-14 17:07:10 +00005746 snprintf((char *) prefix, sizeof(prefix), "default");
Daniel Veillardf742d342002-03-07 00:05:35 +00005747 else
William M. Brack13dfa872004-09-18 04:52:08 +00005748 snprintf((char *) prefix, sizeof(prefix), "%.20s", (char *)ns->prefix);
Daniel Veillardf742d342002-03-07 00:05:35 +00005749
Owen Taylor3473f882001-02-23 17:55:21 +00005750 def = xmlSearchNs(doc, tree, prefix);
5751 while (def != NULL) {
5752 if (counter > 1000) return(NULL);
Daniel Veillardf742d342002-03-07 00:05:35 +00005753 if (ns->prefix == NULL)
Aleksey Sanin49cc9752002-06-14 17:07:10 +00005754 snprintf((char *) prefix, sizeof(prefix), "default%d", counter++);
Daniel Veillardf742d342002-03-07 00:05:35 +00005755 else
William M. Brack13dfa872004-09-18 04:52:08 +00005756 snprintf((char *) prefix, sizeof(prefix), "%.20s%d",
5757 (char *)ns->prefix, counter++);
Owen Taylor3473f882001-02-23 17:55:21 +00005758 def = xmlSearchNs(doc, tree, prefix);
5759 }
5760
5761 /*
Daniel Veillardd1640922001-12-17 15:30:10 +00005762 * OK, now we are ready to create a new one.
Owen Taylor3473f882001-02-23 17:55:21 +00005763 */
5764 def = xmlNewNs(tree, ns->href, prefix);
5765 return(def);
5766}
5767
Daniel Veillard652327a2003-09-29 18:02:38 +00005768#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00005769/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00005770 * xmlReconciliateNs:
Owen Taylor3473f882001-02-23 17:55:21 +00005771 * @doc: the document
5772 * @tree: a node defining the subtree to reconciliate
5773 *
5774 * This function checks that all the namespaces declared within the given
5775 * tree are properly declared. This is needed for example after Copy or Cut
5776 * and then paste operations. The subtree may still hold pointers to
5777 * namespace declarations outside the subtree or invalid/masked. As much
Daniel Veillardd1640922001-12-17 15:30:10 +00005778 * as possible the function try to reuse the existing namespaces found in
Owen Taylor3473f882001-02-23 17:55:21 +00005779 * the new environment. If not possible the new namespaces are redeclared
5780 * on @tree at the top of the given subtree.
5781 * Returns the number of namespace declarations created or -1 in case of error.
5782 */
5783int
5784xmlReconciliateNs(xmlDocPtr doc, xmlNodePtr tree) {
5785 xmlNsPtr *oldNs = NULL;
5786 xmlNsPtr *newNs = NULL;
5787 int sizeCache = 0;
5788 int nbCache = 0;
5789
5790 xmlNsPtr n;
5791 xmlNodePtr node = tree;
5792 xmlAttrPtr attr;
5793 int ret = 0, i;
5794
Daniel Veillardce244ad2004-11-05 10:03:46 +00005795 if ((node == NULL) || (node->type != XML_ELEMENT_NODE)) return(-1);
5796 if ((doc == NULL) || (doc->type != XML_DOCUMENT_NODE)) return(-1);
5797 if (node->doc != doc) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00005798 while (node != NULL) {
5799 /*
5800 * Reconciliate the node namespace
5801 */
5802 if (node->ns != NULL) {
5803 /*
5804 * initialize the cache if needed
5805 */
5806 if (sizeCache == 0) {
5807 sizeCache = 10;
5808 oldNs = (xmlNsPtr *) xmlMalloc(sizeCache *
5809 sizeof(xmlNsPtr));
5810 if (oldNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005811 xmlTreeErrMemory("fixing namespaces");
Owen Taylor3473f882001-02-23 17:55:21 +00005812 return(-1);
5813 }
5814 newNs = (xmlNsPtr *) xmlMalloc(sizeCache *
5815 sizeof(xmlNsPtr));
5816 if (newNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005817 xmlTreeErrMemory("fixing namespaces");
Owen Taylor3473f882001-02-23 17:55:21 +00005818 xmlFree(oldNs);
5819 return(-1);
5820 }
5821 }
5822 for (i = 0;i < nbCache;i++) {
5823 if (oldNs[i] == node->ns) {
5824 node->ns = newNs[i];
5825 break;
5826 }
5827 }
5828 if (i == nbCache) {
5829 /*
Daniel Veillardd1640922001-12-17 15:30:10 +00005830 * OK we need to recreate a new namespace definition
Owen Taylor3473f882001-02-23 17:55:21 +00005831 */
5832 n = xmlNewReconciliedNs(doc, tree, node->ns);
5833 if (n != NULL) { /* :-( what if else ??? */
5834 /*
5835 * check if we need to grow the cache buffers.
5836 */
5837 if (sizeCache <= nbCache) {
5838 sizeCache *= 2;
5839 oldNs = (xmlNsPtr *) xmlRealloc(oldNs, sizeCache *
5840 sizeof(xmlNsPtr));
5841 if (oldNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005842 xmlTreeErrMemory("fixing namespaces");
Owen Taylor3473f882001-02-23 17:55:21 +00005843 xmlFree(newNs);
5844 return(-1);
5845 }
5846 newNs = (xmlNsPtr *) xmlRealloc(newNs, sizeCache *
5847 sizeof(xmlNsPtr));
5848 if (newNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005849 xmlTreeErrMemory("fixing namespaces");
Owen Taylor3473f882001-02-23 17:55:21 +00005850 xmlFree(oldNs);
5851 return(-1);
5852 }
5853 }
5854 newNs[nbCache] = n;
5855 oldNs[nbCache++] = node->ns;
5856 node->ns = n;
5857 }
5858 }
5859 }
5860 /*
5861 * now check for namespace hold by attributes on the node.
5862 */
5863 attr = node->properties;
5864 while (attr != NULL) {
5865 if (attr->ns != NULL) {
5866 /*
5867 * initialize the cache if needed
5868 */
5869 if (sizeCache == 0) {
5870 sizeCache = 10;
5871 oldNs = (xmlNsPtr *) xmlMalloc(sizeCache *
5872 sizeof(xmlNsPtr));
5873 if (oldNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005874 xmlTreeErrMemory("fixing namespaces");
Owen Taylor3473f882001-02-23 17:55:21 +00005875 return(-1);
5876 }
5877 newNs = (xmlNsPtr *) xmlMalloc(sizeCache *
5878 sizeof(xmlNsPtr));
5879 if (newNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005880 xmlTreeErrMemory("fixing namespaces");
Owen Taylor3473f882001-02-23 17:55:21 +00005881 xmlFree(oldNs);
5882 return(-1);
5883 }
5884 }
5885 for (i = 0;i < nbCache;i++) {
5886 if (oldNs[i] == attr->ns) {
Daniel Veillardce66ce12002-10-28 19:01:59 +00005887 attr->ns = newNs[i];
Owen Taylor3473f882001-02-23 17:55:21 +00005888 break;
5889 }
5890 }
5891 if (i == nbCache) {
5892 /*
Daniel Veillardd1640922001-12-17 15:30:10 +00005893 * OK we need to recreate a new namespace definition
Owen Taylor3473f882001-02-23 17:55:21 +00005894 */
5895 n = xmlNewReconciliedNs(doc, tree, attr->ns);
5896 if (n != NULL) { /* :-( what if else ??? */
5897 /*
5898 * check if we need to grow the cache buffers.
5899 */
5900 if (sizeCache <= nbCache) {
5901 sizeCache *= 2;
5902 oldNs = (xmlNsPtr *) xmlRealloc(oldNs, sizeCache *
5903 sizeof(xmlNsPtr));
5904 if (oldNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005905 xmlTreeErrMemory("fixing namespaces");
Owen Taylor3473f882001-02-23 17:55:21 +00005906 xmlFree(newNs);
5907 return(-1);
5908 }
5909 newNs = (xmlNsPtr *) xmlRealloc(newNs, sizeCache *
5910 sizeof(xmlNsPtr));
5911 if (newNs == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00005912 xmlTreeErrMemory("fixing namespaces");
Owen Taylor3473f882001-02-23 17:55:21 +00005913 xmlFree(oldNs);
5914 return(-1);
5915 }
5916 }
5917 newNs[nbCache] = n;
5918 oldNs[nbCache++] = attr->ns;
5919 attr->ns = n;
5920 }
5921 }
5922 }
5923 attr = attr->next;
5924 }
5925
5926 /*
5927 * Browse the full subtree, deep first
5928 */
Daniel Veillardac996a12004-07-30 12:02:58 +00005929 if (node->children != NULL && node->type != XML_ENTITY_REF_NODE) {
Owen Taylor3473f882001-02-23 17:55:21 +00005930 /* deep first */
5931 node = node->children;
5932 } else if ((node != tree) && (node->next != NULL)) {
5933 /* then siblings */
5934 node = node->next;
5935 } else if (node != tree) {
5936 /* go up to parents->next if needed */
5937 while (node != tree) {
5938 if (node->parent != NULL)
5939 node = node->parent;
5940 if ((node != tree) && (node->next != NULL)) {
5941 node = node->next;
5942 break;
5943 }
5944 if (node->parent == NULL) {
5945 node = NULL;
5946 break;
5947 }
5948 }
5949 /* exit condition */
5950 if (node == tree)
5951 node = NULL;
Daniel Veillard1e774382002-03-06 17:35:40 +00005952 } else
5953 break;
Owen Taylor3473f882001-02-23 17:55:21 +00005954 }
Daniel Veillardf742d342002-03-07 00:05:35 +00005955 if (oldNs != NULL)
5956 xmlFree(oldNs);
5957 if (newNs != NULL)
5958 xmlFree(newNs);
Owen Taylor3473f882001-02-23 17:55:21 +00005959 return(ret);
5960}
Daniel Veillard652327a2003-09-29 18:02:38 +00005961#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00005962
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00005963static xmlAttrPtr
5964xmlGetPropNodeInternal(xmlNodePtr node, const xmlChar *name,
5965 const xmlChar *nsName, int useDTD)
5966{
5967 xmlAttrPtr prop;
5968
5969 if ((node == NULL) || (node->type != XML_ELEMENT_NODE) || (name == NULL))
5970 return(NULL);
5971
5972 if (node->properties != NULL) {
5973 prop = node->properties;
5974 if (nsName == NULL) {
5975 /*
5976 * We want the attr to be in no namespace.
5977 */
5978 do {
5979 if ((prop->ns == NULL) && xmlStrEqual(prop->name, name)) {
5980 return(prop);
5981 }
5982 prop = prop->next;
5983 } while (prop != NULL);
5984 } else {
5985 /*
5986 * We want the attr to be in the specified namespace.
5987 */
5988 do {
5989 if ((prop->ns != NULL) && xmlStrEqual(prop->name, name) &&
5990 ((prop->ns->href == nsName) ||
5991 xmlStrEqual(prop->ns->href, nsName)))
5992 {
5993 return(prop);
5994 }
5995 prop = prop->next;
5996 } while (prop != NULL);
5997 }
5998 }
5999
6000#ifdef LIBXML_TREE_ENABLED
6001 if (! useDTD)
6002 return(NULL);
6003 /*
6004 * Check if there is a default/fixed attribute declaration in
6005 * the internal or external subset.
6006 */
6007 if ((node->doc != NULL) && (node->doc->intSubset != NULL)) {
6008 xmlDocPtr doc = node->doc;
6009 xmlAttributePtr attrDecl = NULL;
6010 xmlChar *elemQName, *tmpstr = NULL;
6011
6012 /*
6013 * We need the QName of the element for the DTD-lookup.
6014 */
6015 if ((node->ns != NULL) && (node->ns->prefix != NULL)) {
6016 tmpstr = xmlStrdup(node->ns->prefix);
6017 tmpstr = xmlStrcat(tmpstr, BAD_CAST ":");
6018 tmpstr = xmlStrcat(tmpstr, node->name);
6019 if (tmpstr == NULL)
6020 return(NULL);
6021 elemQName = tmpstr;
6022 } else
6023 elemQName = (xmlChar *) node->name;
6024 if (nsName == NULL) {
6025 /*
6026 * The common and nice case: Attr in no namespace.
6027 */
6028 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset,
6029 elemQName, name, NULL);
6030 if ((attrDecl == NULL) && (doc->extSubset != NULL)) {
6031 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset,
6032 elemQName, name, NULL);
6033 }
6034 } else {
6035 xmlNsPtr *nsList, *cur;
6036
6037 /*
6038 * The ugly case: Search using the prefixes of in-scope
6039 * ns-decls corresponding to @nsName.
6040 */
6041 nsList = xmlGetNsList(node->doc, node);
6042 if (nsList == NULL) {
6043 if (tmpstr != NULL)
6044 xmlFree(tmpstr);
6045 return(NULL);
6046 }
6047 cur = nsList;
6048 while (*cur != NULL) {
6049 if (xmlStrEqual((*cur)->href, nsName)) {
6050 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, elemQName,
6051 name, (*cur)->prefix);
6052 if (attrDecl)
6053 break;
6054 if (doc->extSubset != NULL) {
6055 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, elemQName,
6056 name, (*cur)->prefix);
6057 if (attrDecl)
6058 break;
6059 }
6060 }
6061 cur++;
6062 }
6063 xmlFree(nsList);
6064 }
6065 if (tmpstr != NULL)
6066 xmlFree(tmpstr);
6067 /*
6068 * Only default/fixed attrs are relevant.
6069 */
6070 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL))
6071 return((xmlAttrPtr) attrDecl);
6072 }
6073#endif /* LIBXML_TREE_ENABLED */
6074 return(NULL);
6075}
6076
6077static xmlChar*
6078xmlGetPropNodeValueInternal(xmlAttrPtr prop)
6079{
6080 if (prop == NULL)
6081 return(NULL);
6082 if (prop->type == XML_ATTRIBUTE_NODE) {
6083 /*
6084 * Note that we return at least the empty string.
6085 * TODO: Do we really always want that?
6086 */
6087 if (prop->children != NULL) {
6088 if ((prop->children == prop->last) &&
6089 ((prop->children->type == XML_TEXT_NODE) ||
6090 (prop->children->type == XML_CDATA_SECTION_NODE)))
6091 {
6092 /*
6093 * Optimization for the common case: only 1 text node.
6094 */
6095 return(xmlStrdup(prop->children->content));
6096 } else {
6097 xmlChar *ret;
6098
6099 ret = xmlNodeListGetString(prop->doc, prop->children, 1);
6100 if (ret != NULL)
6101 return(ret);
6102 }
6103 }
6104 return(xmlStrdup((xmlChar *)""));
6105 } else if (prop->type == XML_ATTRIBUTE_DECL) {
6106 return(xmlStrdup(((xmlAttributePtr)prop)->defaultValue));
6107 }
6108 return(NULL);
6109}
6110
Owen Taylor3473f882001-02-23 17:55:21 +00006111/**
6112 * xmlHasProp:
6113 * @node: the node
6114 * @name: the attribute name
6115 *
6116 * Search an attribute associated to a node
6117 * This function also looks in DTD attribute declaration for #FIXED or
6118 * default declaration values unless DTD use has been turned off.
6119 *
6120 * Returns the attribute or the attribute declaration or NULL if
6121 * neither was found.
6122 */
6123xmlAttrPtr
6124xmlHasProp(xmlNodePtr node, const xmlChar *name) {
6125 xmlAttrPtr prop;
6126 xmlDocPtr doc;
6127
Daniel Veillard8874b942005-08-25 13:19:21 +00006128 if ((node == NULL) || (node->type != XML_ELEMENT_NODE) || (name == NULL))
6129 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006130 /*
6131 * Check on the properties attached to the node
6132 */
6133 prop = node->properties;
6134 while (prop != NULL) {
6135 if (xmlStrEqual(prop->name, name)) {
6136 return(prop);
6137 }
6138 prop = prop->next;
6139 }
6140 if (!xmlCheckDTD) return(NULL);
6141
6142 /*
6143 * Check if there is a default declaration in the internal
6144 * or external subsets
6145 */
6146 doc = node->doc;
6147 if (doc != NULL) {
6148 xmlAttributePtr attrDecl;
6149 if (doc->intSubset != NULL) {
6150 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name);
6151 if ((attrDecl == NULL) && (doc->extSubset != NULL))
6152 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name);
Daniel Veillard75eb1ad2003-07-07 14:42:44 +00006153 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL))
6154 /* return attribute declaration only if a default value is given
6155 (that includes #FIXED declarations) */
Owen Taylor3473f882001-02-23 17:55:21 +00006156 return((xmlAttrPtr) attrDecl);
6157 }
6158 }
6159 return(NULL);
6160}
6161
6162/**
Daniel Veillarde95e2392001-06-06 10:46:28 +00006163 * xmlHasNsProp:
6164 * @node: the node
6165 * @name: the attribute name
Daniel Veillardca2366a2001-06-11 12:09:01 +00006166 * @nameSpace: the URI of the namespace
Daniel Veillarde95e2392001-06-06 10:46:28 +00006167 *
6168 * Search for an attribute associated to a node
6169 * This attribute has to be anchored in the namespace specified.
6170 * This does the entity substitution.
6171 * This function looks in DTD attribute declaration for #FIXED or
6172 * default declaration values unless DTD use has been turned off.
William M. Brack2c228442004-10-03 04:10:00 +00006173 * Note that a namespace of NULL indicates to use the default namespace.
Daniel Veillarde95e2392001-06-06 10:46:28 +00006174 *
6175 * Returns the attribute or the attribute declaration or NULL
6176 * if neither was found.
6177 */
6178xmlAttrPtr
Daniel Veillardca2366a2001-06-11 12:09:01 +00006179xmlHasNsProp(xmlNodePtr node, const xmlChar *name, const xmlChar *nameSpace) {
Daniel Veillarde95e2392001-06-06 10:46:28 +00006180
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006181 return(xmlGetPropNodeInternal(node, name, nameSpace, xmlCheckDTD));
Daniel Veillarde95e2392001-06-06 10:46:28 +00006182}
6183
6184/**
Owen Taylor3473f882001-02-23 17:55:21 +00006185 * xmlGetProp:
6186 * @node: the node
6187 * @name: the attribute name
6188 *
6189 * Search and get the value of an attribute associated to a node
6190 * This does the entity substitution.
6191 * This function looks in DTD attribute declaration for #FIXED or
6192 * default declaration values unless DTD use has been turned off.
Daniel Veillard784b9352003-02-16 15:50:27 +00006193 * NOTE: this function acts independently of namespaces associated
Daniel Veillard71531f32003-02-05 13:19:53 +00006194 * to the attribute. Use xmlGetNsProp() or xmlGetNoNsProp()
6195 * for namespace aware processing.
Owen Taylor3473f882001-02-23 17:55:21 +00006196 *
6197 * Returns the attribute value or NULL if not found.
Daniel Veillardbd9afb52002-09-25 22:25:35 +00006198 * It's up to the caller to free the memory with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00006199 */
6200xmlChar *
6201xmlGetProp(xmlNodePtr node, const xmlChar *name) {
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006202 xmlAttrPtr prop;
Owen Taylor3473f882001-02-23 17:55:21 +00006203
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006204 prop = xmlHasProp(node, name);
6205 if (prop == NULL)
6206 return(NULL);
6207 return(xmlGetPropNodeValueInternal(prop));
Owen Taylor3473f882001-02-23 17:55:21 +00006208}
6209
6210/**
Daniel Veillard71531f32003-02-05 13:19:53 +00006211 * xmlGetNoNsProp:
6212 * @node: the node
6213 * @name: the attribute name
6214 *
6215 * Search and get the value of an attribute associated to a node
6216 * This does the entity substitution.
6217 * This function looks in DTD attribute declaration for #FIXED or
6218 * default declaration values unless DTD use has been turned off.
6219 * This function is similar to xmlGetProp except it will accept only
6220 * an attribute in no namespace.
6221 *
6222 * Returns the attribute value or NULL if not found.
6223 * It's up to the caller to free the memory with xmlFree().
6224 */
6225xmlChar *
6226xmlGetNoNsProp(xmlNodePtr node, const xmlChar *name) {
6227 xmlAttrPtr prop;
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006228
6229 prop = xmlGetPropNodeInternal(node, name, NULL, xmlCheckDTD);
6230 if (prop == NULL)
Daniel Veillard8874b942005-08-25 13:19:21 +00006231 return(NULL);
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006232 return(xmlGetPropNodeValueInternal(prop));
Daniel Veillard71531f32003-02-05 13:19:53 +00006233}
6234
6235/**
Owen Taylor3473f882001-02-23 17:55:21 +00006236 * xmlGetNsProp:
6237 * @node: the node
6238 * @name: the attribute name
Daniel Veillardca2366a2001-06-11 12:09:01 +00006239 * @nameSpace: the URI of the namespace
Owen Taylor3473f882001-02-23 17:55:21 +00006240 *
6241 * Search and get the value of an attribute associated to a node
6242 * This attribute has to be anchored in the namespace specified.
6243 * This does the entity substitution.
6244 * This function looks in DTD attribute declaration for #FIXED or
6245 * default declaration values unless DTD use has been turned off.
6246 *
6247 * Returns the attribute value or NULL if not found.
Daniel Veillardbd9afb52002-09-25 22:25:35 +00006248 * It's up to the caller to free the memory with xmlFree().
Owen Taylor3473f882001-02-23 17:55:21 +00006249 */
6250xmlChar *
Daniel Veillardca2366a2001-06-11 12:09:01 +00006251xmlGetNsProp(xmlNodePtr node, const xmlChar *name, const xmlChar *nameSpace) {
Owen Taylor3473f882001-02-23 17:55:21 +00006252 xmlAttrPtr prop;
Owen Taylor3473f882001-02-23 17:55:21 +00006253
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006254 prop = xmlGetPropNodeInternal(node, name, nameSpace, xmlCheckDTD);
6255 if (prop == NULL)
Owen Taylor3473f882001-02-23 17:55:21 +00006256 return(NULL);
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006257 return(xmlGetPropNodeValueInternal(prop));
Owen Taylor3473f882001-02-23 17:55:21 +00006258}
6259
Daniel Veillard2156d432004-03-04 15:59:36 +00006260#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
6261/**
6262 * xmlUnsetProp:
6263 * @node: the node
6264 * @name: the attribute name
6265 *
6266 * Remove an attribute carried by a node.
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006267 * This handles only attributes in no namespace.
Daniel Veillard2156d432004-03-04 15:59:36 +00006268 * Returns 0 if successful, -1 if not found
6269 */
6270int
6271xmlUnsetProp(xmlNodePtr node, const xmlChar *name) {
Kasimier T. Buchcik65c2f1d2005-10-17 12:39:58 +00006272 xmlAttrPtr prop;
Daniel Veillard2156d432004-03-04 15:59:36 +00006273
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006274 prop = xmlGetPropNodeInternal(node, name, NULL, 0);
6275 if (prop == NULL)
Daniel Veillard2156d432004-03-04 15:59:36 +00006276 return(-1);
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006277 xmlUnlinkNode((xmlNodePtr) prop);
6278 xmlFreeProp(prop);
6279 return(0);
Daniel Veillard2156d432004-03-04 15:59:36 +00006280}
6281
6282/**
6283 * xmlUnsetNsProp:
6284 * @node: the node
6285 * @ns: the namespace definition
6286 * @name: the attribute name
6287 *
6288 * Remove an attribute carried by a node.
6289 * Returns 0 if successful, -1 if not found
6290 */
6291int
6292xmlUnsetNsProp(xmlNodePtr node, xmlNsPtr ns, const xmlChar *name) {
Kasimier T. Buchcik65c2f1d2005-10-17 12:39:58 +00006293 xmlAttrPtr prop;
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006294
6295 prop = xmlGetPropNodeInternal(node, name, (ns != NULL) ? ns->href : NULL, 0);
6296 if (prop == NULL)
Daniel Veillard2156d432004-03-04 15:59:36 +00006297 return(-1);
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006298 xmlUnlinkNode((xmlNodePtr) prop);
6299 xmlFreeProp(prop);
6300 return(0);
Daniel Veillard2156d432004-03-04 15:59:36 +00006301}
6302#endif
6303
6304#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00006305/**
6306 * xmlSetProp:
6307 * @node: the node
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006308 * @name: the attribute name (a QName)
Owen Taylor3473f882001-02-23 17:55:21 +00006309 * @value: the attribute value
6310 *
6311 * Set (or reset) an attribute carried by a node.
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006312 * If @name has a prefix, then the corresponding
6313 * namespace-binding will be used, if in scope; it is an
6314 * error it there's no such ns-binding for the prefix in
6315 * scope.
Owen Taylor3473f882001-02-23 17:55:21 +00006316 * Returns the attribute pointer.
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006317 *
Owen Taylor3473f882001-02-23 17:55:21 +00006318 */
6319xmlAttrPtr
6320xmlSetProp(xmlNodePtr node, const xmlChar *name, const xmlChar *value) {
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00006321 int len;
6322 const xmlChar *nqname;
Owen Taylor3473f882001-02-23 17:55:21 +00006323
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00006324 if ((node == NULL) || (name == NULL) || (node->type != XML_ELEMENT_NODE))
Owen Taylor3473f882001-02-23 17:55:21 +00006325 return(NULL);
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00006326
6327 /*
6328 * handle QNames
6329 */
6330 nqname = xmlSplitQName3(name, &len);
6331 if (nqname != NULL) {
6332 xmlNsPtr ns;
6333 xmlChar *prefix = xmlStrndup(name, len);
6334 ns = xmlSearchNs(node->doc, node, prefix);
6335 if (prefix != NULL)
6336 xmlFree(prefix);
6337 if (ns != NULL)
6338 return(xmlSetNsProp(node, ns, nqname, value));
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006339 /*
6340 * If we get a QName and the prefix has no namespace-
6341 * binding in scope, then this is an error.
6342 * TODO: Previously this falled-back to non-ns handling.
6343 * Should we revert this?
6344 */
6345 return(NULL);
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00006346 }
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006347 return(xmlSetNsProp(node, NULL, name, value));
Owen Taylor3473f882001-02-23 17:55:21 +00006348}
6349
6350/**
6351 * xmlSetNsProp:
6352 * @node: the node
6353 * @ns: the namespace definition
6354 * @name: the attribute name
6355 * @value: the attribute value
6356 *
6357 * Set (or reset) an attribute carried by a node.
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006358 * The ns structure must be in scope, this is not checked
Owen Taylor3473f882001-02-23 17:55:21 +00006359 *
6360 * Returns the attribute pointer.
6361 */
6362xmlAttrPtr
6363xmlSetNsProp(xmlNodePtr node, xmlNsPtr ns, const xmlChar *name,
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006364 const xmlChar *value)
6365{
Owen Taylor3473f882001-02-23 17:55:21 +00006366 xmlAttrPtr prop;
6367
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006368 if (ns && (ns->href == NULL))
Owen Taylor3473f882001-02-23 17:55:21 +00006369 return(NULL);
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006370 prop = xmlGetPropNodeInternal(node, name, (ns != NULL) ? ns->href : NULL, 0);
6371 if (prop != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00006372 /*
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006373 * Modify the attribute's value.
6374 */
6375 if (prop->atype == XML_ATTRIBUTE_ID) {
6376 xmlRemoveID(node->doc, prop);
6377 prop->atype = XML_ATTRIBUTE_ID;
6378 }
6379 if (prop->children != NULL)
6380 xmlFreeNodeList(prop->children);
6381 prop->children = NULL;
6382 prop->last = NULL;
6383 prop->ns = ns;
6384 if (value != NULL) {
6385 xmlChar *buffer;
6386 xmlNodePtr tmp;
6387
6388 buffer = xmlEncodeEntitiesReentrant(node->doc, value);
6389 prop->children = xmlStringGetNodeList(node->doc, buffer);
Owen Taylor3473f882001-02-23 17:55:21 +00006390 prop->last = NULL;
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006391 tmp = prop->children;
6392 while (tmp != NULL) {
6393 tmp->parent = (xmlNodePtr) prop;
6394 if (tmp->next == NULL)
6395 prop->last = tmp;
6396 tmp = tmp->next;
6397 }
6398 xmlFree(buffer);
6399 }
6400 if (prop->atype == XML_ATTRIBUTE_ID)
6401 xmlAddID(NULL, node->doc, value, prop);
6402 return(prop);
Owen Taylor3473f882001-02-23 17:55:21 +00006403 }
Kasimier T. Buchcik30f874d2006-03-02 18:04:29 +00006404 /*
6405 * No equal attr found; create a new one.
6406 */
6407 return(xmlNewPropInternal(node, ns, name, value, 0));
Owen Taylor3473f882001-02-23 17:55:21 +00006408}
6409
Daniel Veillard652327a2003-09-29 18:02:38 +00006410#endif /* LIBXML_TREE_ENABLED */
Daniel Veillard75bea542001-05-11 17:41:21 +00006411
6412/**
Owen Taylor3473f882001-02-23 17:55:21 +00006413 * xmlNodeIsText:
6414 * @node: the node
6415 *
6416 * Is this node a Text node ?
6417 * Returns 1 yes, 0 no
6418 */
6419int
6420xmlNodeIsText(xmlNodePtr node) {
6421 if (node == NULL) return(0);
6422
6423 if (node->type == XML_TEXT_NODE) return(1);
6424 return(0);
6425}
6426
6427/**
6428 * xmlIsBlankNode:
6429 * @node: the node
6430 *
6431 * Checks whether this node is an empty or whitespace only
6432 * (and possibly ignorable) text-node.
6433 *
6434 * Returns 1 yes, 0 no
6435 */
6436int
6437xmlIsBlankNode(xmlNodePtr node) {
6438 const xmlChar *cur;
6439 if (node == NULL) return(0);
6440
Daniel Veillard7db37732001-07-12 01:20:08 +00006441 if ((node->type != XML_TEXT_NODE) &&
6442 (node->type != XML_CDATA_SECTION_NODE))
6443 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006444 if (node->content == NULL) return(1);
Owen Taylor3473f882001-02-23 17:55:21 +00006445 cur = node->content;
Owen Taylor3473f882001-02-23 17:55:21 +00006446 while (*cur != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00006447 if (!IS_BLANK_CH(*cur)) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006448 cur++;
6449 }
6450
6451 return(1);
6452}
6453
6454/**
6455 * xmlTextConcat:
6456 * @node: the node
6457 * @content: the content
Daniel Veillard60087f32001-10-10 09:45:09 +00006458 * @len: @content length
Owen Taylor3473f882001-02-23 17:55:21 +00006459 *
6460 * Concat the given string at the end of the existing node content
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00006461 *
6462 * Returns -1 in case of error, 0 otherwise
Owen Taylor3473f882001-02-23 17:55:21 +00006463 */
6464
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00006465int
Owen Taylor3473f882001-02-23 17:55:21 +00006466xmlTextConcat(xmlNodePtr node, const xmlChar *content, int len) {
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00006467 if (node == NULL) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00006468
6469 if ((node->type != XML_TEXT_NODE) &&
6470 (node->type != XML_CDATA_SECTION_NODE)) {
6471#ifdef DEBUG_TREE
6472 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00006473 "xmlTextConcat: node is not text nor CDATA\n");
Owen Taylor3473f882001-02-23 17:55:21 +00006474#endif
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00006475 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00006476 }
William M. Brack7762bb12004-01-04 14:49:01 +00006477 /* need to check if content is currently in the dictionary */
Daniel Veillard8874b942005-08-25 13:19:21 +00006478 if ((node->content == (xmlChar *) &(node->properties)) ||
6479 ((node->doc != NULL) && (node->doc->dict != NULL) &&
6480 xmlDictOwns(node->doc->dict, node->content))) {
William M. Brack7762bb12004-01-04 14:49:01 +00006481 node->content = xmlStrncatNew(node->content, content, len);
6482 } else {
6483 node->content = xmlStrncat(node->content, content, len);
6484 }
Daniel Veillard8874b942005-08-25 13:19:21 +00006485 node->properties = NULL;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00006486 if (node->content == NULL)
6487 return(-1);
6488 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006489}
6490
6491/************************************************************************
6492 * *
6493 * Output : to a FILE or in memory *
6494 * *
6495 ************************************************************************/
6496
Owen Taylor3473f882001-02-23 17:55:21 +00006497/**
6498 * xmlBufferCreate:
6499 *
6500 * routine to create an XML buffer.
6501 * returns the new structure.
6502 */
6503xmlBufferPtr
6504xmlBufferCreate(void) {
6505 xmlBufferPtr ret;
6506
6507 ret = (xmlBufferPtr) xmlMalloc(sizeof(xmlBuffer));
6508 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006509 xmlTreeErrMemory("creating buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00006510 return(NULL);
6511 }
6512 ret->use = 0;
Daniel Veillarde356c282001-03-10 12:32:04 +00006513 ret->size = xmlDefaultBufferSize;
Owen Taylor3473f882001-02-23 17:55:21 +00006514 ret->alloc = xmlBufferAllocScheme;
Daniel Veillard3c908dc2003-04-19 00:07:51 +00006515 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar));
Owen Taylor3473f882001-02-23 17:55:21 +00006516 if (ret->content == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006517 xmlTreeErrMemory("creating buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00006518 xmlFree(ret);
6519 return(NULL);
6520 }
6521 ret->content[0] = 0;
6522 return(ret);
6523}
6524
6525/**
6526 * xmlBufferCreateSize:
6527 * @size: initial size of buffer
6528 *
6529 * routine to create an XML buffer.
6530 * returns the new structure.
6531 */
6532xmlBufferPtr
6533xmlBufferCreateSize(size_t size) {
6534 xmlBufferPtr ret;
6535
6536 ret = (xmlBufferPtr) xmlMalloc(sizeof(xmlBuffer));
6537 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006538 xmlTreeErrMemory("creating buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00006539 return(NULL);
6540 }
6541 ret->use = 0;
6542 ret->alloc = xmlBufferAllocScheme;
6543 ret->size = (size ? size+2 : 0); /* +1 for ending null */
6544 if (ret->size){
Daniel Veillard3c908dc2003-04-19 00:07:51 +00006545 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar));
Owen Taylor3473f882001-02-23 17:55:21 +00006546 if (ret->content == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006547 xmlTreeErrMemory("creating buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00006548 xmlFree(ret);
6549 return(NULL);
6550 }
6551 ret->content[0] = 0;
6552 } else
6553 ret->content = NULL;
6554 return(ret);
6555}
6556
6557/**
Daniel Veillard53350552003-09-18 13:35:51 +00006558 * xmlBufferCreateStatic:
6559 * @mem: the memory area
6560 * @size: the size in byte
6561 *
MST 2003 John Flecka0e7e932003-12-19 03:13:47 +00006562 * routine to create an XML buffer from an immutable memory area.
6563 * The area won't be modified nor copied, and is expected to be
Daniel Veillard53350552003-09-18 13:35:51 +00006564 * present until the end of the buffer lifetime.
6565 *
6566 * returns the new structure.
6567 */
6568xmlBufferPtr
6569xmlBufferCreateStatic(void *mem, size_t size) {
6570 xmlBufferPtr ret;
6571
6572 if ((mem == NULL) || (size == 0))
6573 return(NULL);
6574
6575 ret = (xmlBufferPtr) xmlMalloc(sizeof(xmlBuffer));
6576 if (ret == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006577 xmlTreeErrMemory("creating buffer");
Daniel Veillard53350552003-09-18 13:35:51 +00006578 return(NULL);
6579 }
6580 ret->use = size;
6581 ret->size = size;
6582 ret->alloc = XML_BUFFER_ALLOC_IMMUTABLE;
6583 ret->content = (xmlChar *) mem;
6584 return(ret);
6585}
6586
6587/**
Owen Taylor3473f882001-02-23 17:55:21 +00006588 * xmlBufferSetAllocationScheme:
Daniel Veillardbd9afb52002-09-25 22:25:35 +00006589 * @buf: the buffer to tune
Owen Taylor3473f882001-02-23 17:55:21 +00006590 * @scheme: allocation scheme to use
6591 *
6592 * Sets the allocation scheme for this buffer
6593 */
6594void
6595xmlBufferSetAllocationScheme(xmlBufferPtr buf,
6596 xmlBufferAllocationScheme scheme) {
6597 if (buf == NULL) {
6598#ifdef DEBUG_BUFFER
6599 xmlGenericError(xmlGenericErrorContext,
6600 "xmlBufferSetAllocationScheme: buf == NULL\n");
6601#endif
6602 return;
6603 }
Daniel Veillard53350552003-09-18 13:35:51 +00006604 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return;
Owen Taylor3473f882001-02-23 17:55:21 +00006605
6606 buf->alloc = scheme;
6607}
6608
6609/**
6610 * xmlBufferFree:
6611 * @buf: the buffer to free
6612 *
Daniel Veillard9d06d302002-01-22 18:15:52 +00006613 * Frees an XML buffer. It frees both the content and the structure which
6614 * encapsulate it.
Owen Taylor3473f882001-02-23 17:55:21 +00006615 */
6616void
6617xmlBufferFree(xmlBufferPtr buf) {
6618 if (buf == NULL) {
6619#ifdef DEBUG_BUFFER
6620 xmlGenericError(xmlGenericErrorContext,
6621 "xmlBufferFree: buf == NULL\n");
6622#endif
6623 return;
6624 }
Daniel Veillard53350552003-09-18 13:35:51 +00006625
6626 if ((buf->content != NULL) &&
6627 (buf->alloc != XML_BUFFER_ALLOC_IMMUTABLE)) {
Owen Taylor3473f882001-02-23 17:55:21 +00006628 xmlFree(buf->content);
6629 }
Owen Taylor3473f882001-02-23 17:55:21 +00006630 xmlFree(buf);
6631}
6632
6633/**
6634 * xmlBufferEmpty:
6635 * @buf: the buffer
6636 *
6637 * empty a buffer.
6638 */
6639void
6640xmlBufferEmpty(xmlBufferPtr buf) {
Daniel Veillardd005b9e2004-11-03 17:07:05 +00006641 if (buf == NULL) return;
Owen Taylor3473f882001-02-23 17:55:21 +00006642 if (buf->content == NULL) return;
6643 buf->use = 0;
Daniel Veillard53350552003-09-18 13:35:51 +00006644 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) {
Daniel Veillard16fa96c2003-09-23 21:50:54 +00006645 buf->content = BAD_CAST "";
Daniel Veillard53350552003-09-18 13:35:51 +00006646 } else {
6647 memset(buf->content, 0, buf->size);
6648 }
Owen Taylor3473f882001-02-23 17:55:21 +00006649}
6650
6651/**
6652 * xmlBufferShrink:
6653 * @buf: the buffer to dump
6654 * @len: the number of xmlChar to remove
6655 *
6656 * Remove the beginning of an XML buffer.
6657 *
Daniel Veillardd1640922001-12-17 15:30:10 +00006658 * Returns the number of #xmlChar removed, or -1 in case of failure.
Owen Taylor3473f882001-02-23 17:55:21 +00006659 */
6660int
6661xmlBufferShrink(xmlBufferPtr buf, unsigned int len) {
Daniel Veillard3d97e662004-11-04 10:49:00 +00006662 if (buf == NULL) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00006663 if (len == 0) return(0);
6664 if (len > buf->use) return(-1);
6665
6666 buf->use -= len;
Daniel Veillard53350552003-09-18 13:35:51 +00006667 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) {
6668 buf->content += len;
6669 } else {
6670 memmove(buf->content, &buf->content[len], buf->use * sizeof(xmlChar));
6671 buf->content[buf->use] = 0;
6672 }
Owen Taylor3473f882001-02-23 17:55:21 +00006673 return(len);
6674}
6675
6676/**
6677 * xmlBufferGrow:
6678 * @buf: the buffer
6679 * @len: the minimum free size to allocate
6680 *
6681 * Grow the available space of an XML buffer.
6682 *
6683 * Returns the new available space or -1 in case of error
6684 */
6685int
6686xmlBufferGrow(xmlBufferPtr buf, unsigned int len) {
6687 int size;
6688 xmlChar *newbuf;
6689
Daniel Veillard3d97e662004-11-04 10:49:00 +00006690 if (buf == NULL) return(-1);
6691
Daniel Veillard53350552003-09-18 13:35:51 +00006692 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006693 if (len + buf->use < buf->size) return(0);
6694
William M. Brack30fe43f2004-07-26 18:00:58 +00006695/*
6696 * Windows has a BIG problem on realloc timing, so we try to double
6697 * the buffer size (if that's enough) (bug 146697)
6698 */
6699#ifdef WIN32
6700 if (buf->size > len)
6701 size = buf->size * 2;
6702 else
6703 size = buf->use + len + 100;
6704#else
Owen Taylor3473f882001-02-23 17:55:21 +00006705 size = buf->use + len + 100;
William M. Brack30fe43f2004-07-26 18:00:58 +00006706#endif
Owen Taylor3473f882001-02-23 17:55:21 +00006707
6708 newbuf = (xmlChar *) xmlRealloc(buf->content, size);
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006709 if (newbuf == NULL) {
6710 xmlTreeErrMemory("growing buffer");
6711 return(-1);
6712 }
Owen Taylor3473f882001-02-23 17:55:21 +00006713 buf->content = newbuf;
6714 buf->size = size;
6715 return(buf->size - buf->use);
6716}
6717
6718/**
6719 * xmlBufferDump:
6720 * @file: the file output
6721 * @buf: the buffer to dump
6722 *
6723 * Dumps an XML buffer to a FILE *.
Daniel Veillardd1640922001-12-17 15:30:10 +00006724 * Returns the number of #xmlChar written
Owen Taylor3473f882001-02-23 17:55:21 +00006725 */
6726int
6727xmlBufferDump(FILE *file, xmlBufferPtr buf) {
6728 int ret;
6729
6730 if (buf == NULL) {
6731#ifdef DEBUG_BUFFER
6732 xmlGenericError(xmlGenericErrorContext,
6733 "xmlBufferDump: buf == NULL\n");
6734#endif
6735 return(0);
6736 }
6737 if (buf->content == NULL) {
6738#ifdef DEBUG_BUFFER
6739 xmlGenericError(xmlGenericErrorContext,
6740 "xmlBufferDump: buf->content == NULL\n");
6741#endif
6742 return(0);
6743 }
Daniel Veillardcd337f02001-11-22 18:20:37 +00006744 if (file == NULL)
6745 file = stdout;
Owen Taylor3473f882001-02-23 17:55:21 +00006746 ret = fwrite(buf->content, sizeof(xmlChar), buf->use, file);
6747 return(ret);
6748}
6749
6750/**
6751 * xmlBufferContent:
6752 * @buf: the buffer
6753 *
Daniel Veillard5e2dace2001-07-18 19:30:27 +00006754 * Function to extract the content of a buffer
6755 *
Owen Taylor3473f882001-02-23 17:55:21 +00006756 * Returns the internal content
6757 */
6758
Daniel Veillard5e2dace2001-07-18 19:30:27 +00006759const xmlChar *
Owen Taylor3473f882001-02-23 17:55:21 +00006760xmlBufferContent(const xmlBufferPtr buf)
6761{
6762 if(!buf)
6763 return NULL;
6764
6765 return buf->content;
6766}
6767
6768/**
6769 * xmlBufferLength:
6770 * @buf: the buffer
6771 *
Daniel Veillard5e2dace2001-07-18 19:30:27 +00006772 * Function to get the length of a buffer
6773 *
Owen Taylor3473f882001-02-23 17:55:21 +00006774 * Returns the length of data in the internal content
6775 */
6776
6777int
6778xmlBufferLength(const xmlBufferPtr buf)
6779{
6780 if(!buf)
6781 return 0;
6782
6783 return buf->use;
6784}
6785
6786/**
6787 * xmlBufferResize:
6788 * @buf: the buffer to resize
6789 * @size: the desired size
6790 *
Daniel Veillardd1640922001-12-17 15:30:10 +00006791 * Resize a buffer to accommodate minimum size of @size.
Owen Taylor3473f882001-02-23 17:55:21 +00006792 *
6793 * Returns 0 in case of problems, 1 otherwise
6794 */
6795int
6796xmlBufferResize(xmlBufferPtr buf, unsigned int size)
6797{
6798 unsigned int newSize;
6799 xmlChar* rebuf = NULL;
6800
Daniel Veillardd005b9e2004-11-03 17:07:05 +00006801 if (buf == NULL)
6802 return(0);
6803
Daniel Veillard53350552003-09-18 13:35:51 +00006804 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return(0);
6805
Owen Taylor3473f882001-02-23 17:55:21 +00006806 /* Don't resize if we don't have to */
6807 if (size < buf->size)
6808 return 1;
6809
6810 /* figure out new size */
6811 switch (buf->alloc){
6812 case XML_BUFFER_ALLOC_DOUBLEIT:
Daniel Veillardbf629492004-04-20 22:20:59 +00006813 /*take care of empty case*/
6814 newSize = (buf->size ? buf->size*2 : size + 10);
Owen Taylor3473f882001-02-23 17:55:21 +00006815 while (size > newSize) newSize *= 2;
6816 break;
6817 case XML_BUFFER_ALLOC_EXACT:
6818 newSize = size+10;
6819 break;
6820 default:
6821 newSize = size+10;
6822 break;
6823 }
6824
6825 if (buf->content == NULL)
Daniel Veillard3c908dc2003-04-19 00:07:51 +00006826 rebuf = (xmlChar *) xmlMallocAtomic(newSize * sizeof(xmlChar));
Daniel Veillard6155d8a2003-08-19 15:01:28 +00006827 else if (buf->size - buf->use < 100) {
Owen Taylor3473f882001-02-23 17:55:21 +00006828 rebuf = (xmlChar *) xmlRealloc(buf->content,
6829 newSize * sizeof(xmlChar));
Daniel Veillard6155d8a2003-08-19 15:01:28 +00006830 } else {
6831 /*
6832 * if we are reallocating a buffer far from being full, it's
6833 * better to make a new allocation and copy only the used range
6834 * and free the old one.
6835 */
6836 rebuf = (xmlChar *) xmlMallocAtomic(newSize * sizeof(xmlChar));
6837 if (rebuf != NULL) {
6838 memcpy(rebuf, buf->content, buf->use);
6839 xmlFree(buf->content);
William M. Brack42331a92004-07-29 07:07:16 +00006840 rebuf[buf->use] = 0;
Daniel Veillard6155d8a2003-08-19 15:01:28 +00006841 }
6842 }
Owen Taylor3473f882001-02-23 17:55:21 +00006843 if (rebuf == NULL) {
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006844 xmlTreeErrMemory("growing buffer");
Owen Taylor3473f882001-02-23 17:55:21 +00006845 return 0;
6846 }
6847 buf->content = rebuf;
6848 buf->size = newSize;
6849
6850 return 1;
6851}
6852
6853/**
6854 * xmlBufferAdd:
6855 * @buf: the buffer to dump
Daniel Veillardd1640922001-12-17 15:30:10 +00006856 * @str: the #xmlChar string
6857 * @len: the number of #xmlChar to add
Owen Taylor3473f882001-02-23 17:55:21 +00006858 *
Daniel Veillard60087f32001-10-10 09:45:09 +00006859 * Add a string range to an XML buffer. if len == -1, the length of
Owen Taylor3473f882001-02-23 17:55:21 +00006860 * str is recomputed.
William M. Bracka3215c72004-07-31 16:24:01 +00006861 *
6862 * Returns 0 successful, a positive error code number otherwise
6863 * and -1 in case of internal or API error.
Owen Taylor3473f882001-02-23 17:55:21 +00006864 */
William M. Bracka3215c72004-07-31 16:24:01 +00006865int
Owen Taylor3473f882001-02-23 17:55:21 +00006866xmlBufferAdd(xmlBufferPtr buf, const xmlChar *str, int len) {
6867 unsigned int needSize;
6868
Daniel Veillardd005b9e2004-11-03 17:07:05 +00006869 if ((str == NULL) || (buf == NULL)) {
William M. Bracka3215c72004-07-31 16:24:01 +00006870 return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00006871 }
William M. Bracka3215c72004-07-31 16:24:01 +00006872 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00006873 if (len < -1) {
6874#ifdef DEBUG_BUFFER
6875 xmlGenericError(xmlGenericErrorContext,
6876 "xmlBufferAdd: len < 0\n");
6877#endif
William M. Bracka3215c72004-07-31 16:24:01 +00006878 return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00006879 }
William M. Bracka3215c72004-07-31 16:24:01 +00006880 if (len == 0) return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00006881
6882 if (len < 0)
6883 len = xmlStrlen(str);
6884
William M. Bracka3215c72004-07-31 16:24:01 +00006885 if (len <= 0) return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00006886
6887 needSize = buf->use + len + 2;
6888 if (needSize > buf->size){
6889 if (!xmlBufferResize(buf, needSize)){
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006890 xmlTreeErrMemory("growing buffer");
William M. Bracka3215c72004-07-31 16:24:01 +00006891 return XML_ERR_NO_MEMORY;
Owen Taylor3473f882001-02-23 17:55:21 +00006892 }
6893 }
6894
6895 memmove(&buf->content[buf->use], str, len*sizeof(xmlChar));
6896 buf->use += len;
6897 buf->content[buf->use] = 0;
William M. Bracka3215c72004-07-31 16:24:01 +00006898 return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00006899}
6900
6901/**
6902 * xmlBufferAddHead:
6903 * @buf: the buffer
Daniel Veillardd1640922001-12-17 15:30:10 +00006904 * @str: the #xmlChar string
6905 * @len: the number of #xmlChar to add
Owen Taylor3473f882001-02-23 17:55:21 +00006906 *
6907 * Add a string range to the beginning of an XML buffer.
Daniel Veillard60087f32001-10-10 09:45:09 +00006908 * if len == -1, the length of @str is recomputed.
William M. Bracka3215c72004-07-31 16:24:01 +00006909 *
6910 * Returns 0 successful, a positive error code number otherwise
6911 * and -1 in case of internal or API error.
Owen Taylor3473f882001-02-23 17:55:21 +00006912 */
William M. Bracka3215c72004-07-31 16:24:01 +00006913int
Owen Taylor3473f882001-02-23 17:55:21 +00006914xmlBufferAddHead(xmlBufferPtr buf, const xmlChar *str, int len) {
6915 unsigned int needSize;
6916
Daniel Veillardd005b9e2004-11-03 17:07:05 +00006917 if (buf == NULL)
6918 return(-1);
William M. Bracka3215c72004-07-31 16:24:01 +00006919 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00006920 if (str == NULL) {
6921#ifdef DEBUG_BUFFER
6922 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00006923 "xmlBufferAddHead: str == NULL\n");
Owen Taylor3473f882001-02-23 17:55:21 +00006924#endif
William M. Bracka3215c72004-07-31 16:24:01 +00006925 return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00006926 }
6927 if (len < -1) {
6928#ifdef DEBUG_BUFFER
6929 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00006930 "xmlBufferAddHead: len < 0\n");
Owen Taylor3473f882001-02-23 17:55:21 +00006931#endif
William M. Bracka3215c72004-07-31 16:24:01 +00006932 return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00006933 }
William M. Bracka3215c72004-07-31 16:24:01 +00006934 if (len == 0) return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00006935
6936 if (len < 0)
6937 len = xmlStrlen(str);
6938
William M. Bracka3215c72004-07-31 16:24:01 +00006939 if (len <= 0) return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00006940
6941 needSize = buf->use + len + 2;
6942 if (needSize > buf->size){
6943 if (!xmlBufferResize(buf, needSize)){
Daniel Veillard18ec16e2003-10-07 23:16:40 +00006944 xmlTreeErrMemory("growing buffer");
William M. Bracka3215c72004-07-31 16:24:01 +00006945 return XML_ERR_NO_MEMORY;
Owen Taylor3473f882001-02-23 17:55:21 +00006946 }
6947 }
6948
6949 memmove(&buf->content[len], &buf->content[0], buf->use * sizeof(xmlChar));
6950 memmove(&buf->content[0], str, len * sizeof(xmlChar));
6951 buf->use += len;
6952 buf->content[buf->use] = 0;
William M. Bracka3215c72004-07-31 16:24:01 +00006953 return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00006954}
6955
6956/**
6957 * xmlBufferCat:
William M. Bracka3215c72004-07-31 16:24:01 +00006958 * @buf: the buffer to add to
Daniel Veillardd1640922001-12-17 15:30:10 +00006959 * @str: the #xmlChar string
Owen Taylor3473f882001-02-23 17:55:21 +00006960 *
6961 * Append a zero terminated string to an XML buffer.
William M. Bracka3215c72004-07-31 16:24:01 +00006962 *
6963 * Returns 0 successful, a positive error code number otherwise
6964 * and -1 in case of internal or API error.
Owen Taylor3473f882001-02-23 17:55:21 +00006965 */
William M. Bracka3215c72004-07-31 16:24:01 +00006966int
Owen Taylor3473f882001-02-23 17:55:21 +00006967xmlBufferCat(xmlBufferPtr buf, const xmlChar *str) {
Daniel Veillardd005b9e2004-11-03 17:07:05 +00006968 if (buf == NULL)
6969 return(-1);
William M. Bracka3215c72004-07-31 16:24:01 +00006970 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return -1;
6971 if (str == NULL) return -1;
6972 return xmlBufferAdd(buf, str, -1);
Owen Taylor3473f882001-02-23 17:55:21 +00006973}
6974
6975/**
6976 * xmlBufferCCat:
6977 * @buf: the buffer to dump
6978 * @str: the C char string
6979 *
6980 * Append a zero terminated C string to an XML buffer.
William M. Bracka3215c72004-07-31 16:24:01 +00006981 *
6982 * Returns 0 successful, a positive error code number otherwise
6983 * and -1 in case of internal or API error.
Owen Taylor3473f882001-02-23 17:55:21 +00006984 */
William M. Bracka3215c72004-07-31 16:24:01 +00006985int
Owen Taylor3473f882001-02-23 17:55:21 +00006986xmlBufferCCat(xmlBufferPtr buf, const char *str) {
6987 const char *cur;
6988
Daniel Veillardd005b9e2004-11-03 17:07:05 +00006989 if (buf == NULL)
6990 return(-1);
William M. Bracka3215c72004-07-31 16:24:01 +00006991 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00006992 if (str == NULL) {
6993#ifdef DEBUG_BUFFER
6994 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd1640922001-12-17 15:30:10 +00006995 "xmlBufferCCat: str == NULL\n");
Owen Taylor3473f882001-02-23 17:55:21 +00006996#endif
William M. Bracka3215c72004-07-31 16:24:01 +00006997 return -1;
Owen Taylor3473f882001-02-23 17:55:21 +00006998 }
6999 for (cur = str;*cur != 0;cur++) {
7000 if (buf->use + 10 >= buf->size) {
7001 if (!xmlBufferResize(buf, buf->use+10)){
Daniel Veillard18ec16e2003-10-07 23:16:40 +00007002 xmlTreeErrMemory("growing buffer");
William M. Bracka3215c72004-07-31 16:24:01 +00007003 return XML_ERR_NO_MEMORY;
Owen Taylor3473f882001-02-23 17:55:21 +00007004 }
7005 }
7006 buf->content[buf->use++] = *cur;
7007 }
7008 buf->content[buf->use] = 0;
William M. Bracka3215c72004-07-31 16:24:01 +00007009 return 0;
Owen Taylor3473f882001-02-23 17:55:21 +00007010}
7011
7012/**
7013 * xmlBufferWriteCHAR:
7014 * @buf: the XML buffer
7015 * @string: the string to add
7016 *
7017 * routine which manages and grows an output buffer. This one adds
7018 * xmlChars at the end of the buffer.
7019 */
7020void
Daniel Veillard53350552003-09-18 13:35:51 +00007021xmlBufferWriteCHAR(xmlBufferPtr buf, const xmlChar *string) {
Daniel Veillardd005b9e2004-11-03 17:07:05 +00007022 if (buf == NULL)
7023 return;
Daniel Veillard53350552003-09-18 13:35:51 +00007024 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return;
Owen Taylor3473f882001-02-23 17:55:21 +00007025 xmlBufferCat(buf, string);
7026}
7027
7028/**
7029 * xmlBufferWriteChar:
7030 * @buf: the XML buffer output
7031 * @string: the string to add
7032 *
7033 * routine which manage and grows an output buffer. This one add
7034 * C chars at the end of the array.
7035 */
7036void
7037xmlBufferWriteChar(xmlBufferPtr buf, const char *string) {
Daniel Veillardd005b9e2004-11-03 17:07:05 +00007038 if (buf == NULL)
7039 return;
Daniel Veillard53350552003-09-18 13:35:51 +00007040 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return;
Owen Taylor3473f882001-02-23 17:55:21 +00007041 xmlBufferCCat(buf, string);
7042}
7043
7044
7045/**
7046 * xmlBufferWriteQuotedString:
7047 * @buf: the XML buffer output
7048 * @string: the string to add
7049 *
7050 * routine which manage and grows an output buffer. This one writes
Daniel Veillardd1640922001-12-17 15:30:10 +00007051 * a quoted or double quoted #xmlChar string, checking first if it holds
Owen Taylor3473f882001-02-23 17:55:21 +00007052 * quote or double-quotes internally
7053 */
7054void
7055xmlBufferWriteQuotedString(xmlBufferPtr buf, const xmlChar *string) {
Daniel Veillard39057f42003-08-04 01:33:43 +00007056 const xmlChar *cur, *base;
Daniel Veillardd005b9e2004-11-03 17:07:05 +00007057 if (buf == NULL)
7058 return;
Daniel Veillard53350552003-09-18 13:35:51 +00007059 if (buf->alloc == XML_BUFFER_ALLOC_IMMUTABLE) return;
Daniel Veillard39057f42003-08-04 01:33:43 +00007060 if (xmlStrchr(string, '\"')) {
Daniel Veillard20aa0fb2003-08-04 19:43:15 +00007061 if (xmlStrchr(string, '\'')) {
Owen Taylor3473f882001-02-23 17:55:21 +00007062#ifdef DEBUG_BUFFER
7063 xmlGenericError(xmlGenericErrorContext,
7064 "xmlBufferWriteQuotedString: string contains quote and double-quotes !\n");
7065#endif
Daniel Veillard39057f42003-08-04 01:33:43 +00007066 xmlBufferCCat(buf, "\"");
7067 base = cur = string;
7068 while(*cur != 0){
7069 if(*cur == '"'){
7070 if (base != cur)
7071 xmlBufferAdd(buf, base, cur - base);
7072 xmlBufferAdd(buf, BAD_CAST "&quot;", 6);
7073 cur++;
7074 base = cur;
7075 }
7076 else {
7077 cur++;
7078 }
7079 }
7080 if (base != cur)
7081 xmlBufferAdd(buf, base, cur - base);
7082 xmlBufferCCat(buf, "\"");
Owen Taylor3473f882001-02-23 17:55:21 +00007083 }
Daniel Veillard39057f42003-08-04 01:33:43 +00007084 else{
7085 xmlBufferCCat(buf, "\'");
7086 xmlBufferCat(buf, string);
7087 xmlBufferCCat(buf, "\'");
7088 }
Owen Taylor3473f882001-02-23 17:55:21 +00007089 } else {
7090 xmlBufferCCat(buf, "\"");
7091 xmlBufferCat(buf, string);
7092 xmlBufferCCat(buf, "\"");
7093 }
7094}
7095
7096
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00007097/**
7098 * xmlGetDocCompressMode:
7099 * @doc: the document
7100 *
7101 * get the compression ratio for a document, ZLIB based
7102 * Returns 0 (uncompressed) to 9 (max compression)
7103 */
7104int
7105xmlGetDocCompressMode (xmlDocPtr doc) {
7106 if (doc == NULL) return(-1);
7107 return(doc->compression);
7108}
7109
7110/**
7111 * xmlSetDocCompressMode:
7112 * @doc: the document
7113 * @mode: the compression ratio
7114 *
7115 * set the compression ratio for a document, ZLIB based
7116 * Correct values: 0 (uncompressed) to 9 (max compression)
7117 */
7118void
7119xmlSetDocCompressMode (xmlDocPtr doc, int mode) {
7120 if (doc == NULL) return;
7121 if (mode < 0) doc->compression = 0;
7122 else if (mode > 9) doc->compression = 9;
7123 else doc->compression = mode;
7124}
7125
7126/**
7127 * xmlGetCompressMode:
7128 *
7129 * get the default compression mode used, ZLIB based.
7130 * Returns 0 (uncompressed) to 9 (max compression)
7131 */
7132int
7133xmlGetCompressMode(void)
7134{
7135 return (xmlCompressMode);
7136}
7137
7138/**
7139 * xmlSetCompressMode:
7140 * @mode: the compression ratio
7141 *
7142 * set the default compression mode used, ZLIB based
7143 * Correct values: 0 (uncompressed) to 9 (max compression)
7144 */
7145void
7146xmlSetCompressMode(int mode) {
7147 if (mode < 0) xmlCompressMode = 0;
7148 else if (mode > 9) xmlCompressMode = 9;
7149 else xmlCompressMode = mode;
7150}
7151
Kasimier T. Buchcik4d9c9482005-06-27 15:04:46 +00007152/*
7153* xmlDOMWrapNewCtxt:
7154*
7155* Allocates and initializes a new DOM-wrapper context.
7156*
7157* Returns the xmlDOMWrapCtxtPtr or NULL in case of an internal errror.
7158*/
7159xmlDOMWrapCtxtPtr
7160xmlDOMWrapNewCtxt(void)
7161{
7162 xmlDOMWrapCtxtPtr ret;
7163
7164 ret = xmlMalloc(sizeof(xmlDOMWrapCtxt));
7165 if (ret == NULL) {
7166 xmlTreeErrMemory("allocating DOM-wrapper context");
7167 return (NULL);
7168 }
7169 memset(ret, 0, sizeof(xmlDOMWrapCtxt));
7170 return (ret);
7171}
7172
7173/*
7174* xmlDOMWrapFreeCtxt:
7175* @ctxt: the DOM-wrapper context
7176*
7177* Frees the DOM-wrapper context.
7178*/
7179void
7180xmlDOMWrapFreeCtxt(xmlDOMWrapCtxtPtr ctxt)
7181{
7182 if (ctxt == NULL)
7183 return;
7184 xmlFree(ctxt);
7185}
7186
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007187#define XML_TREE_NSMAP_PARENT -1
7188#define XML_TREE_NSMAP_XML -2
7189#define XML_TREE_NSMAP_DOC -3
7190#define XML_TREE_NSMAP_CUSTOM -4
7191
7192typedef struct xmlNsMapItem *xmlNsMapItemPtr;
7193struct xmlNsMapItem {
7194 xmlNsMapItemPtr next;
7195 xmlNsMapItemPtr prev;
7196 xmlNsPtr oldNs; /* old ns decl reference */
7197 xmlNsPtr newNs; /* new ns decl reference */
7198 int shadowDepth; /* Shadowed at this depth */
7199 /*
7200 * depth:
7201 * >= 0 == @node's ns-decls
7202 * -1 == @parent's ns-decls
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00007203 * -2 == the doc->oldNs XML ns-decl
7204 * -3 == the doc->oldNs storage ns-decls
7205 * -4 == ns-decls provided via custom ns-handling
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007206 */
7207 int depth;
7208};
7209
7210/*
7211* xmlTreeAddNsMapItem:
7212* @map: the ns-map
7213* @cur: the current map entry to append a new entry to
7214* @oldNs: the old ns-struct
7215* @newNs: the new ns-struct
7216* @depth: depth and ns-kind information
7217*
7218* Frees the ns-map
7219*/
7220static xmlNsMapItemPtr
7221xmlDOMWrapNSNormAddNsMapItem(xmlNsMapItemPtr *map,
7222 xmlNsMapItemPtr *cur,
7223 xmlNsPtr oldNs,
7224 xmlNsPtr newNs,
7225 int depth)
7226{
7227 xmlNsMapItemPtr ret;
7228
7229 if ((cur != NULL) && (*cur != NULL) && ((*cur)->next != NULL)) {
7230 /*
7231 * Reuse.
7232 */
7233 ret = (*cur)->next;
7234 *cur = ret;
7235 } else {
7236 ret = (xmlNsMapItemPtr) xmlMalloc(sizeof(struct xmlNsMapItem));
7237 if (ret == NULL) {
7238 xmlTreeErrMemory("allocating namespace map item");
7239 return (NULL);
7240 }
7241 memset(ret, 0, sizeof(struct xmlNsMapItem));
7242 if (*map == NULL) {
7243 /*
7244 * First ever.
7245 */
7246 *map = ret;
7247 ret->prev = ret;
7248 if (cur != NULL)
7249 *cur = ret;
7250 } else {
7251 if (cur) {
7252 /*
7253 * Append.
7254 */
7255 (*cur)->next = ret;
7256 ret->prev = *cur;
7257 *cur = ret;
7258 } else {
7259 /*
7260 * Set on first position.
7261 */
7262 ret->next = (*map);
7263 ret->prev = (*map)->prev;
7264 (*map)->prev = ret;
7265 *map = ret;
7266 }
7267 }
7268 }
7269 ret->oldNs = oldNs;
7270 ret->newNs = newNs;
7271 ret->shadowDepth = -1;
7272 ret->depth = depth;
7273 return (ret);
7274}
7275
7276/*
7277* xmlTreeFreeNsMap:
7278* @map: the ns-map
7279*
7280* Frees the ns-map
7281*/
7282static void
7283xmlDOMWrapNSNormFreeNsMap(xmlNsMapItemPtr map)
7284{
7285 xmlNsMapItemPtr mi = map, miprev;
7286
7287 while (mi != NULL) {
7288 miprev = mi;
7289 mi = mi->next;
7290 xmlFree(miprev);
7291 }
7292}
7293
7294/*
7295* xmlTreeEnsureXMLDecl:
7296* @doc: the doc
7297*
7298* Ensures that there is an XML namespace declaration on the doc.
7299*
7300* Returns the XML ns-struct or NULL on API and internal errors.
7301*/
7302static xmlNsPtr
7303xmlTreeEnsureXMLDecl(xmlDocPtr doc)
7304{
7305 if (doc == NULL)
7306 return (NULL);
7307 if (doc->oldNs != NULL)
7308 return (doc->oldNs);
7309 {
7310 xmlNsPtr ns;
7311 ns = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
7312 if (ns == NULL) {
7313 xmlTreeErrMemory(
7314 "allocating the XML namespace");
7315 return (NULL);
7316 }
7317 memset(ns, 0, sizeof(xmlNs));
7318 ns->type = XML_LOCAL_NAMESPACE;
7319 ns->href = xmlStrdup(XML_XML_NAMESPACE);
7320 ns->prefix = xmlStrdup((const xmlChar *)"xml");
7321 doc->oldNs = ns;
7322 return (ns);
7323 }
7324}
7325
7326/*
7327* xmlDOMWrapStoreNs:
7328* @doc: the doc
7329* @nsName: the namespace name
7330* @prefix: the prefix
7331*
7332* Creates or reuses an xmlNs struct on doc->oldNs with
7333* the given prefix and namespace name.
7334*
7335* Returns the aquired ns struct or NULL in case of an API
7336* or internal error.
7337*/
7338static xmlNsPtr
7339xmlDOMWrapStoreNs(xmlDocPtr doc,
7340 const xmlChar *nsName,
7341 const xmlChar *prefix)
7342{
7343 xmlNsPtr ns;
7344
7345 if (doc == NULL)
7346 return (NULL);
7347 ns = xmlTreeEnsureXMLDecl(doc);
7348 if (ns == NULL)
7349 return (NULL);
7350 if (ns->next != NULL) {
7351 /* Reuse. */
7352 ns = ns->next;
7353 while (ns != NULL) {
7354 if (((ns->prefix == prefix) ||
7355 xmlStrEqual(ns->prefix, prefix)) &&
7356 xmlStrEqual(ns->href, nsName)) {
7357 return (ns);
7358 }
7359 if (ns->next == NULL)
7360 break;
7361 ns = ns->next;
7362 }
7363 }
7364 /* Create. */
7365 ns->next = xmlNewNs(NULL, nsName, prefix);
7366 return (ns->next);
7367}
7368
7369/*
7370* xmlTreeLookupNsListByPrefix:
7371* @nsList: a list of ns-structs
7372* @prefix: the searched prefix
7373*
7374* Searches for a ns-decl with the given prefix in @nsList.
7375*
7376* Returns the ns-decl if found, NULL if not found and on
7377* API errors.
7378*/
7379static xmlNsPtr
7380xmlTreeNSListLookupByPrefix(xmlNsPtr nsList, const xmlChar *prefix)
7381{
7382 if (nsList == NULL)
7383 return (NULL);
7384 {
7385 xmlNsPtr ns;
7386 ns = nsList;
7387 do {
7388 if ((prefix == ns->prefix) ||
7389 xmlStrEqual(prefix, ns->prefix)) {
7390 return (ns);
7391 }
7392 ns = ns->next;
7393 } while (ns != NULL);
7394 }
7395 return (NULL);
7396}
7397
7398/*
7399*
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00007400* xmlDOMWrapNSNormGatherInScopeNs:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007401* @map: the namespace map
7402* @node: the node to start with
7403*
7404* Puts in-scope namespaces into the ns-map.
7405*
7406* Returns 0 on success, -1 on API or internal errors.
7407*/
7408static int
7409xmlDOMWrapNSNormGatherInScopeNs(xmlNsMapItemPtr *map,
7410 xmlNodePtr node)
7411{
7412 xmlNodePtr cur;
7413 xmlNsPtr ns;
7414 xmlNsMapItemPtr mi;
7415 int shadowed;
7416
7417 if ((map == NULL) || (*map != NULL))
7418 return (-1);
7419 /*
7420 * Get in-scope ns-decls of @parent.
7421 */
7422 cur = node;
7423 while ((cur != NULL) && (cur != (xmlNodePtr) cur->doc)) {
7424 if (cur->type == XML_ELEMENT_NODE) {
7425 if (cur->nsDef != NULL) {
7426 ns = cur->nsDef;
7427 do {
7428 shadowed = 0;
7429 if (*map != NULL) {
7430 /*
7431 * Skip shadowed prefixes.
7432 */
7433 for (mi = *map; mi != NULL; mi = mi->next) {
7434 if ((ns->prefix == mi->newNs->prefix) ||
7435 xmlStrEqual(ns->prefix, mi->newNs->prefix)) {
7436 shadowed = 1;
7437 break;
7438 }
7439 }
7440 }
7441 /*
7442 * Insert mapping.
7443 */
7444 mi = xmlDOMWrapNSNormAddNsMapItem(map, NULL, NULL,
7445 ns, XML_TREE_NSMAP_PARENT);
7446 if (mi == NULL)
7447 return (-1);
7448 if (shadowed)
7449 mi->shadowDepth = 0;
7450 ns = ns->next;
7451 } while (ns != NULL);
7452 }
7453 }
7454 cur = cur->parent;
7455 }
7456 return (0);
7457}
7458
7459/*
7460* XML_TREE_ADOPT_STR: If we have a dest-dict, put @str in the dict;
7461* otherwise copy it, when it was in the source-dict.
7462*/
7463#define XML_TREE_ADOPT_STR(str) \
7464 if (adoptStr && (str != NULL)) { \
7465 if (destDoc->dict) { \
Daniel Veillard7e21fd12005-07-03 21:44:07 +00007466 const xmlChar *old = str; \
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007467 str = xmlDictLookup(destDoc->dict, str, -1); \
Daniel Veillard7e21fd12005-07-03 21:44:07 +00007468 if ((sourceDoc == NULL) || (sourceDoc->dict == NULL) || \
7469 (!xmlDictOwns(sourceDoc->dict, old))) \
Daniel Veillard39e5c892005-07-03 22:48:50 +00007470 xmlFree((char *)old); \
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007471 } else if ((sourceDoc) && (sourceDoc->dict) && \
7472 xmlDictOwns(sourceDoc->dict, str)) { \
7473 str = BAD_CAST xmlStrdup(str); \
7474 } \
7475 }
7476
7477/*
7478* XML_TREE_ADOPT_STR_2: If @str was in the source-dict, then
7479* put it in dest-dict or copy it.
7480*/
7481#define XML_TREE_ADOPT_STR_2(str) \
7482 if (adoptStr && (str != NULL) && (sourceDoc != NULL) && \
7483 (sourceDoc->dict != NULL) && \
7484 xmlDictOwns(sourceDoc->dict, cur->content)) { \
7485 if (destDoc->dict) \
7486 cur->content = (xmlChar *) \
7487 xmlDictLookup(destDoc->dict, cur->content, -1); \
7488 else \
7489 cur->content = xmlStrdup(BAD_CAST cur->content); \
7490 }
7491
7492/*
7493* xmlDOMWrapNSNormAddNsMapItem2:
7494*
7495* For internal use. Adds a ns-decl mapping.
7496*
7497* Returns 0 on success, -1 on internal errors.
7498*/
7499static int
7500xmlDOMWrapNSNormAddNsMapItem2(xmlNsPtr **list, int *size, int *number,
7501 xmlNsPtr oldNs, xmlNsPtr newNs)
7502{
7503 if (*list == NULL) {
7504 *list = (xmlNsPtr *) xmlMalloc(6 * sizeof(xmlNsPtr));
7505 if (*list == NULL) {
7506 xmlTreeErrMemory("alloc ns map item");
7507 return(-1);
7508 }
7509 *size = 3;
7510 *number = 0;
7511 } else if ((*number) >= (*size)) {
7512 *size *= 2;
7513 *list = (xmlNsPtr *) xmlRealloc(*list,
7514 (*size) * 2 * sizeof(xmlNsPtr));
7515 if (*list == NULL) {
7516 xmlTreeErrMemory("realloc ns map item");
7517 return(-1);
7518 }
7519 }
7520 (*list)[2 * (*number)] = oldNs;
7521 (*list)[2 * (*number) +1] = newNs;
7522 (*number)++;
7523 return (0);
7524}
7525
7526/*
7527* xmlDOMWrapRemoveNode:
Daniel Veillard304e78c2005-07-03 16:19:41 +00007528* @ctxt: a DOM wrapper context
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007529* @doc: the doc
7530* @node: the node to be removed.
Daniel Veillard304e78c2005-07-03 16:19:41 +00007531* @options: set of options, unused at the moment
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007532*
7533* Unlinks the given node from its owner.
7534* This will substitute ns-references to node->nsDef for
7535* ns-references to doc->oldNs, thus ensuring the removed
7536* branch to be autark wrt ns-references.
Kasimier T. Buchcik017264f2005-06-27 13:45:24 +00007537* WARNING: This function is in a experimental state.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007538*
7539* Returns 0 on success, 1 if the node is not supported,
7540* -1 on API and internal errors.
7541*/
7542int
7543xmlDOMWrapRemoveNode(xmlDOMWrapCtxtPtr ctxt, xmlDocPtr doc,
7544 xmlNodePtr node, int options ATTRIBUTE_UNUSED)
7545{
7546 xmlNsPtr *list = NULL;
7547 int sizeList, nbList, i, j;
7548 xmlNsPtr ns;
7549
7550 if ((node == NULL) || (doc == NULL) || (node->doc != doc))
7551 return (-1);
7552
7553 /* TODO: 0 or -1 ? */
7554 if (node->parent == NULL)
7555 return (0);
7556
7557 switch (node->type) {
7558 case XML_TEXT_NODE:
7559 case XML_CDATA_SECTION_NODE:
7560 case XML_ENTITY_REF_NODE:
7561 case XML_PI_NODE:
7562 case XML_COMMENT_NODE:
7563 xmlUnlinkNode(node);
7564 return (0);
7565 case XML_ELEMENT_NODE:
7566 case XML_ATTRIBUTE_NODE:
7567 break;
7568 default:
7569 return (1);
7570 }
7571 xmlUnlinkNode(node);
7572 /*
7573 * Save out-of-scope ns-references in doc->oldNs.
7574 */
7575 do {
7576 switch (node->type) {
7577 case XML_ELEMENT_NODE:
7578 if ((ctxt == NULL) && (node->nsDef != NULL)) {
7579 ns = node->nsDef;
7580 do {
7581 if (xmlDOMWrapNSNormAddNsMapItem2(&list, &sizeList,
7582 &nbList, ns, ns) == -1)
7583 goto internal_error;
7584 ns = ns->next;
7585 } while (ns != NULL);
7586 }
7587 /* No break on purpose. */
7588 case XML_ATTRIBUTE_NODE:
7589 if (node->ns != NULL) {
7590 /*
7591 * Find a mapping.
7592 */
7593 if (list != NULL) {
7594 for (i = 0, j = 0; i < nbList; i++, j += 2) {
7595 if (node->ns == list[j]) {
7596 node->ns = list[++j];
7597 goto next_node;
7598 }
7599 }
7600 }
7601 ns = NULL;
7602 if (ctxt != NULL) {
7603 /*
7604 * User defined.
7605 */
7606 } else {
7607 /*
7608 * Add to doc's oldNs.
7609 */
7610 ns = xmlDOMWrapStoreNs(doc, node->ns->href,
7611 node->ns->prefix);
7612 if (ns == NULL)
7613 goto internal_error;
7614 }
7615 if (ns != NULL) {
7616 /*
7617 * Add mapping.
7618 */
7619 if (xmlDOMWrapNSNormAddNsMapItem2(&list, &sizeList,
7620 &nbList, node->ns, ns) == -1)
7621 goto internal_error;
7622 }
7623 node->ns = ns;
7624 }
7625 if ((node->type == XML_ELEMENT_NODE) &&
7626 (node->properties != NULL)) {
7627 node = (xmlNodePtr) node->properties;
7628 continue;
7629 }
7630 break;
7631 default:
7632 goto next_sibling;
7633 }
7634next_node:
7635 if ((node->type == XML_ELEMENT_NODE) &&
7636 (node->children != NULL)) {
7637 node = node->children;
7638 continue;
7639 }
7640next_sibling:
7641 if (node == NULL)
7642 break;
7643 if (node->next != NULL)
7644 node = node->next;
7645 else {
7646 node = node->parent;
7647 goto next_sibling;
7648 }
7649 } while (node != NULL);
7650
7651 if (list != NULL)
7652 xmlFree(list);
7653 return (0);
7654
7655internal_error:
7656 if (list != NULL)
7657 xmlFree(list);
7658 return (-1);
7659}
7660
7661/*
7662* xmlSearchNsByHrefStrict:
7663* @doc: the document
7664* @node: the start node
7665* @nsName: the searched namespace name
7666* @retNs: the resulting ns-decl
7667* @prefixed: if the found ns-decl must have a prefix (for attributes)
7668*
7669* Dynamically searches for a ns-declaration which matches
7670* the given @nsName in the ancestor-or-self axis of @node.
7671*
7672* Returns 1 if a ns-decl was found, 0 if not and -1 on API
7673* and internal errors.
7674*/
7675static int
7676xmlSearchNsByHrefStrict(xmlDocPtr doc, xmlNodePtr node, const xmlChar* nsName,
7677 xmlNsPtr *retNs, int prefixed)
7678{
7679 xmlNodePtr cur, prev = NULL, out = NULL;
7680 xmlNsPtr ns, prevns;
7681
7682 if ((doc == NULL) || (nsName == NULL) || (retNs == NULL))
7683 return (-1);
7684
7685 *retNs = NULL;
7686 if (xmlStrEqual(nsName, XML_XML_NAMESPACE)) {
7687 *retNs = xmlTreeEnsureXMLDecl(doc);
7688 if (*retNs == NULL)
7689 return (-1);
7690 return (1);
7691 }
7692 cur = node;
7693 do {
7694 if (cur->type == XML_ELEMENT_NODE) {
7695 if (cur->nsDef != NULL) {
7696 for (ns = cur->nsDef; ns != NULL; ns = ns->next) {
7697 if (prefixed && (ns->prefix == NULL))
7698 continue;
7699 if (prev != NULL) {
7700 /*
7701 * Check the last level of ns-decls for a
7702 * shadowing prefix.
7703 */
7704 prevns = prev->nsDef;
7705 do {
7706 if ((prevns->prefix == ns->prefix) ||
7707 ((prevns->prefix != NULL) &&
7708 (ns->prefix != NULL) &&
7709 xmlStrEqual(prevns->prefix, ns->prefix))) {
7710 /*
7711 * Shadowed.
7712 */
7713 break;
7714 }
7715 prevns = prevns->next;
7716 } while (prevns != NULL);
7717 if (prevns != NULL)
7718 continue;
7719 }
7720 /*
7721 * Ns-name comparison.
7722 */
7723 if ((nsName == ns->href) ||
7724 xmlStrEqual(nsName, ns->href)) {
7725 /*
7726 * At this point the prefix can only be shadowed,
7727 * if we are the the (at least) 3rd level of
7728 * ns-decls.
7729 */
7730 if (out) {
7731 int ret;
7732
7733 ret = xmlNsInScope(doc, node, prev, ns->prefix);
7734 if (ret < 0)
7735 return (-1);
7736 /*
7737 * TODO: Should we try to find a matching ns-name
7738 * only once? This here keeps on searching.
7739 * I think we should try further since, there might
7740 * be an other matching ns-decl with an unshadowed
7741 * prefix.
7742 */
7743 if (! ret)
7744 continue;
7745 }
7746 *retNs = ns;
7747 return (1);
7748 }
7749 }
7750 out = prev;
7751 prev = cur;
7752 }
7753 } else if ((node->type == XML_ENTITY_REF_NODE) ||
7754 (node->type == XML_ENTITY_NODE) ||
7755 (node->type == XML_ENTITY_DECL))
7756 return (0);
7757 cur = cur->parent;
7758 } while ((cur != NULL) && (cur->doc != (xmlDocPtr) cur));
7759 return (0);
7760}
7761
7762/*
7763* xmlDOMWrapNSNormDeclareNsForced:
7764* @doc: the doc
7765* @elem: the element-node to declare on
7766* @nsName: the namespace-name of the ns-decl
7767* @prefix: the preferred prefix of the ns-decl
7768* @checkShadow: ensure that the new ns-decl doesn't shadow ancestor ns-decls
7769*
7770* Declares a new namespace on @elem. It tries to use the
7771* given @prefix; if a ns-decl with the given prefix is already existent
7772* on @elem, it will generate an other prefix.
7773*
7774* Returns 1 if a ns-decl was found, 0 if not and -1 on API
7775* and internal errors.
7776*/
7777static xmlNsPtr
7778xmlDOMWrapNSNormDeclareNsForced(xmlDocPtr doc,
7779 xmlNodePtr elem,
7780 const xmlChar *nsName,
7781 const xmlChar *prefix,
7782 int checkShadow)
7783{
7784
7785 xmlNsPtr ret;
7786 char buf[50];
7787 const xmlChar *pref;
7788 int counter = 0;
7789 /*
7790 * Create a ns-decl on @anchor.
7791 */
7792 pref = prefix;
7793 while (1) {
7794 /*
7795 * Lookup whether the prefix is unused in elem's ns-decls.
7796 */
7797 if ((elem->nsDef != NULL) &&
7798 (xmlTreeNSListLookupByPrefix(elem->nsDef, pref) != NULL))
7799 goto ns_next_prefix;
7800 if (checkShadow && elem->parent &&
7801 ((xmlNodePtr) elem->parent->doc != elem->parent)) {
7802 /*
7803 * Does it shadow ancestor ns-decls?
7804 */
7805 if (xmlSearchNs(doc, elem->parent, pref) != NULL)
7806 goto ns_next_prefix;
7807 }
7808 ret = xmlNewNs(NULL, nsName, pref);
7809 if (ret == NULL)
7810 return (NULL);
7811 if (elem->nsDef == NULL)
7812 elem->nsDef = ret;
7813 else {
7814 xmlNsPtr ns2 = elem->nsDef;
7815 while (ns2->next != NULL)
7816 ns2 = ns2->next;
7817 ns2->next = ret;
7818 }
7819 return (ret);
7820ns_next_prefix:
7821 counter++;
7822 if (counter > 1000)
7823 return (NULL);
7824 if (prefix == NULL) {
7825 snprintf((char *) buf, sizeof(buf),
7826 "default%d", counter);
7827 } else
7828 snprintf((char *) buf, sizeof(buf),
7829 "%.30s%d", (char *)prefix, counter);
7830 pref = BAD_CAST buf;
7831 }
7832}
7833
7834/*
7835* xmlDOMWrapNSNormAquireNormalizedNs:
7836* @doc: the doc
7837* @elem: the element-node to declare namespaces on
7838* @ns: the ns-struct to use for the search
7839* @retNs: the found/created ns-struct
7840* @nsMap: the ns-map
7841* @topmi: the last ns-map entry
7842* @depth: the current tree depth
7843* @ancestorsOnly: search in ancestor ns-decls only
7844* @prefixed: if the searched ns-decl must have a prefix (for attributes)
7845*
7846* Searches for a matching ns-name in the ns-decls of @nsMap, if not
7847* found it will either declare it on @elem, or store it in doc->oldNs.
7848* If a new ns-decl needs to be declared on @elem, it tries to use the
7849* @ns->prefix for it, if this prefix is already in use on @elem, it will
7850* change the prefix or the new ns-decl.
7851*
7852* Returns 0 if succeeded, -1 otherwise and on API/internal errors.
7853*/
7854static int
7855xmlDOMWrapNSNormAquireNormalizedNs(xmlDocPtr doc,
7856 xmlNodePtr elem,
7857 xmlNsPtr ns,
7858 xmlNsPtr *retNs,
7859 xmlNsMapItemPtr *nsMap,
7860 xmlNsMapItemPtr *topmi,
7861 int depth,
7862 int ancestorsOnly,
7863 int prefixed)
7864{
7865 xmlNsMapItemPtr mi;
7866
7867 if ((doc == NULL) || (ns == NULL) || (retNs == NULL) ||
7868 (nsMap == NULL) || (topmi == NULL))
7869 return (-1);
7870
7871 *retNs = NULL;
7872 /*
7873 * Handle XML namespace.
7874 */
7875 if ((ns->prefix) &&
7876 (ns->prefix[0] == 'x') &&
7877 (ns->prefix[1] == 'm') &&
7878 (ns->prefix[2] == 'l') &&
7879 (ns->prefix[3] == 0)) {
7880 /*
7881 * Insert XML namespace mapping.
7882 */
7883 *retNs = xmlTreeEnsureXMLDecl(doc);
7884 if (*retNs == NULL)
7885 return (-1);
7886 return (0);
7887 }
7888 /*
7889 * If the search should be done in ancestors only and no
7890 * @elem (the first ancestor) was specified, then skip the search.
7891 */
7892 if ((! (ancestorsOnly && (elem == NULL))) &&
7893 (*nsMap != NULL)) {
7894
7895 /*
7896 * Try to find an equal ns-name in in-scope ns-decls.
7897 */
7898 for (mi = *nsMap; mi != (*topmi)->next; mi = mi->next) {
7899
7900 if ((mi->depth >= XML_TREE_NSMAP_PARENT) &&
7901 /*
7902 * This should be turned on to gain speed, if one knows
7903 * that the branch itself was already ns-wellformed and no
7904 * stale references existed. I.e. it searches in the ancestor
7905 * axis only.
7906 */
7907 ((! ancestorsOnly) || (mi->depth == XML_TREE_NSMAP_PARENT)) &&
7908 /* Skip shadowed prefixes. */
7909 (mi->shadowDepth == -1) &&
7910 /* Skip xmlns="" or xmlns:foo="". */
7911 ((mi->newNs->href != NULL) &&
7912 (mi->newNs->href[0] != 0)) &&
7913 /* Ensure a prefix if wanted. */
7914 ((! prefixed) || (mi->newNs->prefix != NULL)) &&
7915 /* Equal ns name */
7916 ((mi->newNs->href == ns->href) ||
7917 xmlStrEqual(mi->newNs->href, ns->href))) {
7918 /* Set the mapping. */
7919 mi->oldNs = ns;
7920 *retNs = mi->newNs;
7921 return (0);
7922 }
7923 }
7924 }
7925 /*
7926 * No luck, the namespace is out of scope or shadowed.
7927 */
7928 if (elem == NULL) {
7929 xmlNsPtr tmpns;
7930
7931 /*
7932 * Store ns-decls in "oldNs" of the document-node.
7933 */
7934 tmpns = xmlDOMWrapStoreNs(doc, ns->href, ns->prefix);
7935 if (tmpns == NULL)
7936 return (-1);
7937 /*
7938 * Insert mapping.
7939 */
7940 if (xmlDOMWrapNSNormAddNsMapItem(nsMap, NULL, ns,
7941 tmpns, XML_TREE_NSMAP_DOC) == NULL) {
7942 xmlFreeNs(tmpns);
7943 return (-1);
7944 }
7945 *retNs = tmpns;
7946 } else {
7947 xmlNsPtr tmpns;
7948
7949 tmpns = xmlDOMWrapNSNormDeclareNsForced(doc, elem, ns->href,
7950 ns->prefix, 0);
7951 if (tmpns == NULL)
7952 return (-1);
7953
7954 if (*nsMap != NULL) {
7955 /*
7956 * Does it shadow ancestor ns-decls?
7957 */
7958 for (mi = *nsMap; mi != (*topmi)->next; mi = mi->next) {
7959 if ((mi->depth < depth) &&
7960 (mi->shadowDepth == -1) &&
7961 ((ns->prefix == mi->newNs->prefix) ||
7962 xmlStrEqual(ns->prefix, mi->newNs->prefix))) {
7963 /*
7964 * Shadows.
7965 */
7966 mi->shadowDepth = depth;
7967 break;
7968 }
7969 }
7970 }
7971 if (xmlDOMWrapNSNormAddNsMapItem(nsMap, topmi, ns,
7972 tmpns, depth) == NULL) {
7973 xmlFreeNs(tmpns);
7974 return (-1);
7975 }
7976 *retNs = tmpns;
7977 }
7978 return (0);
7979}
7980
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00007981typedef enum {
7982 XML_DOM_RECONNS_REMOVEREDUND = 1<<0
7983} xmlDOMReconcileNSOptions;
7984
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007985/*
7986* xmlDOMWrapReconcileNamespaces:
Daniel Veillard304e78c2005-07-03 16:19:41 +00007987* @ctxt: DOM wrapper context, unused at the moment
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007988* @elem: the element-node
7989* @options: option flags
7990*
7991* Ensures that ns-references point to ns-decls hold on element-nodes.
7992* Ensures that the tree is namespace wellformed by creating additional
7993* ns-decls where needed. Note that, since prefixes of already existent
7994* ns-decls can be shadowed by this process, it could break QNames in
7995* attribute values or element content.
Kasimier T. Buchcik017264f2005-06-27 13:45:24 +00007996* WARNING: This function is in a experimental state.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00007997*
7998* Returns 0 if succeeded, -1 otherwise and on API/internal errors.
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00007999*/
8000
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008001int
8002xmlDOMWrapReconcileNamespaces(xmlDOMWrapCtxtPtr ctxt ATTRIBUTE_UNUSED,
8003 xmlNodePtr elem,
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008004 int options)
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008005{
8006 int depth = -1, adoptns = 0, parnsdone = 0;
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008007 xmlNsPtr ns, prevns;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008008 xmlDocPtr doc;
8009 xmlNodePtr cur, curElem = NULL;
8010 xmlNsMapItemPtr nsMap = NULL, topmi = NULL, mi;
8011 /* @ancestorsOnly should be set by an option flag. */
8012 int ancestorsOnly = 0;
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008013 int optRemoveDedundantNS =
8014 ((xmlDOMReconcileNSOptions) options & XML_DOM_RECONNS_REMOVEREDUND) ? 1 : 0;
8015 xmlNsPtr *listRedund = NULL;
8016 int sizeRedund = 0, nbRedund = 0, ret, i, j;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008017
8018 if ((elem == NULL) || (elem->doc == NULL) ||
8019 (elem->type != XML_ELEMENT_NODE))
8020 return (-1);
8021
8022 doc = elem->doc;
8023 cur = elem;
8024 do {
8025 switch (cur->type) {
8026 case XML_ELEMENT_NODE:
8027 adoptns = 1;
8028 curElem = cur;
8029 depth++;
8030 /*
8031 * Namespace declarations.
8032 */
8033 if (cur->nsDef != NULL) {
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008034 prevns = NULL;
Kasimier T. Buchcike8f8d752006-02-02 12:13:07 +00008035 ns = cur->nsDef;
8036 while (ns != NULL) {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008037 if (! parnsdone) {
8038 if ((elem->parent) &&
8039 ((xmlNodePtr) elem->parent->doc != elem->parent)) {
8040 /*
8041 * Gather ancestor in-scope ns-decls.
8042 */
8043 if (xmlDOMWrapNSNormGatherInScopeNs(&nsMap,
8044 elem->parent) == -1)
8045 goto internal_error;
8046 if (nsMap != NULL)
8047 topmi = nsMap->prev;
8048 }
8049 parnsdone = 1;
8050 }
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008051
8052 /*
8053 * Lookup the ns ancestor-axis for equal ns-decls in scope.
8054 */
8055 if (optRemoveDedundantNS && nsMap) {
8056 for (mi = nsMap; mi != topmi->next; mi = mi->next) {
8057 if ((mi->depth >= XML_TREE_NSMAP_PARENT) &&
8058 (mi->shadowDepth == -1) &&
8059 ((ns->prefix == mi->newNs->prefix) ||
8060 xmlStrEqual(ns->prefix, mi->newNs->prefix)) &&
8061 ((ns->href == mi->newNs->href) ||
8062 xmlStrEqual(ns->href, mi->newNs->href)))
8063 {
8064 /*
8065 * A redundant ns-decl was found.
8066 * Add it to the list of redundant ns-decls.
8067 */
8068 if (xmlDOMWrapNSNormAddNsMapItem2(&listRedund,
8069 &sizeRedund, &nbRedund, ns, mi->newNs) == -1)
8070 goto internal_error;
8071 /*
8072 * Remove the ns-decl from the element-node.
Kasimier T. Buchcike8f8d752006-02-02 12:13:07 +00008073 */
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008074 if (prevns)
8075 prevns->next = ns->next;
8076 else
Kasimier T. Buchcike8f8d752006-02-02 12:13:07 +00008077 cur->nsDef = ns->next;
8078 goto next_ns_decl;
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008079 }
8080 }
8081 }
8082
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008083 /*
8084 * Skip ns-references handling if the referenced
8085 * ns-decl is declared on the same element.
8086 */
8087 if ((cur->ns != NULL) && adoptns && (cur->ns == ns))
8088 adoptns = 0;
8089 /*
8090 * Does it shadow any ns-decl?
8091 */
8092 if (nsMap) {
8093 for (mi = nsMap; mi != topmi->next; mi = mi->next) {
8094 if ((mi->depth >= XML_TREE_NSMAP_PARENT) &&
8095 (mi->shadowDepth == -1) &&
8096 ((ns->prefix == mi->newNs->prefix) ||
8097 xmlStrEqual(ns->prefix, mi->newNs->prefix))) {
8098
8099 mi->shadowDepth = depth;
8100 }
8101 }
8102 }
8103 /*
8104 * Push mapping.
8105 */
8106 if (xmlDOMWrapNSNormAddNsMapItem(&nsMap, &topmi, ns, ns,
8107 depth) == NULL)
Kasimier T. Buchcike8f8d752006-02-02 12:13:07 +00008108 goto internal_error;
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008109
8110 prevns = ns;
Kasimier T. Buchcike8f8d752006-02-02 12:13:07 +00008111next_ns_decl:
8112 ns = ns->next;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008113 }
8114 }
8115 if (! adoptns)
8116 goto ns_end;
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008117 /* No break on purpose. */
8118 case XML_ATTRIBUTE_NODE:
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008119 /* No ns, no fun. */
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008120 if (cur->ns == NULL)
8121 goto ns_end;
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008122
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008123 if (! parnsdone) {
8124 if ((elem->parent) &&
8125 ((xmlNodePtr) elem->parent->doc != elem->parent)) {
8126 if (xmlDOMWrapNSNormGatherInScopeNs(&nsMap,
8127 elem->parent) == -1)
8128 goto internal_error;
8129 if (nsMap != NULL)
8130 topmi = nsMap->prev;
8131 }
8132 parnsdone = 1;
8133 }
8134 /*
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008135 * Adjust the reference if this was a redundant ns-decl.
8136 */
8137 if (listRedund) {
8138 for (i = 0, j = 0; i < nbRedund; i++, j += 2) {
8139 if (cur->ns == listRedund[j]) {
8140 cur->ns = listRedund[++j];
8141 break;
8142 }
8143 }
8144 }
8145 /*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008146 * Adopt ns-references.
8147 */
8148 if (nsMap != NULL) {
8149 /*
8150 * Search for a mapping.
8151 */
8152 for (mi = nsMap; mi != topmi->next; mi = mi->next) {
8153 if ((mi->shadowDepth == -1) &&
8154 (cur->ns == mi->oldNs)) {
8155
8156 cur->ns = mi->newNs;
8157 goto ns_end;
8158 }
8159 }
8160 }
8161 /*
8162 * Aquire a normalized ns-decl and add it to the map.
8163 */
8164 if (xmlDOMWrapNSNormAquireNormalizedNs(doc, curElem,
8165 cur->ns, &ns,
8166 &nsMap, &topmi, depth,
8167 ancestorsOnly,
8168 (cur->type == XML_ATTRIBUTE_NODE) ? 1 : 0) == -1)
8169 goto internal_error;
8170 cur->ns = ns;
8171
8172ns_end:
8173 if ((cur->type == XML_ELEMENT_NODE) &&
8174 (cur->properties != NULL)) {
8175 /*
8176 * Process attributes.
8177 */
8178 cur = (xmlNodePtr) cur->properties;
8179 continue;
8180 }
8181 break;
8182 default:
8183 goto next_sibling;
8184 }
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008185into_content:
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008186 if ((cur->type == XML_ELEMENT_NODE) &&
8187 (cur->children != NULL)) {
8188 /*
8189 * Process content of element-nodes only.
8190 */
8191 cur = cur->children;
8192 continue;
8193 }
8194next_sibling:
8195 if (cur == elem)
8196 break;
8197 if (cur->type == XML_ELEMENT_NODE) {
8198 if (nsMap != NULL) {
8199 /*
8200 * Pop mappings.
8201 */
8202 while ((topmi->depth >= 0) && (topmi->depth >= depth))
8203 topmi = topmi->prev;
8204 /*
8205 * Unshadow.
8206 */
8207 for (mi = nsMap; mi != topmi->next; mi = mi->next)
8208 if (mi->shadowDepth >= depth)
8209 mi->shadowDepth = -1;
8210 }
8211 depth--;
8212 }
8213 if (cur->next != NULL)
8214 cur = cur->next;
8215 else {
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008216 if (cur->type == XML_ATTRIBUTE_NODE) {
8217 cur = cur->parent;
8218 goto into_content;
8219 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008220 cur = cur->parent;
8221 goto next_sibling;
8222 }
8223 } while (cur != NULL);
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008224
8225 ret = 0;
8226 goto exit;
8227internal_error:
8228 ret = -1;
8229exit:
Kasimier T. Buchcike8f8d752006-02-02 12:13:07 +00008230 if (listRedund) {
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008231 for (i = 0, j = 0; i < nbRedund; i++, j += 2) {
8232 xmlFreeNs(listRedund[j]);
8233 }
8234 xmlFree(listRedund);
8235 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008236 if (nsMap != NULL)
8237 xmlDOMWrapNSNormFreeNsMap(nsMap);
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008238 return (ret);
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008239}
8240
8241/*
8242* xmlDOMWrapAdoptBranch:
8243* @ctxt: the optional context for custom processing
8244* @sourceDoc: the optional sourceDoc
8245* @node: the element-node to start with
8246* @destDoc: the destination doc for adoption
Kasimier T. Buchcike01b2fd2006-02-01 16:36:13 +00008247* @destParent: the optional new parent of @node in @destDoc
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00008248* @options: option flags
8249*
8250* Ensures that ns-references point to @destDoc: either to
8251* elements->nsDef entries if @destParent is given, or to
8252* @destDoc->oldNs otherwise.
8253* If @destParent is given, it ensures that the tree is namespace
8254* wellformed by creating additional ns-decls where needed.
8255* Note that, since prefixes of already existent ns-decls can be
8256* shadowed by this process, it could break QNames in attribute
8257* values or element content.
8258*
8259* Returns 0 if succeeded, -1 otherwise and on API/internal errors.
8260*/
8261static int
8262xmlDOMWrapAdoptBranch(xmlDOMWrapCtxtPtr ctxt,
8263 xmlDocPtr sourceDoc,
8264 xmlNodePtr node,
8265 xmlDocPtr destDoc,
8266 xmlNodePtr destParent,
8267 int options ATTRIBUTE_UNUSED)
8268{
8269 int ret = 0;
8270 xmlNodePtr cur, curElem = NULL;
8271 xmlNsMapItemPtr nsMap = NULL, topmi = NULL, mi;
8272 xmlNsPtr ns;
8273 int depth = -1, adoptStr = 1;
8274 /* gather @parent's ns-decls. */
8275 int parnsdone = 0;
8276 /* @ancestorsOnly should be set per option. */
8277 int ancestorsOnly = 0;
8278
8279 /*
8280 * Optimize string adoption for equal or none dicts.
8281 */
8282 if ((sourceDoc != NULL) &&
8283 (sourceDoc->dict == destDoc->dict))
8284 adoptStr = 0;
8285 else
8286 adoptStr = 1;
8287
8288 cur = node;
8289 while (cur != NULL) {
8290 if (cur->doc != sourceDoc) {
8291 /*
8292 * We'll assume XIncluded nodes if the doc differs.
8293 * TODO: Do we need to reconciliate XIncluded nodes?
8294 * This here skips XIncluded nodes and tries to handle
8295 * broken sequences.
8296 */
8297 if (cur->next == NULL)
8298 goto leave_node;
8299 do {
8300 cur = cur->next;
8301 if ((cur->type == XML_XINCLUDE_END) ||
8302 (cur->doc == node->doc))
8303 break;
8304 } while (cur->next != NULL);
8305
8306 if (cur->doc != node->doc)
8307 goto leave_node;
8308 }
8309 cur->doc = destDoc;
8310 switch (cur->type) {
8311 case XML_XINCLUDE_START:
8312 case XML_XINCLUDE_END:
8313 /*
8314 * TODO
8315 */
8316 return (-1);
8317 case XML_ELEMENT_NODE:
8318 curElem = cur;
8319 depth++;
8320 /*
8321 * Namespace declarations.
8322 */
8323 if ((ctxt == NULL) && (cur->nsDef != NULL)) {
8324 if (! parnsdone) {
8325 if (destParent && (ctxt == NULL)) {
8326 /*
8327 * Gather @parent's in-scope ns-decls.
8328 */
8329 if (xmlDOMWrapNSNormGatherInScopeNs(&nsMap,
8330 destParent) == -1)
8331 goto internal_error;
8332 if (nsMap != NULL)
8333 topmi = nsMap->prev;
8334 }
8335 parnsdone = 1;
8336 }
8337 for (ns = cur->nsDef; ns != NULL; ns = ns->next) {
8338 /*
8339 * ns->prefix and ns->href seem not to be in the dict.
8340 * XML_TREE_ADOPT_STR(ns->prefix)
8341 * XML_TREE_ADOPT_STR(ns->href)
8342 */
8343 /*
8344 * Does it shadow any ns-decl?
8345 */
8346 if (nsMap) {
8347 for (mi = nsMap; mi != topmi->next;
8348 mi = mi->next) {
8349 if ((mi->depth >= XML_TREE_NSMAP_PARENT) &&
8350 (mi->shadowDepth == -1) &&
8351 ((ns->prefix == mi->newNs->prefix) ||
8352 xmlStrEqual(ns->prefix,
8353 mi->newNs->prefix))) {
8354
8355 mi->shadowDepth = depth;
8356 }
8357 }
8358 }
8359 /*
8360 * Push mapping.
8361 */
8362 if (xmlDOMWrapNSNormAddNsMapItem(&nsMap, &topmi,
8363 ns, ns, depth) == NULL)
8364 goto internal_error;
8365 }
8366 }
8367 /* No break on purpose. */
8368 case XML_ATTRIBUTE_NODE:
8369
8370 if (cur->ns == NULL)
8371 goto ns_end;
8372 if (! parnsdone) {
8373 if (destParent && (ctxt == NULL)) {
8374 if (xmlDOMWrapNSNormGatherInScopeNs(&nsMap,
8375 destParent) == -1)
8376 goto internal_error;
8377 if (nsMap != NULL)
8378 topmi = nsMap->prev;
8379 }
8380 parnsdone = 1;
8381 }
8382 /*
8383 * Adopt ns-references.
8384 */
8385 if (nsMap != NULL) {
8386 /*
8387 * Search for a mapping.
8388 */
8389 for (mi = nsMap; mi != topmi->next; mi = mi->next) {
8390 if ((mi->shadowDepth == -1) &&
8391 (cur->ns == mi->oldNs)) {
8392
8393 cur->ns = mi->newNs;
8394 goto ns_end;
8395 }
8396 }
8397 }
8398 /*
8399 * Start searching for an in-scope ns-decl.
8400 */
8401 if (ctxt != NULL) {
8402 /*
8403 * User-defined behaviour.
8404 */
8405#if 0
8406 ctxt->aquireNsDecl(ctxt, cur->ns, &ns);
8407#endif
8408 /*
8409 * Insert mapping if ns is available; it's the users fault
8410 * if not.
8411 */
8412 if (xmlDOMWrapNSNormAddNsMapItem(&nsMap, &topmi,
8413 ns, ns, XML_TREE_NSMAP_CUSTOM) == NULL)
8414 goto internal_error;
8415 cur->ns = ns;
8416 } else {
8417 /*
8418 * Aquire a normalized ns-decl and add it to the map.
8419 */
8420 if (xmlDOMWrapNSNormAquireNormalizedNs(destDoc,
8421 /* ns-decls on curElem or on destDoc->oldNs */
8422 destParent ? curElem : NULL,
8423 cur->ns, &ns,
8424 &nsMap, &topmi, depth,
8425 ancestorsOnly,
8426 /* ns-decls must be prefixed for attributes. */
8427 (cur->type == XML_ATTRIBUTE_NODE) ? 1 : 0) == -1)
8428 goto internal_error;
8429 cur->ns = ns;
8430 }
8431ns_end:
8432 /*
8433 * Further node properties.
8434 * TODO: Is this all?
8435 */
8436 XML_TREE_ADOPT_STR(cur->name)
8437 if (cur->type == XML_ELEMENT_NODE) {
8438 cur->psvi = NULL;
8439 cur->line = 0;
8440 cur->extra = 0;
8441 /*
8442 * Walk attributes.
8443 */
8444 if (cur->properties != NULL) {
8445 /*
8446 * Process first attribute node.
8447 */
8448 cur = (xmlNodePtr) cur->properties;
8449 continue;
8450 }
8451 } else {
8452 /*
8453 * Attributes.
8454 */
8455 if ((sourceDoc != NULL) &&
8456 (((xmlAttrPtr) cur)->atype == XML_ATTRIBUTE_ID))
8457 xmlRemoveID(sourceDoc, (xmlAttrPtr) cur);
8458 ((xmlAttrPtr) cur)->atype = 0;
8459 ((xmlAttrPtr) cur)->psvi = NULL;
8460 }
8461 break;
8462 case XML_TEXT_NODE:
8463 case XML_CDATA_SECTION_NODE:
8464 /*
8465 * This puts the content in the dest dict, only if
8466 * it was previously in the source dict.
8467 */
8468 XML_TREE_ADOPT_STR_2(cur->content)
8469 goto leave_node;
8470 case XML_ENTITY_REF_NODE:
8471 /*
8472 * Remove reference to the entitity-node.
8473 */
8474 cur->content = NULL;
8475 cur->children = NULL;
8476 cur->last = NULL;
8477 if ((destDoc->intSubset) || (destDoc->extSubset)) {
8478 xmlEntityPtr ent;
8479 /*
8480 * Assign new entity-node if available.
8481 */
8482 ent = xmlGetDocEntity(destDoc, cur->name);
8483 if (ent != NULL) {
8484 cur->content = ent->content;
8485 cur->children = (xmlNodePtr) ent;
8486 cur->last = (xmlNodePtr) ent;
8487 }
8488 }
8489 goto leave_node;
8490 case XML_PI_NODE:
8491 XML_TREE_ADOPT_STR(cur->name)
8492 XML_TREE_ADOPT_STR_2(cur->content)
8493 break;
8494 case XML_COMMENT_NODE:
8495 break;
8496 default:
8497 goto internal_error;
8498 }
8499 /*
8500 * Walk the tree.
8501 */
8502 if (cur->children != NULL) {
8503 cur = cur->children;
8504 continue;
8505 }
8506
8507leave_node:
8508 if (cur == node)
8509 break;
8510 if ((cur->type == XML_ELEMENT_NODE) ||
8511 (cur->type == XML_XINCLUDE_START) ||
8512 (cur->type == XML_XINCLUDE_END)) {
8513 /*
8514 * TODO: Do we expect nsDefs on XML_XINCLUDE_START?
8515 */
8516 if (nsMap != NULL) {
8517 /*
8518 * Pop mappings.
8519 */
8520 while (topmi->depth >= depth)
8521 topmi = topmi->prev;
8522 /*
8523 * Unshadow.
8524 */
8525 for (mi = nsMap; mi != topmi->next; mi = mi->next)
8526 if (mi->shadowDepth >= depth)
8527 mi->shadowDepth = -1;
8528 }
8529 depth--;
8530 }
8531 if (cur->next != NULL)
8532 cur = cur->next;
8533 else {
8534 cur = cur->parent;
8535 goto leave_node;
8536 }
8537 }
8538 /*
8539 * Cleanup.
8540 */
8541 if (nsMap != NULL)
8542 xmlDOMWrapNSNormFreeNsMap(nsMap);
8543 return (ret);
8544internal_error:
8545 if (nsMap != NULL)
8546 xmlDOMWrapNSNormFreeNsMap(nsMap);
8547 return (-1);
8548}
8549
8550/*
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00008551* xmlDOMWrapCloneNode:
8552* @ctxt: the optional context for custom processing
8553* @sourceDoc: the optional sourceDoc
8554* @node: the node to start with
8555* @resNode: the clone of the given @node
8556* @destDoc: the destination doc
8557* @destParent: the optional new parent of @node in @destDoc
8558* @options: option flags
8559*
8560* References of out-of scope ns-decls are remapped to point to @destDoc:
8561* 1) If @destParent is given, then nsDef entries on element-nodes are used
8562* 2) If *no* @destParent is given, then @destDoc->oldNs entries are used
8563* This is the case when you have an unliked node and just want to move it
8564* to the context of
8565*
8566* If @destParent is given, it ensures that the tree is namespace
8567* wellformed by creating additional ns-decls where needed.
8568* Note that, since prefixes of already existent ns-decls can be
8569* shadowed by this process, it could break QNames in attribute
8570* values or element content.
8571* TODO:
8572* 1) Support dicts
8573* Optimize string adoption for equal or none dicts.
8574* 2) XInclude
8575* WARNING: This function is in a experimental state and should only be currently
8576* only be used to test it.
8577*
8578* Returns 0 if the operation succeeded,
8579* 1 if a node of unsupported (or not yet supported) type was given,
8580* -1 on API/internal errors.
8581*/
8582
8583int
8584xmlDOMWrapCloneNode(xmlDOMWrapCtxtPtr ctxt,
8585 xmlDocPtr sourceDoc,
8586 xmlNodePtr node,
8587 xmlNodePtr *resNode,
8588 xmlDocPtr destDoc,
8589 xmlNodePtr destParent,
8590 int deep,
8591 int options ATTRIBUTE_UNUSED)
8592{
8593 int ret = 0;
8594 xmlNodePtr cur, curElem = NULL;
8595 xmlNsMapItemPtr nsMap = NULL, topmi = NULL, mi;
8596 xmlNsPtr ns;
8597 int depth = -1;
8598 /* int adoptStr = 1; */
8599 /* gather @parent's ns-decls. */
8600 int parnsdone = 0;
8601 /* @ancestorsOnly should be set per option. */
8602 int ancestorsOnly = 0;
8603 xmlNodePtr resultClone = NULL, clone = NULL, parentClone = NULL, prevClone = NULL;
8604 xmlNsPtr cloneNs = NULL, *cloneNsDefSlot = NULL;
8605
8606 if ((node == NULL) || (resNode == NULL) ||
8607 (sourceDoc == NULL) || (destDoc == NULL))
8608 return(-1);
8609 /*
8610 * TODO: Initially we support only element-nodes.
8611 */
8612 if (node->type != XML_ELEMENT_NODE)
8613 return(1);
8614 /*
8615 * Check node->doc sanity.
8616 */
8617 if ((node->doc != NULL) && (sourceDoc != NULL) &&
8618 (node->doc != sourceDoc)) {
8619 /*
8620 * Might be an XIncluded node.
8621 */
8622 return (-1);
8623 }
8624 if (sourceDoc == NULL)
8625 sourceDoc = node->doc;
8626 if (sourceDoc == destDoc)
8627 return (-1);
8628
8629 *resNode = NULL;
8630
8631 deep = 1;
8632 cur = node;
8633 while (cur != NULL) {
8634 if (cur->doc != sourceDoc) {
8635 /*
8636 * We'll assume XIncluded nodes if the doc differs.
8637 * TODO: Do we need to reconciliate XIncluded nodes?
8638 * TODO: This here returns -1 in this case.
8639 */
8640 goto internal_error;
8641 }
8642 /*
8643 * Create a new node.
8644 */
8645 switch (cur->type) {
8646 case XML_XINCLUDE_START:
8647 case XML_XINCLUDE_END:
8648 /* TODO: What to do with XInclude? */
8649 goto internal_error;
8650 break;
8651 case XML_TEXT_NODE:
8652 case XML_CDATA_SECTION_NODE:
8653 case XML_ELEMENT_NODE:
8654 case XML_DOCUMENT_FRAG_NODE:
8655 case XML_ENTITY_REF_NODE:
8656 case XML_ENTITY_NODE:
8657 case XML_PI_NODE:
8658 case XML_COMMENT_NODE:
8659 /*
8660 * Nodes of xmlNode structure.
8661 */
8662 clone = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
8663 if (clone == NULL) {
8664 xmlTreeErrMemory("xmlDOMWrapCloneBranch(): allocating a node");
8665 goto internal_error;
8666 }
8667 memset(clone, 0, sizeof(xmlNode));
8668 /*
8669 * Set hierachical links.
8670 */
8671 if (resultClone != NULL) {
8672 clone->parent = parentClone;
8673 if (prevClone) {
8674 prevClone->next = clone;
8675 clone->prev = prevClone;
8676 } else
8677 parentClone->children = clone;
8678 } else
8679 resultClone = clone;
8680
8681 break;
8682 case XML_ATTRIBUTE_NODE:
8683 /*
8684 * Attributes (xmlAttr).
8685 */
8686 clone = (xmlNodePtr) xmlMalloc(sizeof(xmlAttr));
8687 if (clone == NULL) {
8688 xmlTreeErrMemory("xmlDOMWrapCloneBranch(): allocating an attr-node");
8689 goto internal_error;
8690 }
8691 memset(clone, 0, sizeof(xmlAttr));
8692 /*
8693 * Set hierachical links.
8694 */
8695 if (resultClone != NULL) {
8696 clone->parent = parentClone;
8697 if (prevClone) {
8698 prevClone->next = clone;
8699 clone->prev = prevClone;
8700 } else
8701 parentClone->properties = (xmlAttrPtr) clone;
8702 } else
8703 resultClone = clone;
8704 break;
8705 default:
8706 /* TODO */
8707 goto internal_error;
8708 }
8709
8710 clone->type = cur->type;
8711 clone->doc = destDoc;
8712
8713 if (cur->name == xmlStringText)
8714 clone->name = xmlStringText;
8715 else if (cur->name == xmlStringTextNoenc)
8716 /*
8717 * TODO: xmlStringTextNoenc is never assigned to a node
8718 * in tree.c.
8719 */
8720 clone->name = xmlStringTextNoenc;
8721 else if (cur->name == xmlStringComment)
8722 clone->name = xmlStringComment;
8723 else if (cur->name != NULL) {
8724 if ((destDoc != NULL) && (destDoc->dict != NULL))
8725 clone->name = xmlDictLookup(destDoc->dict, cur->name, -1);
8726 else
8727 clone->name = xmlStrdup(cur->name);
8728 }
8729
8730 switch (cur->type) {
8731 case XML_XINCLUDE_START:
8732 case XML_XINCLUDE_END:
8733 /*
8734 * TODO
8735 */
8736 return (-1);
8737 case XML_ELEMENT_NODE:
8738 curElem = cur;
8739 depth++;
8740 /*
8741 * Namespace declarations.
8742 */
8743 if ((ctxt == NULL) && (cur->nsDef != NULL)) {
8744 if (! parnsdone) {
8745 if (destParent && (ctxt == NULL)) {
8746 /*
8747 * Gather @parent's in-scope ns-decls.
8748 */
8749 if (xmlDOMWrapNSNormGatherInScopeNs(&nsMap,
8750 destParent) == -1)
8751 goto internal_error;
8752 if (nsMap != NULL)
8753 topmi = nsMap->prev;
8754 }
8755 parnsdone = 1;
8756 }
8757 /*
8758 * Clone namespace declarations.
8759 */
8760 cloneNsDefSlot = &(clone->nsDef);
8761 for (ns = cur->nsDef; ns != NULL; ns = ns->next) {
8762 /*
8763 * Create a new xmlNs.
8764 */
8765 cloneNs = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
8766 if (cloneNs == NULL) {
8767 xmlTreeErrMemory("xmlDOMWrapCloneBranch(): "
8768 "allocating namespace");
8769 return(-1);
8770 }
8771 memset(cloneNs, 0, sizeof(xmlNs));
8772 cloneNs->type = XML_LOCAL_NAMESPACE;
8773
8774 if (ns->href != NULL)
8775 cloneNs->href = xmlStrdup(ns->href);
8776 if (ns->prefix != NULL)
8777 cloneNs->prefix = xmlStrdup(ns->prefix);
8778
8779 *cloneNsDefSlot = cloneNs;
8780 cloneNsDefSlot = &(cloneNs->next);
8781
8782 /*
8783 * Does it shadow any ns-decl?
8784 */
8785 if (nsMap) {
8786 for (mi = nsMap; mi != topmi->next;
8787 mi = mi->next) {
8788 if ((mi->depth >= XML_TREE_NSMAP_PARENT) &&
8789 (mi->shadowDepth == -1) &&
8790 ((ns->prefix == mi->newNs->prefix) ||
8791 xmlStrEqual(ns->prefix,
8792 mi->newNs->prefix))) {
8793 /* Mark as shadowed at the current depth. */
8794 mi->shadowDepth = depth;
8795 }
8796 }
8797 }
8798 /*
8799 * Push mapping.
8800 */
8801 if (xmlDOMWrapNSNormAddNsMapItem(&nsMap, &topmi,
8802 ns, cloneNs, depth) == NULL)
8803 goto internal_error;
8804 }
8805 }
8806 /* cur->ns will be processed further down. */
8807 break;
8808 case XML_ATTRIBUTE_NODE:
8809 /* IDs will be processed further down. */
8810 /* cur->ns will be processed further down. */
8811 break;
8812 case XML_TEXT_NODE:
8813 case XML_CDATA_SECTION_NODE:
8814 if (cur->content)
8815 clone->content = xmlStrdup(cur->content);
8816 goto leave_node;
8817 case XML_ENTITY_REF_NODE:
8818 if (sourceDoc != destDoc) {
8819 if ((destDoc->intSubset) || (destDoc->extSubset)) {
8820 xmlEntityPtr ent;
8821 /*
8822 * Assign new entity-node if available.
8823 */
8824 ent = xmlGetDocEntity(destDoc, cur->name);
8825 if (ent != NULL) {
8826 clone->content = ent->content;
8827 clone->children = (xmlNodePtr) ent;
8828 clone->last = (xmlNodePtr) ent;
8829 }
8830 }
8831 } else {
8832 /*
8833 * Use the current node's entity declaration and value.
8834 */
8835 clone->content = cur->content;
8836 clone->children = cur->children;
8837 clone->last = cur->last;
8838 }
8839 goto leave_node;
8840 case XML_PI_NODE:
8841 if (cur->content)
8842 clone->content = xmlStrdup(cur->content);
8843 goto leave_node;
8844 case XML_COMMENT_NODE:
8845 if (cur->content)
8846 clone->content = xmlStrdup(cur->content);
8847 goto leave_node;
8848 default:
8849 goto internal_error;
8850 }
8851
8852 if (cur->ns == NULL)
8853 goto end_ns_reference;
8854
8855/* handle_ns_reference: */
8856 /*
8857 ** The following will take care of references to ns-decls ********
8858 ** and is intended only for element- and attribute-nodes.
8859 **
8860 */
8861 if (! parnsdone) {
8862 if (destParent && (ctxt == NULL)) {
8863 if (xmlDOMWrapNSNormGatherInScopeNs(&nsMap,
8864 destParent) == -1)
8865 goto internal_error;
8866 if (nsMap != NULL)
8867 topmi = nsMap->prev;
8868 }
8869 parnsdone = 1;
8870 }
8871 /*
8872 * Adopt ns-references.
8873 */
8874 if (nsMap != NULL) {
8875 /*
8876 * Search for a mapping.
8877 */
8878 for (mi = nsMap; mi != topmi->next; mi = mi->next) {
8879 if ((mi->shadowDepth == -1) &&
8880 (cur->ns == mi->oldNs)) {
8881 /*
8882 * This is the nice case: a mapping was found.
8883 */
8884 clone->ns = mi->newNs;
8885 goto end_ns_reference;
8886 }
8887 }
8888 }
8889 /*
8890 * Start searching for an in-scope ns-decl.
8891 */
8892 if (ctxt != NULL) {
8893 /*
8894 * User-defined behaviour.
8895 */
8896#if 0
8897 ctxt->aquireNsDecl(ctxt, cur->ns, &ns);
8898#endif
8899 /*
8900 * Add user's mapping.
8901 */
8902 if (xmlDOMWrapNSNormAddNsMapItem(&nsMap, &topmi,
8903 cur->ns, ns, XML_TREE_NSMAP_CUSTOM) == NULL)
8904 goto internal_error;
8905 clone->ns = ns;
8906 } else {
8907 /*
8908 * Aquire a normalized ns-decl and add it to the map.
8909 */
8910 if (xmlDOMWrapNSNormAquireNormalizedNs(destDoc,
8911 /* ns-decls on curElem or on destDoc->oldNs */
8912 destParent ? curElem : NULL,
8913 cur->ns, &ns,
8914 &nsMap, &topmi, depth,
8915 ancestorsOnly,
8916 /* ns-decls must be prefixed for attributes. */
8917 (cur->type == XML_ATTRIBUTE_NODE) ? 1 : 0) == -1)
8918 goto internal_error;
8919 clone->ns = ns;
8920 }
8921
8922end_ns_reference:
8923
8924 /*
8925 * Some post-processing.
8926 *
8927 * Handle ID attributes.
8928 */
8929 if ((clone->type == XML_ATTRIBUTE_NODE) &&
8930 (clone->parent != NULL)) {
8931 if (xmlIsID(destDoc, clone->parent, (xmlAttrPtr) clone)) {
8932
8933 xmlChar *idVal;
8934
8935 idVal = xmlNodeListGetString(cur->doc, cur->children, 1);
8936 if (idVal != NULL) {
8937 if (xmlAddID(NULL, destDoc, idVal, (xmlAttrPtr) cur) == NULL) {
8938 /* TODO: error message. */
8939 xmlFree(idVal);
8940 goto internal_error;
8941 }
8942 xmlFree(idVal);
8943 }
8944 }
8945 }
8946 /*
8947 **
8948 ** The following will traversing the tree ************************
8949 **
8950 *
8951 * Walk the element's attributes before descending into child-nodes.
8952 */
8953 if ((cur->type == XML_ELEMENT_NODE) && (cur->properties != NULL)) {
8954 prevClone = NULL;
8955 parentClone = clone;
8956 cur = (xmlNodePtr) cur->properties;
8957 continue;
8958 }
8959into_content:
8960 /*
8961 * Descend into child-nodes.
8962 */
8963 if (cur->children != NULL) {
8964 prevClone = NULL;
8965 parentClone = clone;
8966 cur = cur->children;
8967 continue;
8968 }
8969
8970leave_node:
8971 /*
8972 * At this point we are done with the node, its content
8973 * and an element-nodes's attribute-nodes.
8974 */
8975 if (cur == node)
8976 break;
8977 if ((cur->type == XML_ELEMENT_NODE) ||
8978 (cur->type == XML_XINCLUDE_START) ||
8979 (cur->type == XML_XINCLUDE_END)) {
8980 /*
8981 * TODO: Do we expect nsDefs on XML_XINCLUDE_START?
8982 */
8983 if (nsMap != NULL) {
8984 /*
8985 * Pop mappings.
8986 */
8987 while (topmi->depth >= depth)
8988 topmi = topmi->prev;
8989 /*
8990 * Unshadow.
8991 * TODO: How to optimize this?
8992 */
8993 for (mi = nsMap; mi != topmi->next; mi = mi->next)
8994 if (mi->shadowDepth >= depth)
8995 mi->shadowDepth = -1;
8996 }
8997 depth--;
8998 }
8999 if (cur->next != NULL) {
9000 prevClone = clone;
9001 cur = cur->next;
9002 } else if (cur->type != XML_ATTRIBUTE_NODE) {
9003 /*
9004 * Set clone->last.
9005 */
9006 clone->parent->last = clone;
9007 clone = clone->parent;
9008 parentClone = clone->parent;
9009 /*
9010 * Process parent --> next;
9011 */
9012 cur = cur->parent;
9013 goto leave_node;
9014 } else {
9015 /* This is for attributes only. */
9016 clone = clone->parent;
9017 parentClone = clone->parent;
9018 /*
9019 * Process parent-element --> children.
9020 */
9021 cur = cur->parent;
9022 goto into_content;
9023 }
9024 }
9025 goto exit;
9026
9027internal_error:
9028 ret = -1;
9029
9030exit:
9031 /*
9032 * Cleanup.
9033 */
9034 if (nsMap != NULL)
9035 xmlDOMWrapNSNormFreeNsMap(nsMap);
9036 /*
9037 * TODO: Should we try a cleanup of the cloned node in case of a
9038 * fatal error?
9039 */
9040 *resNode = resultClone;
9041 return (ret);
9042}
9043
9044/*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009045* xmlDOMWrapAdoptAttr:
9046* @ctxt: the optional context for custom processing
9047* @sourceDoc: the optional source document of attr
9048* @attr: the attribute-node to be adopted
9049* @destDoc: the destination doc for adoption
9050* @destParent: the optional new parent of @attr in @destDoc
9051* @options: option flags
9052*
9053* @attr is adopted by @destDoc.
9054* Ensures that ns-references point to @destDoc: either to
9055* elements->nsDef entries if @destParent is given, or to
9056* @destDoc->oldNs otherwise.
9057*
9058* Returns 0 if succeeded, -1 otherwise and on API/internal errors.
9059*/
9060static int
9061xmlDOMWrapAdoptAttr(xmlDOMWrapCtxtPtr ctxt,
9062 xmlDocPtr sourceDoc,
9063 xmlAttrPtr attr,
9064 xmlDocPtr destDoc,
9065 xmlNodePtr destParent,
9066 int options ATTRIBUTE_UNUSED)
9067{
9068 xmlNodePtr cur;
9069 int adoptStr = 1;
9070
9071 if ((attr == NULL) || (destDoc == NULL))
9072 return (-1);
9073
9074 attr->doc = destDoc;
9075 if (attr->ns != NULL) {
9076 xmlNsPtr ns = NULL;
9077
9078 if (ctxt != NULL) {
9079 /* TODO: User defined. */
9080 }
9081 /* XML Namespace. */
9082 if ((attr->ns->prefix[0] == 'x') && (attr->ns->prefix[1] == 'm') &&
9083 (attr->ns->prefix[2] == 'l') && (attr->ns->prefix[3] == 0)) {
9084 ns = xmlTreeEnsureXMLDecl(destDoc);
9085 } else if (destParent == NULL) {
9086 /*
9087 * Store in @destDoc->oldNs.
9088 */
9089 ns = xmlDOMWrapStoreNs(destDoc, attr->ns->href, attr->ns->prefix);
9090 } else {
9091 /*
9092 * Declare on @destParent.
9093 */
9094 if (xmlSearchNsByHrefStrict(destDoc, destParent, attr->ns->href,
9095 &ns, 1) == -1)
9096 goto internal_error;
9097 if (ns == NULL) {
9098 ns = xmlDOMWrapNSNormDeclareNsForced(destDoc, destParent,
9099 attr->ns->href, attr->ns->prefix, 1);
9100 }
9101 }
9102 if (ns == NULL)
9103 goto internal_error;
9104 attr->ns = ns;
9105 }
9106
9107 XML_TREE_ADOPT_STR(attr->name);
9108 attr->atype = 0;
9109 attr->psvi = NULL;
9110 /*
9111 * Walk content.
9112 */
9113 if (attr->children == NULL)
9114 return (0);
9115 cur = attr->children;
9116 while (cur != NULL) {
9117 cur->doc = destDoc;
9118 switch (cur->type) {
9119 case XML_TEXT_NODE:
9120 case XML_CDATA_SECTION_NODE:
9121 XML_TREE_ADOPT_STR_2(cur->content)
9122 break;
9123 case XML_ENTITY_REF_NODE:
9124 /*
9125 * Remove reference to the entitity-node.
9126 */
9127 cur->content = NULL;
9128 cur->children = NULL;
9129 cur->last = NULL;
9130 if ((destDoc->intSubset) || (destDoc->extSubset)) {
9131 xmlEntityPtr ent;
9132 /*
9133 * Assign new entity-node if available.
9134 */
9135 ent = xmlGetDocEntity(destDoc, cur->name);
9136 if (ent != NULL) {
9137 cur->content = ent->content;
9138 cur->children = (xmlNodePtr) ent;
9139 cur->last = (xmlNodePtr) ent;
9140 }
9141 }
9142 break;
9143 default:
9144 break;
9145 }
9146 if (cur->children != NULL) {
9147 cur = cur->children;
9148 continue;
9149 }
9150next_sibling:
9151 if (cur == (xmlNodePtr) attr)
9152 break;
9153 if (cur->next != NULL)
9154 cur = cur->next;
9155 else {
9156 cur = cur->parent;
9157 goto next_sibling;
9158 }
9159 }
9160 return (0);
9161internal_error:
9162 return (-1);
9163}
9164
9165/*
9166* xmlDOMWrapAdoptNode:
9167* @ctxt: the optional context for custom processing
9168* @sourceDoc: the optional sourceDoc
9169* @node: the node to start with
9170* @destDoc: the destination doc
Kasimier T. Buchcik4d9c9482005-06-27 15:04:46 +00009171* @destParent: the optional new parent of @node in @destDoc
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009172* @options: option flags
9173*
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009174* References of out-of scope ns-decls are remapped to point to @destDoc:
9175* 1) If @destParent is given, then nsDef entries on element-nodes are used
9176* 2) If *no* @destParent is given, then @destDoc->oldNs entries are used
9177* This is the case when you have an unliked node and just want to move it
9178* to the context of
9179*
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009180* If @destParent is given, it ensures that the tree is namespace
9181* wellformed by creating additional ns-decls where needed.
9182* Note that, since prefixes of already existent ns-decls can be
9183* shadowed by this process, it could break QNames in attribute
9184* values or element content.
Kasimier T. Buchcik017264f2005-06-27 13:45:24 +00009185* WARNING: This function is in a experimental state.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009186*
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009187* Returns 0 if the operation succeeded,
9188* 1 if a node of unsupported type was given,
9189* 2 if a node of not yet supported type was given and
9190* -1 on API/internal errors.
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009191*/
9192int
9193xmlDOMWrapAdoptNode(xmlDOMWrapCtxtPtr ctxt,
9194 xmlDocPtr sourceDoc,
9195 xmlNodePtr node,
9196 xmlDocPtr destDoc,
9197 xmlNodePtr destParent,
9198 int options)
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009199{
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009200 if ((node == NULL) || (destDoc == NULL) ||
9201 ((destParent != NULL) && (destParent->doc != destDoc)))
9202 return(-1);
9203 /*
9204 * Check node->doc sanity.
9205 */
9206 if ((node->doc != NULL) && (sourceDoc != NULL) &&
9207 (node->doc != sourceDoc)) {
9208 /*
9209 * Might be an XIncluded node.
9210 */
9211 return (-1);
9212 }
9213 if (sourceDoc == NULL)
9214 sourceDoc = node->doc;
9215 if (sourceDoc == destDoc)
9216 return (-1);
9217 switch (node->type) {
9218 case XML_ELEMENT_NODE:
9219 case XML_ATTRIBUTE_NODE:
9220 case XML_TEXT_NODE:
9221 case XML_CDATA_SECTION_NODE:
9222 case XML_ENTITY_REF_NODE:
9223 case XML_PI_NODE:
9224 case XML_COMMENT_NODE:
9225 break;
9226 case XML_DOCUMENT_FRAG_NODE:
Kasimier T. Buchcikcab801b2006-02-03 16:35:27 +00009227 /* TODO: Support document-fragment-nodes. */
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009228 return (2);
9229 default:
9230 return (1);
9231 }
9232 /*
9233 * Unlink only if @node was not already added to @destParent.
9234 */
9235 if ((node->parent != NULL) && (destParent != node->parent))
9236 xmlUnlinkNode(node);
9237
9238 if (node->type == XML_ELEMENT_NODE) {
9239 return (xmlDOMWrapAdoptBranch(ctxt, sourceDoc, node,
9240 destDoc, destParent, options));
9241 } else if (node->type == XML_ATTRIBUTE_NODE) {
9242 return (xmlDOMWrapAdoptAttr(ctxt, sourceDoc,
9243 (xmlAttrPtr) node, destDoc, destParent, options));
9244 } else {
9245 xmlNodePtr cur = node;
9246 int adoptStr = 1;
9247
9248 cur->doc = destDoc;
9249 /*
9250 * Optimize string adoption.
9251 */
9252 if ((sourceDoc != NULL) &&
9253 (sourceDoc->dict == destDoc->dict))
9254 adoptStr = 0;
9255 switch (node->type) {
9256 case XML_TEXT_NODE:
9257 case XML_CDATA_SECTION_NODE:
9258 XML_TREE_ADOPT_STR_2(node->content)
9259 break;
9260 case XML_ENTITY_REF_NODE:
9261 /*
9262 * Remove reference to the entitity-node.
9263 */
9264 node->content = NULL;
9265 node->children = NULL;
9266 node->last = NULL;
9267 if ((destDoc->intSubset) || (destDoc->extSubset)) {
9268 xmlEntityPtr ent;
9269 /*
9270 * Assign new entity-node if available.
9271 */
9272 ent = xmlGetDocEntity(destDoc, node->name);
9273 if (ent != NULL) {
9274 node->content = ent->content;
9275 node->children = (xmlNodePtr) ent;
9276 node->last = (xmlNodePtr) ent;
9277 }
9278 }
9279 XML_TREE_ADOPT_STR(node->name)
9280 break;
Daniel Veillard7e21fd12005-07-03 21:44:07 +00009281 case XML_PI_NODE: {
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009282 XML_TREE_ADOPT_STR(node->name)
9283 XML_TREE_ADOPT_STR_2(node->content)
9284 break;
Daniel Veillard7e21fd12005-07-03 21:44:07 +00009285 }
Kasimier T. Buchcikbc0e3c62005-06-27 10:28:23 +00009286 default:
9287 break;
9288 }
9289 }
9290 return (0);
9291}
9292
9293
Daniel Veillard5d4644e2005-04-01 13:11:58 +00009294#define bottom_tree
9295#include "elfgcchack.h"