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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
|
/* Cataract - Static web photo gallery generator
* Copyright (C) 2008 Tomas Bzatek <tbzatek@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <libxml/xmlmemory.h>
#include <libxml/parser.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
#include <glib.h>
#include "xml-parser.h"
#include "gallery-utils.h"
/*
* xml_parser_load: initialize and load the XML document
*/
TXMLFile *
xml_parser_load (const gchar *filename)
{
TXMLFile *file;
file = g_malloc0 (sizeof (TXMLFile));
/* Load XML document */
file->doc = xmlParseFile (filename);
if (! file->doc) {
log_error ("Error: unable to parse file \"%s\"\n", filename);
xml_parser_free (file);
return NULL;
}
/* Create xpath evaluation context */
file->xpathCtx = xmlXPathNewContext (file->doc);
if (! file->xpathCtx) {
log_error ("Error: unable to create new XPath context\n");
xml_parser_free (file);
return FALSE;
}
return file;
}
/*
* xml_parser_free: close the XML document parser and frees all memory
*/
void
xml_parser_free (TXMLFile *file)
{
if (file) {
if (file->xpathCtx)
xmlXPathFreeContext (file->xpathCtx);
if (file->doc)
xmlFreeDoc (file->doc);
g_free (file);
}
}
/*
* xml_file_get_node_name: retrieve name of the XPath node
*/
gchar *
xml_file_get_node_name (TXMLFile *file, const gchar *x_path)
{
xmlXPathObjectPtr xpathObj;
xmlNodePtr cur;
gchar *attrv;
if (! file || ! x_path)
return NULL;
/* Evaluate xpath expression */
xpathObj = xmlXPathEvalExpression ((const xmlChar *) x_path, file->xpathCtx);
if (xpathObj == NULL) {
log_error ("Error: unable to evaluate xpath expression \"%s\"\n", x_path);
return NULL;
}
attrv = NULL;
if ((xpathObj->nodesetval) && (xpathObj->nodesetval->nodeNr > 0)) {
cur = xpathObj->nodesetval->nodeTab[0];
if (cur->name)
attrv = g_strdup ((const gchar *) cur->name);
}
xmlXPathFreeObject (xpathObj);
return attrv;
}
/*
* xml_file_get_node_value: retrieve string value from XPath node
* - multiple matched nodes will be concatenated into one string
* - otherwise please use [0], [1] etc. quantificators
*/
gchar *
xml_file_get_node_value (TXMLFile *file, const gchar *x_path)
{
xmlXPathObjectPtr xpathObj;
xmlNodePtr cur;
gchar *val, *valx;
int i;
if (! file || ! x_path)
return NULL;
/* Evaluate xpath expression */
xpathObj = xmlXPathEvalExpression ((const xmlChar *) x_path, file->xpathCtx);
if (xpathObj == NULL) {
log_error ("Error: unable to evaluate xpath expression \"%s\"\n", x_path);
return NULL;
}
val = NULL;
if (xpathObj->nodesetval && xpathObj->nodesetval->nodeNr > 0)
for (i = 0; i < xpathObj->nodesetval->nodeNr; i++) {
cur = xpathObj->nodesetval->nodeTab[i];
if (cur->content) {
if (val == NULL) {
val = g_strdup ((gchar *) cur->content);
} else {
valx = g_strconcat (val, (gchar *) cur->content, NULL);
g_free (val);
val = valx;
}
}
}
xmlXPathFreeObject (xpathObj);
return val;
}
/*
* xml_file_get_node_attribute: retrieve attribute value from XPath node
*/
gchar *
xml_file_get_node_attribute (TXMLFile *file, const gchar *x_path, const gchar *attr)
{
xmlXPathObjectPtr xpathObj;
xmlNodePtr cur;
xmlChar *attrvx;
gchar *attrv;
if (! file || ! x_path)
return NULL;
/* Evaluate xpath expression */
xpathObj = xmlXPathEvalExpression ((const xmlChar *) x_path, file->xpathCtx);
if (xpathObj == NULL) {
log_error ("Error: unable to evaluate xpath expression \"%s\"\n", x_path);
return NULL;
}
attrv = NULL;
if (xpathObj->nodesetval && xpathObj->nodesetval->nodeNr > 0) {
cur = xpathObj->nodesetval->nodeTab[0];
attrvx = xmlGetProp (cur, (const xmlChar *) attr);
if (attrvx) {
attrv = g_strdup ((gchar*) attrvx);
xmlFree (attrvx);
}
}
xmlXPathFreeObject (xpathObj);
return attrv;
}
long int
xml_file_get_node_attribute_long (TXMLFile *file, const gchar *x_path, const gchar *attr, const int _default)
{
gchar *s;
long int i;
s = xml_file_get_node_attribute (file, x_path, attr);
if (s == NULL)
return _default;
i = atol (s);
g_free (s);
return i;
}
gboolean
xml_file_get_node_attribute_boolean (TXMLFile *file, const gchar *x_path, const gchar *attr, const gboolean _default)
{
gchar *s;
gboolean b;
s = xml_file_get_node_attribute (file, x_path, attr);
b = s ? (strcasecmp (s, "yes") == 0 || strcasecmp (s, "true") == 0) : _default;
g_free (s);
return b;
}
/*
* xml_file_get_node_present: existency test of the XPath node
*/
gboolean
xml_file_get_node_present (TXMLFile *file, const gchar *x_path)
{
return (xml_file_node_get_children_count (file, x_path) > 0);
}
/*
* xml_file_node_get_children_count: retrieve number of children items of the specified XPath node
*/
int
xml_file_node_get_children_count (TXMLFile *file, const gchar *x_path)
{
xmlXPathObjectPtr xpathObj;
int count;
if (! file || ! x_path)
return 0;
/* Evaluate xpath expression */
xpathObj = xmlXPathEvalExpression ((const xmlChar *) x_path, file->xpathCtx);
if (xpathObj == NULL) {
log_error ("Error: unable to evaluate xpath expression \"%s\"\n", x_path);
return 0;
}
count = 0;
if (xpathObj->nodesetval)
count = xpathObj->nodesetval->nodeNr;
xmlXPathFreeObject (xpathObj);
return count;
}
|