| 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 |
|
|
|
|
|
| 0% |
Uncovered Elements: 44 (44) |
Complexity: 12 |
Complexity Density: 0,43 |
|
| 39 |
|
public class GZIPResponseStream extends ServletOutputStream { |
| 40 |
|
|
| 41 |
|
protected ByteArrayOutputStream baos = null; |
| 42 |
|
protected GZIPOutputStream gzipstream = null; |
| 43 |
|
protected boolean closed = false; |
| 44 |
|
protected HttpServletResponse response = null; |
| 45 |
|
protected ServletOutputStream output = null; |
| 46 |
|
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0,2 |
|
| 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 |
|
} |
| 54 |
|
|
|
|
|
| 0% |
Uncovered Elements: 14 (14) |
Complexity: 2 |
Complexity Density: 0,17 |
|
| 55 |
0
|
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 |
|
} |
| 71 |
|
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0,67 |
|
| 72 |
0
|
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 |
|
} |
| 78 |
|
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0,67 |
|
| 79 |
0
|
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 |
|
} |
| 85 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 86 |
0
|
public void write(byte b[]) throws IOException {... |
| 87 |
0
|
write(b, 0, b.length); |
| 88 |
|
} |
| 89 |
|
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0,67 |
|
| 90 |
0
|
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 |
|
} |
| 96 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 97 |
0
|
public boolean closed() {... |
| 98 |
0
|
return (this.closed); |
| 99 |
|
} |
| 100 |
|
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 101 |
0
|
public void reset() {... |
| 102 |
|
} |
| 103 |
|
|
| 104 |
|
} |