Home

Traffic Server Software Developers Kit

Chapter 5. HTTP Transformation Plugins

Table of Contents

Writing Content Transform Plugins
Transformations
VIOs
IO Buffers
The Sample Null Transform Plugin
The Append-Transform Plugin
The Sample Buffered Null Transform Plugin

Transform plugins examine or transform HTTP message body content. For example, transform plugins can:

This chapter explains how to write transform plugins. The following examples are discussed in detail:

Writing Content Transform Plugins

Content transformation plugins transform HTTP response content (such as images or HTML documents) and HTTP request content (such as client POST data). Because the data stream to be transformed is of variable length, these plugins must use a mechanism that passes data from buffer to buffer and checks to see if the end of the data stream is reached. This mechanism is provided by virtual connections (vconnections) and virtual IO descriptors (VIOs).

A vconnection is an abstraction for a data pipe that allows its users to perform asynchronous reads and writes without knowing the underlying implementation. A transformation is a specific type of vconnection. A transformation connects an input data source and an output data sink; this feature enables it to view and modify all the data passing through it.

Transformations can be chained together, one after the other, so that multiple transformations can be performed on the same content. The vconnection type, INKVConn, is actually a subclass of INKCont, which means that vconnections (and transformations) are continuations. Vconnections and transformations can thus exchange events, informing one another that data is available for reading or writing, or that the end of a data stream is reached.

A VIO is a description of an IO operation that is in progress. Every vconnection has an associated input VIO and an associated output VIO. When vconnections are transferring data to one another, one vconnection’s input VIO is another vconnection’s output VIO. A vconnection’s input VIO is also called its write VIO because the input VIO refers to a write operation performed on the vconnection itself. Similarly, the outpt VIO is also called the read VIO. For transformations, which are designed to pass data in one direction, you can picture the relationship between the transformation vconnection and its VIOs as follows:

Figure 5.1. A Transformation and its VIOs

A Transformation and its VIOs

Because the Traffic Server API places transformations directly in the response or request data stream, the transformation vconnection is responsible only for reading the data from the input buffer, transforming it, and then writing it to the output buffer. The upstream vconnection writes the incoming data to the transformation’s input buffer. In the figure above, A Transformation and its VIOs, the input VIO describes the progress of the upstream vconnection’s write operation on the transformation, while the output VIO describes the progress of the transformation’s write operation on the output (downstream) vconnection. The nbytes value in the VIO is the total number of bytes to be written. The ndone value is the current progress, or the number of bytes that have been written at a specific point in time.

When writing a transformation plugin, you must understand implementation as well as the use of vconnections. The implementor’s side refers to how to implement a vconnection that others can use. At minimum, a transform plugin creates a transformation that sits in the data stream and must be able to handle the events that the upstream and downstream vconnections send to it. The user’s side refers to how to use a vconnection to read or write data. At the very least, transformations output (write) data.

Transformations

VIOs

A VIO or virtual IO is a description of an in progress IO operation. The VIO data structure is used by vconnection users to determine how much progress has been made on a particular IO operation, and to reenable an IO operation when it stalls due to buffer space. Vconnection implementors use VIOs to determine the buffer for an IO operation, how much work to do on the IO operation, and which continuation to call back when progress on the IO operation is made.

The INKVIO data structure itself is opaque, but it might have been defined as follows:

typedef struct {
     INKCont continuation;
     INKVConn vconnection;
     INKIOBufferReader reader;
     INKMutex mutex;
     int nbytes;
     int ndone;
} *INKVIO;

IO Buffers

The IO buffer data structure is the building block of the vconnection abstraction. An IO buffer is composed of a list of buffer blocks which, in turn, point to buffer data. Both the buffer block (INKIOBufferBlock) and buffer data (INKIOBufferData) data structures are reference counted so they can reside in multiple buffers at the same time. This makes it extremely efficient to copy data from one IO buffer to another using INKIOBufferCopy, since Traffic Server only needs to copy pointers and adjust reference counts appropriately (instead of actually copying any data).

The IO buffer abstraction provides for a single writer and multiple readers. In order for the readers to have no knowledge of each other, they manipulate IO buffers through theINKIOBufferReader data structure. Since only a single writer is allowed, there is no corresponding INKIOBufferWriter data structure. The writer simply modifies the IO buffer directly.