src/java.base/share/classes/java/net/SocketInputStream.java
author michaelm
Thu, 02 May 2019 17:29:10 +0100
changeset 54689 b28b7f631301
parent 52209 3b2e68c9e7a6
child 58242 94bb65cb37d3
permissions -rw-r--r--
8216978: Drop support for pre JDK 1.4 SocketImpl implementations Reviewed-by: chegar, alanb, dfuchs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 52209
diff changeset
     2
 * Copyright (c) 1995, 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: 5147
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: 5147
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: 5147
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5147
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5147
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.net;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.FileDescriptor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.FileInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.nio.channels.FileChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import sun.net.ConnectionResetException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * This stream extends FileInputStream to implement a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * SocketInputStream. Note that this class should <b>NOT</b> be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * public.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * @author      Jonathan Payne
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * @author      Arthur van Hoff
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 */
49249
92cca24c8807 8199329: Remove code that attempts to read bytes after connection reset reported
alanb
parents: 48224
diff changeset
    43
class SocketInputStream extends FileInputStream {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        init();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private boolean eof;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private AbstractPlainSocketImpl impl = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    private byte temp[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     * Creates a new SocketInputStream. Can only be called
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * by a Socket. This method needs to hang on to the owner Socket so
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * that the fd will not be closed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * @param impl the implemented socket input stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    SocketInputStream(AbstractPlainSocketImpl impl) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        super(impl.getFileDescriptor());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        this.impl = impl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * Returns the unique {@link java.nio.channels.FileChannel FileChannel}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * object associated with this file input stream.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
    67
     * The {@code getChannel} method of {@code SocketInputStream}
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
    68
     * returns {@code null} since it is a socket based stream.</p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * @return  the file channel associated with this file input stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    public final FileChannel getChannel() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * Reads into an array of bytes at the specified offset using
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * the received socket primitive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * @param fd the FileDescriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * @param b the buffer into which the data is read
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * @param off the start offset of the data
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * @param len the maximum number of bytes read
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * @param timeout the read timeout in ms
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * @return the actual number of bytes read, -1 is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     *          returned when the end of the stream is reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * @exception IOException If an I/O error has occurred.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    private native int socketRead0(FileDescriptor fd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                                   byte b[], int off, int len,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                                   int timeout)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
26190
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
    96
    // wrap native call to allow instrumentation
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
    97
    /**
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
    98
     * Reads into an array of bytes at the specified offset using
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
    99
     * the received socket primitive.
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   100
     * @param fd the FileDescriptor
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   101
     * @param b the buffer into which the data is read
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   102
     * @param off the start offset of the data
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   103
     * @param len the maximum number of bytes read
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   104
     * @param timeout the read timeout in ms
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   105
     * @return the actual number of bytes read, -1 is
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   106
     *          returned when the end of the stream is reached.
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   107
     * @exception IOException If an I/O error has occurred.
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   108
     */
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   109
    private int socketRead(FileDescriptor fd,
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   110
                           byte b[], int off, int len,
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   111
                           int timeout)
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   112
        throws IOException {
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   113
        return socketRead0(fd, b, off, len, timeout);
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   114
    }
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   115
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * Reads into a byte array data from the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * @param b the buffer into which the data is read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @return the actual number of bytes read, -1 is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     *          returned when the end of the stream is reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @exception IOException If an I/O error has occurred.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    public int read(byte b[]) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        return read(b, 0, b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * Reads into a byte array <i>b</i> at offset <i>off</i>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * <i>length</i> bytes of data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * @param b the buffer into which the data is read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * @param off the start offset of the data
14014
da3648e13e67 8000269: Cleanup javadoc warnings
alanb
parents: 7668
diff changeset
   132
     * @param length the maximum number of bytes read
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @return the actual number of bytes read, -1 is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *          returned when the end of the stream is reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * @exception IOException If an I/O error has occurred.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    public int read(byte b[], int off, int length) throws IOException {
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 2
diff changeset
   138
        return read(b, off, length, impl.getTimeout());
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 2
diff changeset
   139
    }
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 2
diff changeset
   140
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 2
diff changeset
   141
    int read(byte b[], int off, int length, int timeout) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        int n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        // EOF already encountered
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        if (eof) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        // connection reset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        if (impl.isConnectionReset()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            throw new SocketException("Connection reset");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        // bounds check
43202
29180c8db039 8164147: Improve streaming socket output
msheppar
parents: 32649
diff changeset
   155
        if (length <= 0 || off < 0 || length > b.length - off) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            if (length == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            }
43202
29180c8db039 8164147: Improve streaming socket output
msheppar
parents: 32649
diff changeset
   159
            throw new ArrayIndexOutOfBoundsException("length == " + length
29180c8db039 8164147: Improve streaming socket output
msheppar
parents: 32649
diff changeset
   160
                    + " off == " + off + " buffer length == " + b.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        // acquire file descriptor and do the read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        FileDescriptor fd = impl.acquireFD();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        try {
26190
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   166
            n = socketRead(fd, b, off, length, timeout);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            if (n > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        } catch (ConnectionResetException rstExc) {
49249
92cca24c8807 8199329: Remove code that attempts to read bytes after connection reset reported
alanb
parents: 48224
diff changeset
   171
            impl.setConnectionReset();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            impl.releaseFD();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
         * If we get here we are at EOF, the socket has been closed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
         * or the connection has been reset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        if (impl.isClosedOrPending()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            throw new SocketException("Socket closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        if (impl.isConnectionReset()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            throw new SocketException("Connection reset");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        eof = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * Reads a single byte from the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    public int read() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        if (eof) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        temp = new byte[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        int n = read(temp, 0, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        if (n <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        return temp[0] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * Skips n bytes of input.
14014
da3648e13e67 8000269: Cleanup javadoc warnings
alanb
parents: 7668
diff changeset
   207
     * @param numbytes the number of bytes to skip
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * @return  the actual number of bytes skipped.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @exception IOException If an I/O error has occurred.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    public long skip(long numbytes) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        if (numbytes <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        long n = numbytes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        int buflen = (int) Math.min(1024, n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        byte data[] = new byte[buflen];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        while (n > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            int r = read(data, 0, (int) Math.min((long) buflen, n));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            if (r < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            n -= r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        return numbytes - n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * Returns the number of bytes that can be read without blocking.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * @return the number of immediately available bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    public int available() throws IOException {
52209
3b2e68c9e7a6 8212114: Reconsider the affect on closed streams resulting from 8189366
vtewari
parents: 52104
diff changeset
   233
        int available = impl.available();
3b2e68c9e7a6 8212114: Reconsider the affect on closed streams resulting from 8189366
vtewari
parents: 52104
diff changeset
   234
        return eof ? 0 : available;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 52209
diff changeset
   237
    void setEOF(boolean eof) {
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 52209
diff changeset
   238
        this.eof = eof;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 52209
diff changeset
   241
    public void close() throws IOException {
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 52209
diff changeset
   242
        // No longer used. Socket.getInputStream returns an
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 52209
diff changeset
   243
        // InputStream which calls Socket.close directly
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 52209
diff changeset
   244
        assert false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * Overrides finalize, the fd is closed by the Socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     */
48224
be0df5ab3093 8080225: FileInput/OutputStream/FileChannel cleanup should be improved
rriggs
parents: 47216
diff changeset
   250
    @SuppressWarnings({"deprecation", "removal"})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    protected void finalize() {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * Perform class load-time initializations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 26190
diff changeset
   256
    private static native void init();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
}