< prev index next >

src/java.base/windows/classes/sun/nio/fs/WindowsChannelFactory.java

Print this page




  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.nio.fs;
  27 
  28 import java.io.FileDescriptor;
  29 import java.io.IOException;
  30 import java.nio.channels.AsynchronousFileChannel;
  31 import java.nio.channels.FileChannel;
  32 import java.nio.file.LinkOption;
  33 import java.nio.file.OpenOption;
  34 import java.nio.file.StandardOpenOption;
  35 import java.util.Set;
  36 
  37 import jdk.internal.misc.JavaIOFileDescriptorAccess;
  38 import jdk.internal.misc.SharedSecrets;
  39 import sun.nio.ch.FileChannelImpl;
  40 import sun.nio.ch.ThreadPool;
  41 import sun.nio.ch.WindowsAsynchronousFileChannelImpl;
  42 
  43 import static sun.nio.fs.WindowsNativeDispatcher.*;
  44 import static sun.nio.fs.WindowsConstants.*;
  45 
  46 /**
  47  * Factory to create FileChannels and AsynchronousFileChannels.
  48  */
  49 
  50 class WindowsChannelFactory {
  51     private static final JavaIOFileDescriptorAccess fdAccess =
  52         SharedSecrets.getJavaIOFileDescriptorAccess();
  53 
  54     private WindowsChannelFactory() { }
  55 
  56     /**
  57      * Do not follow reparse points when opening an existing file. Do not fail
  58      * if the file is a reparse point.




  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.nio.fs;
  27 
  28 import java.io.FileDescriptor;
  29 import java.io.IOException;
  30 import java.nio.channels.AsynchronousFileChannel;
  31 import java.nio.channels.FileChannel;
  32 import java.nio.file.LinkOption;
  33 import java.nio.file.OpenOption;
  34 import java.nio.file.StandardOpenOption;
  35 import java.util.Set;
  36 
  37 import jdk.internal.access.JavaIOFileDescriptorAccess;
  38 import jdk.internal.access.SharedSecrets;
  39 import sun.nio.ch.FileChannelImpl;
  40 import sun.nio.ch.ThreadPool;
  41 import sun.nio.ch.WindowsAsynchronousFileChannelImpl;
  42 
  43 import static sun.nio.fs.WindowsNativeDispatcher.*;
  44 import static sun.nio.fs.WindowsConstants.*;
  45 
  46 /**
  47  * Factory to create FileChannels and AsynchronousFileChannels.
  48  */
  49 
  50 class WindowsChannelFactory {
  51     private static final JavaIOFileDescriptorAccess fdAccess =
  52         SharedSecrets.getJavaIOFileDescriptorAccess();
  53 
  54     private WindowsChannelFactory() { }
  55 
  56     /**
  57      * Do not follow reparse points when opening an existing file. Do not fail
  58      * if the file is a reparse point.


< prev index next >