PipedInputStream.java 13.2 KB
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9
/* PipedInputStream.java -- Read portion of piped streams.
   Copyright (C) 1998, 1999, 2000, 2001, 2003, 2005  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.
10

Tom Tromey committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
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 java.io;

40 41
// NOTE: This implementation is very similar to that of PipedReader.  If you
// fix a bug in here, chances are you should make a similar change to the
Tom Tromey committed
42 43 44 45
// PipedReader code.

/**
  * An input stream that reads its bytes from an output stream
46
  * to which it is connected.
Tom Tromey committed
47 48
  * <p>
  * Data is read and written to an internal buffer.  It is highly recommended
49
  * that the <code>PipedInputStream</code> and connected
Tom Tromey committed
50
  * <code>PipedOutputStream</code>
51
  * be part of different threads.  If they are not, the read and write
Tom Tromey committed
52 53
  * operations could deadlock their thread.
  *
54
  * @specnote The JDK implementation appears to have some undocumented
Tom Tromey committed
55 56 57 58 59 60 61 62 63
  *           functionality where it keeps track of what thread is writing
  *           to pipe and throws an IOException if that thread susequently
  *           dies. This behaviour seems dubious and unreliable - we don't
  *           implement it.
  *
  * @author Aaron M. Renn (arenn@urbanophile.com)
  */
public class PipedInputStream extends InputStream
{
64
  /** PipedOutputStream to which this is connected. Null only if this
Tom Tromey committed
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
    * InputStream hasn't been connected yet. */
  PipedOutputStream source;

  /** Set to true if close() has been called on this InputStream. */
  boolean closed;


  /**
   * The size of the internal buffer used for input/output.
   */
  /* The "Constant Field Values" Javadoc of the Sun J2SE 1.4
   * specifies 1024.
   */
  protected static final int PIPE_SIZE = 1024;


  /**
    * This is the internal circular buffer used for storing bytes written
    * to the pipe and from which bytes are read by this stream
    */
85
  protected byte[] buffer = null;
Tom Tromey committed
86 87 88

  /**
    * The index into buffer where the next byte from the connected
89
    * <code>PipedOutputStream</code> will be written. If this variable is
Tom Tromey committed
90 91 92 93 94 95 96 97 98 99 100 101 102 103
    * equal to <code>out</code>, then the buffer is full. If set to < 0,
    * the buffer is empty.
    */
  protected int in = -1;

  /**
    * This index into the buffer where bytes will be read from.
    */
  protected int out = 0;

  /** Buffer used to implement single-argument read/receive */
  private byte[] read_buf = new byte[1];

  /**
104 105
    * Creates a new <code>PipedInputStream</code> that is not connected to a
    * <code>PipedOutputStream</code>.  It must be connected before bytes can
Tom Tromey committed
106 107 108 109
    * be read from this stream.
    */
  public PipedInputStream()
  {
110
    this(PIPE_SIZE);
Tom Tromey committed
111 112 113
  }

  /**
114 115 116
   * Creates a new <code>PipedInputStream</code> of the given size that is not
   * connected to a <code>PipedOutputStream</code>.
   * It must be connected before bytes can be read from this stream.
117
   *
118 119 120
   * @since 1.6
   * @since IllegalArgumentException If pipeSize <= 0.
   */
121
  public PipedInputStream(int pipeSize) throws IllegalArgumentException
122 123 124
  {
    if (pipeSize <= 0)
      throw new IllegalArgumentException("pipeSize must be > 0");
125

126 127
    this.buffer = new byte[pipeSize];
  }
128

129
  /**
Tom Tromey committed
130
    * This constructor creates a new <code>PipedInputStream</code> and connects
131
    * it to the passed in <code>PipedOutputStream</code>. The stream is then
Tom Tromey committed
132 133
    * ready for reading.
    *
134
    * @param source The <code>PipedOutputStream</code> to connect this
Tom Tromey committed
135 136 137 138 139 140
    * stream to
    *
    * @exception IOException If <code>source</code> is already connected.
    */
  public PipedInputStream(PipedOutputStream source) throws IOException
  {
141
    this();
Tom Tromey committed
142 143 144 145
    connect(source);
  }

