2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2020-10-07 17:16:04 +00:00
|
|
|
* Copyright (c) 1995, 2020, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
2010-05-25 15:58:33 -07:00
|
|
|
* published by the Free Software Foundation. Oracle designates this
|
2007-12-01 00:00:00 +00:00
|
|
|
* particular file as subject to the "Classpath" exception as provided
|
2010-05-25 15:58:33 -07:00
|
|
|
* by Oracle in the LICENSE file that accompanied this code.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
* This code 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
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2010-05-25 15:58:33 -07:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package java.io;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class allows an application to create an input stream in
|
|
|
|
* which the bytes read are supplied by the contents of a string.
|
|
|
|
* Applications can also read bytes from a byte array by using a
|
2019-09-24 09:43:43 +01:00
|
|
|
* {@code ByteArrayInputStream}.
|
2007-12-01 00:00:00 +00:00
|
|
|
* <p>
|
|
|
|
* Only the low eight bits of each character in the string are used by
|
|
|
|
* this class.
|
|
|
|
*
|
|
|
|
* @author Arthur van Hoff
|
|
|
|
* @see java.io.ByteArrayInputStream
|
|
|
|
* @see java.io.StringReader
|
2014-06-10 16:18:54 -07:00
|
|
|
* @since 1.0
|
2007-12-01 00:00:00 +00:00
|
|
|
* @deprecated This class does not properly convert characters into bytes. As
|
|
|
|
* of JDK 1.1, the preferred way to create a stream from a
|
2019-09-24 09:43:43 +01:00
|
|
|
* string is via the {@code StringReader} class.
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
@Deprecated
|
2019-11-21 09:10:21 +00:00
|
|
|
public class StringBufferInputStream extends InputStream {
|
2007-12-01 00:00:00 +00:00
|
|
|
/**
|
|
|
|
* The string from which bytes are read.
|
|
|
|
*/
|
|
|
|
protected String buffer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The index of the next character to read from the input stream buffer.
|
|
|
|
*
|
|
|
|
* @see java.io.StringBufferInputStream#buffer
|
|
|
|
*/
|
|
|
|
protected int pos;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The number of valid characters in the input stream buffer.
|
|
|
|
*
|
|
|
|
* @see java.io.StringBufferInputStream#buffer
|
|
|
|
*/
|
|
|
|
protected int count;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a string input stream to read data from the specified string.
|
|
|
|
*
|
|
|
|
* @param s the underlying input buffer.
|
|
|
|
*/
|
|
|
|
public StringBufferInputStream(String s) {
|
|
|
|
this.buffer = s;
|
|
|
|
count = s.length();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the next byte of data from this input stream. The value
|
2019-09-24 09:43:43 +01:00
|
|
|
* byte is returned as an {@code int} in the range
|
|
|
|
* {@code 0} to {@code 255}. If no byte is available
|
2007-12-01 00:00:00 +00:00
|
|
|
* because the end of the stream has been reached, the value
|
2019-09-24 09:43:43 +01:00
|
|
|
* {@code -1} is returned.
|
2007-12-01 00:00:00 +00:00
|
|
|
* <p>
|
2019-09-24 09:43:43 +01:00
|
|
|
* The {@code read} method of
|
|
|
|
* {@code StringBufferInputStream} cannot block. It returns the
|
2007-12-01 00:00:00 +00:00
|
|
|
* low eight bits of the next character in this input stream's buffer.
|
|
|
|
*
|
2019-09-24 09:43:43 +01:00
|
|
|
* @return the next byte of data, or {@code -1} if the end of the
|
2007-12-01 00:00:00 +00:00
|
|
|
* stream is reached.
|
|
|
|
*/
|
|
|
|
public synchronized int read() {
|
|
|
|
return (pos < count) ? (buffer.charAt(pos++) & 0xFF) : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-09-24 09:43:43 +01:00
|
|
|
* Reads up to {@code len} bytes of data from this input stream
|
2007-12-01 00:00:00 +00:00
|
|
|
* into an array of bytes.
|
|
|
|
* <p>
|
2019-09-24 09:43:43 +01:00
|
|
|
* The {@code read} method of
|
|
|
|
* {@code StringBufferInputStream} cannot block. It copies the
|
2007-12-01 00:00:00 +00:00
|
|
|
* low eight bits from the characters in this input stream's buffer into
|
|
|
|
* the byte array argument.
|
|
|
|
*
|
|
|
|
* @param b the buffer into which the data is read.
|
|
|
|
* @param off the start offset of the data.
|
|
|
|
* @param len the maximum number of bytes read.
|
|
|
|
* @return the total number of bytes read into the buffer, or
|
2019-09-24 09:43:43 +01:00
|
|
|
* {@code -1} if there is no more data because the end of
|
2007-12-01 00:00:00 +00:00
|
|
|
* the stream has been reached.
|
|
|
|
*/
|
2016-08-18 22:07:09 +03:00
|
|
|
@SuppressWarnings("deprecation")
|
2021-08-18 10:47:03 +00:00
|
|
|
public synchronized int read(byte[] b, int off, int len) {
|
2007-12-01 00:00:00 +00:00
|
|
|
if (b == null) {
|
|
|
|
throw new NullPointerException();
|
|
|
|
} else if ((off < 0) || (off > b.length) || (len < 0) ||
|
|
|
|
((off + len) > b.length) || ((off + len) < 0)) {
|
|
|
|
throw new IndexOutOfBoundsException();
|
|
|
|
}
|
|
|
|
if (pos >= count) {
|
|
|
|
return -1;
|
|
|
|
}
|
2016-08-11 17:03:40 +03:00
|
|
|
|
|
|
|
int avail = count - pos;
|
|
|
|
if (len > avail) {
|
|
|
|
len = avail;
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
if (len <= 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2016-08-18 22:07:09 +03:00
|
|
|
buffer.getBytes(pos, pos + len, b, off);
|
|
|
|
pos += len;
|
2007-12-01 00:00:00 +00:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-09-24 09:43:43 +01:00
|
|
|
* Skips {@code n} bytes of input from this input stream. Fewer
|
2007-12-01 00:00:00 +00:00
|
|
|
* bytes might be skipped if the end of the input stream is reached.
|
|
|
|
*
|
|
|
|
* @param n the number of bytes to be skipped.
|
|
|
|
* @return the actual number of bytes skipped.
|
|
|
|
*/
|
|
|
|
public synchronized long skip(long n) {
|
|
|
|
if (n < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (n > count - pos) {
|
|
|
|
n = count - pos;
|
|
|
|
}
|
|
|
|
pos += n;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of bytes that can be read from the input
|
|
|
|
* stream without blocking.
|
|
|
|
*
|
2020-10-07 17:16:04 +00:00
|
|
|
* @return the value of {@code count - pos}, which is the
|
2007-12-01 00:00:00 +00:00
|
|
|
* number of bytes remaining to be read from the input buffer.
|
|
|
|
*/
|
|
|
|
public synchronized int available() {
|
|
|
|
return count - pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resets the input stream to begin reading from the first character
|
|
|
|
* of this input stream's underlying buffer.
|
|
|
|
*/
|
|
|
|
public synchronized void reset() {
|
|
|
|
pos = 0;
|
|
|
|
}
|
|
|
|
}
|