jdk/src/share/classes/java/io/FileInputStream.java
author juh
Mon, 08 Jul 2013 19:24:22 -0700
changeset 18786 52a2658627c2
parent 17691 13931cd9405f
child 22945 89dd803515d8
permissions -rw-r--r--
8020091: Fix HTML doclint issues in java.io Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
17430
c445531b8f6b 8003992: File and other classes in java.io do not handle embedded nulls properly
dxu
parents: 11017
diff changeset
     2
 * Copyright (c) 1994, 2013, 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: 715
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: 715
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: 715
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
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
import java.nio.channels.FileChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import sun.nio.ch.FileChannelImpl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * A <code>FileInputStream</code> obtains input bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * from a file in a file system. What files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * are  available depends on the host environment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <p><code>FileInputStream</code> is meant for reading streams of raw bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * such as image data. For reading streams of characters, consider using
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <code>FileReader</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * @author  Arthur van Hoff
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * @see     java.io.File
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * @see     java.io.FileDescriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @see     java.io.FileOutputStream
8158
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 7803
diff changeset
    45
 * @see     java.nio.file.Files#newInputStream
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * @since   JDK1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
class FileInputStream extends InputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    /* File Descriptor - handle to the open file */
46
ddf5deb2a633 6631437: File{In,Out}putStream minor improvements to spec and stylistic improvements to code
martin
parents: 2
diff changeset
    52
    private final FileDescriptor fd;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    private FileChannel channel = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
