src/java.base/windows/classes/sun/nio/ch/FileDispatcherImpl.java
author rriggs
Fri, 01 Dec 2017 16:40:08 -0500
changeset 48224 be0df5ab3093
parent 47428 d72d7d55c765
child 49897 117501815bed
permissions -rw-r--r--
8080225: FileInput/OutputStream/FileChannel cleanup should be improved Reviewed-by: mchung, plevart, bpb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
47009
ed227a8f92fb 8186707: Remove libnio FileChannelImpl native close0() function
bpb
parents: 42447
diff changeset
     2
 * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2057
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: 2057
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: 2057
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2057
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2057
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 sun.nio.ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
27937
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
    28
import java.io.FileDescriptor;
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
    29
import java.io.IOException;
32834
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 28303
diff changeset
    30
import jdk.internal.misc.SharedSecrets;
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 28303
diff changeset
    31
import jdk.internal.misc.JavaIOFileDescriptorAccess;
37593
824750ada3d6 8154231: Simplify access to System properties from JDK code
redestad
parents: 32834
diff changeset
    32
import sun.security.action.GetPropertyAction;
47428
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
    33
import java.io.File;
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
    34
import java.nio.CharBuffer;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
27937
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
    36
class FileDispatcherImpl extends FileDispatcher {
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
    37
27263
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 25859
diff changeset
    38
    private static final JavaIOFileDescriptorAccess fdAccess =
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 25859
diff changeset
    39
        SharedSecrets.getJavaIOFileDescriptorAccess();
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 25859
diff changeset
    40
27937
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
    41
    // set to true if fast file transmission (TransmitFile) is enabled
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
    42
    private static final boolean fastFileTransfer;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
27937
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
    44
    FileDispatcherImpl() { }
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 7025
diff changeset
    45
16921
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 7668
diff changeset
    46
    @Override
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 7668
diff changeset
    47
    boolean needsPositionLock() {
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 7668
diff changeset
    48
        return true;
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 7668
diff changeset
    49
    }
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 7668
diff changeset
    50
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    int read(FileDescriptor fd, long address, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        return read0(fd, address, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
16921
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 7668
diff changeset
    57
    int pread(FileDescriptor fd, long address, int len, long position)
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 7668
diff changeset
    58
        throws IOException
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    {
16921
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 7668
diff changeset
    60
        return pread0(fd, address, len, position);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    long readv(FileDescriptor fd, long address, int len) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        return readv0(fd, address, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    int write(FileDescriptor fd, long address, int len) throws IOException {
27263
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 25859
diff changeset
    68
        return write0(fd, address, len, fdAccess.getAppend(fd));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
16921
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 7668
diff changeset
    71
    int pwrite(FileDescriptor fd, long address, int len, long position)
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 7668
diff changeset
    72
        throws IOException
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    {
16921
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 7668
diff changeset
    74
        return pwrite0(fd, address, len, position);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    long writev(FileDescriptor fd, long address, int len) throws IOException {
27263
819f5f87d485 8023173: FileDescriptor should respect append flag
igerasim
parents: 25859
diff changeset
    78
        return writev0(fd, address, len, fdAccess.getAppend(fd));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    81
    int force(FileDescriptor fd, boolean metaData) throws IOException {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    82
        return force0(fd, metaData);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    83
    }
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    84
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    85
    int truncate(FileDescriptor fd, long size) throws IOException {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    86
        return truncate0(fd, size);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    87
    }
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    88
42447
36db92901ae9 8168628: (fc) SIGBUS when extending file size to map it
bpb
parents: 37781
diff changeset
    89
    int allocate(FileDescriptor fd, long size) throws IOException {
36db92901ae9 8168628: (fc) SIGBUS when extending file size to map it
bpb
parents: 37781
diff changeset
    90
        // truncate0() works for extending and truncating file size
36db92901ae9 8168628: (fc) SIGBUS when extending file size to map it
bpb
parents: 37781
diff changeset
    91
        return truncate0(fd, size);
36db92901ae9 8168628: (fc) SIGBUS when extending file size to map it
bpb
parents: 37781
diff changeset
    92
    }
36db92901ae9 8168628: (fc) SIGBUS when extending file size to map it
bpb
parents: 37781
diff changeset
    93
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    94
    long size(FileDescriptor fd) throws IOException {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    95
        return size0(fd);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    96
    }
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    97
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    98
    int lock(FileDescriptor fd, boolean blocking, long pos, long size,
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
    99
             boolean shared) throws IOException
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   100
    {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   101
        return lock0(fd, blocking, pos, size, shared);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   102
    }
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   103
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   104
    void release(FileDescriptor fd, long pos, long size) throws IOException {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   105
        release0(fd, pos, size);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   106
    }
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   107
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    void close(FileDescriptor fd) throws IOException {
47235
9ef10c6e67b8 8187631: Refactor FileDescriptor close implementation
rriggs
parents: 47216
diff changeset
   109
        fdAccess.close(fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
7025
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 5506
diff changeset
   112
    FileDescriptor duplicateForMapping(FileDescriptor fd) throws IOException {
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 5506
diff changeset
   113
        // on Windows we need to keep a handle to the file
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 5506
diff changeset
   114
        FileDescriptor result = new FileDescriptor();
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 5506
diff changeset
   115
        long handle = duplicateHandle(fdAccess.getHandle(fd));
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 5506
diff changeset
   116
        fdAccess.setHandle(result, handle);
48224
be0df5ab3093 8080225: FileInput/OutputStream/FileChannel cleanup should be improved
rriggs
parents: 47428
diff changeset
   117
        fdAccess.registerCleanup(result);
7025
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 5506
diff changeset
   118
        return result;
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 5506
diff changeset
   119
    }
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 5506
diff changeset
   120
27937
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   121
    boolean canTransferToDirectly(java.nio.channels.SelectableChannel sc) {
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   122
        return fastFileTransfer && sc.isBlocking();
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   123
    }
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   124
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   125
    boolean transferToDirectlyNeedsPositionLock() {
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   126
        return true;
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   127
    }
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   128
47428
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   129
    int setDirectIO(FileDescriptor fd, String path)
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   130
    {
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   131
        int result = -1;
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   132
        String filePath = path.substring(0, path.lastIndexOf(File.separator));
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   133
        CharBuffer buffer = CharBuffer.allocate(filePath.length());
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   134
        buffer.put(filePath);
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   135
        try {
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   136
            result = setDirect0(fd, buffer);
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   137
        } catch (IOException e) {
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   138
            throw new UnsupportedOperationException
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   139
                ("Error setting up DirectIO", e);
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   140
        }
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   141
        return result;
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   142
    }
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   143
27937
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   144
    static boolean isFastFileTransferRequested() {
37593
824750ada3d6 8154231: Simplify access to System properties from JDK code
redestad
parents: 32834
diff changeset
   145
        String fileTransferProp = GetPropertyAction
37781
71ed5645f17c 8155775: Re-examine naming of privileged methods to access System properties
redestad
parents: 37593
diff changeset
   146
                .privilegedGetProperty("jdk.nio.enableFastFileTransfer");
27937
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   147
        boolean enable;
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   148
        if ("".equals(fileTransferProp)) {
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   149
            enable = true;
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   150
        } else {
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   151
            enable = Boolean.parseBoolean(fileTransferProp);
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   152
        }
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   153
        return enable;
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   154
    }
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   155
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   156
    static {
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   157
        IOUtil.load();
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   158
        fastFileTransfer = isFastFileTransferRequested();
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   159
    }
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 27263
diff changeset
   160
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    //-- Native methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    static native int read0(FileDescriptor fd, long address, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    static native int pread0(FileDescriptor fd, long address, int len,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                             long position) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    static native long readv0(FileDescriptor fd, long address, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 7025
diff changeset
   172
    static native int write0(FileDescriptor fd, long address, int len, boolean append)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    static native int pwrite0(FileDescriptor fd, long address, int len,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                             long position) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 7025
diff changeset
   178
    static native long writev0(FileDescriptor fd, long address, int len, boolean append)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   181
    static native int force0(FileDescriptor fd, boolean metaData)
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   182
        throws IOException;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   183
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   184
    static native int truncate0(FileDescriptor fd, long size)
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   185
        throws IOException;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   186
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   187
    static native long size0(FileDescriptor fd) throws IOException;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   188
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   189
    static native int lock0(FileDescriptor fd, boolean blocking, long pos,
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   190
                            long size, boolean shared) throws IOException;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   191
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   192
    static native void release0(FileDescriptor fd, long pos, long size)
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   193
        throws IOException;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 2
diff changeset
   194
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    static native void close0(FileDescriptor fd) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
7025
6e002f9a2899 6816049: (bf) MappedByteBuffer.force() method does not flush data correctly
alanb
parents: 5506
diff changeset
   197
    static native long duplicateHandle(long fd) throws IOException;
47428
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   198
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47235
diff changeset
   199
    static native int setDirect0(FileDescriptor fd, CharBuffer buffer) throws IOException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
}