Click here to Skip to main content
Click here to Skip to main content

CXMLFile - A Simple C++ XML Parser

By , 19 Mar 2008
 

Introduction

This article is about a simple and fast C++ XML parser class. There is often a need for an effective XML parser that is able to load the XML document, validate it, and browse it. In .NET environment there is a large native support for handling a lot of types of XML documents, but the same native support is missing from the original C++, MFC etc. There is, however, a COM alternative for XML file parsing and handling but it takes some time to learn it, and to use it in the right way.

This article is a simple attempt to make a C++ developer's life a bit easier than it usually is. This is support for handling the well-formed XML documents in the simplest possible way: load it, validate it, and browse it. This supports the following XML elements:

  • A simple TAG element, like <Element>
  • A simple ATTRIBUTE element, like Attribute="Value"
  • A simple TEXT element, like [Text]

Below is an example of a simple XML file that is supported:

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <note>
        <to>Tove</to>
        <from>Jani</from>

        <heading>Reminder</heading>
        <body>Don't forget me this weekend!</body>
    </note>

The presented XML classes are able to load this type of XML document, check if it is well-formed, and browse throughout its content. There are only two classes that provide this functionality.

The first class is called the CXMLFile class, and its main purpose is to load an XML file, validate its structure, and create an XML element collection out of its content. This collection of XML elements will represent the loaded XML file in the system memory. Its easy then to modify the inner struture of this collection, that is, to modify the XML file itself. This class also supports the loading of XML files from the hard-disk or from the memory stream, which is a special usage (ie. on some web server). The CXMLFile class can also output the XML element collection from the system memory to the file on the hard-disk.

The second class is called the CXMLElement class. It is used by the previous class, and will be used by the developer when browsing or modifying the inner structure of an XML file in the system memory, that is, when modifying the inner structure of the XML element collection. It has the basic support for the appending of this collection, and browsing it. It can provide information regarding the name, type or value of the current XML element from the collection.

Background

There are many articles on the CodeProject considering this topic, and this is a small contribution to these articles population. Hope that the readers and developers will find it useful in their everyday work.

Using the Code

It's quite easy to load an XML document from the hard-disk. See an example below:

#include "XMLFile.h"

...

_TCHAR lpszXMLFilePath[] = _T("A path to the XML file here...");
CXMLFile xmlFile;
if (xmlFile.LoadFromFile(lpszXMLFilePath))
{
   // Success
}
else
{
   // Error
}

To load an XML document from the memory stream:

...

// lpData and dwDataSize are obtained elsewhere

CXMLFile xmlFile;
if (xmlFile.LoadFromStream(lpData, dwDataSize))
{
    // Success
}
else
{
    // Error
}

To save the XML element collection to the file on the hard-disk, do the following:

if (xmlFile.SaveToFile(lpszXMLFilePath))
{
    // Success
}
else
{
    // Error
}

After the call to LoadFromFile(), a method of the CXMLFile class, the validation and parsing of the custom XML file will be done. If the XML file is well-formed, it will be loaded in the system memory as collection of CXMLElement elements. One can gain access to this collection using another method of the CXMLFile class called GetRoot(). See below:

CXMLEElement* pRoot = xmlFile.GetRoot();

Having the pointer to the root-element of the XML collection in the system memory, there are some things that can be done here. The root-element of the collection is of the CXMLEElement class type. Here are the methods available:

// Returns the name of the current XML element
LPTSTR GetElementName();
// Returns the type of the current XML element
XML_ELEMENT_TYPE GetElementType();
// Returns the number of child elements of the current XML element
int GetChildNumber();
// Returns the first child element of the current XML element
CXMLElement* GetFirstChild();
// Returns the current child element of the current XML element
CXMLElement* GetCurrentChild();
// Returns the next child element of the current XML element
CXMLElement* GetNextChild();
// Returns the last child element of the current XML element
CXMLElement* GetLastChild();
// Sets the value of the current XML element (valid only for attribute elements)
void SetValue(LPTSTR lpszValue);
// Gets the value of the current XML element (valid only for attribute elements)
LPTSTR GetValue();