  /**
146 147 148 149
   * This constructor creates a new <code>PipedInputStream</code> of the given
   * size and connects it to the passed in <code>PipedOutputStream</code>.
   * The stream is then ready for reading.
   *
150
   * @param source The <code>PipedOutputStream</code> to connect this
151 152 153 154 155 156 157 158 159 160 161
   * stream to
   *
   * @since 1.6
   * @exception IOException If <code>source</code> is already connected.
   */
 public PipedInputStream(PipedOutputStream source, int pipeSize)
   throws IOException
 {
   this(pipeSize);
   connect(source);
 }
162

163
  /**
164
    * This method connects this stream to the passed in
Tom Tromey committed
165 166 167 168
    * <code>PipedOutputStream</code>.
    * This stream is then ready for reading.  If this stream is already
    * connected or has been previously closed, then an exception is thrown
    *
169
    * @param source The <code>PipedOutputStream</code> to connect this stream to
Tom Tromey committed
170
    *
171
    * @exception IOException If this PipedInputStream or <code>source</code>
Tom Tromey committed
172 173 174 175
    *                        has been connected already.
    */
  public void connect(PipedOutputStream source) throws IOException
  {
176
    // The JDK (1.3) does not appear to check for a previously closed
Tom Tromey committed
177
    // connection here.
178

Tom Tromey committed
179 180
    if (this.source != null || source.sink != null)
      throw new IOException ("Already connected");
181

Tom Tromey committed
182 183 184
    source.sink = this;
    this.source = source;
  }
185

Tom Tromey committed
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
  /**
  * This method receives a byte of input from the source PipedOutputStream.
  * If the internal circular buffer is full, this method blocks.
  *
  * @param val The byte to write to this stream
  *
  * @exception IOException if error occurs
  * @specnote Weird. This method must be some sort of accident.
  */
  protected synchronized void receive(int val) throws IOException
  {
    read_buf[0] = (byte) (val & 0xff);
    receive (read_buf, 0, 1);
  }