46
ddf5deb2a633 6631437: File{In,Out}putStream minor improvements to spec and stylistic improvements to code
martin
parents: 2
diff changeset
    56
    private final Object closeLock = new Object();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    private volatile boolean closed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * Creates a <code>FileInputStream</code> by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * opening a connection to an actual file,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * the file named by the path name <code>name</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * in the file system.  A new <code>FileDescriptor</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * object is created to represent this file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * First, if there is a security
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * manager, its <code>checkRead</code> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * is called with the <code>name</code> argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * as its argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * If the named file does not exist, is a directory rather than a regular
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * file, or for some other reason cannot be opened for reading then a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * <code>FileNotFoundException</code> is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * @param      name   the system-dependent file name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * @exception  FileNotFoundException  if the file does not exist,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     *                   is a directory rather than a regular file,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     *                   or for some other reason cannot be opened for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     *                   reading.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * @exception  SecurityException      if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     *               <code>checkRead</code> method denies read access
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     *               to the file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * @see        java.lang.SecurityManager#checkRead(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    public FileInputStream(String name) throws FileNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        this(name != null ? new File(name) : null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * Creates a <code>FileInputStream</code> by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * opening a connection to an actual file,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * the file named by the <code>File</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * object <code>file</code> in the file system.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * A new <code>FileDescriptor</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * is created to represent this file connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * First, if there is a security manager,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * its <code>checkRead</code> method  is called
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * with the path represented by the <code>file</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * argument as its argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * If the named file does not exist, is a directory rather than a regular
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * file, or for some other reason cannot be opened for reading then a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * <code>FileNotFoundException</code> is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * @param      file   the file to be opened for reading.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * @exception  FileNotFoundException  if the file does not exist,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     *                   is a directory rather than a regular file,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     *                   or for some other reason cannot be opened for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *                   reading.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @exception  SecurityException      if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     *               <code>checkRead</code> method denies read access to the file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * @see        java.io.File#getPath()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * @see        java.lang.SecurityManager#checkRead(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    public FileInputStream(File file) throws FileNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        String name = (file != null ? file.getPath() : null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            security.checkRead(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        if (name == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        }
17430
c445531b8f6b 8003992: File and other classes in java.io do not handle embedded nulls properly
dxu
parents: 11017
diff changeset
   126
        if (file.isInvalid()) {
c445531b8f6b 8003992: File and other classes in java.io do not handle embedded nulls properly
dxu
parents: 11017
diff changeset
   127
            throw new FileNotFoundException("Invalid file path");
c445531b8f6b 8003992: File and other classes in java.io do not handle embedded nulls properly
dxu
parents: 11017
diff changeset
   128
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        fd = new FileDescriptor();
11017
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   130
        fd.attach(this);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        open(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * Creates a <code>FileInputStream</code> by using the file descriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * <code>fdObj</code>, which represents an existing connection to an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * actual file in the file system.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * If there is a security manager, its <code>checkRead</code> method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * called with the file descriptor <code>fdObj</code> as its argument to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * see if it's ok to read the file descriptor. If read access is denied
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * to the file descriptor a <code>SecurityException</code> is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * If <code>fdObj</code> is null then a <code>NullPointerException</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * This constructor does not throw an exception if <code>fdObj</code>
46
ddf5deb2a633 6631437: File{In,Out}putStream minor improvements to spec and stylistic improvements to code
martin
parents: 2
diff changeset
   148
     * is {@link java.io.FileDescriptor#valid() invalid}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * However, if the methods are invoked on the resulting stream to attempt
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * I/O on the stream, an <code>IOException</code> is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @param      fdObj   the file descriptor to be opened for reading.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * @throws     SecurityException      if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     *                 <code>checkRead</code> method denies read access to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     *                 file descriptor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * @see        SecurityManager#checkRead(java.io.FileDescriptor)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    public FileInputStream(FileDescriptor fdObj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        if (fdObj == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            security.checkRead(fdObj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        fd = fdObj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
         * FileDescriptor is being shared by streams.
11017
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   170
         * Register this stream with FileDescriptor tracker.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
         */
11017
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   172
        fd.attach(this);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * Opens the specified file for reading.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @param name the name of the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    private native void open(String name) throws FileNotFoundException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * Reads a byte of data from this input stream. This method blocks
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * if no input is yet available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * @return     the next byte of data, or <code>-1</code> if the end of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     *             file is reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    public native int read() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * Reads a subarray as a sequence of bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * @param b the data to be written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * @param off the start offset in the data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * @param len the number of bytes that are written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * @exception IOException If an I/O error has occurred.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    private native int readBytes(byte b[], int off, int len) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * Reads up to <code>b.length</code> bytes of data from this input
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * stream into an array of bytes. This method blocks until some input
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * is available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @param      b   the buffer into which the data is read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * @return     the total number of bytes read into the buffer, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     *             <code>-1</code> if there is no more data because the end of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     *             the file has been reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    public int read(byte b[]) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        return readBytes(b, 0, b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * Reads up to <code>len</code> bytes of data from this input stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * into an array of bytes. If <code>len</code> is not zero, the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * blocks until some input is available; otherwise, no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * bytes are read and <code>0</code> is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @param      b     the buffer into which the data is read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * @param      off   the start offset in the destination array <code>b</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * @param      len   the maximum number of bytes read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * @return     the total number of bytes read into the buffer, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     *             <code>-1</code> if there is no more data because the end of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     *             the file has been reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * @exception  NullPointerException If <code>b</code> is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * @exception  IndexOutOfBoundsException If <code>off</code> is negative,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * <code>len</code> is negative, or <code>len</code> is greater than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * <code>b.length - off</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    public int read(byte b[], int off, int len) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        return readBytes(b, off, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * Skips over and discards <code>n</code> bytes of data from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     * input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * <p>The <code>skip</code> method may, for a variety of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * reasons, end up skipping over some smaller number of bytes,
17691
13931cd9405f 8011136: FileInputStream.available and skip inconsistencies
dxu
parents: 17430
diff changeset
   243
     * possibly <code>0</code>. If <code>n</code> is negative, the method
13931cd9405f 8011136: FileInputStream.available and skip inconsistencies
dxu
parents: 17430
diff changeset
   244
     * will try to skip backwards. In case the backing file does not support
13931cd9405f 8011136: FileInputStream.available and skip inconsistencies
dxu
parents: 17430
diff changeset
   245
     * backward skip at its current position, an <code>IOException</code> is
13931cd9405f 8011136: FileInputStream.available and skip inconsistencies
dxu
parents: 17430
diff changeset
   246
     * thrown. The actual number of bytes skipped is returned. If it skips
13931cd9405f 8011136: FileInputStream.available and skip inconsistencies
dxu
parents: 17430
diff changeset
   247
     * forwards, it returns a positive value. If it skips backwards, it
13931cd9405f 8011136: FileInputStream.available and skip inconsistencies
dxu
parents: 17430
diff changeset
   248
     * returns a negative value.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *
17691
13931cd9405f 8011136: FileInputStream.available and skip inconsistencies
dxu
parents: 17430
diff changeset
   250
     * <p>This method may skip more bytes than what are remaining in the
13931cd9405f 8011136: FileInputStream.available and skip inconsistencies
dxu
parents: 17430
diff changeset
   251
     * backing file. This produces no exception and the number of bytes skipped
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * may include some number of bytes that were beyond the EOF of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * backing file. Attempting to read from the stream after skipping past
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * the end will result in -1 indicating the end of the file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * @param      n   the number of bytes to be skipped.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * @return     the actual number of bytes skipped.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * @exception  IOException  if n is negative, if the stream does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     *             support seek, or if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    public native long skip(long n) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * Returns an estimate of the number of remaining bytes that can be read (or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * skipped over) from this input stream without blocking by the next
17691
13931cd9405f 8011136: FileInputStream.available and skip inconsistencies
dxu
parents: 17430
diff changeset
   266
     * invocation of a method for this input stream. Returns 0 when the file
13931cd9405f 8011136: FileInputStream.available and skip inconsistencies
dxu
parents: 17430
diff changeset
   267
     * position is beyond EOF. The next invocation might be the same thread
13931cd9405f 8011136: FileInputStream.available and skip inconsistencies
dxu
parents: 17430
diff changeset
   268
     * or another thread. A single read or skip of this many bytes will not
13931cd9405f 8011136: FileInputStream.available and skip inconsistencies
dxu
parents: 17430
diff changeset
   269
     * block, but may read or skip fewer bytes.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * <p> In some cases, a non-blocking read (or skip) may appear to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * blocked when it is merely slow, for example when reading large
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * files over slow networks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * @return     an estimate of the number of remaining bytes that can be read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     *             (or skipped over) from this input stream without blocking.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * @exception  IOException  if this file input stream has been closed by calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     *             {@code close} or an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    public native int available() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * Closes this file input stream and releases any system resources
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * associated with the stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * <p> If this stream has an associated channel then the channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * as well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * @revised 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    public void close() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        synchronized (closeLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            if (closed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
            closed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        if (channel != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
           channel.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
11017
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   305
        fd.closeAll(new Closeable() {
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   306
            public void close() throws IOException {
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   307
               close0();
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   308
           }
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   309
        });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * Returns the <code>FileDescriptor</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * object  that represents the connection to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * the actual file in the file system being
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * used by this <code>FileInputStream</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * @return     the file descriptor object associated with this stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * @see        java.io.FileDescriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    public final FileDescriptor getFD() throws IOException {
11017
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   323
        if (fd != null) {
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   324
            return fd;
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   325
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        throw new IOException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * Returns the unique {@link java.nio.channels.FileChannel FileChannel}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * object associated with this file input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * <p> The initial {@link java.nio.channels.FileChannel#position()
18786
52a2658627c2 8020091: Fix HTML doclint issues in java.io
juh
parents: 17691
diff changeset
   334
     * position} of the returned channel will be equal to the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * number of bytes read from the file so far.  Reading bytes from this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * stream will increment the channel's position.  Changing the channel's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * position, either explicitly or by reading, will change this stream's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * file position.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * @return  the file channel associated with this file input stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    public FileChannel getChannel() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
            if (channel == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
                channel = FileChannelImpl.open(fd, true, false, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
            return channel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    private static native void initIDs();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
    private native void close0() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        initIDs();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * Ensures that the <code>close</code> method of this file input stream is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * called when there are no more references to it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * @see        java.io.FileInputStream#close()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    protected void finalize() throws IOException {
46
ddf5deb2a633 6631437: File{In,Out}putStream minor improvements to spec and stylistic improvements to code
martin
parents: 2
diff changeset
   370
        if ((fd != null) &&  (fd != FileDescriptor.in)) {
11017
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   371
            /* if fd is shared, the references in FileDescriptor
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   372
             * will ensure that finalizer is only called when
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   373
             * safe to do so. All references using the fd have
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   374
             * become unreachable. We can call close()
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   375
             */
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   376
            close();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
}