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

Re: Announcement: SAX2 1999-06-01 alpha release for Java

  • From: Lars Marius Garshol <larsga@i...>
  • To: "XML Developers' List" <xml-dev@i...>
  • Date: 03 Jun 1999 09:38:21 +0200

java filterbase

* David Megginson
| 
| 1. Do we need a filter *interface* at all, or can a filter just be a
|    class that happens to implement Parser, Configurable,
|    EntityResolver, DTDHandler, DocumentHandler, and ErrorHandler?  (In 
|    other words, is it enough to set the parent parser/filter in the
|    constructor?)

I'm more concerned with interoperability than ease of development,
really, and a main point is that assemblies of filters should be easy
to put together. The trouble with the above is that once the filter is
instantiated its position in the assembly is fixed. So I am not
satisfied with just setting the event source in the constructor.

Another thing is the business with delegation that John mentioned.
This monster interface could be reduced somewhat by replacing an
interface with a corresponding getInterface method on the filter,
returning either the private object or the filter itself. Or we could
just reason that the clients of the filter don't need access to its
handlers, and do this:

  public interface Filter extends Parser {
    public Parser getEventSource();
    public void   setEventSource(Parser eventSource);

    public Configurable getConfigurable();
  }
 
This ensures that filters can be moved around in the assembly and that
they can support configuration if they so wish (and return null if
they don't). It also makes it much clearer from the interface what a
filter is and does and enables the hiding of the handler implementation(s).

As for FilterAdapter (or FilterBase), it could either do what you
proposed that filter do above, or be split into an implementation of
filter that uses a near cousin of HandlerBase called Propagator or
some such.
 
|    [org.xml.sax.helpers.FilterAdapter]
|
|    I was thinking of including this class in the next SAX2
|    pre-release, if people are interested; I can also distribute it
|    separately in the mean time.

I am definitely interested in seeing it now.

And like David I would also like to see John's list of subtle points.

For those interested in prior art, Bill la Forge's MDSAX is also very
much worth a look: <URL: http://www.jxml.com/mdsax/>

I see that his MDFilters are interfaces that extend Parser,
DocumentHandler, DTDHandler, EntityResolver and ErrorHandler, and add
a setParser method.

--Lars M.


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/ and on CD-ROM/ISBN 981-02-3594-1
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.