src/java.base/share/classes/java/nio/channels/FileChannel.java
author bpb
Fri, 22 Nov 2019 09:00:16 -0800
changeset 59227 46084917fde7
parent 54532 e9c62d960d64
permissions -rw-r--r--
8164993: (ch) ReadableByteChannel should note a possible IllegalArgumentException Reviewed-by: alanb, darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
59227
46084917fde7 8164993: (ch) ReadableByteChannel should note a possible IllegalArgumentException
bpb
parents: 54532
diff changeset
     2
 * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3631
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: 3631
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: 3631
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3631
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3631
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.nio.channels;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.nio.ByteBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.nio.MappedByteBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.nio.channels.spi.AbstractInterruptibleChannel;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    32
import java.nio.file.*;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    33
import java.nio.file.attribute.FileAttribute;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    34
import java.nio.file.spi.*;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    35
import java.util.Set;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    36
import java.util.HashSet;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    37
import java.util.Collections;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * A channel for reading, writing, mapping, and manipulating a file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
3631
4dc04372d56b 6874521: Remove @note tags
alanb
parents: 2057
diff changeset
    42
 * <p> A file channel is a {@link SeekableByteChannel} that is connected to
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    43
 * a file. It has a current <i>position</i> within its file which can
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    44
 * be both {@link #position() <i>queried</i>} and {@link #position(long)
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    45
 * <i>modified</i>}.  The file itself contains a variable-length sequence
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * of bytes that can be read and written and whose current {@link #size
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    47
 * <i>size</i>} can be queried.  The size of the file increases
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * when bytes are written beyond its current size; the size of the file
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
    49
 * decreases when it is {@link #truncate <i>truncated</i>}.  The
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * file may also have some associated <i>metadata</i> such as access
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * permissions, content type, and last-modification time; this class does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * define methods for metadata access.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <p> In addition to the familiar read, write, and close operations of byte
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * channels, this class defines the following file-specific operations: </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    59
 *   <li><p> Bytes may be {@link #read(ByteBuffer, long) read} or
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    60
 *   {@link #write(ByteBuffer, long) <i>written</i>} at an absolute
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *   position in a file in a way that does not affect the channel's current
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *   position.  </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    64
 *   <li><p> A region of a file may be {@link #map <i>mapped</i>}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *   directly into memory; for large files this is often much more efficient
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
    66
 *   than invoking the usual {@code read} or {@code write} methods.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *   </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    69
 *   <li><p> Updates made to a file may be {@link #force <i>forced
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    70
 *   out</i>} to the underlying storage device, ensuring that data are not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *   lost in the event of a system crash.  </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    73
 *   <li><p> Bytes can be transferred from a file {@link #transferTo <i>to
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    74
 *   some other channel</i>}, and {@link #transferFrom <i>vice
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    75
 *   versa</i>}, in a way that can be optimized by many operating systems
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *   into a very fast transfer directly to or from the filesystem cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *   </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    79
 *   <li><p> A region of a file may be {@link FileLock <i>locked</i>}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *   against access by other programs.  </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * <p> File channels are safe for use by multiple concurrent threads.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * {@link Channel#close close} method may be invoked at any time, as specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * by the {@link Channel} interface.  Only one operation that involves the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * channel's position or can change its file's size may be in progress at any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * given time; attempts to initiate a second such operation while the first is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * still in progress will block until the first operation completes.  Other
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * operations, in particular those that take an explicit position, may proceed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * concurrently; whether they in fact do so is dependent upon the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * implementation and is therefore unspecified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * <p> The view of a file provided by an instance of this class is guaranteed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * to be consistent with other views of the same file provided by other
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * instances in the same program.  The view provided by an instance of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * class may or may not, however, be consistent with the views seen by other
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * concurrently-running programs due to caching performed by the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * operating system and delays induced by network-filesystem protocols.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * is true regardless of the language in which these other programs are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * written, and whether they are running on the same machine or on some other
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * machine.  The exact nature of any such inconsistencies are system-dependent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * and are therefore unspecified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 *
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   105
 * <p> A file channel is created by invoking one of the {@link #open open}
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   106
 * methods defined by this class. A file channel can also be obtained from an
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   107
 * existing {@link java.io.FileInputStream#getChannel FileInputStream}, {@link
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * java.io.FileOutputStream#getChannel FileOutputStream}, or {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * java.io.RandomAccessFile#getChannel RandomAccessFile} object by invoking
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   110
 * that object's {@code getChannel} method, which returns a file channel that
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   111
 * is connected to the same underlying file. Where the file channel is obtained
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   112
 * from an existing stream or random access file then the state of the file
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   113
 * channel is intimately connected to that of the object whose {@code getChannel}
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   114
 * method returned the channel.  Changing the channel's position, whether
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   115
 * explicitly or by reading or writing bytes, will change the file position of
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   116
 * the originating object, and vice versa. Changing the file's length via the
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   117
 * file channel will change the length seen via the originating object, and vice
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   118
 * versa.  Changing the file's content by writing bytes will change the content
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   119
 * seen by the originating object, and vice versa.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 *
44844
b2b4d98404ba 8179364: update "<a name=" in java.base module to use id attribute
jjg
parents: 32143
diff changeset
   121
 * <a id="open-mode"></a> <p> At various points this class specifies that an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * instance that is "open for reading," "open for writing," or "open for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * reading and writing" is required.  A channel obtained via the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * java.io.FileInputStream#getChannel getChannel} method of a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * java.io.FileInputStream} instance will be open for reading.  A channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * obtained via the {@link java.io.FileOutputStream#getChannel getChannel}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * method of a {@link java.io.FileOutputStream} instance will be open for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * writing.  Finally, a channel obtained via the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * java.io.RandomAccessFile#getChannel getChannel} method of a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * java.io.RandomAccessFile} instance will be open for reading if the instance
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   131
 * was created with mode {@code "r"} and will be open for reading and writing
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   132
 * if the instance was created with mode {@code "rw"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 *
44844
b2b4d98404ba 8179364: update "<a name=" in java.base module to use id attribute
jjg
parents: 32143
diff changeset
   134
 * <a id="append-mode"></a><p> A file channel that is open for writing may be in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 * <i>append mode</i>, for example if it was obtained from a file-output stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 * that was created by invoking the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 * java.io.FileOutputStream#FileOutputStream(java.io.File,boolean)
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   138
 * FileOutputStream(File,boolean)} constructor and passing {@code true} for
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 * the second parameter.  In this mode each invocation of a relative write
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 * operation first advances the position to the end of the file and then writes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * the requested data.  Whether the advancement of the position and the writing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 * of the data are done in a single atomic operation is system-dependent and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
 * therefore unspecified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 * @see java.io.FileInputStream#getChannel()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
 * @see java.io.FileOutputStream#getChannel()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 * @see java.io.RandomAccessFile#getChannel()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
 * @author Mark Reinhold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
 * @author Mike McCloskey
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 * @author JSR-51 Expert Group
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
public abstract class FileChannel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    extends AbstractInterruptibleChannel
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   157
    implements SeekableByteChannel, GatheringByteChannel, ScatteringByteChannel
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * Initializes a new instance of this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    protected FileChannel() { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   164
    /**
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   165
     * Opens or creates a file, returning a file channel to access the file.
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   166
     *
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   167
     * <p> The {@code options} parameter determines how the file is opened.
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   168
     * The {@link StandardOpenOption#READ READ} and {@link StandardOpenOption#WRITE
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   169
     * WRITE} options determine if the file should be opened for reading and/or
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   170
     * writing. If neither option (or the {@link StandardOpenOption#APPEND APPEND}
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   171
     * option) is contained in the array then the file is opened for reading.
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   172
     * By default reading or writing commences at the beginning of the file.
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   173
     *
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   174
     * <p> In the addition to {@code READ} and {@code WRITE}, the following
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   175
     * options may be present:
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   176
     *
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   177
     * <table class="striped">
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   178
     * <caption style="display:none">additional options</caption>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   179
     * <thead>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   180
     * <tr> <th scope="col">Option</th> <th scope="col">Description</th> </tr>
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   181
     * </thead>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   182
     * <tbody>
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   183
     * <tr>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   184
     *   <th scope="row"> {@link StandardOpenOption#APPEND APPEND} </th>
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   185
     *   <td> If this option is present then the file is opened for writing and
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   186
     *     each invocation of the channel's {@code write} method first advances
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   187
     *     the position to the end of the file and then writes the requested
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   188
     *     data. Whether the advancement of the position and the writing of the
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   189
     *     data are done in a single atomic operation is system-dependent and
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   190
     *     therefore unspecified. This option may not be used in conjunction
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   191
     *     with the {@code READ} or {@code TRUNCATE_EXISTING} options. </td>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   192
     * </tr>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   193
     * <tr>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   194
     *   <th scope="row"> {@link StandardOpenOption#TRUNCATE_EXISTING TRUNCATE_EXISTING} </th>
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   195
     *   <td> If this option is present then the existing file is truncated to
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   196
     *   a size of 0 bytes. This option is ignored when the file is opened only
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   197
     *   for reading. </td>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   198
     * </tr>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   199
     * <tr>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   200
     *   <th scope="row"> {@link StandardOpenOption#CREATE_NEW CREATE_NEW} </th>
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   201
     *   <td> If this option is present then a new file is created, failing if
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   202
     *   the file already exists. When creating a file the check for the
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   203
     *   existence of the file and the creation of the file if it does not exist
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   204
     *   is atomic with respect to other file system operations. This option is
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   205
     *   ignored when the file is opened only for reading. </td>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   206
     * </tr>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   207
     * <tr>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   208
     *   <th scope="row" > {@link StandardOpenOption#CREATE CREATE} </th>
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   209
     *   <td> If this option is present then an existing file is opened if it
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   210
     *   exists, otherwise a new file is created. When creating a file the check
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   211
     *   for the existence of the file and the creation of the file if it does
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   212
     *   not exist is atomic with respect to other file system operations. This
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   213
     *   option is ignored if the {@code CREATE_NEW} option is also present or
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   214
     *   the file is opened only for reading. </td>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   215
     * </tr>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   216
     * <tr>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   217
     *   <th scope="row" > {@link StandardOpenOption#DELETE_ON_CLOSE DELETE_ON_CLOSE} </th>
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   218
     *   <td> When this option is present then the implementation makes a
47478
438e0c9f2f17 8190382: fix small typographic errors in comments
smarks
parents: 47216
diff changeset
   219
     *   <em>best effort</em> attempt to delete the file when closed by
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   220
     *   the {@link #close close} method. If the {@code close} method is not
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   221
     *   invoked then a <em>best effort</em> attempt is made to delete the file
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   222
     *   when the Java virtual machine terminates. </td>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   223
     * </tr>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   224
     * <tr>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   225
     *   <th scope="row">{@link StandardOpenOption#SPARSE SPARSE} </th>
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   226
     *   <td> When creating a new file this option is a <em>hint</em> that the
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   227
     *   new file will be sparse. This option is ignored when not creating
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   228
     *   a new file. </td>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   229
     * </tr>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   230
     * <tr>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   231
     *   <th scope="row"> {@link StandardOpenOption#SYNC SYNC} </th>
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   232
     *   <td> Requires that every update to the file's content or metadata be
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   233
     *   written synchronously to the underlying storage device. (see <a
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   234
     *   href="../file/package-summary.html#integrity"> Synchronized I/O file
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   235
     *   integrity</a>). </td>
21801
b8a5ff5f0c2a 8028049: Tidy warnings cleanup for packages java.nio/java.io
yan
parents: 18574
diff changeset
   236
     * </tr>
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   237
     * <tr>
45881
aaec0fbe17ae 8184208: update class="striped" tables for accessibility
jjg
parents: 45124
diff changeset
   238
     *   <th scope="row"> {@link StandardOpenOption#DSYNC DSYNC} </th>
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   239
     *   <td> Requires that every update to the file's content be written
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   240
     *   synchronously to the underlying storage device. (see <a
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   241
     *   href="../file/package-summary.html#integrity"> Synchronized I/O file
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   242
     *   integrity</a>). </td>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   243
     * </tr>
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   244
     * </tbody>
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   245
     * </table>
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   246
     *
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   247
     * <p> An implementation may also support additional options.
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   248
     *
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   249
     * <p> The {@code attrs} parameter is an optional array of file {@link
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   250
     * FileAttribute file-attributes} to set atomically when creating the file.
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   251
     *
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   252
     * <p> The new channel is created by invoking the {@link
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   253
     * FileSystemProvider#newFileChannel newFileChannel} method on the
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   254
     * provider that created the {@code Path}.
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   255
     *
8158
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 5506
diff changeset
   256
     * @param   path
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   257
     *          The path of the file to open or create
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   258
     * @param   options
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   259
     *          Options specifying how the file is opened
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   260
     * @param   attrs
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   261
     *          An optional list of file attributes to set atomically when
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   262
     *          creating the file
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   263
     *
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   264
     * @return  A new file channel
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   265
     *
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   266
     * @throws  IllegalArgumentException
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   267
     *          If the set contains an invalid combination of options
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   268
     * @throws  UnsupportedOperationException
8158
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 5506
diff changeset
   269
     *          If the {@code path} is associated with a provider that does not
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   270
     *          support creating file channels, or an unsupported open option is
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   271
     *          specified, or the array contains an attribute that cannot be set
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   272
     *          atomically when creating the file
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   273
     * @throws  IOException
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   274
     *          If an I/O error occurs
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   275
     * @throws  SecurityException
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   276
     *          If a security manager is installed and it denies an
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   277
     *          unspecified permission required by the implementation.
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   278
     *          In the case of the default provider, the {@link
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   279
     *          SecurityManager#checkRead(String)} method is invoked to check
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   280
     *          read access if the file is opened for reading. The {@link
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   281
     *          SecurityManager#checkWrite(String)} method is invoked to check
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   282
     *          write access if the file is opened for writing
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   283
     *
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   284
     * @since   1.7
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   285
     */
8158
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 5506
diff changeset
   286
    public static FileChannel open(Path path,
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   287
                                   Set<? extends OpenOption> options,
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   288
                                   FileAttribute<?>... attrs)
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   289
        throws IOException
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   290
    {
8158
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 5506
diff changeset
   291
        FileSystemProvider provider = path.getFileSystem().provider();
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 5506
diff changeset
   292
        return provider.newFileChannel(path, options, attrs);
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   293
    }
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   294
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 10137
diff changeset
   295
    @SuppressWarnings({"unchecked", "rawtypes"}) // generic array construction
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   296
    private static final FileAttribute<?>[] NO_ATTRIBUTES = new FileAttribute[0];
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   297
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   298
    /**
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   299
     * Opens or creates a file, returning a file channel to access the file.
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   300
     *
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   301
     * <p> An invocation of this method behaves in exactly the same way as the
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   302
     * invocation
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   303
     * <pre>
8158
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 5506
diff changeset
   304
     *     fc.{@link #open(Path,Set,FileAttribute[]) open}(file, opts, new FileAttribute&lt;?&gt;[0]);
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   305
     * </pre>
8158
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 5506
diff changeset
   306
     * where {@code opts} is a set of the options specified in the {@code
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 5506
diff changeset
   307
     * options} array.
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   308
     *
8158
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 5506
diff changeset
   309
     * @param   path
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   310
     *          The path of the file to open or create
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   311
     * @param   options
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   312
     *          Options specifying how the file is opened
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   313
     *
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   314
     * @return  A new file channel
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   315
     *
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   316
     * @throws  IllegalArgumentException
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   317
     *          If the set contains an invalid combination of options
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   318
     * @throws  UnsupportedOperationException
8158
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 5506
diff changeset
   319
     *          If the {@code path} is associated with a provider that does not
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   320
     *          support creating file channels, or an unsupported open option is
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   321
     *          specified
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   322
     * @throws  IOException
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   323
     *          If an I/O error occurs
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   324
     * @throws  SecurityException
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   325
     *          If a security manager is installed and it denies an
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   326
     *          unspecified permission required by the implementation.
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   327
     *          In the case of the default provider, the {@link
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   328
     *          SecurityManager#checkRead(String)} method is invoked to check
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   329
     *          read access if the file is opened for reading. The {@link
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   330
     *          SecurityManager#checkWrite(String)} method is invoked to check
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   331
     *          write access if the file is opened for writing
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   332
     *
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   333
     * @since   1.7
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   334
     */
8158
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 5506
diff changeset
   335
    public static FileChannel open(Path path, OpenOption... options)
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   336
        throws IOException
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   337
    {
50701
80fe6f64d8a0 8199124: (fs) Reduce allocation for file system methods that are invoked with no open options
bpb
parents: 47478
diff changeset
   338
        Set<OpenOption> set;
80fe6f64d8a0 8199124: (fs) Reduce allocation for file system methods that are invoked with no open options
bpb
parents: 47478
diff changeset
   339
        if (options.length == 0) {
80fe6f64d8a0 8199124: (fs) Reduce allocation for file system methods that are invoked with no open options
bpb
parents: 47478
diff changeset
   340
            set = Collections.emptySet();
80fe6f64d8a0 8199124: (fs) Reduce allocation for file system methods that are invoked with no open options
bpb
parents: 47478
diff changeset
   341
        } else {
80fe6f64d8a0 8199124: (fs) Reduce allocation for file system methods that are invoked with no open options
bpb
parents: 47478
diff changeset
   342
            set = new HashSet<>();
80fe6f64d8a0 8199124: (fs) Reduce allocation for file system methods that are invoked with no open options
bpb
parents: 47478
diff changeset
   343
            Collections.addAll(set, options);
80fe6f64d8a0 8199124: (fs) Reduce allocation for file system methods that are invoked with no open options
bpb
parents: 47478
diff changeset
   344
        }
8158
77d9c0f1c19f 7006126: (fs) Updates to file system API (1/2011)
alanb
parents: 5506
diff changeset
   345
        return open(path, set, NO_ATTRIBUTES);
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   346
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    // -- Channel operations --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * Reads a sequence of bytes from this channel into the given buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * <p> Bytes are read starting at this channel's current file position, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * then the file position is updated with the number of bytes actually
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * read.  Otherwise this method behaves exactly as specified in the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * ReadableByteChannel} interface. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    public abstract int read(ByteBuffer dst) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * Reads a sequence of bytes from this channel into a subsequence of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * given buffers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * <p> Bytes are read starting at this channel's current file position, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * then the file position is updated with the number of bytes actually
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * read.  Otherwise this method behaves exactly as specified in the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * ScatteringByteChannel} interface.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    public abstract long read(ByteBuffer[] dsts, int offset, int length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * Reads a sequence of bytes from this channel into the given buffers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * <p> Bytes are read starting at this channel's current file position, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * then the file position is updated with the number of bytes actually
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * read.  Otherwise this method behaves exactly as specified in the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * ScatteringByteChannel} interface.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    public final long read(ByteBuffer[] dsts) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        return read(dsts, 0, dsts.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * Writes a sequence of bytes to this channel from the given buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * <p> Bytes are written starting at this channel's current file position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * unless the channel is in append mode, in which case the position is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * first advanced to the end of the file.  The file is grown, if necessary,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * to accommodate the written bytes, and then the file position is updated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * with the number of bytes actually written.  Otherwise this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * behaves exactly as specified by the {@link WritableByteChannel}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * interface. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    public abstract int write(ByteBuffer src) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * Writes a sequence of bytes to this channel from a subsequence of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * given buffers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * <p> Bytes are written starting at this channel's current file position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * unless the channel is in append mode, in which case the position is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * first advanced to the end of the file.  The file is grown, if necessary,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * to accommodate the written bytes, and then the file position is updated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * with the number of bytes actually written.  Otherwise this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * behaves exactly as specified in the {@link GatheringByteChannel}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * interface.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    public abstract long write(ByteBuffer[] srcs, int offset, int length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     * Writes a sequence of bytes to this channel from the given buffers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * <p> Bytes are written starting at this channel's current file position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * unless the channel is in append mode, in which case the position is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * first advanced to the end of the file.  The file is grown, if necessary,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * to accommodate the written bytes, and then the file position is updated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * with the number of bytes actually written.  Otherwise this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * behaves exactly as specified in the {@link GatheringByteChannel}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * interface.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    public final long write(ByteBuffer[] srcs) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        return write(srcs, 0, srcs.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
    // -- Other operations --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    /**
18164
68f1bc4eadd4 8016370: javadoc warnings, unexpected </p> mostly
alanb
parents: 14342
diff changeset
   431
     * Returns this channel's file position.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * @return  This channel's file position,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     *          a non-negative integer counting the number of bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     *          from the beginning of the file to the current position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *          If this channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    public abstract long position() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * Sets this channel's file position.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * <p> Setting the position to a value that is greater than the file's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * current size is legal but does not change the size of the file.  A later
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * attempt to read bytes at such a position will immediately return an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * end-of-file indication.  A later attempt to write bytes at such a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * position will cause the file to be grown to accommodate the new bytes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * the values of any bytes between the previous end-of-file and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * newly-written bytes are unspecified.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * @param  newPosition
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     *         The new position, a non-negative integer counting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     *         the number of bytes from the beginning of the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * @return  This file channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     *          If this channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * @throws  IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     *          If the new position is negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    public abstract FileChannel position(long newPosition) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    /**
18164
68f1bc4eadd4 8016370: javadoc warnings, unexpected </p> mostly
alanb
parents: 14342
diff changeset
   474
     * Returns the current size of this channel's file.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * @return  The current size of this channel's file,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     *          measured in bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     *          If this channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    public abstract long size() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * Truncates this channel's file to the given size.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * <p> If the given size is less than the file's current size then the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * is truncated, discarding any bytes beyond the new end of the file.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     * the given size is greater than or equal to the file's current size then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * the file is not modified.  In either case, if this channel's file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * position is greater than the given size then it is set to that size.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * @param  size
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     *         The new size, a non-negative byte count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * @return  This file channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * @throws  NonWritableChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     *          If this channel was not opened for writing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     *          If this channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * @throws  IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     *          If the new size is negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    public abstract FileChannel truncate(long size) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * Forces any updates to this channel's file to be written to the storage
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * device that contains it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * <p> If this channel's file resides on a local storage device then when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * this method returns it is guaranteed that all changes made to the file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * since this channel was created, or since this method was last invoked,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * will have been written to that device.  This is useful for ensuring that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * critical information is not lost in the event of a system crash.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * <p> If the file does not reside on a local device then no such guarantee
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * is made.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   529
     * <p> The {@code metaData} parameter can be used to limit the number of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * I/O operations that this method is required to perform.  Passing
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   531
     * {@code false} for this parameter indicates that only updates to the
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   532
     * file's content need be written to storage; passing {@code true}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * indicates that updates to both the file's content and metadata must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * written, which generally requires at least one more I/O operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * Whether this parameter actually has any effect is dependent upon the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * underlying operating system and is therefore unspecified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * <p> Invoking this method may cause an I/O operation to occur even if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     * channel was only opened for reading.  Some operating systems, for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * example, maintain a last-access time as part of a file's metadata, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * this time is updated whenever the file is read.  Whether or not this is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * actually done is system-dependent and is therefore unspecified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     * <p> This method is only guaranteed to force changes that were made to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * this channel's file via the methods defined in this class.  It may or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * may not force changes that were made by modifying the content of a
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   547
     * {@link MappedByteBuffer <i>mapped byte buffer</i>} obtained by
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * invoking the {@link #map map} method.  Invoking the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * MappedByteBuffer#force force} method of the mapped byte buffer will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     * force changes made to the buffer's content to be written.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * @param   metaData
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   553
     *          If {@code true} then this method is required to force changes
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     *          to both the file's content and metadata to be written to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     *          storage; otherwise, it need only force content changes to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     *          written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     *          If this channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    public abstract void force(boolean metaData) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * Transfers bytes from this channel's file to the given writable byte
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * channel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   570
     * <p> An attempt is made to read up to {@code count} bytes starting at
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   571
     * the given {@code position} in this channel's file and write them to the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     * target channel.  An invocation of this method may or may not transfer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * all of the requested bytes; whether or not it does so depends upon the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * natures and states of the channels.  Fewer than the requested number of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * bytes are transferred if this channel's file contains fewer than
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   576
     * {@code count} bytes starting at the given {@code position}, or if the
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   577
     * target channel is non-blocking and it has fewer than {@code count}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * bytes free in its output buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * <p> This method does not modify this channel's position.  If the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * position is greater than the file's current size then no bytes are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * transferred.  If the target channel has a position then bytes are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * written starting at that position and then the position is incremented
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * by the number of bytes written.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     * <p> This method is potentially much more efficient than a simple loop
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     * that reads from this channel and writes to the target channel.  Many
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     * operating systems can transfer bytes directly from the filesystem cache
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * to the target channel without actually copying them.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * @param  position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     *         The position within the file at which the transfer is to begin;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     *         must be non-negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     * @param  count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     *         The maximum number of bytes to be transferred; must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     *         non-negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     * @param  target
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     *         The target channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * @return  The number of bytes, possibly zero,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     *          that were actually transferred
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     * @throws IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     *         If the preconditions on the parameters do not hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     * @throws  NonReadableChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     *          If this channel was not opened for reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     * @throws  NonWritableChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     *          If the target channel was not opened for writing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     *          If either this channel or the target channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     * @throws  AsynchronousCloseException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     *          If another thread closes either channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     *          while the transfer is in progress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     * @throws  ClosedByInterruptException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     *          If another thread interrupts the current thread while the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     *          transfer is in progress, thereby closing both channels and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     *          setting the current thread's interrupt status
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
    public abstract long transferTo(long position, long count,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                                    WritableByteChannel target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * Transfers bytes into this channel's file from the given readable byte
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     * channel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   637
     * <p> An attempt is made to read up to {@code count} bytes from the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     * source channel and write them to this channel's file starting at the
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   639
     * given {@code position}.  An invocation of this method may or may not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
     * transfer all of the requested bytes; whether or not it does so depends
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
     * upon the natures and states of the channels.  Fewer than the requested
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     * number of bytes will be transferred if the source channel has fewer than
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   643
     * {@code count} bytes remaining, or if the source channel is non-blocking
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   644
     * and has fewer than {@code count} bytes immediately available in its
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
     * input buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     * <p> This method does not modify this channel's position.  If the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     * position is greater than the file's current size then no bytes are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     * transferred.  If the source channel has a position then bytes are read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     * starting at that position and then the position is incremented by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     * number of bytes read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
     * <p> This method is potentially much more efficient than a simple loop
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     * that reads from the source channel and writes to this channel.  Many
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * operating systems can transfer bytes directly from the source channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * into the filesystem cache without actually copying them.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     * @param  src
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     *         The source channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     * @param  position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     *         The position within the file at which the transfer is to begin;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     *         must be non-negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     * @param  count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     *         The maximum number of bytes to be transferred; must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     *         non-negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     * @return  The number of bytes, possibly zero,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     *          that were actually transferred
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     * @throws IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     *         If the preconditions on the parameters do not hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * @throws  NonReadableChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     *          If the source channel was not opened for reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     * @throws  NonWritableChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     *          If this channel was not opened for writing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     *          If either this channel or the source channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * @throws  AsynchronousCloseException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     *          If another thread closes either channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     *          while the transfer is in progress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * @throws  ClosedByInterruptException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     *          If another thread interrupts the current thread while the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     *          transfer is in progress, thereby closing both channels and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     *          setting the current thread's interrupt status
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
    public abstract long transferFrom(ReadableByteChannel src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
                                      long position, long count)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * Reads a sequence of bytes from this channel into the given buffer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * starting at the given file position.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * <p> This method works in the same manner as the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     * #read(ByteBuffer)} method, except that bytes are read starting at the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * given file position rather than at the channel's current position.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     * method does not modify this channel's position.  If the given position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * is greater than the file's current size then no bytes are read.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * @param  dst
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     *         The buffer into which bytes are to be transferred
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * @param  position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     *         The file position at which the transfer is to begin;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     *         must be non-negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   717
     * @return  The number of bytes read, possibly zero, or {@code -1} if the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     *          given position is greater than or equal to the file's current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
     *          size
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     * @throws  IllegalArgumentException
59227
46084917fde7 8164993: (ch) ReadableByteChannel should note a possible IllegalArgumentException
bpb
parents: 54532
diff changeset
   722
     *          If the position is negative or the buffer is read-only
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     * @throws  NonReadableChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     *          If this channel was not opened for reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     *          If this channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * @throws  AsynchronousCloseException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     *          If another thread closes this channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     *          while the read operation is in progress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     * @throws  ClosedByInterruptException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     *          If another thread interrupts the current thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     *          while the read operation is in progress, thereby
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     *          closing the channel and setting the current thread's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     *          interrupt status
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    public abstract int read(ByteBuffer dst, long position) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
     * Writes a sequence of bytes to this channel from the given buffer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
     * starting at the given file position.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * <p> This method works in the same manner as the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     * #write(ByteBuffer)} method, except that bytes are written starting at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     * the given file position rather than at the channel's current position.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     * This method does not modify this channel's position.  If the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     * position is greater than the file's current size then the file will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     * grown to accommodate the new bytes; the values of any bytes between the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     * previous end-of-file and the newly-written bytes are unspecified.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
     * @param  src
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     *         The buffer from which bytes are to be transferred
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     * @param  position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
     *         The file position at which the transfer is to begin;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
     *         must be non-negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     * @return  The number of bytes written, possibly zero
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     * @throws  IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     *          If the position is negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
     * @throws  NonWritableChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     *          If this channel was not opened for writing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
     *          If this channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     * @throws  AsynchronousCloseException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     *          If another thread closes this channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
     *          while the write operation is in progress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     * @throws  ClosedByInterruptException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     *          If another thread interrupts the current thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
     *          while the write operation is in progress, thereby
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     *          closing the channel and setting the current thread's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
     *          interrupt status
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    public abstract int write(ByteBuffer src, long position) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
    // -- Memory-mapped buffers --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    /**
54532
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   794
     * A file-mapping mode.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     * @see java.nio.channels.FileChannel#map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
    public static class MapMode {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
         * Mode for a read-only mapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
        public static final MapMode READ_ONLY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
            = new MapMode("READ_ONLY");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
         * Mode for a read/write mapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
        public static final MapMode READ_WRITE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
            = new MapMode("READ_WRITE");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
         * Mode for a private (copy-on-write) mapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
        public static final MapMode PRIVATE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
            = new MapMode("PRIVATE");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
        private final String name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
54532
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   822
        /**
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   823
         * Constructs an instance of this class. This constructor may be used
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   824
         * by code in java.base to create file mapping modes beyond the file
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   825
         * mapping modes defined here.
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   826
         * @param name the name of the map mode
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   827
         */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        private MapMode(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
            this.name = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
         * Returns a string describing this file-mapping mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
         * @return  A descriptive string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
        public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
            return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
     * Maps a region of this channel's file directly into memory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     *
54532
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   846
     * <p> The {@code mode} parameter specifies how the region of the file is
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   847
     * mapped and may be one of the following modes:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
     *
18574
4aeaeb541678 8019380: doclint warnings in java.nio, java.nio.file.**, java.nio.channels.**
alanb
parents: 18164
diff changeset
   849
     * <ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
     *   <li><p> <i>Read-only:</i> Any attempt to modify the resulting buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
     *   will cause a {@link java.nio.ReadOnlyBufferException} to be thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
     *   ({@link MapMode#READ_ONLY MapMode.READ_ONLY}) </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
     *   <li><p> <i>Read/write:</i> Changes made to the resulting buffer will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
     *   eventually be propagated to the file; they may or may not be made
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
     *   visible to other programs that have mapped the same file.  ({@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
     *   MapMode#READ_WRITE MapMode.READ_WRITE}) </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
     *   <li><p> <i>Private:</i> Changes made to the resulting buffer will not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     *   be propagated to the file and will not be visible to other programs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     *   that have mapped the same file; instead, they will cause private
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     *   copies of the modified portions of the buffer to be created.  ({@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     *   MapMode#PRIVATE MapMode.PRIVATE}) </p></li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
     *
54532
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   868
     * <p> An implementation may support additional map modes.
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   869
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
     * <p> For a read-only mapping, this channel must have been opened for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
     * reading; for a read/write or private mapping, this channel must have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
     * been opened for both reading and writing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
     *
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   874
     * <p> The {@link MappedByteBuffer <i>mapped byte buffer</i>}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
     * returned by this method will have a position of zero and a limit and
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   876
     * capacity of {@code size}; its mark will be undefined.  The buffer and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
     * the mapping that it represents will remain valid until the buffer itself
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     * is garbage-collected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
     * <p> A mapping, once established, is not dependent upon the file channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
     * that was used to create it.  Closing the channel, in particular, has no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
     * effect upon the validity of the mapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
     * <p> Many of the details of memory-mapped files are inherently dependent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
     * upon the underlying operating system and are therefore unspecified.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
     * behavior of this method when the requested region is not completely
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     * contained within this channel's file is unspecified.  Whether changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     * made to the content or size of the underlying file, by this program or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
     * another, are propagated to the buffer is unspecified.  The rate at which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
     * changes to the buffer are propagated to the file is unspecified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     * <p> For most operating systems, mapping a file into memory is more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     * expensive than reading or writing a few tens of kilobytes of data via
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
     * the usual {@link #read read} and {@link #write write} methods.  From the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
     * standpoint of performance it is generally only worth mapping relatively
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     * large files into memory.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     * @param  mode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     *         One of the constants {@link MapMode#READ_ONLY READ_ONLY}, {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
     *         MapMode#READ_WRITE READ_WRITE}, or {@link MapMode#PRIVATE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     *         PRIVATE} defined in the {@link MapMode} class, according to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
     *         whether the file is to be mapped read-only, read/write, or
54532
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   903
     *         privately (copy-on-write), respectively, or an implementation
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   904
     *         specific map mode
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
     * @param  position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
     *         The position within the file at which the mapped region
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
     *         is to start; must be non-negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
     * @param  size
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
     *         The size of the region to be mapped; must be non-negative and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
     *         no greater than {@link java.lang.Integer#MAX_VALUE}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
     *
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   914
     * @return  The mapped byte buffer
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   915
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
     * @throws NonReadableChannelException
54532
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   917
     *         If the {@code mode} is {@link MapMode#READ_ONLY READ_ONLY} or
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   918
     *         an implementation specific map mode requiring read access
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   919
     *         but this channel was not opened for reading
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
     * @throws NonWritableChannelException
54532
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   922
     *         If the {@code mode} is {@link MapMode#READ_WRITE READ_WRITE}.
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   923
     *         {@link MapMode#PRIVATE PRIVATE} or an implementation specific
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   924
     *         map mode requiring write access but this channel was not
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   925
     *         opened for both reading and writing
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
     * @throws IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
     *         If the preconditions on the parameters do not hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
     *
54532
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   930
     * @throws UnsupportedOperationException
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   931
     *         If an unsupported map mode is specified
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   932
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
     * @throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
     *         If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
     * @see java.nio.channels.FileChannel.MapMode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     * @see java.nio.MappedByteBuffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
     */
54532
e9c62d960d64 8221397: Support implementation-defined Map Modes
adinn
parents: 50701
diff changeset
   939
    public abstract MappedByteBuffer map(MapMode mode, long position, long size)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
    // -- Locks --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
     * Acquires a lock on the given region of this channel's file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
     * <p> An invocation of this method will block until the region can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
     * locked, this channel is closed, or the invoking thread is interrupted,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     * whichever comes first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
     * <p> If this channel is closed by another thread during an invocation of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
     * this method then an {@link AsynchronousCloseException} will be thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
     * <p> If the invoking thread is interrupted while waiting to acquire the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
     * lock then its interrupt status will be set and a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
     * FileLockInterruptionException} will be thrown.  If the invoker's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
     * interrupt status is set when this method is invoked then that exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
     * will be thrown immediately; the thread's interrupt status will not be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
     * changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   962
     * <p> The region specified by the {@code position} and {@code size}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
     * parameters need not be contained within, or even overlap, the actual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
     * underlying file.  Lock regions are fixed in size; if a locked region
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
     * initially contains the end of the file and the file grows beyond the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
     * region then the new portion of the file will not be covered by the lock.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
     * If a file is expected to grow in size and a lock on the entire file is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
     * required then a region starting at zero, and no smaller than the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
     * expected maximum size of the file, should be locked.  The zero-argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
     * {@link #lock()} method simply locks a region of size {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
     * Long#MAX_VALUE}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
     * <p> Some operating systems do not support shared locks, in which case a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
     * request for a shared lock is automatically converted into a request for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
     * an exclusive lock.  Whether the newly-acquired lock is shared or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
     * exclusive may be tested by invoking the resulting lock object's {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     * FileLock#isShared() isShared} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
     * <p> File locks are held on behalf of the entire Java virtual machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
     * They are not suitable for controlling access to a file by multiple
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
     * threads within the same virtual machine.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
     * @param  position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
     *         The position at which the locked region is to start; must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
     *         non-negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
     * @param  size
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
     *         The size of the locked region; must be non-negative, and the sum
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   989
     *         {@code position}&nbsp;+&nbsp;{@code size} must be non-negative
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
     * @param  shared
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   992
     *         {@code true} to request a shared lock, in which case this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
     *         channel must be open for reading (and possibly writing);
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
   994
     *         {@code false} to request an exclusive lock, in which case this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
     *         channel must be open for writing (and possibly reading)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
     * @return  A lock object representing the newly-acquired lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
     * @throws  IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
     *          If the preconditions on the parameters do not hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
     *          If this channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
     * @throws  AsynchronousCloseException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
     *          If another thread closes this channel while the invoking
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
     *          thread is blocked in this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
     * @throws  FileLockInterruptionException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
     *          If the invoking thread is interrupted while blocked in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
     *          method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
     * @throws  OverlappingFileLockException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
     *          If a lock that overlaps the requested region is already held by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
     *          this Java virtual machine, or if another thread is already
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
     *          blocked in this method and is attempting to lock an overlapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
     *          region
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
     * @throws  NonReadableChannelException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
  1020
     *          If {@code shared} is {@code true} this channel was not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
     *          opened for reading
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
     * @throws  NonWritableChannelException
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
  1024
     *          If {@code shared} is {@code false} but this channel was not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
     *          opened for writing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
     * @see     #lock()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
     * @see     #tryLock()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
     * @see     #tryLock(long,long,boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
    public abstract FileLock lock(long position, long size, boolean shared)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
     * Acquires an exclusive lock on this channel's file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
  1040
     * <p> An invocation of this method of the form {@code fc.lock()} behaves
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
     * in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
     *     fc.{@link #lock(long,long,boolean) lock}(0L, Long.MAX_VALUE, false) </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
     * @return  A lock object representing the newly-acquired lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
     *          If this channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
     * @throws  AsynchronousCloseException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
     *          If another thread closes this channel while the invoking
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
     *          thread is blocked in this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
     * @throws  FileLockInterruptionException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
     *          If the invoking thread is interrupted while blocked in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
     *          method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
     * @throws  OverlappingFileLockException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
     *          If a lock that overlaps the requested region is already held by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
     *          this Java virtual machine, or if another thread is already
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
     *          blocked in this method and is attempting to lock an overlapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
     *          region of the same file
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
     * @throws  NonWritableChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
     *          If this channel was not opened for writing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
     * @see     #lock(long,long,boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
     * @see     #tryLock()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
     * @see     #tryLock(long,long,boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
    public final FileLock lock() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
        return lock(0L, Long.MAX_VALUE, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
     * Attempts to acquire a lock on the given region of this channel's file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
     * <p> This method does not block.  An invocation always returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
     * immediately, either having acquired a lock on the requested region or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
     * having failed to do so.  If it fails to acquire a lock because an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
     * overlapping lock is held by another program then it returns
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
  1086
     * {@code null}.  If it fails to acquire a lock for any other reason then
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
     * an appropriate exception is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
  1089
     * <p> The region specified by the {@code position} and {@code size}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
     * parameters need not be contained within, or even overlap, the actual
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
     * underlying file.  Lock regions are fixed in size; if a locked region
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
     * initially contains the end of the file and the file grows beyond the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
     * region then the new portion of the file will not be covered by the lock.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
     * If a file is expected to grow in size and a lock on the entire file is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
     * required then a region starting at zero, and no smaller than the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
     * expected maximum size of the file, should be locked.  The zero-argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
     * {@link #tryLock()} method simply locks a region of size {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
     * Long#MAX_VALUE}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     * <p> Some operating systems do not support shared locks, in which case a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
     * request for a shared lock is automatically converted into a request for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
     * an exclusive lock.  Whether the newly-acquired lock is shared or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
     * exclusive may be tested by invoking the resulting lock object's {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
     * FileLock#isShared() isShared} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
     * <p> File locks are held on behalf of the entire Java virtual machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
     * They are not suitable for controlling access to a file by multiple
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
     * threads within the same virtual machine.  </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
     * @param  position
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
     *         The position at which the locked region is to start; must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
     *         non-negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
     * @param  size
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
     *         The size of the locked region; must be non-negative, and the sum
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
  1116
     *         {@code position}&nbsp;+&nbsp;{@code size} must be non-negative
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     * @param  shared
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
  1119
     *         {@code true} to request a shared lock,
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
  1120
     *         {@code false} to request an exclusive lock
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
     * @return  A lock object representing the newly-acquired lock,
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
  1123
     *          or {@code null} if the lock could not be acquired
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
     *          because another program holds an overlapping lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
     * @throws  IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
     *          If the preconditions on the parameters do not hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
     *          If this channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
     * @throws  OverlappingFileLockException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     *          If a lock that overlaps the requested region is already held by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
     *          this Java virtual machine, or if another thread is already
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
     *          blocked in this method and is attempting to lock an overlapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
     *          region of the same file
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
     * @see     #lock()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
     * @see     #lock(long,long,boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
     * @see     #tryLock()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
    public abstract FileLock tryLock(long position, long size, boolean shared)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
     * Attempts to acquire an exclusive lock on this channel's file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
     *
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
  1151
     * <p> An invocation of this method of the form {@code fc.tryLock()}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
     * behaves in exactly the same way as the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
     *     fc.{@link #tryLock(long,long,boolean) tryLock}(0L, Long.MAX_VALUE, false) </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
     * @return  A lock object representing the newly-acquired lock,
32143
394ab6a6658d 8133459: replace <tt> tags (obsolete in html5) in java.nio docs
avstepan
parents: 29986
diff changeset
  1158
     *          or {@code null} if the lock could not be acquired
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
     *          because another program holds an overlapping lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
     * @throws  ClosedChannelException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     *          If this channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
     * @throws  OverlappingFileLockException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
     *          If a lock that overlaps the requested region is already held by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     *          this Java virtual machine, or if another thread is already
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     *          blocked in this method and is attempting to lock an overlapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
     *          region
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
     *          If some other I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
     * @see     #lock()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
     * @see     #lock(long,long,boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
     * @see     #tryLock(long,long,boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
    public final FileLock tryLock() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
        return tryLock(0L, Long.MAX_VALUE, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
}