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

SAX: towards a solution

  • From: David Megginson <ak117@f...>
  • To: xml-dev Mailing List <xml-dev@i...>
  • Date: Sat, 3 Jan 1998 07:51:40 -0500

sax solution
We have had an interesting discussion about SAX ("simple API for XML"?
I cannot remember) the past few weeks, and now it's time to get
specific.  I will be posting a series of separate messages, each
containing a single SAX design question, and will look for a consensus
on each one.  Here are the design topics that I will be posting on
over the weekend:

1) Document start and end.
2) External entity start and end.
3) External entity resolution.
4) Error reporting.
5) Whitespace handling.
6) Processing instructions.
7) Comments.
8) Doctype declaration.
9) Parser interface.
10) Naming and packaging.


ASSUMPTIONS
-----------

Before we start, I am assuming that we will all accept the following
three events without further discussion, since no one objected last
time:

  startElement (String name, java.util.Dictionary attributes)
  endElement (String name)
  charData (char ch[], int length)

I am also assuming that we will provide not only a callback interface,
but also an (optional) base class with stub methods that implementors
can override as needed; that means that novice users will not have to
implement all of SAX, even if we do end up with nine or ten methods.
For example, if you're only interested in character data, you can try
something like this:

  public class MyApplication extends XmlAppBase {

    public void charData (char ch[], int length)
    {
      System.out.println(new String(ch, 0, length));
    }

  }

There is not need for the programmer to worry about startElement(),
endElement(), since they are already implemented as empty stubs in
XmlAppBase:

  import java.util.Dictionary;

  public class XmlAppBase implements XmlApplication {
  {
    public void startElement (String name, Dictionary attributes) {}
    public void endElement (String name) {}
    public void charData (char ch[], int length) {}
    [...]
  }

_Please_ keep this model in mind when you are commenting on the
relative simplicity or complexity of SAX for users (as opposed to
parser programmers) -- extra functionality is cheap, since it can be
hidden away like this.


All the best,


David

-- 
David Megginson                 ak117@f...
Microstar Software Ltd.         dmeggins@m...
      http://home.sprynet.com/sprynet/dmeggins/

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-2011 All Rights Reserved.