gnu.inet.http

Class ByteArrayResponseBodyReader

Implemented Interfaces:
ResponseBodyReader

public class ByteArrayResponseBodyReader
extends Object
implements ResponseBodyReader

Simple response body reader that stores content in a byte array.

Field Summary

protected byte[]
content
The content.
protected int
len
The length of the buffer.
protected int
pos
The position in the content at which the next write will occur.

Constructor Summary

ByteArrayResponseBodyReader()
Constructs a new byte array response body reader.
ByteArrayResponseBodyReader(int size)
Constructs a new byte array response body reader with the specified initial buffer size.

Method Summary

boolean
accept(Request request, Response response)
This reader accepts all responses.
void
close()
Notifies the reader that the end of the content was reached.
void
read(byte[] buffer, int offset, int length)
Receive notification of body content.
byte[]
toByteArray()
Retrieves the content of this reader as a byte array.

Field Details

content

protected byte[] content
The content.


len

protected int len
The length of the buffer.


pos

protected int pos
The position in the content at which the next write will occur.

Constructor Details

ByteArrayResponseBodyReader

public ByteArrayResponseBodyReader()
Constructs a new byte array response body reader.


ByteArrayResponseBodyReader

public ByteArrayResponseBodyReader(int size)
Constructs a new byte array response body reader with the specified initial buffer size.

Parameters:
size - the initial buffer size

Method Details

accept

public boolean accept(Request request,
                      Response response)
This reader accepts all responses.
Specified by:
accept in interface ResponseBodyReader


close

public void close()
Notifies the reader that the end of the content was reached.
Specified by:
close in interface ResponseBodyReader


read

public void read(byte[] buffer,
                 int offset,
                 int length)
Receive notification of body content.
Specified by:
read in interface ResponseBodyReader

Parameters:
buffer - the content buffer
offset - the offset within the buffer that content starts
length - the length of the content


toByteArray

public byte[] toByteArray()
Retrieves the content of this reader as a byte array. The size of the returned array is the number of bytes read.


* ByteArrayResponseBodyReader.java * Copyright (C) 2004 The Free Software Foundation * * This file is part of GNU inetlib, a library. * * GNU inetlib is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * GNU inetlib is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Linking this library statically or dynamically with other modules is * making a combined work based on this library. Thus, the terms and * conditions of the GNU General Public License cover the whole * combination. * * As a special exception, the copyright holders of this library give you * permission to link this library with independent modules to produce an * executable, regardless of the license terms of these independent * modules, and to copy and distribute the resulting executable under * terms of your choice, provided that you also meet, for each linked * independent module, the terms and conditions of the license of that * module. An independent module is a module which is not derived from * or based on this library. If you modify this library, you may extend * this exception to your version of the library, but you are not * obliged to do so. If you do not wish to do so, delete this * exception statement from your version.