1 /* LineInputStream.java --
2 Copyright (C) 2002, 2003, 2004, 2005, 2006 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 import java
.io
.BufferedInputStream
;
42 import java
.io
.ByteArrayOutputStream
;
43 import java
.io
.IOException
;
44 import java
.io
.InputStream
;
47 * An input stream that can read lines of input.
49 * @author Chris Burdess (dog@gnu.org)
51 public class LineInputStream
56 * The underlying input stream.
58 protected InputStream in
;
63 private ByteArrayOutputStream buf
;
66 * Encoding to use when translating bytes to characters.
68 private String encoding
;
76 * Whether we can use block reads.
78 private final boolean blockReads
;
81 * Constructor using the US-ASCII character encoding.
82 * @param in the underlying input stream
84 public LineInputStream(InputStream in
)
91 * @param in the underlying input stream
92 * @param encoding the character encoding to use
94 public LineInputStream(InputStream in
, String encoding
)
97 buf
= new ByteArrayOutputStream();
98 this.encoding
= encoding
;
100 // If it is already buffered, additional buffering gains nothing.
101 blockReads
= !(in
instanceof BufferedInputStream
) && in
.markSupported();
110 public int read(byte[] buf
)
116 public int read(byte[] buf
, int off
, int len
)
119 return in
.read(buf
, off
, len
);
123 * Read a line of input.
125 public String
readLine()
136 // Use mark and reset to read chunks of bytes
137 final int MAX_LENGTH
= 1024;
140 len
= in
.available();
141 if (len
== 0 || len
> MAX_LENGTH
)
143 byte[] b
= new byte[len
];
145 // Read into buffer b
146 len
= in
.read(b
, 0, len
);
157 // We don't care about resetting buf
158 return buf
.toString(encoding
);
161 // Get index of LF in b
162 pos
= indexOf(b
, len
, (byte) 0x0a);
165 // Write pos bytes to buf
166 buf
.write(b
, 0, pos
);
167 // Reset stream, and read pos + 1 bytes
172 len
= in
.read(b
, 0, pos
);
173 pos
= (len
== -1) ?
-1 : pos
- len
;
176 String ret
= buf
.toString(encoding
);
182 // Append everything to buf and fall through to re-read.
183 buf
.write(b
, 0, len
);
188 // We must use character reads in order not to read too much
189 // from the underlying stream.
199 // Fall through and return contents of buffer.
201 String ret
= buf
.toString(encoding
);
212 private int indexOf(byte[] b
, int len
, byte c
)
214 for (int pos
= 0; pos
< len
; pos
++)