/** * Yona, 21st Century Project Hosting SW *
* Copyright Yona & Yobi Authors & NAVER Corp.
* https://yona.io
**/
package utils;
import play.mvc.Results.Chunks;
import java.io.IOException;
import java.io.OutputStream;
//
// ChunkedOutputStream is made by referring to BufferedOutputStream.java
//
public class ChunkedOutputStream extends OutputStream {
Chunks.Out Ordinarily this method stores bytes from the given array into this
* stream's buffer, flushing the buffer to the underlying output stream as
* needed. If the requested length is at least as large as this stream's
* buffer, however, then this method will flush the buffer and write the
* bytes directly to the underlying output stream. Thus redundant
* len
bytes from the specified byte array
* starting at offset off
to this buffered output stream.
*
* BufferedOutputStream
s will not copy data unnecessarily.
*
* @param b the data.
* @param off the start offset in the data.
* @param len the number of bytes to write.
* @exception IOException if an I/O error occurs.
*/
@Override
public synchronized void write(byte b[], int off, int len) throws IOException {
if (len >= buf.length) {
/* If the request length exceeds the size of the output buffer,
flush the output buffer and then write the data directly.
In this way buffered streams will cascade harmlessly. */
flushBuffer();
write(b, off, len);
return;
}
if (len > buf.length - count) {
flushBuffer();
}
System.arraycopy(b, off, buf, count, len);
count += len;
}
private void flushBuffer() throws IOException {
if (count > 0) {
chunkOut();
}
}
@Override
public void close() throws IOException {
if (count > 0) {
chunkOut();
}
out.close();
}
private void chunkOut() {
byte remainBuf[] = new byte[count];
System.arraycopy(buf, 0, remainBuf,0, count);
out.write(remainBuf);
count = 0;
}
}