Modify the inner structure of the XML element collection using the following methods:

// Create the new XML element of the specified type
void Create(LPTSTR lpszElementName, XML_ELEMENT_TYPE type);
// Appends the new XML element to the end of the collection of the current XML element
void AppendChild(CXMLElement* lpXMLChild);

Using the first group of CXMLEElement class methods, one can browse the XML element collection. Using the second group of CXMLEElement class methods, one can create new XML elements of different types and append them to existing ones.

Speaking about the types of XML elements, here are they listed:

XET_TAG // TAG element
XET_ATTRIBUTE // ATTRIBUTE element
XET_TEXT // TEXT element

Points of Interest

I always had a problem with loading XML documents easily and manipulating with them. Now, I have useful classes that decrease my future development time when this type of work is required. I am also able now to easily parse RSS feeds that are used all over the Web. I am planning to extend this basic support to HTML, or XML documents that are not-so-well-formed, soon (when I find some more free time).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

darkoman
Software Developer (Senior) Elektromehanika d.o.o. Nis
Serbia Serbia
Member
He has a master degree in Computer Science at Faculty of Electronics in Nis (Serbia), and works as a C++/C# application developer for Windows platforms since 2001. He likes traveling, reading and meeting new people and cultures.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionLack of navigation and add/update/delete methodsmemberAbagian11 Oct '12 - 13:19 
You cannot comfortably use it for XML modification from within the program. I have myself to study the code and add such methods. Also, does not support indents and "/>" in lines as Too many mallocs.
QuestionNice but very limitedmemberMark4128 Oct '12 - 8:10 
I found it quick and easy to update my application to use this code but then unfortunately got stuck with the problem of nested tags of the same type.   Be warned before using this code, it is unable to open XML files with nested tags of the same name (as mentioned by other reviewers)....
Questiondoesnt work in nested tag with same namememberakazuba23 Aug '12 - 23:10 
i'm trying to do like this:   <loop value = "3"> <step>down</step> <step>up</step> <loop value = "5"> <step>down</step> </loop> <step>up</step> </loop>   it doesnt detect the inner loop as a child of the outer loop. and the step...
GeneralThanks!memberliushul13 Jun '12 - 3:59 
Hello, I want to use your code in my project? Thank you
Questionutf-8membercedrix572 May '12 - 21:45 
Hello,   I tried your code but it's doesn't seems to work with UTF-8. Do you plane to make your code support it one day ?   Thank you,   Cédric
QuestionMethod to use the code in application [modified]memberfull_gunjan1 Feb '12 - 18:06 
Hello,   I am making a small mfc application in VS 6.0. In that i want to read data from an XML file suppose attribute value...... I have downloaded your code.....but i don't know how to use it.....Please mention the method how i use your code in my application.....whether i have to...
Questionit ' urgentmembersamymazine12 Dec '11 - 14:22 
I am a student in an engineering school. I have a computer project to do which is to: enhance a mp4 video with annotations that are stored in an xml file (mp7). by your program displays the entire contents of the XML file, for against me I want him m'affiche information stored in specific tags...
QuestionXML validation with a DTD filememberserup11 Sep '11 - 21:17 
Hi   I was looking for a simple c/c++ library which could validate my xml files based on the dtd (datatype definition) file I found one XMLEditor made in Visual Basic that does this, but it uses some ActiveX component to validate the file - I want to build in this functionality in my own...
GeneralProblem: please review my code [modified]memberlinwendong198217 May '11 - 20:07 
CXMLFile xmlFile; xmlFile.LoadFromStream((unsigned char *)info, strlen(info)); CXMLElement* pXmlRoot = xmlFile.GetRoot(); CXMLElement* pXmlElement = pXmlRoot->GetFirstChild(); LPTSTR pName = NULL; LPTSTR val = NULL;   while(1) { if(!pXmlElement) break;...
GeneralMy vote of 5membersamcsu18 Apr '11 - 17:20 
this is a useful class packed by MSXML.but I found ur the class is so easy that i can`t delete&modfy a node. Thanks for share! I will try my best to update it.
GeneraltinyXMLmemberAs_Sanya15 Dec '10 - 21:41 
Maybe it is better to investigate tinyXML or the similar library instead writing the new one?   Respect to darkoman, but why are you trying to discover a new wheel?
AnswerRe: tinyXMLmemberdarkoman29 Dec '10 - 20:04 
Hello,   this is just an example of how something can be done. You might ask then next: why all these articles on the Code Project when you have the standard solutions? It is not always about to "discover the wheel" but to help yourself or the others.   Or, let me put it this...
GeneralOne type of tag is not handled...memberbala66629 Nov '10 - 23:18 
if xml looks like: <bala x=":)" /> Then the parser fails. If i expand it to: <bala x=":)">babaroga</bala> Then it succeeds. I tryed to fix it but i must say that your code is quite confusing, using offsets instead of pointers is... ah never mind.   It is great as...
AnswerRe: One type of tag is not handled...memberdarkoman12 Dec '10 - 9:20 
Hvala,   najlepse na analizi i predlozima za poboljsanje. U planu mi je da izbacim novu klasu (i prateci clanak naravno) za rad sa HTML/XML dokumentima koja je nedavno zavrsena. Nadam se da ce ona biti od vece koristi C++ programerima nego ova koja (objektivno) ima puno nedostataka....
GeneralMy vote of 5memberRajaManikandan_R23 Sep '10 - 18:15 
nice one
GeneralUsing nested elements with the same names - unable to load filememberGYuval6 Jul '10 - 21:55 
Hi, I can't load this xml file: Big Test Small Test   when I'm changing the inner to it works fine.   Does it support nested elements with the same name?   Thanks, Yuval
GeneralA couple of problemsmemberLEKV16 Feb '10 - 5:17 
I ran into a couple problems during LoadFromFile in .NET 2003.   1. dwAttributeOffset was not initialized before use in ParseXMLElement(). I initialized it to zero at definition with no obvious problems.   2. Corrupted the stack. I haven't tracked this down yet. It was detected by...
AnswerRe: A couple of problemsmemberdarkoman16 Feb '10 - 9:25 
Hello,   can you please submit the XML file you have tried to parse, or just a part of it? Thank you.   Best regards, Darkoman"Avaritia est radix omnium malorum..."
GeneralRe: A couple of problemsmemberLEKV16 Feb '10 - 12:42 
I'll try to get a piece of the file that will still produce the problems. The file is currently about 15MB (I did say large).   Larry
GeneralRe: A couple of problemsmemberLEKV17 Feb '10 - 4:44 
If you have iTunes (or know someone locally that has it) you may be able to create a similar XML file. On iTunes File=>Export->Library will produce an XML file with data about the items in the library (title, artist, composer, etc) and playlists. I tried another small XML parser and it didn't...
Generalnow i saved to file, andmemberliaterez18 Nov '09 - 3:43 
1. there was no indentation 2. I needed to create the root by myself. didn't get it automatically. did I miss something? 3. the root was not written to file, (so internet explorer could not show it) 4. if I open it as a text file, there is no indentation
Generalsorry for confused (- 1 and 4 are the same)memberliaterez18 Nov '09 - 3:44 
sorry
Generalxml reader performancememberliaterez17 Nov '09 - 5:01 
Hello, Darko I debugged your code and found myself repeating on loops every inner tag. I did not try to rewrite yet, but I wonder if you missed the performance issue and it can be done on better performance or I am the one who misses something.   thanks
AnswerRe: xml reader performancememberdarkoman17 Nov '09 - 10:43 
Hello,   thanks for the interest in this work. Yes, you are right, I am using recursion to parse the XML file, although it could be done using just plain stack. Using the stack would for sure increase the overall performance of this XML parser. I will try to find the time to implement...
Generalnice but useless for the rest of usmemberrajeshFeb028 Apr '09 - 22:39 
It would be nice, if the authors assume ansi-c++ standard to produce articles like this. In fact, then "the rest of us" will also be able to use it. I do not hate MS Windows and its' product, it is just the matter of taste. But, as you see, a brilliant author, Mr darkoman, who has written this...

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 19 Mar 2008
Article Copyright 2008 by darkoman
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid