jdk/src/java.base/share/classes/java/io/DataInputStream.java
author martin
Tue, 15 Sep 2015 21:56:04 -0700
changeset 32649 2ee9017c7597
parent 25859 3317bb8137f4
child 37591 b71bda3ce058
permissions -rw-r--r--
8136583: Core libraries should use blessed modifier order Summary: Run blessed-modifier-order script (see bug) Reviewed-by: psandoz, chegar, alanb, plevart
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 1994, 2006, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.io;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * A data input stream lets an application read primitive Java data
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * types from an underlying input stream in a machine-independent
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * way. An application uses a data output stream to write data that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * can later be read by a data input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * DataInputStream is not necessarily safe for multithreaded access.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * Thread safety is optional and is the responsibility of users of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * methods in this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * @author  Arthur van Hoff
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * @see     java.io.DataOutputStream
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 5506
diff changeset
    40
 * @since   1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
class DataInputStream extends FilterInputStream implements DataInput {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
     * Creates a DataInputStream that uses the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
     * underlying InputStream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     * @param  in   the specified input stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    public DataInputStream(InputStream in) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        super(in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * working arrays initialized on demand by readUTF
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    private byte bytearr[] = new byte[80];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    private char chararr[] = new char[80];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * Reads some number of bytes from the contained input stream and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * stores them into the buffer array <code>b</code>. The number of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * bytes actually read is returned as an integer. This method blocks
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * until input data is available, end of file is detected, or an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * <p>If <code>b</code> is null, a <code>NullPointerException</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * thrown. If the length of <code>b</code> is zero, then no bytes are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * read and <code>0</code> is returned; otherwise, there is an attempt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * to read at least one byte. If no byte is available because the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * stream is at end of file, the value <code>-1</code> is returned;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * otherwise, at least one byte is read and stored into <code>b</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * <p>The first byte read is stored into element <code>b[0]</code>, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * next one into <code>b[1]</code>, and so on. The number of bytes read
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * is, at most, equal to the length of <code>b</code>. Let <code>k</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * be the number of bytes actually read; these bytes will be stored in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * elements <code>b[0]</code> through <code>b[k-1]</code>, leaving
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * elements <code>b[k]</code> through <code>b[b.length-1]</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * unaffected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * <p>The <code>read(b)</code> method has the same effect as:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * read(b, 0, b.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @param      b   the buffer into which the data is read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * @return     the total number of bytes read into the buffer, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     *             <code>-1</code> if there is no more data because the end
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     *             of the stream has been reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * @exception  IOException if the first byte cannot be read for any reason
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * other than end of file, the stream has been closed and the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * input stream does not support reading after close, or another I/O
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * @see        java.io.InputStream#read(byte[], int, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    public final int read(byte b[]) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        return in.read(b, 0, b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * Reads up to <code>len</code> bytes of data from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * input stream into an array of bytes.  An attempt is made to read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * as many as <code>len</code> bytes, but a smaller number may be read,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * possibly zero. The number of bytes actually read is returned as an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * <p> This method blocks until input data is available, end of file is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * <p> If <code>len</code> is zero, then no bytes are read and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * <code>0</code> is returned; otherwise, there is an attempt to read at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * least one byte. If no byte is available because the stream is at end of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * file, the value <code>-1</code> is returned; otherwise, at least one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * byte is read and stored into <code>b</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * <p> The first byte read is stored into element <code>b[off]</code>, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * next one into <code>b[off+1]</code>, and so on. The number of bytes read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * is, at most, equal to <code>len</code>. Let <i>k</i> be the number of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * bytes actually read; these bytes will be stored in elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * <code>b[off]</code> through <code>b[off+</code><i>k</i><code>-1]</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * leaving elements <code>b[off+</code><i>k</i><code>]</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * <code>b[off+len-1]</code> unaffected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * <p> In every case, elements <code>b[0]</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * <code>b[off]</code> and elements <code>b[off+len]</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * <code>b[b.length-1]</code> are unaffected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * @param      b     the buffer into which the data is read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @param off the start offset in the destination array <code>b</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @param      len   the maximum number of bytes read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * @return     the total number of bytes read into the buffer, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     *             <code>-1</code> if there is no more data because the end
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     *             of the stream has been reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * @exception  NullPointerException If <code>b</code> is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @exception  IndexOutOfBoundsException If <code>off</code> is negative,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * <code>len</code> is negative, or <code>len</code> is greater than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * <code>b.length - off</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @exception  IOException if the first byte cannot be read for any reason
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * other than end of file, the stream has been closed and the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * input stream does not support reading after close, or another I/O
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * @see        java.io.InputStream#read(byte[], int, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    public final int read(byte b[], int off, int len) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        return in.read(b, off, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * See the general contract of the <code>readFully</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @param      b   the buffer into which the data is read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @exception  EOFException  if this input stream reaches the end before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *             reading all the bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    public final void readFully(byte b[]) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        readFully(b, 0, b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * See the general contract of the <code>readFully</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @param      b     the buffer into which the data is read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @param      off   the start offset of the data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * @param      len   the number of bytes to read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * @exception  EOFException  if this input stream reaches the end before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     *               reading all the bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    public final void readFully(byte b[], int off, int len) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        if (len < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        while (n < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            int count = in.read(b, off + n, len - n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            if (count < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
                throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
            n += count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * See the general contract of the <code>skipBytes</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * Bytes for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @param      n   the number of bytes to be skipped.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * @return     the actual number of bytes skipped.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * @exception  IOException  if the contained input stream does not support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     *             seek, or the stream has been closed and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     *             the contained input stream does not support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     *             reading after close, or another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    public final int skipBytes(int n) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        int total = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        int cur = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        while ((total<n) && ((cur = (int) in.skip(n-total)) > 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            total += cur;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        return total;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * See the general contract of the <code>readBoolean</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * Bytes for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * @return     the <code>boolean</code> value read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * @exception  EOFException  if this input stream has reached the end.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    public final boolean readBoolean() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        int ch = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        if (ch < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        return (ch != 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * See the general contract of the <code>readByte</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * @return     the next byte of this input stream as a signed 8-bit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     *             <code>byte</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * @exception  EOFException  if this input stream has reached the end.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    public final byte readByte() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        int ch = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        if (ch < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        return (byte)(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * See the general contract of the <code>readUnsignedByte</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * @return     the next byte of this input stream, interpreted as an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     *             unsigned 8-bit number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * @exception  EOFException  if this input stream has reached the end.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * @see         java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    public final int readUnsignedByte() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        int ch = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        if (ch < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
        return ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * See the general contract of the <code>readShort</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * @return     the next two bytes of this input stream, interpreted as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     *             signed 16-bit number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * @exception  EOFException  if this input stream reaches the end before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     *               reading two bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    public final short readShort() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        int ch1 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        int ch2 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        if ((ch1 | ch2) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        return (short)((ch1 << 8) + (ch2 << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * See the general contract of the <code>readUnsignedShort</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * @return     the next two bytes of this input stream, interpreted as an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     *             unsigned 16-bit integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * @exception  EOFException  if this input stream reaches the end before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     *             reading two bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    public final int readUnsignedShort() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        int ch1 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        int ch2 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        if ((ch1 | ch2) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        return (ch1 << 8) + (ch2 << 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * See the general contract of the <code>readChar</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * @return     the next two bytes of this input stream, interpreted as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     *             <code>char</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * @exception  EOFException  if this input stream reaches the end before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     *               reading two bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    public final char readChar() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        int ch1 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        int ch2 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        if ((ch1 | ch2) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        return (char)((ch1 << 8) + (ch2 << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * See the general contract of the <code>readInt</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * @return     the next four bytes of this input stream, interpreted as an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     *             <code>int</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * @exception  EOFException  if this input stream reaches the end before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     *               reading four bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    public final int readInt() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        int ch1 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        int ch2 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        int ch3 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        int ch4 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        if ((ch1 | ch2 | ch3 | ch4) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
        return ((ch1 << 24) + (ch2 << 16) + (ch3 << 8) + (ch4 << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    private byte readBuffer[] = new byte[8];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * See the general contract of the <code>readLong</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * @return     the next eight bytes of this input stream, interpreted as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     *             <code>long</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * @exception  EOFException  if this input stream reaches the end before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     *               reading eight bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
    public final long readLong() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        readFully(readBuffer, 0, 8);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        return (((long)readBuffer[0] << 56) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
                ((long)(readBuffer[1] & 255) << 48) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
                ((long)(readBuffer[2] & 255) << 40) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                ((long)(readBuffer[3] & 255) << 32) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
                ((long)(readBuffer[4] & 255) << 24) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
                ((readBuffer[5] & 255) << 16) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                ((readBuffer[6] & 255) <<  8) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
                ((readBuffer[7] & 255) <<  0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * See the general contract of the <code>readFloat</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * @return     the next four bytes of this input stream, interpreted as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     *             <code>float</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * @exception  EOFException  if this input stream reaches the end before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *               reading four bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @see        java.io.DataInputStream#readInt()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * @see        java.lang.Float#intBitsToFloat(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    public final float readFloat() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        return Float.intBitsToFloat(readInt());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * See the general contract of the <code>readDouble</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * @return     the next eight bytes of this input stream, interpreted as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     *             <code>double</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * @exception  EOFException  if this input stream reaches the end before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     *               reading eight bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * @see        java.io.DataInputStream#readLong()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * @see        java.lang.Double#longBitsToDouble(long)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    public final double readDouble() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        return Double.longBitsToDouble(readLong());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    private char lineBuffer[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * See the general contract of the <code>readLine</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * @deprecated This method does not properly convert bytes to characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * As of JDK&nbsp;1.1, the preferred way to read lines of text is via the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * <code>BufferedReader.readLine()</code> method.  Programs that use the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     * <code>DataInputStream</code> class to read lines can be converted to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * the <code>BufferedReader</code> class by replacing code of the form:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     *     DataInputStream d =&nbsp;new&nbsp;DataInputStream(in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * with:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     *     BufferedReader d
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     *          =&nbsp;new&nbsp;BufferedReader(new&nbsp;InputStreamReader(in));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * @return     the next line of text from this input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * @see        java.io.BufferedReader#readLine()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
    public final String readLine() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        char buf[] = lineBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        if (buf == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            buf = lineBuffer = new char[128];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        int room = buf.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        int offset = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        int c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
loop:   while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
            switch (c = in.read()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
              case -1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
              case '\n':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                break loop;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
              case '\r':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                int c2 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                if ((c2 != '\n') && (c2 != -1)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                    if (!(in instanceof PushbackInputStream)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                        this.in = new PushbackInputStream(in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
                    ((PushbackInputStream)in).unread(c2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                break loop;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
              default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                if (--room < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                    buf = new char[offset + 128];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                    room = buf.length - offset - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
                    System.arraycopy(lineBuffer, 0, buf, 0, offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
                    lineBuffer = buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
                buf[offset++] = (char) c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        if ((c == -1) && (offset == 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        return String.copyValueOf(buf, 0, offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * See the general contract of the <code>readUTF</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * @return     a Unicode string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * @exception  EOFException  if this input stream reaches the end before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     *               reading all the bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * @exception  UTFDataFormatException if the bytes do not represent a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     *             modified UTF-8 encoding of a string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * @see        java.io.DataInputStream#readUTF(java.io.DataInput)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    public final String readUTF() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        return readUTF(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * Reads from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     * stream <code>in</code> a representation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     * of a Unicode  character string encoded in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * <a href="DataInput.html#modified-utf-8">modified UTF-8</a> format;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     * this string of characters is then returned as a <code>String</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * The details of the modified UTF-8 representation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * are  exactly the same as for the <code>readUTF</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * method of <code>DataInput</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * @param      in   a data input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * @return     a Unicode string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * @exception  EOFException            if the input stream reaches the end
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     *               before all the bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * @exception  IOException   the stream has been closed and the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * @exception  UTFDataFormatException  if the bytes do not represent a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     *               valid modified UTF-8 encoding of a Unicode string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     * @see        java.io.DataInputStream#readUnsignedShort()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
   588
    public static final String readUTF(DataInput in) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
        int utflen = in.readUnsignedShort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
        byte[] bytearr = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        char[] chararr = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
        if (in instanceof DataInputStream) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
            DataInputStream dis = (DataInputStream)in;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
            if (dis.bytearr.length < utflen){
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
                dis.bytearr = new byte[utflen*2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
                dis.chararr = new char[utflen*2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
            chararr = dis.chararr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
            bytearr = dis.bytearr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
            bytearr = new byte[utflen];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
            chararr = new char[utflen];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
        int c, char2, char3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
        int count = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        int chararr_count=0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        in.readFully(bytearr, 0, utflen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
        while (count < utflen) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
            c = (int) bytearr[count] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
            if (c > 127) break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
            count++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
            chararr[chararr_count++]=(char)c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
        while (count < utflen) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            c = (int) bytearr[count] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            switch (c >> 4) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                    /* 0xxxxxxx*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                    count++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
                    chararr[chararr_count++]=(char)c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                case 12: case 13:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
                    /* 110x xxxx   10xx xxxx*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
                    count += 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
                    if (count > utflen)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                        throw new UTFDataFormatException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                            "malformed input: partial character at end");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                    char2 = (int) bytearr[count-1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                    if ((char2 & 0xC0) != 0x80)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                        throw new UTFDataFormatException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                            "malformed input around byte " + count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                    chararr[chararr_count++]=(char)(((c & 0x1F) << 6) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                                                    (char2 & 0x3F));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                case 14:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
                    /* 1110 xxxx  10xx xxxx  10xx xxxx */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
                    count += 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                    if (count > utflen)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
                        throw new UTFDataFormatException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                            "malformed input: partial character at end");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
                    char2 = (int) bytearr[count-2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
                    char3 = (int) bytearr[count-1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
                    if (((char2 & 0xC0) != 0x80) || ((char3 & 0xC0) != 0x80))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
                        throw new UTFDataFormatException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
                            "malformed input around byte " + (count-1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                    chararr[chararr_count++]=(char)(((c     & 0x0F) << 12) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                                                    ((char2 & 0x3F) << 6)  |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
                                                    ((char3 & 0x3F) << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
                default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
                    /* 10xx xxxx,  1111 xxxx */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
                    throw new UTFDataFormatException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
                        "malformed input around byte " + count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        // The number of chars produced may be less than utflen
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        return new String(chararr, 0, chararr_count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
}