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