 
  ROOT implementation of a simple SAX Handler.
  ROOT implementation of a simple SAX Handler. 
This handler uses TSAXParser, a SAX Parser using the SAX interface of libxml2. This script will output all elements of the original xml file, if successfully parsed.
To run this program do: 
Requires: saxexample.xml
 
<gjob:Helping xmlns:gjob="http://www.gnome.org/some-location">
  <gjob:Jobs>
 
    <gjob:Job>
      <gjob:Project id="3" time="100" priority="high"></gjob:Project>
      <gjob:Application>GBackup</gjob:Application>
      <gjob:Category>Development</gjob:Category>
 
      <gjob:Update>
         <gjob:Status>Open</gjob:Status>
         <gjob:Modified>Mon, 07 Jun 1999 20:27:45 -0400 MET DST</gjob:Modified>
        <gjob:Salary>USD 0.00</gjob:Salary>
      </gjob:Update>
 
      <gjob:Developers>
        <gjob:Developer>
        </gjob:Developer>
      </gjob:Developers>
 
      <gjob:Contact>
        <gjob:Person>Nathan Clemons</gjob:Person>
        <gjob:Email>nathan@windsofstorm.net</gjob:Email>
        <gjob:Company>
        </gjob:Company>
        <gjob:Organisation>
        </gjob:Organisation>
        <gjob:Webpage>
        </gjob:Webpage>
        <gjob:Snailmail>
        </gjob:Snailmail>
        <gjob:Phone>
        </gjob:Phone>
      </gjob:Contact>
 
      <gjob:Requirements>
      The program should be released as free software, under the GPL.
      </gjob:Requirements>
 
      <gjob:Skills>
      </gjob:Skills>
 
      <gjob:Details>
      A GNOME based system that will allow a superuser to configure
      compressed and uncompressed files and/or file systems to be backed
      up with a supported media in the system.  This should be able to
      perform via find commands generating a list of files that are passed
      to tar, dd, cpio, cp, gzip, etc., to be directed to the tape machine
      or via operations performed on the filesystem itself. Email
      notification and GUI status display very important.
      </gjob:Details>
 
    </gjob:Job>
 
  </gjob:Jobs>
</gjob:Helping>
 
 
 
class SaxHandler {
public:
   SaxHandler() { }
 
   void     OnStartDocument() { }
   void     OnEndDocument();
   void     OnStartElement(
const char*, 
const TList*);
 
   void     OnEndElement(const char*);
   void     OnCharacters(const char*);
   void     OnComment(const char*);
   void     OnWarning(const char*);
   void     OnError(const char*);
   void     OnFatalError(const char*);
   void     OnCdataBlock(
const char*, 
Int_t);
 
};
 
void SaxHandler::OnEndDocument()
{
   cout << endl;
}
 
void SaxHandler::OnStartElement(
const char *
name, 
const TList *attributes)
 
{
 
 
   }
 
   cout  << ">";
}
 
void SaxHandler::OnEndElement(
const char *
name)
 
{
   cout << 
"</" << 
name << 
">";
}
 
void SaxHandler::OnCharacters(const char *characters)
{
   cout << characters;
}
 
void SaxHandler::OnComment(
const char *
text)
 
{
   cout << 
"<!--" << 
text << 
"-->";
}
 
void SaxHandler::OnWarning(
const char *
text)
 
{
   cout << 
"Warning: " << 
text << endl;
}
 
void SaxHandler::OnError(
const char *
text)
 
{
   cerr << 
"Error: " << 
text << endl ;
}
 
void SaxHandler::OnFatalError(
const char *
text)
 
{
   cerr << 
"FatalError: " << 
text << endl ;
}
 
void SaxHandler::OnCdataBlock(
const char *
text, 
Int_t len)
 
{
   cout << 
"OnCdataBlock() " << 
text;
}
 
 
 
void SAXHandler()
{
   SaxHandler *saxHandler = new SaxHandler();
 
   saxParser->
ParseFile(dir+
"/xml/saxexample.xml");
}
TSAXParser is a subclass of TXMLParser, it is a wraper class to libxml library.
virtual Int_t ParseFile(const char *filename)
It creates the parse context of the xml file, where the xml file name is filename.
virtual void ConnectToHandler(const char *handlerName, void *handler)
A default TSAXParser to a user-defined Handler connection function.
TXMLAttribute is the attribute of an Element.
const char * GetValue() const
const char * GetName() const
Returns name of object.
- Author
- Sergey Linev 
Definition in file SAXHandler.C.