jdk/src/share/classes/sun/nio/ch/FileChannelImpl.java
author alanb
Sun, 15 Feb 2009 12:25:54 +0000
changeset 2057 3acf8e5e2ca0
parent 1821 fe2556ead537
child 2441 228c040622a2
permissions -rw-r--r--
6781363: New I/O: Update socket-channel API to jsr203/nio2-b99 4313887: New I/O: Improved filesystem interface 4607272: New I/O: Support asynchronous I/O Reviewed-by: sherman, chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
     2
 * Copyright 2000-2009 Sun Microsystems, Inc.  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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.FileDescriptor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.nio.ByteBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.nio.MappedByteBuffer;
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
    32
import java.nio.BufferPoolMXBean;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.nio.channels.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.ArrayList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.util.List;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.util.Iterator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.lang.reflect.Field;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.security.AccessController;
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
    39
import javax.management.ObjectName;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
    40
import javax.management.MalformedObjectNameException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import sun.misc.Cleaner;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import sun.security.action.GetPropertyAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
public class FileChannelImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    extends FileChannel
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    // Used to make native read and write calls
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
    49
    private static final FileDispatcher nd;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    // Memory allocation size for mapping buffers
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 2
diff changeset
    52
    private static final long allocationGranularity;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    // File descriptor
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 2
diff changeset
    55
    private final FileDescriptor fd;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    // File access mode (immutable)
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 2
diff changeset
    58
    private final boolean writable;
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 2
diff changeset
    59
    private final boolean readable;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    // Required to prevent finalization of creating stream (immutable)
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 2
diff changeset
    62
    private final Object parent;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    // Thread-safe set of IDs of native threads, for signalling
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 2
diff changeset
    65
    private final NativeThreadSet threads = new NativeThreadSet(2);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    // Lock for operations involving position and size
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 2
diff changeset
    68
    private final Object positionLock = new Object();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    private FileChannelImpl(FileDescriptor fd, boolean readable,
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 2
diff changeset
    71
                            boolean writable, Object parent)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        this.fd = fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        this.readable = readable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        this.writable = writable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        this.parent = parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    // Invoked by getChannel() methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    // of java.io.File{Input,Output}Stream and RandomAccessFile
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    public static FileChannel open(FileDescriptor fd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                                   boolean readable, boolean writable,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
                                   Object parent)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    {
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 2
diff changeset
    86
        return new FileChannelImpl(fd, readable, writable, parent);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    private void ensureOpen() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            throw new ClosedChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    // -- Standard channel operations --
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    protected void implCloseChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        // Invalidate and release any locks that we still hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        if (fileLockTable != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            fileLockTable.removeAll( new FileLockTable.Releaser() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                public void release(FileLock fl) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                    ((FileLockImpl)fl).invalidate();
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   103
                    nd.release(fd, fl.position(), fl.size());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   108
        nd.preClose(fd);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   109
        threads.signalAndWait();
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   110
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        if (parent != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            // Close the fd via the parent stream's close method.  The parent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            // will reinvoke our close method, which is defined in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            // superclass AbstractInterruptibleChannel, but the isOpen logic in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            // that method will prevent this method from being reinvoked.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            //
47
c8f0e41aea68 6631352: File{OutputStream,Writer} should implement atomic append mode using FILE_APPEND_DATA (win)
martin
parents: 2
diff changeset
   118
            ((java.io.Closeable)parent).close();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            nd.close(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    public int read(ByteBuffer dst) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        if (!readable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            throw new NonReadableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        synchronized (positionLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            int n = 0;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   131
            int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
                if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
                    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
                do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
                    n = IOUtil.read(fd, dst, -1, nd, positionLock);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
                } while ((n == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
                return IOStatus.normalize(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
                end(n > 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
                assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    private long read0(ByteBuffer[] dsts) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        if (!readable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            throw new NonReadableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        synchronized (positionLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            long n = 0;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   154
            int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                    n = IOUtil.read(fd, dsts, nd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                } while ((n == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                return IOStatus.normalize(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                end(n > 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    public long read(ByteBuffer[] dsts, int offset, int length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
           throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        // ## Fix IOUtil.write so that we can avoid this array copy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        return read0(Util.subsequence(dsts, offset, length));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    public int write(ByteBuffer src) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        if (!writable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            throw new NonWritableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        synchronized (positionLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            int n = 0;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   186
            int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                    n = IOUtil.write(fd, src, -1, nd, positionLock);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
                } while ((n == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                return IOStatus.normalize(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
                threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
                end(n > 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
                assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    private long write0(ByteBuffer[] srcs) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        if (!writable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            throw new NonWritableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        synchronized (positionLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
            long n = 0;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   209
            int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
                if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                    n = IOUtil.write(fd, srcs, nd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                } while ((n == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
                return IOStatus.normalize(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
                threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
                end(n > 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    public long write(ByteBuffer[] srcs, int offset, int length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        if ((offset < 0) || (length < 0) || (offset > srcs.length - length))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
           throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        // ## Fix IOUtil.write so that we can avoid this array copy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        return write0(Util.subsequence(srcs, offset, length));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    // -- Other operations --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    public long position() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        synchronized (positionLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            long p = -1;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   242
            int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
                    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
                    p = position0(fd, -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                } while ((p == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                return IOStatus.normalize(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
                threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
                end(p > -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                assert IOStatus.check(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    public FileChannel position(long newPosition) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        if (newPosition < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        synchronized (positionLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
            long p = -1;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   265
            int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
                if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
                do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
                    p  = position0(fd, newPosition);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                } while ((p == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
                return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                end(p > -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                assert IOStatus.check(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    public long size() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        synchronized (positionLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
            long s = -1;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   286
            int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
                if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                    return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                do {
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   292
                    s = nd.size(fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                } while ((s == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                return IOStatus.normalize(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                end(s > -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                assert IOStatus.check(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    public FileChannel truncate(long size) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        if (size < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        if (size > size())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        if (!writable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            throw new NonWritableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        synchronized (positionLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
            int rv = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
            long p = -1;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   314
            int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
                if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
                // get current position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
                do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
                    p = position0(fd, -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
                } while ((p == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
                if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
                assert p >= 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                // truncate file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
                do {
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   330
                    rv = nd.truncate(fd, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
                } while ((rv == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
                // set position to size if greater than size
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                if (p > size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
                    p = size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
                do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                    rv = (int)position0(fd, p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                } while ((rv == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
                return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                end(rv > -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
                assert IOStatus.check(rv);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    public void force(boolean metaData) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
        int rv = -1;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   353
        int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            do {
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   359
                rv = nd.force(fd, metaData);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            } while ((rv == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
            threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
            end(rv > -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
            assert IOStatus.check(rv);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    // Assume at first that the underlying kernel supports sendfile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    // set this to false if we find out later that it doesn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    private static volatile boolean transferSupported = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    // Assume that the underlying kernel sendfile() will work if the target
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    // fd is a pipe; set this to false if we find out later that it doesn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    private static volatile boolean pipeSupported = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    // Assume that the underlying kernel sendfile() will work if the target
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    // fd is a file; set this to false if we find out later that it doesn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    private static volatile boolean fileSupported = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    private long transferToDirectly(long position, int icount,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
                                    WritableByteChannel target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        if (!transferSupported)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
            return IOStatus.UNSUPPORTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        FileDescriptor targetFD = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        if (target instanceof FileChannelImpl) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
            if (!fileSupported)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
                return IOStatus.UNSUPPORTED_CASE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
            targetFD = ((FileChannelImpl)target).fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        } else if (target instanceof SelChImpl) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
            // Direct transfer to pipe causes EINVAL on some configurations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
            if ((target instanceof SinkChannelImpl) && !pipeSupported)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
                return IOStatus.UNSUPPORTED_CASE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
            targetFD = ((SelChImpl)target).getFD();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        if (targetFD == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            return IOStatus.UNSUPPORTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        int thisFDVal = IOUtil.fdVal(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        int targetFDVal = IOUtil.fdVal(targetFD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        if (thisFDVal == targetFDVal) // Not supported on some configurations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
            return IOStatus.UNSUPPORTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        long n = -1;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   409
        int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
            begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                n = transferTo0(thisFDVal, position, icount, targetFDVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
            } while ((n == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            if (n == IOStatus.UNSUPPORTED_CASE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
                if (target instanceof SinkChannelImpl)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
                    pipeSupported = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                if (target instanceof FileChannelImpl)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
                    fileSupported = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
                return IOStatus.UNSUPPORTED_CASE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
            if (n == IOStatus.UNSUPPORTED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
                // Don't bother trying again
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
                transferSupported = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
                return IOStatus.UNSUPPORTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
            return IOStatus.normalize(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
            threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
            end (n > -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    private long transferToTrustedChannel(long position, int icount,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
                                          WritableByteChannel target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        if (  !((target instanceof FileChannelImpl)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                || (target instanceof SelChImpl)))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
            return IOStatus.UNSUPPORTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        // Trusted target: Use a mapped buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        MappedByteBuffer dbb = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
            dbb = map(MapMode.READ_ONLY, position, icount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            // ## Bug: Closing this channel will not terminate the write
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
            return target.write(dbb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
            if (dbb != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
                unmap(dbb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    private long transferToArbitraryChannel(long position, int icount,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
                                            WritableByteChannel target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        // Untrusted target: Use a newly-erased buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        int c = Math.min(icount, TRANSFER_SIZE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        ByteBuffer bb = Util.getTemporaryDirectBuffer(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        long tw = 0;                    // Total bytes written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        long pos = position;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
            Util.erase(bb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
            while (tw < icount) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
                bb.limit(Math.min((int)(icount - tw), TRANSFER_SIZE));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
                int nr = read(bb, pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
                if (nr <= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
                bb.flip();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
                // ## Bug: Will block writing target if this channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
                // ##      is asynchronously closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
                int nw = target.write(bb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
                tw += nw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
                if (nw != nr)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
                pos += nw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
                bb.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
            return tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        } catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
            if (tw > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
                return tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
            throw x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
            Util.releaseTemporaryDirectBuffer(bb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    public long transferTo(long position, long count,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
                           WritableByteChannel target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        if (!target.isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
            throw new ClosedChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        if (!readable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
            throw new NonReadableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        if (target instanceof FileChannelImpl &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
            !((FileChannelImpl)target).writable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
            throw new NonWritableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        if ((position < 0) || (count < 0))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        long sz = size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        if (position > sz)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        int icount = (int)Math.min(count, Integer.MAX_VALUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        if ((sz - position) < icount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
            icount = (int)(sz - position);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
        long n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        // Attempt a direct transfer, if the kernel supports it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        if ((n = transferToDirectly(position, icount, target)) >= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
            return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        // Attempt a mapped transfer, but only to trusted channel types
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        if ((n = transferToTrustedChannel(position, icount, target)) >= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
            return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
        // Slow path for untrusted targets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        return transferToArbitraryChannel(position, icount, target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    private long transferFromFileChannel(FileChannelImpl src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                                         long position, long count)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        // Note we could loop here to accumulate more at once
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
        synchronized (src.positionLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
            long p = src.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
            int icount = (int)Math.min(Math.min(count, Integer.MAX_VALUE),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
                                       src.size() - p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            // ## Bug: Closing this channel will not terminate the write
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            MappedByteBuffer bb = src.map(MapMode.READ_ONLY, p, icount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
                long n = write(bb, position);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                src.position(p + n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
                unmap(bb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    private static final int TRANSFER_SIZE = 8192;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    private long transferFromArbitraryChannel(ReadableByteChannel src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
                                              long position, long count)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        // Untrusted target: Use a newly-erased buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        int c = (int)Math.min(count, TRANSFER_SIZE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        ByteBuffer bb = Util.getTemporaryDirectBuffer(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        long tw = 0;                    // Total bytes written
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        long pos = position;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
            Util.erase(bb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
            while (tw < count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
                bb.limit((int)Math.min((count - tw), (long)TRANSFER_SIZE));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
                // ## Bug: Will block reading src if this channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                // ##      is asynchronously closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                int nr = src.read(bb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                if (nr <= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
                bb.flip();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                int nw = write(bb, pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
                tw += nw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                if (nw != nr)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
                pos += nw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
                bb.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
            return tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        } catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
            if (tw > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
                return tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
            throw x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
            Util.releaseTemporaryDirectBuffer(bb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    public long transferFrom(ReadableByteChannel src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
                             long position, long count)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        if (!src.isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
            throw new ClosedChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        if (!writable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
            throw new NonWritableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        if ((position < 0) || (count < 0))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        if (position > size())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
        if (src instanceof FileChannelImpl)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
           return transferFromFileChannel((FileChannelImpl)src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
                                          position, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        return transferFromArbitraryChannel(src, position, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    public int read(ByteBuffer dst, long position) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        if (dst == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        if (position < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
            throw new IllegalArgumentException("Negative position");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
        if (!readable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
            throw new NonReadableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        int n = 0;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   615
        int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                n = IOUtil.read(fd, dst, position, nd, positionLock);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
            } while ((n == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
            return IOStatus.normalize(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
            threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
            end(n > 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
            assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
    public int write(ByteBuffer src, long position) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
        if (src == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
        if (position < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
            throw new IllegalArgumentException("Negative position");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
        if (!writable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
            throw new NonWritableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
        int n = 0;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   640
        int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
            begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
            do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
                n = IOUtil.write(fd, src, position, nd, positionLock);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
            } while ((n == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
            return IOStatus.normalize(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
            threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
            end(n > 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
            assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
    // -- Memory-mapped buffers --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
    private static class Unmapper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        implements Runnable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
    {
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   662
        // keep track of mapped buffer usage
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   663
        static volatile int count;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   664
        static volatile long totalSize;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   665
        static volatile long totalCapacity;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        private long address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        private long size;
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   669
        private int cap;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   671
        private Unmapper(long address, long size, int cap) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
            assert (address != 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
            this.address = address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
            this.size = size;
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   675
            this.cap = cap;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   676
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   677
            synchronized (Unmapper.class) {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   678
                count++;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   679
                totalSize += size;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   680
                totalCapacity += cap;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   681
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
        public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
            if (address == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
            unmap0(address, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
            address = 0;
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   689
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   690
            synchronized (Unmapper.class) {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   691
                count--;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   692
                totalSize -= size;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   693
                totalCapacity -= cap;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   694
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
    private static void unmap(MappedByteBuffer bb) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        Cleaner cl = ((DirectBuffer)bb).cleaner();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        if (cl != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
            cl.clean();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
    private static final int MAP_RO = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
    private static final int MAP_RW = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
    private static final int MAP_PV = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
    public MappedByteBuffer map(MapMode mode, long position, long size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
        if (position < 0L)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
            throw new IllegalArgumentException("Negative position");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        if (size < 0L)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
            throw new IllegalArgumentException("Negative size");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        if (position + size < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
            throw new IllegalArgumentException("Position + size overflow");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        if (size > Integer.MAX_VALUE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
            throw new IllegalArgumentException("Size exceeds Integer.MAX_VALUE");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        int imode = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        if (mode == MapMode.READ_ONLY)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
            imode = MAP_RO;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
        else if (mode == MapMode.READ_WRITE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
            imode = MAP_RW;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        else if (mode == MapMode.PRIVATE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
            imode = MAP_PV;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
        assert (imode >= 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        if ((mode != MapMode.READ_ONLY) && !writable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
            throw new NonWritableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
        if (!readable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
            throw new NonReadableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
        long addr = -1;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   734
        int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
            begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
            if (size() < position + size) { // Extend file size
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
                if (!writable) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
                    throw new IOException("Channel not open for writing " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
                        "- cannot extend file to required size");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
                int rv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
                do {
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   746
                    rv = nd.truncate(fd, position + size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
                } while ((rv == IOStatus.INTERRUPTED) && isOpen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
            if (size == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
                addr = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
                if ((!writable) || (imode == MAP_RO))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
                    return Util.newMappedByteBufferR(0, 0, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
                    return Util.newMappedByteBuffer(0, 0, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
            int pagePosition = (int)(position % allocationGranularity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
            long mapPosition = position - pagePosition;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
            long mapSize = size + pagePosition;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
                // If no exception was thrown from map0, the address is valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
                addr = map0(imode, mapPosition, mapSize);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
            } catch (OutOfMemoryError x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
                // An OutOfMemoryError may indicate that we've exhausted memory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
                // so force gc and re-attempt map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
                System.gc();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
                    Thread.sleep(100);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
                } catch (InterruptedException y) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
                    Thread.currentThread().interrupt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
                    addr = map0(imode, mapPosition, mapSize);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
                } catch (OutOfMemoryError y) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
                    // After a second OOME, fail
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
                    throw new IOException("Map failed", y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
            assert (IOStatus.checkAll(addr));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
            assert (addr % allocationGranularity == 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
            int isize = (int)size;
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   783
            Unmapper um = new Unmapper(addr, size + pagePosition, isize);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
            if ((!writable) || (imode == MAP_RO))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
                return Util.newMappedByteBufferR(isize, addr + pagePosition, um);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
                return Util.newMappedByteBuffer(isize, addr + pagePosition, um);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
            threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
            end(IOStatus.checkAll(addr));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   794
    /**
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   795
     * Returns the management interface for mapped buffers
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   796
     */
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   797
    public static BufferPoolMXBean getMappedBufferPoolMXBean() {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   798
        return LazyInitialization.mappedBufferPoolMXBean;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   799
    }
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   800
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   801
    // Lazy initialization of management interface
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   802
    private static class LazyInitialization {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   803
        static final BufferPoolMXBean mappedBufferPoolMXBean = mappedBufferPoolMXBean();
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   804
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   805
        private static BufferPoolMXBean mappedBufferPoolMXBean() {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   806
            final String pool = "mapped";
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   807
            final ObjectName obj;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   808
            try {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   809
                obj = new ObjectName("java.nio:type=BufferPool,name=" + pool);
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   810
            } catch (MalformedObjectNameException x) {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   811
                throw new AssertionError(x);
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   812
            }
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   813
            return new BufferPoolMXBean() {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   814
                @Override
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   815
                public ObjectName getObjectName() {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   816
                    return obj;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   817
                }
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   818
                @Override
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   819
                public String getName() {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   820
                    return pool;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   821
                }
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   822
                @Override
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   823
                public long getCount() {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   824
                    return Unmapper.count;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   825
                }
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   826
                @Override
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   827
                public long getTotalCapacity() {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   828
                    return Unmapper.totalCapacity;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   829
                }
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   830
                @Override
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   831
                public long getMemoryUsed() {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   832
                    return Unmapper.totalSize;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   833
                }
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   834
            };
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   835
        }
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 715
diff changeset
   836
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
    // -- Locks --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   840
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
    // keeps track of locks on this file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
    private volatile FileLockTable fileLockTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
    // indicates if file locks are maintained system-wide (as per spec)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
    private static boolean isSharedFileLockTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
    // indicates if the disableSystemWideOverlappingFileLockCheck property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
    // has been checked
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
    private static volatile boolean propertyChecked;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
    // The lock list in J2SE 1.4/5.0 was local to each FileChannel instance so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
    // the overlap check wasn't system wide when there were multiple channels to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
    // the same file. This property is used to get 1.4/5.0 behavior if desired.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
    private static boolean isSharedFileLockTable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
        if (!propertyChecked) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
            synchronized (FileChannelImpl.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
                if (!propertyChecked) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
                    String value = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
                        new GetPropertyAction(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
                            "sun.nio.ch.disableSystemWideOverlappingFileLockCheck"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
                    isSharedFileLockTable = ((value == null) || value.equals("false"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
                    propertyChecked = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
        return isSharedFileLockTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   870
    private FileLockTable fileLockTable() throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
        if (fileLockTable == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
                if (fileLockTable == null) {
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   874
                    if (isSharedFileLockTable()) {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   875
                        int ti = threads.add();
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   876
                        try {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   877
                            ensureOpen();
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   878
                            fileLockTable = FileLockTable.newSharedFileLockTable(this, fd);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   879
                        } finally {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   880
                            threads.remove(ti);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   881
                        }
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   882
                    } else {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   883
                        fileLockTable = new SimpleFileLockTable();
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   884
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
        return fileLockTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
    public FileLock lock(long position, long size, boolean shared)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
        if (shared && !readable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
            throw new NonReadableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
        if (!shared && !writable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
            throw new NonWritableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
        FileLockImpl fli = new FileLockImpl(this, position, size, shared);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
        FileLockTable flt = fileLockTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
        flt.add(fli);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
        boolean i = true;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   903
        int ti = threads.add();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
            begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
                return null;
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   908
            int result = nd.lock(fd, true, position, size, shared);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   909
            if (result == FileDispatcher.RET_EX_LOCK) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
                assert shared;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
                FileLockImpl fli2 = new FileLockImpl(this, position, size,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
                                                     false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
                flt.replace(fli, fli2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
                return fli2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
            }
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   916
            if (result == FileDispatcher.INTERRUPTED || result == FileDispatcher.NO_LOCK) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
                flt.remove(fli);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
                i = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
            flt.remove(fli);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
            threads.remove(ti);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
                end(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
            } catch (ClosedByInterruptException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
                throw new FileLockInterruptionException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
        return fli;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
    public FileLock tryLock(long position, long size, boolean shared)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
        if (shared && !readable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
            throw new NonReadableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
        if (!shared && !writable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
            throw new NonWritableChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
        FileLockImpl fli = new FileLockImpl(this, position, size, shared);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
        FileLockTable flt = fileLockTable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        flt.add(fli);
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   945
        int result;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   946
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   947
        int ti = threads.add();
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   948
        try {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   949
            try {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   950
                ensureOpen();
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   951
                result = nd.lock(fd, false, position, size, shared);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   952
            } catch (IOException e) {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   953
                flt.remove(fli);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   954
                throw e;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   955
            }
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   956
            if (result == FileDispatcher.NO_LOCK) {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   957
                flt.remove(fli);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   958
                return null;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   959
            }
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   960
            if (result == FileDispatcher.RET_EX_LOCK) {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   961
                assert shared;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   962
                FileLockImpl fli2 = new FileLockImpl(this, position, size,
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   963
                                                     false);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   964
                flt.replace(fli, fli2);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   965
                return fli2;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   966
            }
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   967
            return fli;
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   968
        } finally {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   969
            threads.remove(ti);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
    void release(FileLockImpl fli) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
        ensureOpen();
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   975
        int ti = threads.add();
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   976
        try {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   977
            ensureOpen();
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   978
            nd.release(fd, fli.position(), fli.size());
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   979
        } finally {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   980
            threads.remove(ti);
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   981
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
        assert fileLockTable != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
        fileLockTable.remove(fli);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   986
    // -- File lock support --
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     * A simple file lock table that maintains a list of FileLocks obtained by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
     * FileChannel. Use to get 1.4/5.0 behaviour.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
     */
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
   992
    private static class SimpleFileLockTable extends FileLockTable {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
        // synchronize on list for access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
        private List<FileLock> lockList = new ArrayList<FileLock>(2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        public SimpleFileLockTable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
        private void checkList(long position, long size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
            throws OverlappingFileLockException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
            assert Thread.holdsLock(lockList);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
            for (FileLock fl: lockList) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
                if (fl.overlaps(position, size)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
                    throw new OverlappingFileLockException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
        public void add(FileLock fl) throws OverlappingFileLockException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
            synchronized (lockList) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
                checkList(fl.position(), fl.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
                lockList.add(fl);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
        public void remove(FileLock fl) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
            synchronized (lockList) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
                lockList.remove(fl);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
        public void removeAll(Releaser releaser) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
            synchronized(lockList) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
                Iterator<FileLock> i = lockList.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
                while (i.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
                    FileLock fl = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
                    releaser.release(fl);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
                    i.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
        public void replace(FileLock fl1, FileLock fl2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
            synchronized (lockList) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
                lockList.remove(fl1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
                lockList.add(fl2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
    // -- Native methods --
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
    // Creates a new mapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
    private native long map0(int prot, long position, long length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
    // Removes an existing mapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
    private static native int unmap0(long address, long length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
    // Transfers from src to dst, or returns -2 if kernel can't do that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
    private native long transferTo0(int src, long position, long count, int dst);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
    // Sets or reports this file's position
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
    // If offset is -1, the current position is returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
    // otherwise the position is set to offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
    private native long position0(FileDescriptor fd, long offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
    // Caches fieldIDs
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
    private static native long initIDs();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
        Util.load();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
        allocationGranularity = initIDs();
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1821
diff changeset
  1065
        nd = new FileDispatcherImpl();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
}