jdk/src/java.base/share/classes/java/io/RandomAccessFile.java
author jjg
Wed, 12 Jul 2017 12:48:01 -0700
changeset 45881 aaec0fbe17ae
parent 45124 144479e89cdb
permissions -rw-r--r--
8184208: update class="striped" tables for accessibility Reviewed-by: lancea, bpb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44846
diff changeset
     2
 * Copyright (c) 1994, 2017, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.io;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.nio.channels.FileChannel;
28062
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
    29
import java.util.concurrent.atomic.AtomicBoolean;
38466
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
    30
import jdk.internal.misc.JavaIORandomAccessFileAccess;
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
    31
import jdk.internal.misc.SharedSecrets;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import sun.nio.ch.FileChannelImpl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * Instances of this class support both reading and writing to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * random access file. A random access file behaves like a large
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * array of bytes stored in the file system. There is a kind of cursor,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * or index into the implied array, called the <em>file pointer</em>;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * input operations read bytes starting at the file pointer and advance
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * the file pointer past the bytes read. If the random access file is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * created in read/write mode, then output operations are also available;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * output operations write bytes starting at the file pointer and advance
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * the file pointer past the bytes written. Output operations that write
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * past the current end of the implied array cause the array to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * extended. The file pointer can be read by the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
    47
 * {@code getFilePointer} method and set by the {@code seek}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * It is generally true of all the reading routines in this class that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * if end-of-file is reached before the desired number of bytes has been
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
    52
 * read, an {@code EOFException} (which is a kind of
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
    53
 * {@code IOException}) is thrown. If any byte cannot be read for
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
    54
 * any reason other than end-of-file, an {@code IOException} other
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
    55
 * than {@code EOFException} is thrown. In particular, an
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
    56
 * {@code IOException} may be thrown if the stream has been closed.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * @author  unascribed
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 22946
diff changeset
    59
 * @since   1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
public class RandomAccessFile implements DataOutput, DataInput, Closeable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    private FileDescriptor fd;
28062
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
    65
    private volatile FileChannel channel;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    private boolean rw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
22945
89dd803515d8 8033917: Keep track of file paths in file streams and channels for instrumentation purposes
sla
parents: 21334
diff changeset
    68
    /**
89dd803515d8 8033917: Keep track of file paths in file streams and channels for instrumentation purposes
sla
parents: 21334
diff changeset
    69
     * The path of the referenced file
89dd803515d8 8033917: Keep track of file paths in file streams and channels for instrumentation purposes
sla
parents: 21334
diff changeset
    70
     * (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: 21334
diff changeset
    71
     */
89dd803515d8 8033917: Keep track of file paths in file streams and channels for instrumentation purposes
sla
parents: 21334
diff changeset
    72
    private final String path;
89dd803515d8 8033917: Keep track of file paths in file streams and channels for instrumentation purposes
sla
parents: 21334
diff changeset
    73
28062
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
    74
    private final AtomicBoolean closed = new AtomicBoolean(false);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    private static final int O_RDONLY = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    private static final int O_RDWR =   2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    private static final int O_SYNC =   4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    private static final int O_DSYNC =  8;
38466
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
    80
    private static final int O_TEMPORARY =  16;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * Creates a random access file stream to read from, and optionally
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * to write to, a file with the specified name. A new
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * {@link FileDescriptor} object is created to represent the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * connection to the file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
    88
     * <p> The {@code mode} argument specifies the access mode with which the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * file is to be opened.  The permitted values and their meanings are as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * specified for the <a
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
    91
     * href="#mode">{@code RandomAccessFile(File,String)}</a> constructor.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
    94
     * If there is a security manager, its {@code checkRead} method
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
    95
     * is called with the {@code name} argument
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * as its argument to see if read access to the file is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * If the mode allows writing, the security manager's
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
    98
     * {@code checkWrite} method
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
    99
     * is also called with the {@code name} argument
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * as its argument to see if write access to the file is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * @param      name   the system-dependent filename
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * @param      mode   the access <a href="#mode">mode</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * @exception  IllegalArgumentException  if the mode argument is not equal
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   105
     *             to one of {@code "r"}, {@code "rw"}, {@code "rws"}, or
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   106
     *             {@code "rwd"}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * @exception FileNotFoundException
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   108
     *            if the mode is {@code "r"} but the given string does not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     *            denote an existing regular file, or if the mode begins with
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   110
     *            {@code "rw"} but the given string does not denote an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *            existing, writable regular file and a new regular file of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     *            that name cannot be created, or if some other error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     *            while opening or creating the file
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   114
     * @exception  SecurityException   if a security manager exists and its
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   115
     *             {@code checkRead} method denies read access to the file
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   116
     *             or the mode is {@code "rw"} and the security manager's
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   117
     *             {@code checkWrite} method denies write access to the file
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * @see        java.lang.SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @see        java.lang.SecurityManager#checkRead(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @see        java.lang.SecurityManager#checkWrite(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @revised 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    public RandomAccessFile(String name, String mode)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        throws FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        this(name != null ? new File(name) : null, mode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * Creates a random access file stream to read from, and optionally to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * write to, the file specified by the {@link File} argument.  A new {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * FileDescriptor} object is created to represent this file connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *
44844
b2b4d98404ba 8179364: update "<a name=" in java.base module to use id attribute
jjg
parents: 38466
diff changeset
   135
     * <p>The <a id="mode">{@code mode}</a> argument specifies the access mode
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * in which the file is to be opened.  The permitted values and their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * meanings are:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     *
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44846
diff changeset
   139
     * <table class="striped">
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44846
diff changeset
   140
     * <caption style="display:none">Access mode permitted values and meanings</caption>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44846
