1 /* BufferedInputStream.java -- An input stream that implements buffering
2 Copyright (C) 1998, 1999, 2001, 2005 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
41 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
42 * "The Java Language Specification", ISBN 0-201-63451-1
43 * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
44 * Status: Believed complete and correct.
48 * This subclass of <code>FilterInputStream</code> buffers input from an
49 * underlying implementation to provide a possibly more efficient read
50 * mechanism. It maintains the buffer and buffer state in instance
51 * variables that are available to subclasses. The default buffer size
52 * of 2048 bytes can be overridden by the creator of the stream.
54 * This class also implements mark/reset functionality. It is capable
55 * of remembering any number of input bytes, to the limits of
56 * system memory or the size of <code>Integer.MAX_VALUE</code>
58 * Please note that this class does not properly handle character
59 * encodings. Consider using the <code>BufferedReader</code> class which
62 * @author Aaron M. Renn (arenn@urbanophile.com)
63 * @author Warren Levy (warrenl@cygnus.com)
64 * @author Jeroen Frijters (jeroen@frijters.net)
66 public class BufferedInputStream
extends FilterInputStream
70 * This is the default buffer size
72 private static final int DEFAULT_BUFFER_SIZE
= 2048;
75 * The buffer used for storing data from the underlying stream.
80 * The number of valid bytes currently in the buffer. It is also the index
81 * of the buffer position one byte past the end of the valid data.
86 * The index of the next character that will by read from the buffer.
87 * When <code>pos == count</code>, the buffer is empty.
92 * The value of <code>pos</code> when the <code>mark()</code> method was
94 * This is set to -1 if there is no mark set.
96 protected int markpos
= -1;
99 * This is the maximum number of bytes than can be read after a
100 * call to <code>mark()</code> before the mark can be discarded.
101 * After this may bytes are read, the <code>reset()</code> method
102 * may not be called successfully.
104 protected int marklimit
;
107 * This is the initial buffer size. When the buffer is grown because
108 * of marking requirements, it will be grown by bufferSize increments.
109 * The underlying stream will be read in chunks of bufferSize.
111 private final int bufferSize
;
114 * This method initializes a new <code>BufferedInputStream</code> that will
115 * read from the specified subordinate stream with a default buffer size
118 * @param in The subordinate stream to read from
120 public BufferedInputStream(InputStream in
)
122 this(in
, DEFAULT_BUFFER_SIZE
);
126 * This method initializes a new <code>BufferedInputStream</code> that will
127 * read from the specified subordinate stream with a buffer size that
128 * is specified by the caller.
130 * @param in The subordinate stream to read from
131 * @param size The buffer size to use
133 * @exception IllegalArgumentException when size is smaller then 1
135 public BufferedInputStream(InputStream in
, int size
)
139 throw new IllegalArgumentException();
140 buf
= new byte[size
];
141 // initialize pos & count to bufferSize, to prevent refill from
142 // allocating a new buffer (if the caller starts out by calling mark()).
143 pos
= count
= bufferSize
= size
;
147 * This method returns the number of bytes that can be read from this
148 * stream before a read can block. A return of 0 indicates that blocking
149 * might (or might not) occur on the very next read attempt.
151 * The number of available bytes will be the number of read ahead bytes
152 * stored in the internal buffer plus the number of available bytes in
153 * the underlying stream.
155 * @return The number of bytes that can be read before blocking could occur
157 * @exception IOException If an error occurs
159 public synchronized int available() throws IOException
161 return count
- pos
+ super.available();
165 * This method closes the underlying input stream and frees any
166 * resources associated with it. Sets <code>buf</code> to <code>null</code>.
168 * @exception IOException If an error occurs.
170 public void close() throws IOException
172 // Free up the array memory.
180 * This method marks a position in the input to which the stream can be
181 * "reset" by calling the <code>reset()</code> method. The parameter
182 * <code>readlimit</code> is the number of bytes that can be read from the
183 * stream after setting the mark before the mark becomes invalid. For
184 * example, if <code>mark()</code> is called with a read limit of 10, then
185 * when 11 bytes of data are read from the stream before the
186 * <code>reset()</code> method is called, then the mark is invalid and the
187 * stream object instance is not required to remember the mark.
189 * Note that the number of bytes that can be remembered by this method
190 * can be greater than the size of the internal read buffer. It is also
191 * not dependent on the subordinate stream supporting mark/reset
194 * @param readlimit The number of bytes that can be read before the mark
197 public synchronized void mark(int readlimit
)
199 marklimit
= readlimit
;
204 * This method returns <code>true</code> to indicate that this class
205 * supports mark/reset functionality.
207 * @return <code>true</code> to indicate that mark/reset functionality is
211 public boolean markSupported()
217 * This method reads an unsigned byte from the input stream and returns it
218 * as an int in the range of 0-255. This method also will return -1 if
219 * the end of the stream has been reached.
221 * This method will block until the byte can be read.
223 * @return The byte read or -1 if end of stream
225 * @exception IOException If an error occurs
227 public synchronized int read() throws IOException
229 if (pos
>= count
&& !refill())
232 return buf
[pos
++] & 0xFF;
236 * This method reads bytes from a stream and stores them into a caller
237 * supplied buffer. It starts storing the data at index <code>off</code>
238 * into the buffer and attempts to read <code>len</code> bytes. This method
239 * can return before reading the number of bytes requested, but it will try
240 * to read the requested number of bytes by repeatedly calling the underlying
241 * stream as long as available() for this stream continues to return a
242 * non-zero value (or until the requested number of bytes have been read).
243 * The actual number of bytes read is returned as an int. A -1 is returned
244 * to indicate the end of the stream.
246 * This method will block until some data can be read.
248 * @param b The array into which the bytes read should be stored
249 * @param off The offset into the array to start storing bytes
250 * @param len The requested number of bytes to read
252 * @return The actual number of bytes read, or -1 if end of stream.
254 * @exception IOException If an error occurs.
255 * @exception IndexOutOfBoundsException when <code>off</code> or
256 * <code>len</code> are negative, or when <code>off + len</code>
257 * is larger then the size of <code>b</code>,
259 public synchronized int read(byte[] b
, int off
, int len
) throws IOException
261 if (off
< 0 || len
< 0 || b
.length
- off
< len
)
262 throw new IndexOutOfBoundsException();
267 if (pos
>= count
&& !refill())
268 return -1; // No bytes were read before EOF.
270 int totalBytesRead
= Math
.min(count
- pos
, len
);
271 System
.arraycopy(buf
, pos
, b
, off
, totalBytesRead
);
272 pos
+= totalBytesRead
;
273 off
+= totalBytesRead
;
274 len
-= totalBytesRead
;
276 while (len
> 0 && super.available() > 0 && refill())
278 int remain
= Math
.min(count
- pos
, len
);
279 System
.arraycopy(buf
, pos
, b
, off
, remain
);
283 totalBytesRead
+= remain
;
286 return totalBytesRead
;
290 * This method resets a stream to the point where the <code>mark()</code>
291 * method was called. Any bytes that were read after the mark point was
292 * set will be re-read during subsequent reads.
294 * This method will throw an IOException if the number of bytes read from
295 * the stream since the call to <code>mark()</code> exceeds the mark limit
296 * passed when establishing the mark.
298 * @exception IOException If <code>mark()</code> was never called or more
299 * then <code>marklimit</code> bytes were read since the last
300 * call to <code>mark()</code>
302 public synchronized void reset() throws IOException
305 throw new IOException(buf
== null ?
"Stream closed." : "Invalid mark.");
311 * This method skips the specified number of bytes in the stream. It
312 * returns the actual number of bytes skipped, which may be less than the
315 * @param n The requested number of bytes to skip
317 * @return The actual number of bytes skipped.
319 * @exception IOException If an error occurs
321 public synchronized long skip(long n
) throws IOException
324 throw new IOException("Stream closed.");
326 final long origN
= n
;
330 if (pos
>= count
&& !refill())
333 int numread
= (int) Math
.min((long) (count
- pos
), n
);
342 * Called to refill the buffer (when count is equal to pos).
344 * @return <code>true</code> when at least one additional byte was read
345 * into <code>buf</code>, <code>false</code> otherwise (at EOF).
347 private boolean refill() throws IOException
350 throw new IOException("Stream closed.");
352 if (markpos
== -1 || count
- markpos
>= marklimit
)
360 if (markpos
< bufferSize
)
362 newbuf
= new byte[count
- markpos
+ bufferSize
];
364 System
.arraycopy(buf
, markpos
, newbuf
, 0, count
- markpos
);
371 int numread
= super.read(buf
, count
, bufferSize
);
373 if (numread
<= 0) // EOF