| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
package net.sourceforge.pebble.web.filter; |
| 33 | |
|
| 34 | |
import java.io.*; |
| 35 | |
import java.util.zip.GZIPOutputStream; |
| 36 | |
import javax.servlet.*; |
| 37 | |
import javax.servlet.http.*; |
| 38 | |
|
| 39 | |
public class GZIPResponseStream extends ServletOutputStream { |
| 40 | |
|
| 41 | 0 | protected ByteArrayOutputStream baos = null; |
| 42 | 0 | protected GZIPOutputStream gzipstream = null; |
| 43 | 0 | protected boolean closed = false; |
| 44 | 0 | protected HttpServletResponse response = null; |
| 45 | 0 | protected ServletOutputStream output = null; |
| 46 | |
|
| 47 | 0 | public GZIPResponseStream(HttpServletResponse response) throws IOException { |
| 48 | 0 | closed = false; |
| 49 | 0 | this.response = response; |
| 50 | 0 | this.output = response.getOutputStream(); |
| 51 | 0 | baos = new ByteArrayOutputStream(); |
| 52 | 0 | gzipstream = new GZIPOutputStream(baos); |
| 53 | 0 | } |
| 54 | |
|
| 55 | |
public void close() throws IOException { |
| 56 | 0 | if (closed) { |
| 57 | 0 | throw new IOException("This output stream has already been closed"); |
| 58 | |
} |
| 59 | 0 | gzipstream.finish(); |
| 60 | 0 | gzipstream.flush(); |
| 61 | 0 | gzipstream.close(); |
| 62 | |
|
| 63 | 0 | byte[] bytes = baos.toByteArray(); |
| 64 | 0 | response.setContentLength(bytes.length); |
| 65 | 0 | response.addHeader("Content-Encoding", "gzip"); |
| 66 | 0 | output.write(bytes); |
| 67 | 0 | output.flush(); |
| 68 | 0 | output.close(); |
| 69 | 0 | closed = true; |
| 70 | 0 | } |
| 71 | |
|
| 72 | |
public void flush() throws IOException { |
| 73 | 0 | if (closed) { |
| 74 | 0 | throw new IOException("Cannot flush a closed output stream"); |
| 75 | |
} |
| 76 | 0 | gzipstream.flush(); |
| 77 | 0 | } |
| 78 | |
|
| 79 | |
public void write(int b) throws IOException { |
| 80 | 0 | if (closed) { |
| 81 | 0 | throw new IOException("Cannot write to a closed output stream"); |
| 82 | |
} |
| 83 | 0 | gzipstream.write((byte) b); |
| 84 | 0 | } |
| 85 | |
|
| 86 | |
public void write(byte b[]) throws IOException { |
| 87 | 0 | write(b, 0, b.length); |
| 88 | 0 | } |
| 89 | |
|
| 90 | |
public void write(byte b[], int off, int len) throws IOException { |
| 91 | 0 | if (closed) { |
| 92 | 0 | throw new IOException("Cannot write to a closed output stream"); |
| 93 | |
} |
| 94 | 0 | gzipstream.write(b, off, len); |
| 95 | 0 | } |
| 96 | |
} |