blob: cd28fff540c3cc0001240c14d44142cef73ee1ac [file] [log] [blame]
MST 2004 John Fleckd14bccc2004-02-15 01:57:42 +00001<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Parsing the file</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"><link rel="home" href="index.html" title="Libxml Tutorial"><link rel="up" href="index.html" title="Libxml Tutorial"><link rel="previous" href="ar01s02.html" title="Data Types"><link rel="next" href="ar01s04.html" title="Retrieving Element Content"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Parsing the file</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ar01s02.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="ar01s04.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="xmltutorialparsing"></a>Parsing the file</h2></div></div><div></div></div><p><a class="indexterm" name="fileparsing"></a>
MST 2003 John Fleck731967e2003-01-27 00:39:50 +00002Parsing the file requires only the name of the file and a single
MDT 2003 John Fleck8aff3b72003-04-26 03:54:07 +00003 function call, plus error checking. Full code: <a href="apc.html" title="C. Code for Keyword Example">Appendix C, <i>Code for Keyword Example</i></a></p><p>
MST 2003 John Fleck731967e2003-01-27 00:39:50 +00004 </p><pre class="programlisting">
MDT 2002 John Fleck598f6eb2002-06-04 15:10:36 +00005 <a name="declaredoc"></a><img src="images/callouts/1.png" alt="1" border="0"> xmlDocPtr doc;
6 <a name="declarenode"></a><img src="images/callouts/2.png" alt="2" border="0"> xmlNodePtr cur;
7
8 <a name="parsefile"></a><img src="images/callouts/3.png" alt="3" border="0"> doc = xmlParseFile(docname);
9
10 <a name="checkparseerror"></a><img src="images/callouts/4.png" alt="4" border="0"> if (doc == NULL ) {
MDT 2003 John Fleck63f3a472003-07-24 21:48:30 +000011 fprintf(stderr,"Document not parsed successfully. \n");
MDT 2002 John Fleck598f6eb2002-06-04 15:10:36 +000012 return;
13 }
14
15 <a name="getrootelement"></a><img src="images/callouts/5.png" alt="5" border="0"> cur = xmlDocGetRootElement(doc);
16
17 <a name="checkemptyerror"></a><img src="images/callouts/6.png" alt="6" border="0"> if (cur == NULL) {
MDT 2003 John Fleck63f3a472003-07-24 21:48:30 +000018 fprintf(stderr,"empty document\n");
MDT 2002 John Fleck598f6eb2002-06-04 15:10:36 +000019 xmlFreeDoc(doc);
20 return;
21 }
22
MDT 2003 John Fleck63f3a472003-07-24 21:48:30 +000023 <a name="checkroottype"></a><img src="images/callouts/7.png" alt="7" border="0"> if (xmlStrcmp(cur-&gt;name, (const xmlChar *) "story")) {
24 fprintf(stderr,"document of the wrong type, root node != story");
MDT 2002 John Fleck598f6eb2002-06-04 15:10:36 +000025 xmlFreeDoc(doc);
26 return;
27 }
28
MST 2003 John Fleck731967e2003-01-27 00:39:50 +000029 </pre><p>
MST 2002 John Fleckbd3b4fd2002-11-11 03:41:11 +000030 </p><div class="calloutlist"><table border="0" summary="Callout list"><tr><td width="5%" valign="top" align="left"><a href="#declaredoc"><img src="images/callouts/1.png" alt="1" border="0"></a> </td><td valign="top" align="left"><p>Declare the pointer that will point to your parsed document.</p></td></tr><tr><td width="5%" valign="top" align="left"><a href="#declarenode"><img src="images/callouts/2.png" alt="2" border="0"></a> </td><td valign="top" align="left"><p>Declare a node pointer (you'll need this in order to
31 interact with individual nodes).</p></td></tr><tr><td width="5%" valign="top" align="left"><a href="#checkparseerror"><img src="images/callouts/4.png" alt="4" border="0"></a> </td><td valign="top" align="left"><p>Check to see that the document was successfully parsed. If it
MST 2003 John Fleck731967e2003-01-27 00:39:50 +000032 was not, <span class="application">libxml</span> will at this point
MST 2002 John Fleckbd3b4fd2002-11-11 03:41:11 +000033 register an error and stop.
MDT 2004 John Fleck4c3bb7d2004-08-25 02:51:27 +000034 </p><div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Note"><tr><td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="images/note.png"></td><th align="left">Note</th></tr><tr><td colspan="2" align="left" valign="top"><p><a class="indexterm" name="id2525337"></a>
MST 2003 John Fleck731967e2003-01-27 00:39:50 +000035One common example of an error at this point is improper
36 handling of encoding. The <span class="acronym">XML</span> standard requires
MST 2002 John Fleckbd3b4fd2002-11-11 03:41:11 +000037 documents stored with an encoding other than UTF-8 or UTF-16 to
38 contain an explicit declaration of their encoding. If the
MST 2003 John Fleck731967e2003-01-27 00:39:50 +000039 declaration is there, <span class="application">libxml</span> will
MST 2002 John Fleckbd3b4fd2002-11-11 03:41:11 +000040 automatically perform the necessary conversion to UTF-8 for
MST 2003 John Fleck731967e2003-01-27 00:39:50 +000041 you. More information on <span class="acronym">XML's</span> encoding
MST 2004 John Fleckd14bccc2004-02-15 01:57:42 +000042 requirements is contained in the <a href="http://www.w3.org/TR/REC-xml#charencoding" target="_top">standard</a>.</p></td></tr></table></div><p>
MST 2002 John Fleckbd3b4fd2002-11-11 03:41:11 +000043 </p></td></tr><tr><td width="5%" valign="top" align="left"><a href="#getrootelement"><img src="images/callouts/5.png" alt="5" border="0"></a> </td><td valign="top" align="left"><p>Retrieve the document's root element.</p></td></tr><tr><td width="5%" valign="top" align="left"><a href="#checkemptyerror"><img src="images/callouts/6.png" alt="6" border="0"></a> </td><td valign="top" align="left"><p>Check to make sure the document actually contains something.</p></td></tr><tr><td width="5%" valign="top" align="left"><a href="#checkroottype"><img src="images/callouts/7.png" alt="7" border="0"></a> </td><td valign="top" align="left"><p>In our case, we need to make sure the document is the right
MDT 2003 John Fleck63f3a472003-07-24 21:48:30 +000044 type. "story" is the root type of the documents used in this
MST 2002 John Fleckbd3b4fd2002-11-11 03:41:11 +000045 tutorial.</p></td></tr></table></div><p>
MDT 2004 John Fleck4c3bb7d2004-08-25 02:51:27 +000046 <a class="indexterm" name="id2525415"></a>
MDT 2002 John Fleck598f6eb2002-06-04 15:10:36 +000047 </p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ar01s02.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="index.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ar01s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Data Types </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Retrieving Element Content</td></tr></table></div></body></html>