PIA / src / java / org / risource / content

[..] [files] ( text )

This directory contains generic implementations of the Content interface. A content objects is used to represent the "content" of a transaction, usually streaming data (HTML page, JPEG file, etc.) being sent from a Web server to a browser. The content interface provides a very generic way for agents to get access to or modify the data in transit. Some agents (e.g. cache agent) grab a copy of the data and put it into a file (using the tapIn or tapOut methods), while others modify the data (e.g. Proxie inserts a toolbar just after the body tag of HTML pages using the add method).

The content classes in this directory are normally instantiated by a ContentFactory. The default ContentFactory uses mime type to find a name of the corresponding content class, so text/html.class would be the class instantiated for data of type text/html. If no specific type is found a default is used ByteStreamContent.

All of these classes inherit from StreamingContent which provides all of the machinery for a circular buffer. It also keeps track of state changes and uses that to notify interested agents when at appropriate times. In theory, new content classes can be implemented by subclassing StreamingContent and providing appropriate readData and writeData methods. Note that these classes are complicated by the fact that we want to start shipping the data out to a browser as soon as possible (without waiting for the entire data structure to be in memory), so a content object has to keep track of any modifications specified by an agent and perform them at the appropriate time as the data is being shipped through the circular buffer.

Annotated Contents

GenericContent.java
abstract implementation of content interface
StreamingContent.java
base implementation for streaming data (implements circular buffer and state tracking), generic agent interaction
ByteStreamContent.java
default content object
text/
specialized implementations of content for various types of text objects (e.g. text/html)
$Id: HEADER.html,v 1.2 2000-04-20 22:35:40 steve Exp $
      Name                    Last modified      Size  Description
Parent Directory - ByteStreamContent.java 2012-04-01 16:18 2.7K GenericContent.java 2012-04-01 16:18 10K Makefile 2012-04-01 16:18 1.3K StreamingContent.java 2012-04-01 16:18 16K text/ 2012-04-01 16:18 -