Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: src/org/adblockplus/ChunkedOutputStream.java

Issue 5697499218051072: Usage of new API, cleanups (reduced) (Closed)
Patch Set: Created April 11, 2014, 1:31 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <http://adblockplus.org/>, 2 * This file is part of Adblock Plus <http://adblockplus.org/>,
3 * Copyright (C) 2006-2014 Eyeo GmbH 3 * Copyright (C) 2006-2014 Eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 package org.adblockplus; 18 package org.adblockplus;
19 19
20 import java.io.FilterOutputStream; 20 import java.io.FilterOutputStream;
21 import java.io.IOException; 21 import java.io.IOException;
22 import java.io.OutputStream; 22 import java.io.OutputStream;
23 23
24 /** 24 /**
25 * ChunkedOutputStream implements chunked HTTP transfer encoding wrapper for 25 * ChunkedOutputStream implements chunked HTTP transfer encoding wrapper for Out putStream.
26 * OutputStream.
27 */ 26 */
28 public class ChunkedOutputStream extends FilterOutputStream 27 public class ChunkedOutputStream extends FilterOutputStream
29 { 28 {
30 private static final int MAX_CHUNK_SIZE = 2048; 29 private final static int MAX_CHUNK_SIZE = 2048;
30 private final static byte[] CRLF = { '\r', '\n' };
31 private final static byte[] FINAL_CHUNK = new byte[] { '0', '\r', '\n', '\r', '\n' };
31 32
32 private static final byte[] CRLF = {'\r', '\n'};
33 private static final byte[] FINAL_CHUNK = new byte[] {'0', '\r', '\n', '\r', ' \n'};
34 private boolean wroteFinalChunk = false; 33 private boolean wroteFinalChunk = false;
35 34
36 public ChunkedOutputStream(OutputStream out) 35 public ChunkedOutputStream(final OutputStream out)
37 { 36 {
38 super(out); 37 super(out);
39 } 38 }
40 39
41 @Override 40 @Override
42 public void close() throws IOException 41 public void close() throws IOException
43 { 42 {
44 if (!wroteFinalChunk) 43 // TODO: Huh? No sync, no 'this.wroteFinalChunk = false'?
Felix Dahlke 2014/04/16 15:24:25 Can you make this TODO more clear? If you think th
René Jeschke 2014/04/16 17:51:47 Removed. It will throw an exception anyway if it i
45 writeFinalChunk(); 44 if (!this.wroteFinalChunk)
Felix Dahlke 2014/04/16 15:24:25 I agree to adding final's everywhere, but let's pl
René Jeschke 2014/04/16 17:51:47 Done.
45 {
Felix Dahlke 2014/04/16 15:24:25 This is also an unrelated change.
René Jeschke 2014/04/16 17:51:47 Done.
46 this.writeFinalChunk();
47 }
46 super.close(); 48 super.close();
47 } 49 }
48 50
49 @Override 51 @Override
50 public void write(byte[] buffer, int offset, int length) throws IOException 52 public void write(final byte[] buffer, final int offset, final int length) thr ows IOException
51 { 53 {
52 writeChunk(buffer, offset, length); 54 this.writeChunk(buffer, offset, length);
53 } 55 }
54 56
55 @Override 57 @Override
56 public void write(byte[] buffer) throws IOException 58 public void write(final byte[] buffer) throws IOException
57 { 59 {
58 int offset = 0; 60 int offset = 0;
59 int remain = buffer.length; 61 int remain = buffer.length;
60 while (remain > 0) 62 while (remain > 0)
61 { 63 {
62 int size = MAX_CHUNK_SIZE; 64 final int size = Math.min(remain, MAX_CHUNK_SIZE);
63 if (size > remain) 65 this.writeChunk(buffer, offset, size);
64 size = remain;
65 writeChunk(buffer, offset, size);
66 offset += size; 66 offset += size;
67 remain -= size; 67 remain -= size;
68 } 68 }
69 } 69 }
70 70
71 @Override 71 @Override
72 public void write(int oneByte) throws IOException 72 public void write(final int oneByte) throws IOException
73 { 73 {
74 throw new UnsupportedOperationException("Not implemented"); 74 throw new UnsupportedOperationException("Not implemented");
75 } 75 }
76 76
77 public void writeFinalChunk() throws IOException 77 public void writeFinalChunk() throws IOException
78 { 78 {
79 out.write(FINAL_CHUNK); 79 this.out.write(FINAL_CHUNK);
80 out.flush(); 80 this.out.flush();
81 wroteFinalChunk = true; 81 this.wroteFinalChunk = true;
82 } 82 }
83 83
84 private void writeChunk(byte buffer[], int offset, int length) throws IOExcept ion 84 private void writeChunk(final byte buffer[], final int offset, final int lengt h) throws IOException
85 { 85 {
86 // Zero sized buffers are ok on slow connections but not in our case - zero 86 // Zero sized buffers are ok on slow connections but not in our case - zero chunk is used to indicate the end of transfer.
Felix Dahlke 2014/04/16 15:24:25 Our rule is to wrap at 100 columns, which is what
René Jeschke 2014/04/16 17:51:47 Done.
87 // chunk is used to indicate the end of transfer.
88 if (length > 0) 87 if (length > 0)
89 { 88 {
90 // Write the chunk length as a hex number 89 // Write the chunk length as a hex number
91 writeHex(length); 90 this.writeHex(length);
92 // Write the data 91 // Write the data
93 out.write(buffer, offset, length); 92 this.out.write(buffer, offset, length);
94 // Write a CRLF 93 // Write a CRLF
95 out.write(CRLF); 94 this.out.write(CRLF);
96 // Flush the underlying stream 95 // Flush the underlying stream
97 out.flush(); 96 this.out.flush();
98 } 97 }
99 } 98 }
100 99
101 private void writeHex(int i) throws IOException 100 private void writeHex(final int i) throws IOException
102 { 101 {
103 out.write(Integer.toHexString(i).getBytes()); 102 this.out.write(Integer.toHexString(i).getBytes());
104 out.write(CRLF); 103 this.out.write(CRLF);
105 } 104 }
106 } 105 }
OLDNEW

Powered by Google App Engine
This is Rietveld