  /**
    * This method is used by the connected <code>PipedOutputStream</code> to
    * write bytes into the buffer.
    *
    * @param buf The array containing bytes to write to this stream
    * @param offset The offset into the array to start writing from
    * @param len The number of bytes to write.
    *
    * @exception IOException If an error occurs
    * @specnote This code should be in PipedOutputStream.write, but we
    *           put it here in order to support that bizarre recieve(int)
    *           method.
213
    */
Tom Tromey committed
214 215 216 217 218 219 220 221
  synchronized void receive(byte[] buf, int offset, int len)
    throws IOException
  {
    if (closed)
      throw new IOException ("Pipe closed");

    int bufpos = offset;
    int copylen;
222

Tom Tromey committed
223 224 225
    while (len > 0)
      {
        try
226 227 228 229 230 231 232 233 234 235 236 237 238
          {
            while (in == out)
              {
                // The pipe is full. Wake up any readers and wait for them.
                notifyAll();
                wait();
                // The pipe could have been closed while we were waiting.
                if (closed)
                  throw new IOException ("Pipe closed");
              }
          }
        catch (InterruptedException ix)
          {
Tom Tromey committed
239
            throw new InterruptedIOException ();
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
          }

        if (in < 0) // The pipe is empty.
          in = 0;

        // Figure out how many bytes from buf can be copied without
        // overrunning out or going past the length of the buffer.
        if (in < out)
          copylen = Math.min (len, out - in);
        else
          copylen = Math.min (len, buffer.length - in);

        // Copy bytes until the pipe is filled, wrapping if necessary.
        System.arraycopy(buf, bufpos, buffer, in, copylen);
        len -= copylen;
        bufpos += copylen;
        in += copylen;
        if (in == buffer.length)
          in = 0;
Tom Tromey committed
259 260 261 262
      }
    // Notify readers that new data is in the pipe.
    notifyAll();
  }
263

Tom Tromey committed
264 265 266 267 268
  /**
    * This method reads one byte from the stream.
    * -1 is returned to indicated that no bytes can be read
    * because the end of the stream was reached.  If the stream is already
    * closed, a -1 will again be returned to indicate the end of the stream.
269
    *
Tom Tromey committed
270 271 272 273
    * <p>This method will block if no byte is available to be read.</p>
    *
    * @return the value of the read byte value, or -1 of the end of the stream
    * was reached
274
    *
Tom Tromey committed
275 276 277 278 279 280 281 282 283 284 285 286 287
    * @throws IOException if an error occured
    */
  public int read() throws IOException
  {
    // Method operates by calling the multibyte overloaded read method
    // Note that read_buf is an internal instance variable.  I allocate it
    // there to avoid constant reallocation overhead for applications that
    // call this method in a loop at the cost of some unneeded overhead
    // if this method is never called.

    int r = read(read_buf, 0, 1);
    return r != -1 ? (read_buf[0] & 0xff) : -1;
  }
288

Tom Tromey committed
289 290
  /**
    * This method reads bytes from the stream into a caller supplied buffer.
291
    * It starts storing bytes at position <code>offset</code> into the
Tom Tromey committed
292
    * buffer and
293
    * reads a maximum of <code>len</code> bytes.  Note that this method
Tom Tromey committed
294
    * can actually
295
    * read fewer than <code>len</code> bytes.  The actual number of bytes
Tom Tromey committed
296 297 298 299 300 301 302 303 304 305 306 307 308
    * read is
    * returned.  A -1 is returned to indicated that no bytes can be read
    * because the end of the stream was reached - ie close() was called on the
    * connected PipedOutputStream.
    * <p>
    * This method will block if no bytes are available to be read.
    *
    * @param buf The buffer into which bytes will be stored
    * @param offset The index into the buffer at which to start writing.
    * @param len The maximum number of bytes to read.
    *
    * @exception IOException If <code>close()</code> was called on this Piped
    *                        InputStream.
309
    */
Tom Tromey committed
310 311 312 313 314 315 316 317
  public synchronized int read(byte[] buf, int offset, int len)
    throws IOException
  {
    if (source == null)
      throw new IOException ("Not connected");
    if (closed)
      throw new IOException ("Pipe closed");

318 319 320 321
    // Don't block if nothing was requested.
    if (len == 0)
      return 0;

322
    // If the buffer is empty, wait until there is something in the pipe
Tom Tromey committed
323 324 325
    // to read.
    try
      {
326 327 328 329 330 331
        while (in < 0)
          {
            if (source.closed)
              return -1;
            wait();
          }
Tom Tromey committed
332 333 334 335 336
      }
    catch (InterruptedException ix)
      {
        throw new InterruptedIOException();
      }
337

Tom Tromey committed
338 339
    int total = 0;
    int copylen;
340

Tom Tromey committed
341 342
    while (true)
      {
343 344 345 346 347 348
        // Figure out how many bytes from the pipe can be copied without
        // overrunning in or going past the length of buf.
        if (out < in)
          copylen = Math.min (len, in - out);
        else
          copylen = Math.min (len, buffer.length - out);
Tom Tromey committed
349 350

        System.arraycopy (buffer, out, buf, offset, copylen);
351 352 353 354 355 356 357 358 359 360 361 362 363 364
        offset += copylen;
        len -= copylen;
        out += copylen;
        total += copylen;

        if (out == buffer.length)
          out = 0;

        if (out == in)
          {
            // Pipe is now empty.
            in = -1;
            out = 0;
          }
Tom Tromey committed
365 366

        // If output buffer is filled or the pipe is empty, we're done.
367 368 369 370 371 372 373
        if (len == 0 || in == -1)
          {
            // Notify any waiting outputstream that there is now space
            // to write.
            notifyAll();
            return total;
          }
Tom Tromey committed
374 375
      }
  }
376

Tom Tromey committed
377 378 379 380 381 382 383 384 385 386
  /**
    * This method returns the number of bytes that can be read from this stream
    * before blocking could occur.  This is the number of bytes that are
    * currently unread in the internal circular buffer.  Note that once this
    * many additional bytes are read, the stream may block on a subsequent
    * read, but it not guaranteed to block.
    *
    * @return The number of bytes that can be read before blocking might occur
    *
    * @exception IOException If an error occurs
387
    */
Tom Tromey committed
388 389
  public synchronized int available() throws IOException
  {
390
    // The JDK 1.3 implementation does not appear to check for the closed or
Tom Tromey committed
391
    // unconnected stream conditions here.
392

Tom Tromey committed
393 394 395 396 397 398 399
    if (in < 0)
      return 0;
    else if (out < in)
      return in - out;
    else
      return (buffer.length - out) + in;
  }
400

Tom Tromey committed
401 402 403 404 405 406 407 408 409 410 411 412 413
  /**
  * This methods closes the stream so that no more data can be read
  * from it.
  *
  * @exception IOException If an error occurs
  */
  public synchronized void close() throws IOException
  {
    closed = true;
    // Wake any thread which may be in receive() waiting to write data.
    notifyAll();
  }
}