org.jumpmind.symmetric.web.compression
Class CompressionResponseStream

java.lang.Object
  extended by java.io.OutputStream
      extended by javax.servlet.ServletOutputStream
          extended by org.jumpmind.symmetric.web.compression.CompressionResponseStream
All Implemented Interfaces:
java.io.Closeable, java.io.Flushable

public class CompressionResponseStream
extends javax.servlet.ServletOutputStream

Implementation of ServletOutputStream that works with the CompressionServletResponseWrapper implementation. This package is derived from the Jakarta Tomcat examples compression filter and is distributed in SymmetricDS for convenience.

Version:
$Revision: 496190 $, $Date: 2007-01-14 16:21:45 -0700 (Sun, 14 Jan 2007) $
Author:
Amy Roh, Dmitri Valdin

Field Summary
protected  boolean closed
          Has this stream been closed?
protected  java.io.OutputStream gzipstream
          The underlying gzip output stream to which we should write data.
protected  javax.servlet.http.HttpServletResponse response
          The response with which this servlet output stream is associated.
 
Constructor Summary
CompressionResponseStream(javax.servlet.http.HttpServletResponse response)
          Construct a servlet output stream associated with the specified Response.
 
Method Summary
 void close()
          Close this output stream, causing any buffered data to be flushed and any further output data to throw an IOException.
 boolean closed()
          Has this response stream been closed?
 void flush()
          Flush any buffered data for this output stream, which also causes the response to be committed.
 void write(byte[] b)
          Write b.length bytes from the specified byte array to our output stream.
 void write(byte[] b, int off, int len)
          Write len bytes from the specified byte array, starting at the specified offset, to our output stream.
 void write(int b)
          Write the specified byte to our output stream.
 
Methods inherited from class javax.servlet.ServletOutputStream
print, print, print, print, print, print, print, println, println, println, println, println, println, println, println
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

gzipstream

protected java.io.OutputStream gzipstream
The underlying gzip output stream to which we should write data.


closed

protected boolean closed
Has this stream been closed?


response

protected javax.servlet.http.HttpServletResponse response
The response with which this servlet output stream is associated.

Constructor Detail

CompressionResponseStream

public CompressionResponseStream(javax.servlet.http.HttpServletResponse response)
                          throws java.io.IOException
Construct a servlet output stream associated with the specified Response.

Parameters:
response - The associated response
Throws:
java.io.IOException
Method Detail

close

public void close()
           throws java.io.IOException
Close this output stream, causing any buffered data to be flushed and any further output data to throw an IOException.

Specified by:
close in interface java.io.Closeable
Overrides:
close in class java.io.OutputStream
Throws:
java.io.IOException

flush

public void flush()
           throws java.io.IOException
Flush any buffered data for this output stream, which also causes the response to be committed.

Specified by:
flush in interface java.io.Flushable
Overrides:
flush in class java.io.OutputStream
Throws:
java.io.IOException

write

public void write(int b)
           throws java.io.IOException
Write the specified byte to our output stream.

Specified by:
write in class java.io.OutputStream
Parameters:
b - The byte to be written
Throws:
java.io.IOException - if an input/output error occurs

write

public void write(byte[] b)
           throws java.io.IOException
Write b.length bytes from the specified byte array to our output stream.

Overrides:
write in class java.io.OutputStream
Parameters:
b - The byte array to be written
Throws:
java.io.IOException - if an input/output error occurs

write

public void write(byte[] b,
                  int off,
                  int len)
           throws java.io.IOException
Write len bytes from the specified byte array, starting at the specified offset, to our output stream.

Overrides:
write in class java.io.OutputStream
Parameters:
b - The byte array containing the bytes to be written
off - Zero-relative starting offset of the bytes to be written
len - The number of bytes to be written
Throws:
java.io.IOException - if an input/output error occurs

closed

public boolean closed()
Has this response stream been closed?



Copyright © 2007-2008. All Rights Reserved.