summaryrefslogtreecommitdiff
path: root/gnu/java/net/protocol/http/ByteArrayResponseBodyReader.java
diff options
context:
space:
mode:
authorDavid Daney <ddaney@avtrex.com>2005-10-12 19:48:24 +0000
committerDavid Daney <ddaney@avtrex.com>2005-10-12 19:48:24 +0000
commitf66ea401a708a042dc9a1058798c58599d642941 (patch)
treef6884bf2ed3d57dd64c24e7be7dc0e1ff12b4dc6 /gnu/java/net/protocol/http/ByteArrayResponseBodyReader.java
parent39ab427324144ed0178e2b4602743dd984a27d4a (diff)
downloadclasspath-f66ea401a708a042dc9a1058798c58599d642941.tar.gz
2005-10-12 David Daney <ddaney@avtrex.com>
PR classpath/24086, PR classpath/24091, PR classpath/24104 * gnu/java/net/protocol/http/ByteArrayResponseBodyReader.java: Removed. * gnu/java/net/protocol/http/ResponseBodyReader.java: Removed. * gnu/java/net/protocol/http/event/ConnectionEvent.java: Removed. * gnu/java/net/protocol/http/event/ConnectionListener.java: Removed. * gnu/java/net/protocol/http/event/RequestEvent.java: Removed. * gnu/java/net/protocol/http/event/RequestListener.java: Removed. * gnu/java/net/protocol/http/event/package.html: Removed. * gnu/java/net/protocol/http/HTTPConnection.java: Cleaned up imports. (connectionListeners): Removed. (requestListeners): Removed. (pool): New field. (Constructor): Don't initialize connectionListeners or requestListeners. (useCount): New field. (getPoolKey): New method. (setPool): New method. (release): New method. (newRequest): Don't call fireRequestEvent. Use StringBuilder instead of StringBuffer. (close): Don't call fireConnectionEvent. (getURI):Use StringBuilder instead of StringBuffer. (addConnectionListener): Removed. (removeConnectionListener): Removed. (fireConnectionEvent): Removed. (addRequestListener): Removed. (removeRequestListener): Removed. (fireRequestEvent): Removed. * gnu/java/net/protocol/http/HTTPURLConnection.java:Cleaned up imports. (connectionPool): Changed type to LinkedHashMap. (maxConnections): Made static. (responseSink): Changed type to InputStream. (errorSink): Likewise. (connect): Eliminate reader. Get responseSink from response. (getConnection): Rewrote. (getHeaderFields): Use null as key for status line. Return unmodifiable Map. * gnu/java/net/protocol/http/Headers.java: Extend LinkedHashMap, instead of implement Map. (headers): Removed. (Constructor): Do not initialize headers. (size): Removed. (isEmpth): Removed. (containsKey): Rewrote. (containsValue): Removed. (get): Call super.get(). (getValue): Likewise. (getLongValue): New method. (put): Call super.put(). (remove): Call super.remove(). (putAll): Rewrote. (clear): Removed. (keySet): Call super.keySet(). (values): Removed. (entrySet): Call super.entrySet(). (equals): Removed. (hashCode): Removed. (parse): Use StringBuilder instead of StringBuffer. (addValue): Call super.* instead of headers.*. * gnu/java/net/protocol/http/LimitedLengthInputStream.java: New class. * gnu/java/net/protocol/http/Request.java: Cleaned up imports. (responseBodyReader): Removed. (setResponseBodyReader): Removed. (dispatch): Don't create LineInputStream. Don't call fireRequestEvent. Don't append CRLF to Request body. Handle unsolicited 100 Continue response. (readResponse): Rewrote. (readResponseBody): Renamed to ... (createResponseBodyStream): ... And rewritten. (parseAuthParams): Use StringBuilder instead of StringBuffer. (getNonceCount): Likewise. (handleSetCookie): Likewise. * gnu/java/net/protocol/http/Response.java: Cleaned up imports. (codeClass): Removed. (body): New field. (Constructor): Don't initialize codeClass. Initialize body. (getCodeClass): Rewrote. (getLongHeader): New method. (getBody): New method. * gnu/java/net/protocol/http/ChunkedInputStream.java (read): Use StringBuilder instead of StringBuffer. * gnu/java/net/protocol/http/Cookie.java (toString): Use StringBuilder instead of StringBuffer.
Diffstat (limited to 'gnu/java/net/protocol/http/ByteArrayResponseBodyReader.java')
-rw-r--r--gnu/java/net/protocol/http/ByteArrayResponseBodyReader.java123
1 files changed, 0 insertions, 123 deletions
diff --git a/gnu/java/net/protocol/http/ByteArrayResponseBodyReader.java b/gnu/java/net/protocol/http/ByteArrayResponseBodyReader.java
deleted file mode 100644
index 680e45d3e..000000000
--- a/gnu/java/net/protocol/http/ByteArrayResponseBodyReader.java
+++ /dev/null
@@ -1,123 +0,0 @@
-/* Authenticator.java --ByteArrayResponseBodyReader.java --
- Copyright (C) 2004 Free Software Foundation, Inc.
-
-This file is part of GNU Classpath.
-
-GNU Classpath 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, or (at your option)
-any later version.
-
-GNU Classpath 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 GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-02110-1301 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
-obligated to do so. If you do not wish to do so, delete this
-exception statement from your version. */
-
-
-package gnu.java.net.protocol.http;
-
-/**
- * Simple response body reader that stores content in a byte array.
- *
- * @author Chris Burdess (dog@gnu.org)
- */
-public class ByteArrayResponseBodyReader
- implements ResponseBodyReader
-{
-
- /**
- * The content.
- */
- protected byte[] content;
-
- /**
- * The position in the content at which the next write will occur.
- */
- protected int pos;
-
- /**
- * The length of the buffer.
- */
- protected int len;
-
- /**
- * Constructs a new byte array response body reader.
- */
- public ByteArrayResponseBodyReader()
- {
- this(4096);
- }
-
- /**
- * Constructs a new byte array response body reader with the specified
- * initial buffer size.
- * @param size the initial buffer size
- */
- public ByteArrayResponseBodyReader(int size)
- {
- content = new byte[size];
- pos = len = 0;
- }
-
- /**
- * This reader accepts all responses.
- */
- public boolean accept(Request request, Response response)
- {
- return true;
- }
-
- public void read(byte[] buffer, int offset, int length)
- {
- int l = length - offset;
- if (pos + l > content.length)
- {
- byte[] tmp = new byte[content.length * 2];
- System.arraycopy(content, 0, tmp, 0, pos);
- content = tmp;
- }
- System.arraycopy(buffer, offset, content, pos, l);
- pos += l;
- len = pos;
- }
-
- public void close()
- {
- pos = 0;
- }
-
- /**
- * Retrieves the content of this reader as a byte array.
- * The size of the returned array is the number of bytes read.
- */
- public byte[] toByteArray()
- {
- byte[] ret = new byte[len];
- System.arraycopy(content, 0, ret, 0, len);
- return ret;
- }
-
-}
-