src/java.base/share/classes/java/io/DataInputStream.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58288 48e480e56aad
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
     2
 * Copyright (c) 1994, 2019, 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
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    63
     * stores them into the buffer array {@code b}. The number of
2
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
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    68
     * <p>If {@code b} is null, a {@code NullPointerException} is
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    69
     * thrown. If the length of {@code b} is zero, then no bytes are
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    70
     * read and {@code 0} is returned; otherwise, there is an attempt
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * to read at least one byte. If no byte is available because the
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    72
     * stream is at end of file, the value {@code -1} is returned;
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    73
     * otherwise, at least one byte is read and stored into {@code b}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    75
     * <p>The first byte read is stored into element {@code b[0]}, the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    76
     * next one into {@code b[1]}, and so on. The number of bytes read
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    77
     * is, at most, equal to the length of {@code b}. Let {@code k}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * be the number of bytes actually read; these bytes will be stored in
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    79
     * elements {@code b[0]} through {@code b[k-1]}, leaving
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    80
     * elements {@code b[k]} through {@code b[b.length-1]}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * unaffected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    83
     * <p>The {@code read(b)} method has the same effect as:
2
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
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
    90
     *             {@code -1} if there is no more data because the end
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     *             of the stream has been reached.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
    92
     * @throws     IOException if the first byte cannot be read for any reason
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
    93
     *             other than end of file, the stream has been closed and the underlying
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
    94
     *             input stream does not support reading after close, or another I/O
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
    95
     *             error occurs.
2
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
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   104
     * Reads up to {@code len} bytes of data from the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * input stream into an array of bytes.  An attempt is made to read
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   106
     * as many as {@code len} bytes, but a smaller number may be read,
2
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
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   113
     * <p> If {@code len} is zero, then no bytes are read and
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   114
     * {@code 0} is returned; otherwise, there is an attempt to read at
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * least one byte. If no byte is available because the stream is at end of
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   116
     * file, the value {@code -1} is returned; otherwise, at least one
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   117
     * byte is read and stored into {@code b}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   119
     * <p> The first byte read is stored into element {@code b[off]}, the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   120
     * next one into {@code b[off+1]}, and so on. The number of bytes read
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   121
     * is, at most, equal to {@code len}. Let <i>k</i> be the number of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * bytes actually read; these bytes will be stored in elements
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   123
     * {@code b[off]} through {@code b[off+}<i>k</i>{@code -1]},
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   124
     * leaving elements {@code b[off+}<i>k</i>{@code ]} through
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   125
     * {@code b[off+len-1]} unaffected.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   127
     * <p> In every case, elements {@code b[0]} through
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   128
     * {@code b[off]} and elements {@code b[off+len]} through
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   129
     * {@code b[b.length-1]} are unaffected.
2
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.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   132
     * @param      off the start offset in the destination array {@code b}
2
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
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   135
     *             {@code -1} if there is no more data because the end
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     *             of the stream has been reached.
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   137
     * @throws     NullPointerException If {@code b} is {@code null}.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   138
     * @throws     IndexOutOfBoundsException If {@code off} is negative,
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   139
     *             {@code len} is negative, or {@code len} is greater than
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   140
     *             {@code b.length - off}
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   141
     * @throws     IOException if the first byte cannot be read for any reason
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   142
     *             other than end of file, the stream has been closed and the underlying
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   143
     *             input stream does not support reading after close, or another I/O
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   144
     *             error occurs.