diff changeset
   141
     * <thead>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   142
     * <tr><th scope="col" style="text-align:left">Value</th><th scope="col" style="text-align:left">Meaning</th></tr>
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44846
diff changeset
   143
     * </thead>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44846
diff changeset
   144
     * <tbody>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   145
     * <tr><th scope="row" style="vertical-align:top">{@code "r"}</th>
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   146
     *     <td> Open for reading only. Invoking any of the {@code write}
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   147
     *     methods of the resulting object will cause an
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   148
     *     {@link java.io.IOException} to be thrown.</td></tr>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   149
     * <tr><th scope="row" style="vertical-align:top">{@code "rw"}</th>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     *     <td> Open for reading and writing.  If the file does not already
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   151
     *     exist then an attempt will be made to create it.</td></tr>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   152
     * <tr><th scope="row" style="vertical-align:top">{@code "rws"}</th>
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   153
     *     <td> Open for reading and writing, as with {@code "rw"}, and also
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     *     require that every update to the file's content or metadata be
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   155
     *     written synchronously to the underlying storage device.</td></tr>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   156
     * <tr><th scope="row" style="vertical-align:top">{@code "rwd"}</th>
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   157
     *     <td> Open for reading and writing, as with {@code "rw"}, and also
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     *     require that every update to the file's content be written
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   159
     *     synchronously to the underlying storage device.</td></tr>
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44846
diff changeset
   160
     * </tbody>
18786
52a2658627c2 8020091: Fix HTML doclint issues in java.io
juh
parents: 17430
diff changeset
   161
     * </table>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   163
     * The {@code "rws"} and {@code "rwd"} modes work much like the {@link
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * java.nio.channels.FileChannel#force(boolean) force(boolean)} method of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * the {@link java.nio.channels.FileChannel} class, passing arguments of
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   166
     * {@code true} and {@code false}, respectively, except that they always
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * apply to every I/O operation and are therefore often more efficient.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * the file resides on a local storage device then when an invocation of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * method of this class returns it is guaranteed that all changes made to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * the file by that invocation will have been written to that device.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * is useful for ensuring that critical information is not lost in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * event of a system crash.  If the file does not reside on a local device
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * then no such guarantee is made.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   175
     * <p>The {@code "rwd"} mode can be used to reduce the number of I/O
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   176
     * operations performed.  Using {@code "rwd"} only requires updates to the
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   177
     * file's content to be written to storage; using {@code "rws"} requires
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * updates to both the file's content and its metadata to be written, which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * generally requires at least one more low-level I/O operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     *
18786
52a2658627c2 8020091: Fix HTML doclint issues in java.io
juh
parents: 17430
diff changeset
   181
     * <p>If there is a security manager, its {@code checkRead} method is
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   182
     * called with the pathname of the {@code file} argument as its
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * argument to see if read access to the file is allowed.  If the mode
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   184
     * allows writing, the security manager's {@code checkWrite} method is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * also called with the path argument to see if write access to the file is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * @param      file   the file object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * @param      mode   the access mode, as described
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     *                    <a href="#mode">above</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * @exception  IllegalArgumentException  if the mode argument is not equal
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   192
     *             to one of {@code "r"}, {@code "rw"}, {@code "rws"}, or
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   193
     *             {@code "rwd"}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * @exception FileNotFoundException
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   195
     *            if the mode is {@code "r"} but the given file object does
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     *            not denote an existing regular file, or if the mode begins
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   197
     *            with {@code "rw"} but the given file object does not denote
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     *            an existing, writable regular file and a new regular file of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     *            that name cannot be created, or if some other error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     *            while opening or creating the file
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   201
     * @exception  SecurityException  if a security manager exists and its
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   202
     *             {@code checkRead} method denies read access to the file
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   203
     *             or the mode is {@code "rw"} and the security manager's
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 29494
diff changeset
   204
     *             {@code checkWrite} method denies write access to the file
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @see        java.lang.SecurityManager#checkRead(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * @see        java.lang.SecurityManager#checkWrite(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @see        java.nio.channels.FileChannel#force(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * @revised 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    public RandomAccessFile(File file, String mode)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        throws FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    {
38466
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
   214
        this(file, mode, false);
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
   215
    }
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
   216
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
   217
    private RandomAccessFile(File file, String mode, boolean openAndDelete)
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
   218
        throws FileNotFoundException
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
   219
    {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        String name = (file != null ? file.getPath() : null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        int imode = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        if (mode.equals("r"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            imode = O_RDONLY;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        else if (mode.startsWith("rw")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            imode = O_RDWR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            rw = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
            if (mode.length() > 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
                if (mode.equals("rws"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
                    imode |= O_SYNC;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                else if (mode.equals("rwd"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
                    imode |= O_DSYNC;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
                    imode = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        }
38466
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
   236
        if (openAndDelete)
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
   237
            imode |= O_TEMPORARY;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        if (imode < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            throw new IllegalArgumentException("Illegal mode \"" + mode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
                                               + "\" must be one of "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
                                               + "\"r\", \"rw\", \"rws\","
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
                                               + " or \"rwd\"");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
            security.checkRead(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
            if (rw) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                security.checkWrite(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        if (name == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        }
17430
c445531b8f6b 8003992: File and other classes in java.io do not handle embedded nulls properly
dxu
parents: 11676
diff changeset
   253
        if (file.isInvalid()) {
c445531b8f6b 8003992: File and other classes in java.io do not handle embedded nulls properly
dxu
parents: 11676
diff changeset
   254
            throw new FileNotFoundException("Invalid file path");
c445531b8f6b 8003992: File and other classes in java.io do not handle embedded nulls properly
dxu
parents: 11676
diff changeset
   255
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        fd = new FileDescriptor();
11017
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   257
        fd.attach(this);
22945
89dd803515d8 8033917: Keep track of file paths in file streams and channels for instrumentation purposes
sla
parents: 21334
diff changeset
   258
        path = name;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        open(name, imode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * Returns the opaque file descriptor object associated with this
18786
52a2658627c2 8020091: Fix HTML doclint issues in java.io
juh
parents: 17430
diff changeset
   264
     * stream.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * @return     the file descriptor object associated with this stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * @see        java.io.FileDescriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    public final FileDescriptor getFD() throws IOException {
11017
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   271
        if (fd != null) {
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   272
            return fd;
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   273
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        throw new IOException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * Returns the unique {@link java.nio.channels.FileChannel FileChannel}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * object associated with this file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * <p> The {@link java.nio.channels.FileChannel#position()
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   282
     * position} of the returned channel will always be equal to
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * this object's file-pointer offset as returned by the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * #getFilePointer getFilePointer} method.  Changing this object's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * file-pointer offset, whether explicitly or by reading or writing bytes,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * will change the position of the channel, and vice versa.  Changing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * file's length via this object will change the length seen via the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * channel, and vice versa.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * @return  the file channel associated with this file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     */
29494
13a73071b538 8075222: RandomAccessFile.getChannel changed to non-final in error
bpb
parents: 28062
diff changeset
   295
    public final FileChannel getChannel() {
28062
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   296
        FileChannel fc = this.channel;
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   297
        if (fc == null) {
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   298
            synchronized (this) {
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   299
                fc = this.channel;
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   300
                if (fc == null) {
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   301
                    this.channel = fc = FileChannelImpl.open(fd, path, true, rw, this);
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   302
                    if (closed.get()) {
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   303
                        try {
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   304
                            fc.close();
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   305
                        } catch (IOException ioe) {
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   306
                            throw new InternalError(ioe); // should not happen
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   307
                        }
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   308
                    }
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   309
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        }
28062
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   312
        return fc;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * Opens a file and returns the file descriptor.  The file is
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   317
     * opened in read-write mode if the O_RDWR bit in {@code mode}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * is true, else the file is opened as read-only.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   319
     * If the {@code name} refers to a directory, an IOException
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * @param name the name of the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * @param mode the mode flags, a combination of the O_ constants
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     *             defined above
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     */
26190
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   326
    private native void open0(String name, int mode)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        throws FileNotFoundException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
26190
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   329
    // wrap native call to allow instrumentation
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   330
    /**
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   331
     * Opens a file and returns the file descriptor.  The file is
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   332
     * opened in read-write mode if the O_RDWR bit in {@code mode}
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   333
     * is true, else the file is opened as read-only.
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   334
     * If the {@code name} refers to a directory, an IOException
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   335
     * is thrown.
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   336
     *
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   337
     * @param name the name of the file
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   338
     * @param mode the mode flags, a combination of the O_ constants
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   339
     *             defined above
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   340
     */
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   341
    private void open(String name, int mode)
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   342
        throws FileNotFoundException {
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   343
        open0(name, mode);
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   344
    }
d183677673d9 8054720: Modifications of I/O methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   345
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    // 'Read' primitives
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * Reads a byte of data from this file. The byte is returned as an
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   350
     * integer in the range 0 to 255 ({@code 0x00-0x0ff}). This
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * method blocks if no input is yet available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   353
     * Although {@code RandomAccessFile} is not a subclass of
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   354
     * {@code InputStream}, this method behaves in exactly the same
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * way as the {@link InputStream#read()} method of
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   356
     * {@code InputStream}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   358
     * @return     the next byte of data, or {@code -1} if the end of the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     *             file has been reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * @exception  IOException  if an I/O error occurs. Not thrown if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     *                          end-of-file has been reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     */
22946
0a1379d15976 8033911: Simplify instrumentation of FileInputStream and RandomAccessFile
sla
parents: 22945
diff changeset
   363
    public int read() throws IOException {
0a1379d15976 8033911: Simplify instrumentation of FileInputStream and RandomAccessFile
sla
parents: 22945
diff changeset
   364
        return read0();
0a1379d15976 8033911: Simplify instrumentation of FileInputStream and RandomAccessFile
sla
parents: 22945
diff changeset
   365
    }
0a1379d15976 8033911: Simplify instrumentation of FileInputStream and RandomAccessFile
sla
parents: 22945
diff changeset
   366
0a1379d15976 8033911: Simplify instrumentation of FileInputStream and RandomAccessFile
sla
parents: 22945
diff changeset
   367
    private native int read0() throws IOException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * Reads a sub array as a sequence of bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * @param b the buffer into which the data is read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * @param off the start offset of the data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * @param len the number of bytes to read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * @exception IOException If an I/O error has occurred.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    private native int readBytes(byte b[], int off, int len) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   379
     * Reads up to {@code len} bytes of data from this file into an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * array of bytes. This method blocks until at least one byte of input
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * is available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   383
     * Although {@code RandomAccessFile} is not a subclass of
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   384
     * {@code InputStream}, this method behaves in exactly the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * same way as the {@link InputStream#read(byte[], int, int)} method of
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   386
     * {@code InputStream}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * @param      b     the buffer into which the data is read.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   389
     * @param      off   the start offset in array {@code b}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     *                   at which the data is written.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * @param      len   the maximum number of bytes read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @return     the total number of bytes read into the buffer, or
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   393
     *             {@code -1} if there is no more data because the end of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     *             the file has been reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * @exception  IOException If the first byte cannot be read for any reason
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * other than end of file, or if the random access file has been closed, or if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * some other I/O error occurs.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   398
     * @exception  NullPointerException If {@code b} is {@code null}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   399
     * @exception  IndexOutOfBoundsException If {@code off} is negative,
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   400
     * {@code len} is negative, or {@code len} is greater than
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   401
     * {@code b.length - off}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    public int read(byte b[], int off, int len) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        return readBytes(b, off, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   408
     * Reads up to {@code b.length} bytes of data from this file
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * into an array of bytes. This method blocks until at least one byte
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * of input is available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * <p>
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   412
     * Although {@code RandomAccessFile} is not a subclass of
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   413
     * {@code InputStream}, this method behaves in exactly the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     * same way as the {@link InputStream#read(byte[])} method of
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   415
     * {@code InputStream}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * @param      b   the buffer into which the data is read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * @return     the total number of bytes read into the buffer, or
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   419
     *             {@code -1} if there is no more data because the end of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     *             this file has been reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * @exception  IOException If the first byte cannot be read for any reason
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * other than end of file, or if the random access file has been closed, or if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * some other I/O error occurs.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   424
     * @exception  NullPointerException If {@code b} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    public int read(byte b[]) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        return readBytes(b, 0, b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   431
     * Reads {@code b.length} bytes from this file into the byte
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * array, starting at the current file pointer. This method reads
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * repeatedly from the file until the requested number of bytes are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * read. This method blocks until the requested number of bytes are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * read, the end of the stream is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     *
37591
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   437
     * @param   b   the buffer into which the data is read.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   438
     * @throws  NullPointerException if {@code b} is {@code null}.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   439
     * @throws  EOFException  if this file reaches the end before reading
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   440
     *              all the bytes.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   441
     * @throws  IOException   if an I/O error occurs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    public final void readFully(byte b[]) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        readFully(b, 0, b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   448
     * Reads exactly {@code len} bytes from this file into the byte
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * array, starting at the current file pointer. This method reads
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * repeatedly from the file until the requested number of bytes are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * read. This method blocks until the requested number of bytes are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * read, the end of the stream is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     *
37591
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   454
     * @param   b     the buffer into which the data is read.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   455
     * @param   off   the start offset into the data array {@code b}.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   456
     * @param   len   the number of bytes to read.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   457
     * @throws  NullPointerException if {@code b} is {@code null}.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   458
     * @throws  IndexOutOfBoundsException if {@code off} is negative,
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   459
     *                {@code len} is negative, or {@code len} is greater than
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   460
     *                {@code b.length - off}.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   461
     * @throws  EOFException  if this file reaches the end before reading
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   462
     *                all the bytes.
b71bda3ce058 8154183: (spec) Spec of read(byte[],int,int) and readFully(byte[],int,int) is confusing/incomplete
bpb
parents: 32033
diff changeset
   463
     * @throws  IOException   if an I/O error occurs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    public final void readFully(byte b[], int off, int len) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
            int count = this.read(b, off + n, len - n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
            if (count < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
                throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
            n += count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        } while (n < len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   476
     * Attempts to skip over {@code n} bytes of input discarding the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * skipped bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * This method may skip over some smaller number of bytes, possibly zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * This may result from any of a number of conditions; reaching end of
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   482
     * file before {@code n} bytes have been skipped is only one
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   483
     * possibility. This method never throws an {@code EOFException}.
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   484
     * The actual number of bytes skipped is returned.  If {@code n}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * is negative, no bytes are skipped.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * @param      n   the number of bytes to be skipped.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * @return     the actual number of bytes skipped.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
    public int skipBytes(int n) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        long pos;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        long len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        long newpos;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        if (n <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        pos = getFilePointer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        len = length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        newpos = pos + n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        if (newpos > len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
            newpos = len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        seek(newpos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        /* return the actual number of bytes skipped */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        return (int) (newpos - pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    // 'Write' primitives
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * Writes the specified byte to this file. The write starts at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * the current file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   517
     * @param      b   the {@code byte} to be written.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     */
22946
0a1379d15976 8033911: Simplify instrumentation of FileInputStream and RandomAccessFile
sla
parents: 22945
diff changeset
   520
    public void write(int b) throws IOException {
0a1379d15976 8033911: Simplify instrumentation of FileInputStream and RandomAccessFile
sla
parents: 22945
diff changeset
   521
        write0(b);
0a1379d15976 8033911: Simplify instrumentation of FileInputStream and RandomAccessFile
sla
parents: 22945
diff changeset
   522
    }
0a1379d15976 8033911: Simplify instrumentation of FileInputStream and RandomAccessFile
sla
parents: 22945
diff changeset
   523
0a1379d15976 8033911: Simplify instrumentation of FileInputStream and RandomAccessFile
sla
parents: 22945
diff changeset
   524
    private native void write0(int b) throws IOException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * Writes a sub array as a sequence of bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * @param b the data to be written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * @param off the start offset in the data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     * @param len the number of bytes that are written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     * @exception IOException If an I/O error has occurred.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
    private native void writeBytes(byte b[], int off, int len) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   537
     * Writes {@code b.length} bytes from the specified byte array
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * to this file, starting at the current file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * @param      b   the data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    public void write(byte b[]) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        writeBytes(b, 0, b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   548
     * Writes {@code len} bytes from the specified byte array
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   549
     * starting at offset {@code off} to this file.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * @param      b     the data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * @param      off   the start offset in the data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * @param      len   the number of bytes to write.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    public void write(byte b[], int off, int len) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        writeBytes(b, off, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    // 'Random access' stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * Returns the current offset in this file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     * @return     the offset from the beginning of the file, in bytes,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     *             at which the next read or write occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    public native long getFilePointer() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     * Sets the file-pointer offset, measured from the beginning of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * file, at which the next read or write occurs.  The offset may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * set beyond the end of the file. Setting the offset beyond the end
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * of the file does not change the file length.  The file length will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     * change only by writing after the offset has been set beyond the end
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * of the file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * @param      pos   the offset position, measured in bytes from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     *                   beginning of the file, at which to set the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     *                   pointer.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   582
     * @exception  IOException  if {@code pos} is less than
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   583
     *                          {@code 0} or if an I/O error occurs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     */
19438
7de6ae3cecad 8023203: Wrap RandomAccessFile.seek native method into a Java helper method
dxu
parents: 19029
diff changeset
   585
    public void seek(long pos) throws IOException {
7de6ae3cecad 8023203: Wrap RandomAccessFile.seek native method into a Java helper method
dxu
parents: 19029
diff changeset
   586
        if (pos < 0) {
7de6ae3cecad 8023203: Wrap RandomAccessFile.seek native method into a Java helper method
dxu
parents: 19029
diff changeset
   587
            throw new IOException("Negative seek offset");
7de6ae3cecad 8023203: Wrap RandomAccessFile.seek native method into a Java helper method
dxu
parents: 19029
diff changeset
   588
        } else {
7de6ae3cecad 8023203: Wrap RandomAccessFile.seek native method into a Java helper method
dxu
parents: 19029
diff changeset
   589
            seek0(pos);
7de6ae3cecad 8023203: Wrap RandomAccessFile.seek native method into a Java helper method
dxu
parents: 19029
diff changeset
   590
        }
7de6ae3cecad 8023203: Wrap RandomAccessFile.seek native method into a Java helper method
dxu
parents: 19029
diff changeset
   591
    }
7de6ae3cecad 8023203: Wrap RandomAccessFile.seek native method into a Java helper method
dxu
parents: 19029
diff changeset
   592
7de6ae3cecad 8023203: Wrap RandomAccessFile.seek native method into a Java helper method
dxu
parents: 19029
diff changeset
   593
    private native void seek0(long pos) throws IOException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     * Returns the length of this file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     * @return     the length of this file, measured in bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    public native long length() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     * Sets the length of this file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     * <p> If the present length of the file as returned by the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   607
     * {@code length} method is greater than the {@code newLength}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     * argument then the file will be truncated.  In this case, if the file
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   609
     * offset as returned by the {@code getFilePointer} method is greater
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   610
     * than {@code newLength} then after this method returns the offset
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   611
     * will be equal to {@code newLength}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * <p> If the present length of the file as returned by the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   614
     * {@code length} method is smaller than the {@code newLength}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * argument then the file will be extended.  In this case, the contents of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * the extended portion of the file are not defined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * @param      newLength    The desired length of the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     * @exception  IOException  If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
    public native void setLength(long newLength) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * Closes this random access file stream and releases any system
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     * resources associated with the stream. A closed random access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     * file cannot perform input or output operations and cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     * reopened.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     * <p> If this file has an associated channel then the channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * as well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     * @revised 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
    public void close() throws IOException {
28062
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   639
        if (!closed.compareAndSet(false, true)) {
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   640
            // if compareAndSet() returns false closed was already true
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   641
            return;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
        }
28062
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   643
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   644
        FileChannel fc = channel;
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   645
        if (fc != null) {
52b80a88a63b 8025619: (fc) FileInputStream.getChannel on closed stream returns FileChannel that doesn't know that stream is closed
bpb
parents: 26190
diff changeset
   646
           fc.close();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
11017
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   649
        fd.closeAll(new Closeable() {
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   650
            public void close() throws IOException {
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   651
               close0();
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   652
           }
353f81426721 7105952: Improve finalisation for FileInputStream/FileOutputStream/RandomAccessFile
coffeys
parents: 10586
diff changeset
   653
        });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
    //  Some "reading/writing Java data types" methods stolen from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
    //  DataInputStream and DataOutputStream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   662
     * Reads a {@code boolean} from this file. This method reads a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     * single byte from the file, starting at the current file pointer.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   664
     * A value of {@code 0} represents
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   665
     * {@code false}. Any other value represents {@code true}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     * This method blocks until the byte is read, the end of the stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     * is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   669
     * @return     the {@code boolean} value read.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     * @exception  EOFException  if this file has reached the end.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * @exception  IOException   if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    public final boolean readBoolean() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
        int ch = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        if (ch < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        return (ch != 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * Reads a signed eight-bit value from this file. This method reads a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     * byte from the file, starting from the current file pointer.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   683
     * If the byte read is {@code b}, where
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * <code>0&nbsp;&lt;=&nbsp;b&nbsp;&lt;=&nbsp;255</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * then the result is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     *     (byte)(b)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     * This method blocks until the byte is read, the end of the stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * @return     the next byte of this file as a signed eight-bit
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   694
     *             {@code byte}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * @exception  EOFException  if this file has reached the end.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * @exception  IOException   if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
    public final byte readByte() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        int ch = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        if (ch < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
        return (byte)(ch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * Reads an unsigned eight-bit number from this file. This method reads
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     * a byte from this file, starting at the current file pointer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * and returns that byte.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * This method blocks until the byte is read, the end of the stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * @return     the next byte of this file, interpreted as an unsigned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     *             eight-bit number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     * @exception  EOFException  if this file has reached the end.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     * @exception  IOException   if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
    public final int readUnsignedByte() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        int ch = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        if (ch < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
        return ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     * Reads a signed 16-bit number from this file. The method reads two
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     * bytes from this file, starting at the current file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     * If the two bytes read, in order, are
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   729
     * {@code b1} and {@code b2}, where each of the two values is
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   730
     * between {@code 0} and {@code 255}, inclusive, then the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * result is equal to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     *     (short)((b1 &lt;&lt; 8) | b2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     * This method blocks until the two bytes are read, the end of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     * stream is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     * @return     the next two bytes of this file, interpreted as a signed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
     *             16-bit number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     * @exception  EOFException  if this file reaches the end before reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     *               two bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
     * @exception  IOException   if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
    public final short readShort() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        int ch1 = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        int ch2 = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        if ((ch1 | ch2) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        return (short)((ch1 << 8) + (ch2 << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     * Reads an unsigned 16-bit number from this file. This method reads
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     * two bytes from the file, starting at the current file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     * If the bytes read, in order, are
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   757
     * {@code b1} and {@code b2}, where
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     * <code>0&nbsp;&lt;=&nbsp;b1, b2&nbsp;&lt;=&nbsp;255</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     * then the result is equal to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
     *     (b1 &lt;&lt; 8) | b2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     * This method blocks until the two bytes are read, the end of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     * stream is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     * @return     the next two bytes of this file, interpreted as an unsigned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
     *             16-bit integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
     * @exception  EOFException  if this file reaches the end before reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     *               two bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     * @exception  IOException   if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    public final int readUnsignedShort() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
        int ch1 = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
        int ch2 = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
        if ((ch1 | ch2) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
        return (ch1 << 8) + (ch2 << 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     * Reads a character from this file. This method reads two
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
     * bytes from the file, starting at the current file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
     * If the bytes read, in order, are
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   785
     * {@code b1} and {@code b2}, where
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     * <code>0&nbsp;&lt;=&nbsp;b1,&nbsp;b2&nbsp;&lt;=&nbsp;255</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     * then the result is equal to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     *     (char)((b1 &lt;&lt; 8) | b2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     * This method blocks until the two bytes are read, the end of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     * stream is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     * @return     the next two bytes of this file, interpreted as a
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   796
     *                  {@code char}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     * @exception  EOFException  if this file reaches the end before reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     *               two bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     * @exception  IOException   if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    public final char readChar() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        int ch1 = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
        int ch2 = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
        if ((ch1 | ch2) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        return (char)((ch1 << 8) + (ch2 << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     * Reads a signed 32-bit integer from this file. This method reads 4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     * bytes from the file, starting at the current file pointer.
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   812
     * If the bytes read, in order, are {@code b1},
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   813
     * {@code b2}, {@code b3}, and {@code b4}, where
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     * <code>0&nbsp;&lt;=&nbsp;b1, b2, b3, b4&nbsp;&lt;=&nbsp;255</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
     * then the result is equal to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
     *     (b1 &lt;&lt; 24) | (b2 &lt;&lt; 16) + (b3 &lt;&lt; 8) + b4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
     * This method blocks until the four bytes are read, the end of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
     * stream is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
     * @return     the next four bytes of this file, interpreted as an
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   824
     *             {@code int}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
     * @exception  EOFException  if this file reaches the end before reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
     *               four bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
     * @exception  IOException   if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
    public final int readInt() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
        int ch1 = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        int ch2 = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        int ch3 = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
        int ch4 = this.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
        if ((ch1 | ch2 | ch3 | ch4) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
            throw new EOFException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
        return ((ch1 << 24) + (ch2 << 16) + (ch3 << 8) + (ch4 << 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
     * Reads a signed 64-bit integer from this file. This method reads eight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
     * bytes from the file, starting at the current file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
     * If the bytes read, in order, are
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   843
     * {@code b1}, {@code b2}, {@code b3},
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   844
     * {@code b4}, {@code b5}, {@code b6},
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   845
     * {@code b7}, and {@code b8,} where:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     *     0 &lt;= b1, b2, b3, b4, b5, b6, b7, b8 &lt;=255,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
     * then the result is equal to:
21334
c60dfce46a77 8026982: javadoc errors in core libs
rriggs
parents: 19438
diff changeset
   851
     * <blockquote><pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
     *     ((long)b1 &lt;&lt; 56) + ((long)b2 &lt;&lt; 48)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
     *     + ((long)b3 &lt;&lt; 40) + ((long)b4 &lt;&lt; 32)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
     *     + ((long)b5 &lt;&lt; 24) + ((long)b6 &lt;&lt; 16)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
     *     + ((long)b7 &lt;&lt; 8) + b8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
     * This method blocks until the eight bytes are read, the end of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
     * stream is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     * @return     the next eight bytes of this file, interpreted as a
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   862
     *             {@code long}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     * @exception  EOFException  if this file reaches the end before reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     *               eight bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     * @exception  IOException   if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
    public final long readLong() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
        return ((long)(readInt()) << 32) + (readInt() & 0xFFFFFFFFL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   872
     * Reads a {@code float} from this file. This method reads an
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   873
     * {@code int} value, starting at the current file pointer,
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   874
     * as if by the {@code readInt} method
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   875
     * and then converts that {@code int} to a {@code float}
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   876
     * using the {@code intBitsToFloat} method in class
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   877
     * {@code Float}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
     * This method blocks until the four bytes are read, the end of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
     * stream is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
     * @return     the next four bytes of this file, interpreted as a
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   883
     *             {@code float}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
     * @exception  EOFException  if this file reaches the end before reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
     *             four bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
     * @exception  IOException   if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     * @see        java.io.RandomAccessFile#readInt()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     * @see        java.lang.Float#intBitsToFloat(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
    public final float readFloat() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
        return Float.intBitsToFloat(readInt());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   895
     * Reads a {@code double} from this file. This method reads a
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   896
     * {@code long} value, starting at the current file pointer,
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   897
     * as if by the {@code readLong} method
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   898
     * and then converts that {@code long} to a {@code double}
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   899
     * using the {@code longBitsToDouble} method in
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   900
     * class {@code Double}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
     * This method blocks until the eight bytes are read, the end of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
     * stream is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
     * @return     the next eight bytes of this file, interpreted as a
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   906
     *             {@code double}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
     * @exception  EOFException  if this file reaches the end before reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
     *             eight bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
     * @exception  IOException   if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
     * @see        java.io.RandomAccessFile#readLong()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
     * @see        java.lang.Double#longBitsToDouble(long)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
    public final double readDouble() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
        return Double.longBitsToDouble(readLong());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
     * Reads the next line of text from this file.  This method successively
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     * reads bytes from the file, starting at the current file pointer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
     * until it reaches a line terminator or the end
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
     * of the file.  Each byte is converted into a character by taking the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
     * byte's value for the lower eight bits of the character and setting the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
     * high eight bits of the character to zero.  This method does not,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
     * therefore, support the full Unicode character set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
     * <p> A line of text is terminated by a carriage-return character
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   927
     * ({@code '\u005Cr'}), a newline character ({@code '\u005Cn'}), a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
     * carriage-return character immediately followed by a newline character,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
     * or the end of the file.  Line-terminating characters are discarded and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
     * are not included as part of the string returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
     * <p> This method blocks until a newline character is read, a carriage
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
     * return and the byte following it are read (to see if it is a newline),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
     * the end of the file is reached, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
     * @return     the next line of text from this file, or null if end
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     *             of file is encountered before even one byte is read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
    public final String readLine() throws IOException {
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 24865
diff changeset
   942
        StringBuilder input = new StringBuilder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
        int c = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        boolean eol = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
        while (!eol) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
            switch (c = read()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
            case -1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
            case '\n':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
                eol = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
            case '\r':
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
                eol = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
                long cur = getFilePointer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
                if ((read()) != '\n') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
                    seek(cur);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
            default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
                input.append((char)c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
        if ((c == -1) && (input.length() == 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
        return input.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
     * Reads in a string from this file. The string has been encoded
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
     * using a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
     * <a href="DataInput.html#modified-utf-8">modified UTF-8</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
     * format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     * The first two bytes are read, starting from the current file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     * pointer, as if by
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
   979
     * {@code readUnsignedShort}. This value gives the number of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
     * following bytes that are in the encoded string, not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
     * the length of the resulting string. The following bytes are then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
     * interpreted as bytes encoding characters in the modified UTF-8 format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
     * and are converted into characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
     * This method blocks until all the bytes are read, the end of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
     * stream is detected, or an exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
     * @return     a Unicode string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     * @exception  EOFException            if this file reaches the end before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
     *               reading all the bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
     * @exception  IOException             if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
     * @exception  UTFDataFormatException  if the bytes do not represent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
     *               valid modified UTF-8 encoding of a Unicode string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
     * @see        java.io.RandomAccessFile#readUnsignedShort()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
    public final String readUTF() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
        return DataInputStream.readUTF(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1001
     * Writes a {@code boolean} to the file as a one-byte value. The
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1002
     * value {@code true} is written out as the value
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1003
     * {@code (byte)1}; the value {@code false} is written out
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1004
     * as the value {@code (byte)0}. The write starts at
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
     * the current position of the file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1007
     * @param      v   a {@code boolean} value to be written.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
    public final void writeBoolean(boolean v) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
        write(v ? 1 : 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
        //written++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1016
     * Writes a {@code byte} to the file as a one-byte value. The
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
     * write starts at the current position of the file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1019
     * @param      v   a {@code byte} value to be written.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
    public final void writeByte(int v) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
        write(v);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
        //written++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1028
     * Writes a {@code short} to the file as two bytes, high byte first.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
     * The write starts at the current position of the file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1031
     * @param      v   a {@code short} to be written.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
    public final void writeShort(int v) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
        write((v >>> 8) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
        write((v >>> 0) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
        //written += 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1041
     * Writes a {@code char} to the file as a two-byte value, high
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
     * byte first. The write starts at the current position of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
     * file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1045
     * @param      v   a {@code char} value to be written.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
    public final void writeChar(int v) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
        write((v >>> 8) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
        write((v >>> 0) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
        //written += 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1055
     * Writes an {@code int} to the file as four bytes, high byte first.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
     * The write starts at the current position of the file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1058
     * @param      v   an {@code int} to be written.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
    public final void writeInt(int v) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
        write((v >>> 24) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
        write((v >>> 16) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
        write((v >>>  8) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
        write((v >>>  0) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
        //written += 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1070
     * Writes a {@code long} to the file as eight bytes, high byte first.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
     * The write starts at the current position of the file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1073
     * @param      v   a {@code long} to be written.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
    public final void writeLong(long v) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
        write((int)(v >>> 56) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
        write((int)(v >>> 48) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
        write((int)(v >>> 40) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
        write((int)(v >>> 32) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
        write((int)(v >>> 24) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
        write((int)(v >>> 16) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
        write((int)(v >>>  8) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
        write((int)(v >>>  0) & 0xFF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
        //written += 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1089
     * Converts the float argument to an {@code int} using the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1090
     * {@code floatToIntBits} method in class {@code Float},
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1091
     * and then writes that {@code int} value to the file as a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
     * four-byte quantity, high byte first. The write starts at the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
     * current position of the file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1095
     * @param      v   a {@code float} value to be written.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
     * @see        java.lang.Float#floatToIntBits(float)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
    public final void writeFloat(float v) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
        writeInt(Float.floatToIntBits(v));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
    /**
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1104
     * Converts the double argument to a {@code long} using the
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1105
     * {@code doubleToLongBits} method in class {@code Double},
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1106
     * and then writes that {@code long} value to the file as an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
     * eight-byte quantity, high byte first. The write starts at the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
     * position of the file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1110
     * @param      v   a {@code double} value to be written.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
     * @see        java.lang.Double#doubleToLongBits(double)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
    public final void writeDouble(double v) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
        writeLong(Double.doubleToLongBits(v));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
     * Writes the string to the file as a sequence of bytes. Each
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
     * character in the string is written out, in sequence, by discarding
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     * its high eight bits. The write starts at the current position of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
     * the file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
     * @param      s   a string of bytes to be written.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
     */
11121
4cdbb7f9480f 7116890: additional warnings fixes for java.io
smarks
parents: 11017
diff changeset
  1127
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
    public final void writeBytes(String s) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
        int len = s.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
        byte[] b = new byte[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
        s.getBytes(0, len, b, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
        writeBytes(b, 0, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
     * Writes a string to the file as a sequence of characters. Each
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
     * character is written to the data output stream as if by the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1138
     * {@code writeChar} method. The write starts at the current
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
     * position of the file pointer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1141
     * @param      s   a {@code String} value to be written.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
     * @see        java.io.RandomAccessFile#writeChar(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
    public final void writeChars(String s) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
        int clen = s.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
        int blen = 2*clen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
        byte[] b = new byte[blen];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
        char[] c = new char[clen];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
        s.getChars(0, clen, c, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
        for (int i = 0, j = 0; i < clen; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
            b[j++] = (byte)(c[i] >>> 8);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
            b[j++] = (byte)(c[i] >>> 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
        writeBytes(b, 0, blen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
     * Writes a string to the file using
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
     * <a href="DataInput.html#modified-utf-8">modified UTF-8</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
     * encoding in a machine-independent manner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
     * First, two bytes are written to the file, starting at the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
     * current file pointer, as if by the
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11121
diff changeset
  1165
     * {@code writeShort} method giving the number of bytes to
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     * follow. This value is the number of bytes actually written out,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     * not the length of the string. Following the length, each character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
     * of the string is output, in sequence, using the modified UTF-8 encoding
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
     * for each character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
     * @param      str   a string to be written.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
     * @exception  IOException  if an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
    public final void writeUTF(String str) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
        DataOutputStream.writeUTF(str, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
    private static native void initIDs();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
    private native void close0() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
        initIDs();
38466
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
  1184
        SharedSecrets.setJavaIORandomAccessFileAccess(new JavaIORandomAccessFileAccess()
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
  1185
        {
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
  1186
            // This is for j.u.z.ZipFile.OPEN_DELETE. The O_TEMPORARY flag
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
  1187
            // is only implemented/supported on windows.
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
  1188
            public RandomAccessFile openAndDelete(File file, String mode)
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
  1189
                throws IOException
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
  1190
            {
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
  1191
                return new RandomAccessFile(file, mode, true);
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
  1192
            }
4bcf5f2bb351 8147588: Jar file and Zip file not removed in spite of the OPEN_DELETE flag
sherman
parents: 37591
diff changeset
  1193
        });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
}