[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

re: C++ SAX Question

  • From: <david@m...>
  • To: "XML Developers' List" <xml-dev@i...>
  • Date: Wed, 21 Oct 1998 09:47:51 -0400 (EDT)

wstring c
RJA@d... writes:

 > I'm currently working on some C++ SAX definitions has was wondering if I
 > should be using references for strings or not.    

Yes, you should certainly be using references for strings (const
references, actually); you should also use wstring rather than string,
since XML requires Unicode support.  I'm not a C++ guru, but I'd
suggest starting with something like this for DocumentHandler:

xml/sax/DocumentHandler:

  #ifndef __XML_SAX_DOCUMENTHANDLER
  #define __XML_SAX_DOCUMENTHANDLER 1

  #include <string>
  #include <wchar.h>

  #include "Locator"
  #include "AttributeList"

  namespace org_xml_sax {

  class SAXDocumentHandler
  {
  public:
    virtual void setDocumentLocator (const Locator &locator) = 0;
    virtual void startDocument () = 0;
    virtual void endDocument () = 0;
    virtual void startElement (const wstring &name,
			       const AttributeList &atts) = 0;
    virtual void endElement (const wstring &name) = 0;
    virtual void characters (const wchar_t ch[], 
			     size_t start, 
			     size_t length) = 0;
    virtual void ignorableWhitespace (const wchar_t ch[],
				      size_t start,
				      size_t length) = 0;
    virtual void processingInstruction (const wstring &name,
					const wstring &target) = 0;
  };

  }

  #endif __XML_SAX_DOCUMENTHANDLER

As for comments, you probably want to put non-SAX stuff in a separate
or an extended interface so that other people can use your SAX
interface as well, i.e.

  #include <xml/sax/DocumentHandler>

  namespace rja_sax {

  class RJADocumentHandler : public org_xml_sax::DocumentHandler
  {
  public:
    virtual void comment (const wstring &data) = 0;
  };

  }

All the best, and thanks for taking the interest in building a SAX C++ 
interface.


David

-- 
David Megginson                 david@m...
           http://www.megginson.com/

xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@i... the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@i... the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@i...)


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.