2
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
    /**
37591
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   153
     * See the general contract of the {@code readFully}
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   154
     * method of {@code DataInput}.
2
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
     *
37591
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   160
     * @param   b   the buffer into which the data is read.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   161
     * @throws  NullPointerException if {@code b} is {@code null}.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   162
     * @throws  EOFException  if this input stream reaches the end before
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   163
     *          reading all the bytes.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   164
     * @throws  IOException   the stream has been closed and the contained
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   165
     *          input stream does not support reading after close, or
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   166
     *          another I/O error occurs.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   167
     * @see     java.io.FilterInputStream#in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    public final void readFully(byte b[]) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        readFully(b, 0, b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    /**
37591
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   174
     * See the general contract of the {@code readFully}
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   175
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @param      b     the buffer into which the data is read.
37591
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   182
     * @param      off   the start offset in the data array {@code b}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * @param      len   the number of bytes to read.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   184
     * @throws     NullPointerException if {@code b} is {@code null}.
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   185
     * @throws     IndexOutOfBoundsException if {@code off} is negative,
37591
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   186
     *             {@code len} is negative, or {@code len} is greater than
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   187
     *             {@code b.length - off}.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   188
     * @throws     EOFException  if this input stream reaches the end before
37591
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32649
diff changeset
   189
     *             reading all the bytes.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   190
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    public final void readFully(byte b[], int off, int len) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        if (len < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        while (n < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
            int count = in.read(b, off + n, len - n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
            if (count < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
                throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
            n += count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   208
     * See the general contract of the {@code skipBytes}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   209
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * Bytes for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * @param      n   the number of bytes to be skipped.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * @return     the actual number of bytes skipped.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   216
     * @throws     IOException  if the contained input stream does not support
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     *             seek, or the stream has been closed and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     *             the contained input stream does not support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     *             reading after close, or another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    public final int skipBytes(int n) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        int total = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        int cur = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        while ((total<n) && ((cur = (int) in.skip(n-total)) > 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            total += cur;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        return total;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   233
     * See the general contract of the {@code readBoolean}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   234
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * Bytes for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   239
     * @return     the {@code boolean} value read.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   240
     * @throws     EOFException  if this input stream has reached the end.
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   241
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    public final boolean readBoolean() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        int ch = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        if (ch < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        return (ch != 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   254
     * See the general contract of the {@code readByte}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   255
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * @return     the next byte of this input stream as a signed 8-bit
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   262
     *             {@code byte}.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   263
     * @throws     EOFException  if this input stream has reached the end.
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   264
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    public final byte readByte() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        int ch = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        if (ch < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        return (byte)(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   277
     * See the general contract of the {@code readUnsignedByte}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   278
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * @return     the next byte of this input stream, interpreted as an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     *             unsigned 8-bit number.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   286
     * @throws     EOFException  if this input stream has reached the end.
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   287
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * @see         java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    public final int readUnsignedByte() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        int ch = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        if (ch < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        return ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   300
     * See the general contract of the {@code readShort}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   301
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * @return     the next two bytes of this input stream, interpreted as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     *             signed 16-bit number.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   309
     * @throws     EOFException  if this input stream reaches the end before
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     *               reading two bytes.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   311
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    public final short readShort() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        int ch1 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        int ch2 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        if ((ch1 | ch2) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        return (short)((ch1 << 8) + (ch2 << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   325
     * See the general contract of the {@code readUnsignedShort}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   326
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @return     the next two bytes of this input stream, interpreted as an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     *             unsigned 16-bit integer.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   334
     * @throws     EOFException  if this input stream reaches the end before
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     *             reading two bytes.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   336
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
    public final int readUnsignedShort() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        int ch1 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        int ch2 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        if ((ch1 | ch2) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        return (ch1 << 8) + (ch2 << 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   350
     * See the general contract of the {@code readChar}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   351
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * @return     the next two bytes of this input stream, interpreted as a
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   358
     *             {@code char}.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   359
     * @throws     EOFException  if this input stream reaches the end before
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     *               reading two bytes.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   361
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    public final char readChar() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        int ch1 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        int ch2 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        if ((ch1 | ch2) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        return (char)((ch1 << 8) + (ch2 << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   375
     * See the general contract of the {@code readInt}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   376
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * @return     the next four bytes of this input stream, interpreted as an
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   383
     *             {@code int}.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   384
     * @throws     EOFException  if this input stream reaches the end before
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     *               reading four bytes.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   386
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    public final int readInt() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        int ch1 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
        int ch2 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        int ch3 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        int ch4 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        if ((ch1 | ch2 | ch3 | ch4) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        return ((ch1 << 24) + (ch2 << 16) + (ch3 << 8) + (ch4 << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
    private byte readBuffer[] = new byte[8];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   404
     * See the general contract of the {@code readLong}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   405
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * @return     the next eight bytes of this input stream, interpreted as a
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   412
     *             {@code long}.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   413
     * @throws     EOFException  if this input stream reaches the end before
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     *               reading eight bytes.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   415
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    public final long readLong() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        readFully(readBuffer, 0, 8);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        return (((long)readBuffer[0] << 56) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                ((long)(readBuffer[1] & 255) << 48) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
                ((long)(readBuffer[2] & 255) << 40) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
                ((long)(readBuffer[3] & 255) << 32) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
                ((long)(readBuffer[4] & 255) << 24) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
                ((readBuffer[5] & 255) << 16) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
                ((readBuffer[6] & 255) <<  8) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
                ((readBuffer[7] & 255) <<  0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   433
     * See the general contract of the {@code readFloat}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   434
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * @return     the next four bytes of this input stream, interpreted as a
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   441
     *             {@code float}.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   442
     * @throws     EOFException  if this input stream reaches the end before
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     *               reading four bytes.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   444
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * @see        java.io.DataInputStream#readInt()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * @see        java.lang.Float#intBitsToFloat(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
    public final float readFloat() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        return Float.intBitsToFloat(readInt());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   455
     * See the general contract of the {@code readDouble}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   456
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * @return     the next eight bytes of this input stream, interpreted as a
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   463
     *             {@code double}.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   464
     * @throws     EOFException  if this input stream reaches the end before
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     *               reading eight bytes.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   466
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     *             another I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * @see        java.io.DataInputStream#readLong()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * @see        java.lang.Double#longBitsToDouble(long)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    public final double readDouble() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        return Double.longBitsToDouble(readLong());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    private char lineBuffer[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   479
     * See the general contract of the {@code readLine}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   480
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * @deprecated This method does not properly convert bytes to characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * As of JDK&nbsp;1.1, the preferred way to read lines of text is via the
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   488
     * {@code BufferedReader.readLine()} method.  Programs that use the
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   489
     * {@code DataInputStream} class to read lines can be converted to use
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   490
     * the {@code BufferedReader} class by replacing code of the form:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     *     DataInputStream d =&nbsp;new&nbsp;DataInputStream(in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * with:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     *     BufferedReader d
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     *          =&nbsp;new&nbsp;BufferedReader(new&nbsp;InputStreamReader(in));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * @return     the next line of text from this input stream.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   501
     * @throws     IOException  if an I/O error occurs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * @see        java.io.BufferedReader#readLine()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * @see        java.io.FilterInputStream#in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
    public final String readLine() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        char buf[] = lineBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        if (buf == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
            buf = lineBuffer = new char[128];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
        int room = buf.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        int offset = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        int c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
loop:   while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
            switch (c = in.read()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
              case -1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
              case '\n':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                break loop;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
              case '\r':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
                int c2 = in.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                if ((c2 != '\n') && (c2 != -1)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                    if (!(in instanceof PushbackInputStream)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                        this.in = new PushbackInputStream(in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                    ((PushbackInputStream)in).unread(c2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                break loop;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
              default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
                if (--room < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
                    buf = new char[offset + 128];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
                    room = buf.length - offset - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
                    System.arraycopy(lineBuffer, 0, buf, 0, offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                    lineBuffer = buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                buf[offset++] = (char) c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        if ((c == -1) && (offset == 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        return String.copyValueOf(buf, 0, offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   551
     * See the general contract of the {@code readUTF}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   552
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * Bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * for this operation are read from the contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * @return     a Unicode string.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   559
     * @throws     EOFException  if this input stream reaches the end before
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     *               reading all the bytes.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   561
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     *             another I/O error occurs.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   564
     * @throws     UTFDataFormatException if the bytes do not represent a valid
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     *             modified UTF-8 encoding of a string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * @see        java.io.DataInputStream#readUTF(java.io.DataInput)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    public final String readUTF() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        return readUTF(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * Reads from the
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   574
     * stream {@code in} a representation
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * of a Unicode  character string encoded in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     * <a href="DataInput.html#modified-utf-8">modified UTF-8</a> format;
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   577
     * this string of characters is then returned as a {@code String}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * The details of the modified UTF-8 representation
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   579
     * are  exactly the same as for the {@code readUTF}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   580
     * method of {@code DataInput}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * @param      in   a data input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * @return     a Unicode string.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   584
     * @throws     EOFException            if the input stream reaches the end
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     *               before all the bytes.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   586
     * @throws     IOException   the stream has been closed and the contained
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     *             input stream does not support reading after close, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     *             another I/O error occurs.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   589
     * @throws     UTFDataFormatException  if the bytes do not represent a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     *               valid modified UTF-8 encoding of a Unicode string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * @see        java.io.DataInputStream#readUnsignedShort()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
   593
    public static final String readUTF(DataInput in) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        int utflen = in.readUnsignedShort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        byte[] bytearr = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
        char[] chararr = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        if (in instanceof DataInputStream) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
            DataInputStream dis = (DataInputStream)in;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
            if (dis.bytearr.length < utflen){
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
                dis.bytearr = new byte[utflen*2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
                dis.chararr = new char[utflen*2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
            chararr = dis.chararr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
            bytearr = dis.bytearr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
            bytearr = new byte[utflen];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
            chararr = new char[utflen];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
        int c, char2, char3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
        int count = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
        int chararr_count=0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        in.readFully(bytearr, 0, utflen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        while (count < utflen) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            c = (int) bytearr[count] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
            if (c > 127) break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            count++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            chararr[chararr_count++]=(char)c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        while (count < utflen) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
            c = (int) bytearr[count] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
            switch (c >> 4) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
                    /* 0xxxxxxx*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
                    count++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
                    chararr[chararr_count++]=(char)c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                case 12: case 13:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                    /* 110x xxxx   10xx xxxx*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                    count += 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                    if (count > utflen)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                        throw new UTFDataFormatException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                            "malformed input: partial character at end");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                    char2 = (int) bytearr[count-1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                    if ((char2 & 0xC0) != 0x80)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                        throw new UTFDataFormatException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
                            "malformed input around byte " + count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
                    chararr[chararr_count++]=(char)(((c & 0x1F) << 6) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                                                    (char2 & 0x3F));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                case 14:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
                    /* 1110 xxxx  10xx xxxx  10xx xxxx */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
                    count += 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
                    if (count > utflen)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
                        throw new UTFDataFormatException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
                            "malformed input: partial character at end");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                    char2 = (int) bytearr[count-2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                    char3 = (int) bytearr[count-1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
                    if (((char2 & 0xC0) != 0x80) || ((char3 & 0xC0) != 0x80))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
                        throw new UTFDataFormatException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
                            "malformed input around byte " + (count-1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
                    chararr[chararr_count++]=(char)(((c     & 0x0F) << 12) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
                                                    ((char2 & 0x3F) << 6)  |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
                                                    ((char3 & 0x3F) << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
                default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
                    /* 10xx xxxx,  1111 xxxx */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
                    throw new UTFDataFormatException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
                        "malformed input around byte " + count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        // The number of chars produced may be less than utflen
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
        return new String(chararr, 0, chararr_count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
}