Apache » Cocoon »

  Cocoon Core
      2.2
   homepage

Cocoon Core 2.2

XML Pipeline Contracts

XML Pipeline Contracts

The XMLProducer contract is part of how Cocoon assembles the actual SAX pipeline to handle a particular request. It is a little different from the Sitemap related interfaces in that the focus is on the assembled pipeline instead of the decisions of which elements to use in the pipeline. If you think of the pipeline in a strict engineering mindset, an XMLProducer is a source of SAX events and an XMLConsumer is a sink for SAX events.  An XMLPipe is both a source and a sink of SAX Events.

The XMLProducer

The XMLProducer is a very simple beast, comprised of only one method to give the component the next element of the pipeline.  Cocoon calls the setConsumer() method with the reference to the next XMLConsumer in the pipeline.  The approach allows the XMLProducer to call the different SAX related methods on the XMLConsumer without knowing ahead of time what that consumer will be.  The design is very simple and very powerful in that it allows Cocoon to daisy chain several components in any order and then execute the pipeline.

Any producer can be paired with any consumer and we have a pipeline.  The core design is very powerful and allows the end user to mix and match sitemap components as they see fit.  Cocoon will always call setConsumer() on every XMLProducer in a pipeline or it will throw an exception saying that the pipeline is invalid (i.e. there is no serializer for the pipeline).  The only contract that the XMLProducer has to worry about is that it must always make calls to the XMLConsumer passed in through the setConsumer() method.

The XMLConsumer

An XMLConsumer is much more complex due to the interfaces it implements.  An XMLConsumer is also a SAX ContentHandler and a SAX LexicalHandler.  That means the XMLConsumer has to respect all the contracts with the SAX interfaces.  SAX stands for Serialized API for XML.  A document start, and each element start must be matched by the corresponding element end or document end.  So why does Cocoon use SAX instead of manipulating a DOM?  For two main reasons: performance and scalability.  A DOM tree is much more heavy on system memory than successive calls to an API.  SAX events can be sent as soon as they are read from the originating XML, the parsing and processing can happen essentially at the same time.

Most people's needs will be handled just fine with the ContentHandler interface, as that declares your namespaces.  However if you need lexical support to resolve entity names and such, you need the LexicalHandler interface.  The AbstractXMLConsumer base class can make implementing this interface easier so that you only need to override the events you intend to do anything with.

The XMLPipe

The XMLPipe is both an XMLProducer and an XMLConsumer.  All the Transformers implement this interface for example.  By having an XMLPipe interface, we can chain more than one pipeline component together.  What this means is that Cocoon will honor all the XMLProducer contracts in a pipeline first.  The SAX pipeline will be completely assembled before any SAX calls are issued.  Cocoon does not want any stray calls to get lost.  There can be zero or more XMLPipes in a pipeline, but there must always be at least one XMLProducer and XMLConsumer pair.

Because an XMLPipe is both a source and a sink for SAX events, the basic contract that you need to worry about is that you must forward any SAX events on that you are not intercepting and transforming.  As you receive your startDocument event, pass it on to the XMLConsumer you received as part of the XMLProducer side of the contract.  An example ASCII art will help make it a bit more clear:

XMLProducer -> (XMLConsumer)XMLPipe(XMLProducer) -> XMLConsumer

A typical example would be using the FileGenerator (an XMLProducer), sending events to an XSLTTransformer (an XMLPipe), which then sends events to an HTMLSerializer (an XMLConsumer).  The XSLTTransformer acts as an XMLConsumer to the FileGenerator, and also acts as an XMLProducer to the HTMLSerializer.  It is still the responsibility of the XMLPipe component to ensure that the XML passed on to the next component is valid--provided the XML received from the previous component is valid.  In layman's terms it means if you don't intend to alter the input, just pass it on.  In most cases we just want to transform a small snippet of XML.  For example, inserting a snippet of XML based on an embedded element in a certain namespace.  Anything that doesn't belong to the namespace you are worried about should be passed on as is.