00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 #include <libxml/xmlreader.h>
00038
00039 #include "xml_parser.h"
00040
00041 static xmlTextReaderPtr reader;
00042
00043 void openXMLDocument (const char * __filename) {
00044
00045 reader = xmlNewTextReaderFilename (__filename);
00046
00047 if (! reader) {
00048
00049 fprintf (stderr, "unable to open '%s'.\n", __filename);
00050 exit (1);
00051 }
00052 }
00053
00054 void closeXMLDocument () {
00055
00056 xmlFreeTextReader (reader);
00057 }
00058
00059 std :: string getAttributeValue (const std :: string & __attr) {
00060
00061 xmlChar * value = xmlTextReaderGetAttribute (reader, (const xmlChar *) __attr.c_str ());
00062
00063 std :: string str ((const char *) value);
00064
00065 xmlFree (value);
00066
00067 return str;
00068 }
00069
00070 static bool isSep (const xmlChar * __text) {
00071
00072 for (unsigned i = 0; i < strlen ((char *) __text); i ++)
00073 if (__text [i] != ' ' && __text [i] != '\t' && __text [i] != '\n')
00074 return false;
00075 return true;
00076 }
00077
00078 std :: string getNextNode () {
00079
00080 xmlChar * name, * value;
00081
00082 do {
00083 xmlTextReaderRead (reader);
00084 name = xmlTextReaderName (reader);
00085 value = xmlTextReaderValue (reader);
00086
00087 } while (! strcmp ((char *) name, "#text") && isSep (value));
00088
00089 std :: string str;
00090
00091 if (strcmp ((char *) name, "#text"))
00092 str.assign ((char *) name);
00093 else
00094 str.assign ((char *) value);
00095
00096 if (name)
00097 xmlFree (name);
00098 if (value)
00099 xmlFree (value);
00100
00101 return str;
00102 }
00103