public static java.nio.channels.FileChannel | getFileChannel(java.lang.Object stream, int fd, int mode)
switch(mode){
case IFileSystem.O_RDONLY:
return new ReadOnlyFileChannel(stream, fd);
case IFileSystem.O_WRONLY:
return new WriteOnlyFileChannel(stream, fd);
case IFileSystem.O_RDWR:
return new ReadWriteFileChannel(stream, fd);
case IFileSystem.O_RDWRSYNC:
return new ReadWriteFileChannel(stream, fd);
case IFileSystem.O_APPEND:
return new WriteOnlyFileChannel(stream, fd, true);
default:
// nio.09=Unknown file channel type: {0}
throw new RuntimeException(Messages.getString("nio.09", mode)); //$NON-NLS-1$
}
|