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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
|
\def\lximg{/usr/share/lx/icons/fueller.png}
\input{configpres}
% ------------------------
\section{Programming in C/C++}
% ------------------------
\subsection{XML Processing}
\title{XML Processing in C/C++}
\maketitle
\def\lximg{none}
\begin{frame}
\frametitle{Contents}
\tableofcontents
\end{frame}
% ------------------------
\subsubsection{Basics}
\begin{frame}[fragile]
\frametitle{What is XML?}
XML is
\begin{itemize}
\item a Markup Language to describe structured data
\item extensible by defining new data type definitions
\item human readable as well as machine readable
\end{itemize}
{ \tiny
\begin{verbatim}
<?xml version="1.0"?>
<store>
<!-- Sample Bookstore -->
<book isbn="10000001">
<title>The Lord Of The Rings</title>
<author>J.R.R. Tolkien</author>
</book>
<cd>
<title>The Wall</title>
<artist>Pink Floyd</artist>
<track length="3:40">Another Brick in the Wall</track>
<track length="5:33">Mother</track>
</cd>
</store>
\end{verbatim}
}
\end{frame}
% ------------------------
\subsubsection{Processing}
\begin{frame}[fragile]
\frametitle{Own parser vs. using a common library}
Using a common library is the preferred solution
\begin{itemize}
\item XML can get very complex
\item own parsers might struggle with some exotic but allowed constructs
\item common libraries are (mostly) well tested
\item rapid prototyping with common libraries
\end{itemize}
\end{frame}
\begin{frame}[fragile]
\frametitle{GNOME XML library}
\begin{itemize}
\item libxml2 is the most common XML library for Linux and C/C++
\item provides a large toolset for nearly all XML problems
\item can be used for small XML junks as well as for huge XML files or streams
\item support Document Object Model (DOM) as well as Simple API for XML (SAX)
\item support parse, generate and validate
\end{itemize}
\end{frame}
\begin{frame}[fragile]
\frametitle{Document Object Model (DOM)}
\begin{itemize}
\item DOM Parser creates a tree representation of the XML junk in main memory
\item Pros:
\begin{itemize}
\item navigation support
\item model can be modified
\item easy export of an existing model
\end{itemize}
\item Cons:
\begin{itemize}
\item large XML junks need lot of main memory
\item no stream handling support
\item slow for large XML files
\end{itemize}
\end{itemize}
\end{frame}
\begin{frame}[fragile]
\frametitle{Simple API for XML (SAX)}
\begin{itemize}
\item DOM tree parser uses SAX2 internally!
\item SAX uses callbacks for parsing events (start element, end element etc.)
\item Pros:
\begin{itemize}
\item lean and fast
\item large-file and stream handling support
\item memory footprint depends on callback implementation
\end{itemize}
\item Cons:
\begin{itemize}
\item no navigation support
\item no XML generation support
\end{itemize}
\end{itemize}
\end{frame}
\begin{frame}[fragile]
\frametitle{Recommendation}
\begin{itemize}
\item choose the right parser for the right use case
\item DOM:
\begin{itemize}
\item small files
\item navigate/modify/generate
\item data model validation (DTD)
\end{itemize}
\item SAX2:
\begin{itemize}
\item streams or large files
\item preselect XML junks
\end{itemize}
\item combine SAX2 and DOM if necessary
\end{itemize}
\end{frame}
% ------------------------
\subsubsection{Examples}
\begin{frame}[fragile]
\frametitle{DOM main()}
{ \tiny
\begin{verbatim}
#include <stdio.h>
#include <libxml/parser.h>
#include <libxml/tree.h>
static void print_element_names(xmlNode *);
int main(int argc, char **argv) {
xmlDocPtr my_doc = NULL;
xmlNode *root_element = NULL;
my_doc = xmlReadFile(argv[1], NULL, 0); // parse XML file
root_element = xmlDocGetRootElement(my_doc);
print_element_names(root_element); // output
xmlFreeDoc(my_doc);
xmlCleanupParser();
return 0;
}
\end{verbatim}
}
\end{frame}
\begin{frame}[fragile]
\frametitle{DOM tree navigation and output}
{ \tiny
\begin{verbatim}
static void print_element_names(xmlNode * a_node)
{
xmlNode *cur_node = NULL;
for (cur_node = a_node; cur_node; cur_node = cur_node->next) {
if (cur_node->type == XML_ELEMENT_NODE) {
printf("node type: Element, name: %s\n", cur_node->name);
}
print_element_names(cur_node->children);
}
}
\end{verbatim}
}
\end{frame}
\begin{frame}[fragile]
\frametitle{DOM: Input / Output}
\begin{columns}
\begin{column}{5cm}
{ \tiny
\begin{verbatim}
<?xml version="1.0"?>
<store>
<!-- Sample Bookstore -->
<book isbn="10000001">
<title>The Lord Of The Rings</title>
<author>J.R.R. Tolkien</author>
</book>
<cd>
<title>The Wall</title>
<artist>Pink Floyd</artist>
<track length="3:40">
Another Brick in the Wall</track>
<track length="5:33">Mother</track>
</cd>
</store>
\end{verbatim}
}
\end{column}
\begin{column}{5cm}
{ \tiny
\begin{verbatim}
node type: Element, name: store
node type: Element, name: book
node type: Element, name: title
node type: Element, name: author
node type: Element, name: cd
node type: Element, name: title
node type: Element, name: artist
node type: Element, name: track
node type: Element, name: track
\end{verbatim}
}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]
\frametitle{SAX2 main()}
{ \tiny
\begin{verbatim}
/*
* Simple SAX example
*/
#include <string.h>
#include <libxml/parser.h>
#include <libxml/tree.h>
static int cb_total = 0;
int main(int argc, char **argv) {
cb_total = 0;
xmlSAXUserParseFile(debugSAXHandler, NULL, argv[1]);
fprintf(stdout, "\ncallback calls: %d\n", cb_total);
xmlCleanupParser();
xmlMemoryDump();
return 0;
}
\end{verbatim}
}
\end{frame}
\begin{frame}[fragile]
\frametitle{SAX2 callback implementations}
{ \tiny
\begin{verbatim}
static void cb_start_document(void *ctx ATTRIBUTE_UNUSED)
{
cb_total++;
fprintf(stdout, "SAX.startDocument()\n");
}
static void cb_end_document(void *ctx ATTRIBUTE_UNUSED)
{
cb_total++;
fprintf(stdout, "SAX.endDocument()\n");
}
static void cb_characters(void *ctx ATTRIBUTE_UNUSED, const xmlChar *ch, int len)
{
char output[40];
int i;
cb_total++;
for (i = 0;(i<len) && (i < 30);i++)
output[i] = ch[i];
output[i] = 0;
fprintf(stdout, "SAX.characters(%s, %d)\n", output, len);
}
\end{verbatim}
}
\end{frame}
\begin{frame}[fragile]
\frametitle{SAX2 callback structure}
{ \tiny
\begin{verbatim}
xmlSAXHandler debugSAXHandlerStruct = {
NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL,
cb_start_document,
cb_end_document,
cb_start_element,
cb_end_element,
NULL,
cb_characters,
NULL, NULL,
cb_comment,
NULL, NULL, NULL, NULL, NULL, NULL,
1
};
xmlSAXHandlerPtr debugSAXHandler = &debugSAXHandlerStruct;
\end{verbatim}
}
\end{frame}
\begin{frame}[fragile]
\frametitle{SAX: Input / Output - Outline}
\begin{columns}
\begin{column}{5cm}
{ \tiny
\begin{verbatim}
<?xml version="1.0"?>
<store>
<!-- Sample Bookstore -->
[...]
</store>
\end{verbatim}
}
\end{column}
\begin{column}{5cm}
{ \tiny
\begin{verbatim}
SAX.startDocument()
SAX.startElement(store)
SAX.characters(
, 1)
SAX.comment( Sample Bookstore )
SAX.characters(
, 1)
[...]
SAX.endElement(store)
SAX.endDocument()
\end{verbatim}
}
\end{column}
\end{columns}
\end{frame}
\begin{frame}[fragile]
\frametitle{SAX: Input / Output - Element}
\begin{columns}
\begin{column}{5cm}
{ \tiny
\begin{verbatim}
<book isbn="10000001">
<title>The Lord Of The Rings</title>
<author>J.R.R. Tolkien</author>
</book>
\end{verbatim}
}
\end{column}
\begin{column}{5cm}
{ \tiny
\begin{verbatim}
SAX.startElement(book, isbn='10000001')
SAX.characters(
, 1)
SAX.startElement(title)
SAX.characters(The Lord Of The Rings, 21)
SAX.endElement(title)
SAX.characters(
, 1)
SAX.startElement(author)
SAX.characters(J.R.R. Tolkien, 13)
SAX.endElement(author)
SAX.characters(
, 1)
SAX.endElement(book)
\end{verbatim}
}
\end{column}
\end{columns}
\end{frame}
% ------------------------
\subsection{}
\begin{frame}
\frametitle{References}
XML on W3C:
\begin{itemize}
\item \url{http://www.w3.org/XML/}
\item \url{http://www.w3.org/TR/REC-xml/}
\end{itemize}
GNOME XML Library:
\begin{itemize}
\item \url{http://www.xmlsoft.org/}
\end{itemize}
Wikipedia:
\begin{itemize}
\item \url{http://en.wikipedia.org/wiki/XML}
\end{itemize}
\end{frame}
\input{tailpres}
|