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

ANN: RDFFilter 1.0alpha

  • From: David Megginson <david@m...>
  • To: xml-dev@X...
  • Date: Mon, 13 Mar 2000 12:19:01 -0500 (EST)

string body
I'm happy to announce the first release of RDFFilter 1.0alpha, a Java- 
and SAX2(beta)-based package for processing RDF documents, together
with a small bundled RDF test suite.  Download information is
available at

  http://www.megginson.com/Software/

RDFFilter uses a relatively simple callback-based interface, and
unlike DATAX, it doesn't build any in-memory trees, so it's suitable
for use with very large documents.

The callback interface looks like this:


====================8<====================8<====================

  public interface RDFHandler
  {
      public static final String featureName =
	  "http://megginson.com/sax/features/rdf";
      public static final String propertyName =
	  "http://megginson.com/sax/properties/rdf-handler";

      public final static int SUBJECT_URI = 1;
      public final static int SUBJECT_URI_PATTERN = 2;
      public final static int SUBJECT_DISTRIBUTED = 3;
      public final static int SUBJECT_GENERATED = 4;

      public abstract void literalStatement (int subjectType,
					     String subject,
					     String predicate,
					     String object,
					     String language)
	  throws SAXException;

      public abstract void resourceStatement (int subjectType,
					      String subject,
					      String predicate,
					      String object)
	  throws SAXException;

      public abstract void startXMLStatement (int subjectType,
					      String subject,
					      String predicate,
					      String language)
	  throws SAXException;

      public abstract void endXMLStatement ()
	  throws SAXException;
  }

====================8<====================8<====================


For literal XML content (parseType="Literal"), and non-RDF XML content
outside of rdf:RDF, the filter uses regular SAX2 ContentHandler
callbacks.  There is a simple front-end for people who don't want to
have to learn how to set up all the SAX2 stuff.


All the best,


David

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

***************************************************************************
This is xml-dev, the mailing list for XML developers.
To unsubscribe, mailto:majordomo@x...&BODY=unsubscribe%20xml-dev
List archives are available at http://xml.org/archives/xml-dev/
***************************************************************************

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.