1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/******************************************************************
* $Id: soap-xml.c,v 1.5 2004/09/02 11:48:28 rans Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
* Email: ayaz@jprogrammer.net
******************************************************************/
#include <libcsoap/soap-xml.h>
static const char* soap_env_ns = "http://schemas.xmlsoap.org/soap/envelope/";
xmlNodePtr soap_xml_get_children(xmlNodePtr param)
{
xmlNodePtr children;
if (param == NULL) {
log_error1("Invalid parameter 'param' (null)");
return NULL;
}
children = param->xmlChildrenNode;
while (children != NULL) {
if (children->type != XML_ELEMENT_NODE)
children = children->next;
else break;
}
return children;
}
xmlNodePtr soap_xml_get_next(xmlNodePtr param)
{
xmlNodePtr node = param->next;
while (node != NULL) {
if (node->type != XML_ELEMENT_NODE)
node = node->next;
else break;
}
return node;
}
xmlXPathObjectPtr
soap_xpath_eval(xmlDocPtr doc, const char *xpath)
{
xmlXPathContextPtr context;
xmlXPathObjectPtr result;
context = xmlXPathNewContext(doc);
result = xmlXPathEvalExpression(BAD_CAST xpath, context);
if(xmlXPathNodeSetIsEmpty(result->nodesetval)){
/* no result */
return NULL;
}
xmlXPathFreeContext(context);
return result;
}
int
soap_xpath_foreach(xmlDocPtr doc, const char *xpath,
soap_xmlnode_callback cb, void *userdata)
{
int i = 0;
xmlNodeSetPtr nodeset;
xmlXPathObjectPtr xpathobj;
xpathobj = soap_xpath_eval(doc, xpath);
if (!xpathobj) return 0;
nodeset = xpathobj->nodesetval;
if (!nodeset) return 0;
for (i=0;i < nodeset->nodeNr; i++) {
if (!cb(nodeset->nodeTab[i], userdata))
break;
}
xmlXPathFreeObject((xmlXPathObjectPtr)nodeset);
return i;
}
void soap_xml_doc_print(xmlDocPtr doc)
{
xmlBufferPtr buffer;
xmlNodePtr root;
if (doc == NULL) {
puts("xmlDocPtr is NULL!");
return;
}
root = xmlDocGetRootElement(doc);
if (root == NULL) {
puts("Empty document!");
return;
}
buffer = xmlBufferCreate();
xmlNodeDump(buffer, doc, root, 1 ,0);
puts( (const char*)xmlBufferContent(buffer));
xmlBufferFree(buffer);
}
|