Click here to Skip to main content
Licence 
First Posted 27 Jul 2004
Views 47,383
Bookmarked 37 times

A STL based XML Config Tool

By | 19 Jun 2005 | Article
Writing multiple enumerated configuration entries.

Introduction

In an application, I needed the possibility to have an easy way for reading and writing configuration data to a file. Further, I needed the possibility to nest different Settings into each other for a better representation of how the data is in relation to each other. XML seemed to be the solution. Not having any knowledge about XML, I found two great articles on CodeProject: Read and Write application parameters in XML from Arnaud Brejon, and A simple STL based XML parser by David Hubbard.

The problem using this code was that it was not able to use equal names of configuration keys and that would lead to the need of enumeration. I did an enumeration of different keys before using INI – files. That is really ugly if you need to delete keys, because you have to change the whole enumeration of keys after the deleted one. The solution would be a configuration tool allowing keys of equal names. Many developers seemed to have the same needs, and so I hope that this article helps a bit.

All I had to do was to add some little code and write a wrapper class around Arnoud Brejon's ParamIO - class. The data written, when using equal entry names, is embedded into the XML Nodes attributes.

Using the code

All you need is the XmlConfig – class that actually wraps a ParamIO object.

    XmlConfig aParam;
    aParam.write( "Test:Blub:SecondNode", "Whatever" );
    aParam.AddAttributeString( "Test:FirstNode:Blub:SomeAttrib", 
            "stringAttrib = \"SomeValue\" intVal = \"12345\"", 0 );
    aParam.AddAttributeString( "Test:FirstNode:Blub:SomeAttrib", 
            "stringAttrib = \"SomeOtherValue\" intVal = \"12345678\"", 0 );
    aParam.writeFile( "c:\\Blub.xml" );

A kind of type checking is already included (but not handled yet). The parser interprets the "int" in intVal to determine which type the value is. If no matching (or supported) type is found, a normal string is assumed.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Tobias Wenig

Software Developer

Germany Germany

Member

Studying and having a degree of medical engineering, but decided to work as a software developer writing medical applications for image processing.

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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralLicense PinmemberLars Wetzel4:58 18 Apr '11  
GeneralRe: License PinmemberTobias Wenig5:04 18 Apr '11  
GeneralUnable to read the data PinsussStaffan O23:32 14 Jun '05  
GeneralRe: Unable to read the data PinmemberTobias Wenig1:06 15 Jun '05  
GeneralRe: Unable to read the data PinmemberStaffan O4:55 15 Jun '05  
GeneralRe: Unable to read the data PinmemberTobias Wenig4:46 17 Jun '05  
Generalvs2003 Pinmembervv12317:50 29 Jul '04  
GeneralRe: vs2003 PinmemberTobias Wenig1:37 30 Jul '04  
GeneralRe: vs2003 PinmemberTobias Wenig22:13 5 Aug '04  
GeneralRe: vs2003 Pinmembericeber23:07 12 Aug '04  
GeneralRe: vs2003 PinmemberTobias Wenig5:51 19 Aug '04  
GeneralNice! PinmemberArnaud Brejeon13:24 28 Jul '04  
GeneralKudos PinmemberNitron10:38 28 Jul '04  
GeneralExactly what I needed Pinmemberboz4:21 28 Jul '04  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 20 Jun 2005
Article Copyright 2004 by Tobias Wenig
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid