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

General SAX2 Observations

  • From: "Box, Don" <dbox@d...>
  • To: "'xml-dev@x...'" <xml-dev@X...>, "David Megginson (E-mail)" <david@m...>
  • Date: Sun, 12 Mar 2000 15:30:02 -0800

xpcom event receiver
Title: General SAX2 Observations

Sorry to chime in with these observations so late in the game, but my understanding of how SAX2 fits into the overall XML puzzle is evolving fairly rapidly. BTW, these observations are just that, observations. In general, I am a very happy SAX2b2 user.

0) I think that the independence of ContentHandler, LexicalHandler, DTDHandler and ErrorHandler are carried a bit too far. In general, I would like to be able to ask the content handler for the lexical handler interface (a la Java's cast operator or COM's QueryInterface). To allow two distinct objects to be used, I would bake in the getter method instead of relying on the underlying type system.

1) The feature mechanism is busted wrt the two namespace-related features. It assumes that the ContentHandler interface will only be called by an XMLReader implementation. This makes it tough for folks who want to use ContentHandler (and friends) as a generic interface for modeling the Infoset as a stream of method invocations (see David Brownell's stuff for an example of one such architecture), since one doesn't know generically whether or not to deliver namespace declarations as attributes or not. In general, the "consumer" of ContentHandler should be able to interrogate the namespace management policy of the receiver of the SAX events. Ideally, the ContentHandler would have the following method:

    public abstract int getNamespaceSupport();

that would return one of the following three values:

    static final int NAMESPACES_ONLY = 0;
    static final int RAW_NAMES_ONLY = 1;
    static final int RAW_NAMES_PLUS_NAMESPACES = 2;

BTW, this is not to bag on the feature mechanism in general. Rather, because the protocol of ContentHandler changes so dramatically based on the two namespace-related features, I think their discovery needs to be more tightly bound to the actual receiver of the namespace-related events. Given the method shown here, a given XMLReader implementation could simply query the ContentHandler once prior to delivering the startDocument event and configure itself accordingly.

2) NamespaceSupport needs to broken into an interface/implementation pair (a la Attributes/AttributesImpl). Ideally, I would like to be able to swap in different implementations of NamespaceSupport for performance reasons. Additionally, environments like C++ and COM don't lend themselves to having classes shared across DLL boundaries, so using an interface would make SAX2 consistent across Java, C++ and COM. One could make a similar argument about InputSource, and arguably it is more important to factor InputSource since it appears as a method parameter on a core interface. That stated, I would refactor both for consistency.

3) Minor nit. Wouldn't it be more convenient if the "rawName" parameter/property were replaced with "prefix", especially since doing so would create a nice correlation with the namespace declaration events. Since the Name production of XML 1.0 doesn't allow a Name to begin with a colon, there is no loss of information, and it is simpler to catenate the two strings together than it is to parse for the colon.

4) I am really interested in the C++ and COM mappings of SAX2. I have already made a pass at the latter and am concerned that the former not try to reinvent COM if the goal is to allow C++ code to work across DLL/so boundaries. I see a lot of opportunities for synergy between the C++ and COM mappings and would hate to see people craft yet another C++ component model without leveraging the ideas of things like John Lakos's work, COM and Mozilla's XPCOM. There are some extremely simple guidelines that I hope will be followed, including the following:

a) Hoist all shared types into pure abstract base classes or flat structures.
b) Never allow class-based references or instances to be shared across component boundaries. This includes std::string!
c) Understand that RTTI doesn't work across component boundaries.
d) Understand that exception handling doesn't work across component boundaries.
e) Understand the tradeoffs of supporting both char and wchar_t.
f) Understand that malloc/free new/delete don't work across component boundaries.

All of these observations can be ignored if you DON'T care about dynamic linking/loading in C++. However, if you do care about dynamic linking/loading, there is a family of idioms (many of which are described in John Lakos's "Large Scale C++" book, others of which are described in chapter 1 of my book, "Essential COM") that should be adhered to.

DB
http://www.develop.com/dbox




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.