Click here to Skip to main content
Licence CPOL
First Posted 20 Mar 2006
Views 42,159
Downloads 767
Bookmarked 38 times

XMLWriter - A simple reusable class

By Boby Thomas P | 20 Mar 2006
An example for reusable code - an XML writer class.
2 votes, 4.9%
1
1 vote, 2.4%
2

3
1 vote, 2.4%
4
37 votes, 90.2%
5
4.92/5 - 41 votes
3 removed
μ 4.32, σa 1.72 [?]

Introduction

XMLwriter is a simple class that can be used in your application to create/generate XML output. All you need to do is include the xmlwriter.h and xmlwriter.cpp into your project, and enjoy.

The implementation uses only standard CPP libraries and STLs, this can be used for applications in Windows as well as Linux. I have used this in a Windows environment, Cygwin (Linux emulator), and in Linux systems. It works fine in all the three. I hope the same will be the result in other operating systems also.

This XMLWrirter class doesn’t support all the features of XML but surely satisfies the basic needs you will have in most of your applications. You can use this code free of cost, but at your on risk. (Please test the application.)

Features

  1. Easily creates nodes.
  2. Easily creates elements.
  3. Easily adds attributes.
  4. Closes all the open tags with one simple command. (Stack to keep track of all the open tags.)
  5. No need to worry about file operations. (All handled internally.)

Features Missing

  1. No verification and validation is done on the file. (User's responsibility to ensure that file is well formed and valid.)
  2. Right now, provision to add processing instructions and CDATA sections are missing. This can be easily added to the XML class (if you need it).

I have organized the tutorial into three main sections.

Section 1: How to use?

Usage is very simple and easy.

Windows users

  1. Create a simple project in the IDE that you are using.
  2. Add the files xmlwriter.cpp and xmlwriter.h.
  3. Create a main application.
  4. Create an object of ‘xmlwriter’ and use the member functions to add nodes, elements etc.

Linux users

Copy the files xmlwriter.cpp and xmlwriter.h into your working directory. Create a main application, say for example, testxmlwriter.cpp. Create a make file.

#make file created by boby
#March-2006

CC = g++ -Wno-deprecated
CFLAGS = -c

XMLwriter_cygwin : xmlwriter.o testxmlwriter.o
        $(CC) xmlwriter.o testxmlwriter.o  -o XMLwriter_cygwin

xmlwriter.o : xmlwriter.cpp
        $(CC) $(CFLAGS) xmlwriter.cpp

testxmlwriter.o : testxmlwriter.cpp
        $(CC) $(CFLAGS)  testxmlwriter.cpp

clean:
        -rm -f *.o

Section 2: Example implementation

xmlwriter MyXml("boby.xml");
//creates an object of type xmlwriter'. This object 
//is closely coupled to the xml file boby.xml.
//Whatever operation you perform on this object 
//will be reflected in the boby.xml file.
//Constructor adds the following lines to the xml files. 
//Change the constructor code if you want to
//change the encoding format.

<?xml version="1.0" encoding="UTF-8" ?>
MyXml.AddAtributes("age","25");
//add an attribute "age" with value "25" into memory.
//This attribute will be added to the next tag which will be created.
//You can add any number of attributes before adding the tag.
//All the attributes will be added to the next tag created.

MyXml.AddAtributes("Profession","Software");
// add one more attribute.

MyXml.Createtag("Boby");
// this will create a tag boby with two attributes
// "age" and "Profession".

MyXml.AddComment("Personal information");
MyXml.Createtag("Home"); // create node boby

MyXml.CreateChild("Address","Pazheparampil"); // add element

MyXml.CreateChild("Mobile","09844400873");
MyXml.CloseLasttag(); // close boby

MyXml.AddComment("Office information");
MyXml.Createtag("Office"); // create node boby

MyXml.CreateChild("Address","Bangalore"); // add element

MyXml.CreateChild("Ph","0091234567");
MyXml.CloseLasttag(); // close Office


MyXml.CloseAlltags();
//This will colse all the open tags. After going deep 
//into the file creating lots of xml nodes,
//you can close the all opened tags with this single function call.
//A stack has been implemented to keep track of all the open tags.

Section 3: Design overview

Class diagram

Sample screenshot

Summary

This XML writer class is a typical example for a reusable class. Since the class handles only XML operations, this can be easily reused in any application without any code modification.

License

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

About the Author

Boby Thomas P



Australia Australia

Member
Check my homepage for more details - Click Here

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
GeneralMy vote of 5 PinmemberMember 766473621:15 19 Apr '11  
GeneralThanks Pinmemberhnkulkarni17:58 2 Feb '10  
GeneralExcellent...saves a lot of work Pinmemberrittjc5:18 14 May '09  
GeneralSome question for your code PinmemberJacky_y0:52 10 Mar '08  
GeneralRe: Some question for your code PinmemberBoby Thomas P18:01 31 Mar '08  
Questionuse fee Pinmembersarah_200821:48 5 Mar '08  
GeneralRe: use fee PinmemberBoby Thomas P17:59 31 Mar '08  
Generallicense issue Pinmembernicolas_hotmail19:14 4 Mar '08  
GeneralRe: license issue PinmemberBoby Thomas P23:06 4 Mar '08  
GeneralRe: license issue Pinmembernicolas_hotmail15:43 5 Mar '08  
GeneralDOM and SAX PinmemberTina Huang21:25 20 Aug '07  
GeneralRe: DOM and SAX PinmemberBoby Thomas P21:37 20 Aug '07  
GeneralA minor comment Pinmemberkrivich8:12 31 Mar '06  
GeneralRe: A minor comment PinmemberBoby Thomas P2:07 7 May '06  

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
Web04 | 2.5.120210.1 | Last Updated 20 Mar 2006
Article Copyright 2006 by Boby Thomas P
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid