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