2003-02-13 23:12:36 +08:00
|
|
|
// natFileChannelImpl.cc
|
|
|
|
|
|
|
|
/* Copyright (C) 2003 Free Software Foundation
|
|
|
|
|
|
|
|
This file is part of libgcj.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <jvm.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
|
2003-03-20 19:14:35 +08:00
|
|
|
#include <gnu/gcj/RawData.h>
|
2003-02-13 23:12:36 +08:00
|
|
|
#include <gnu/java/nio/FileChannelImpl.h>
|
2003-03-02 23:57:13 +08:00
|
|
|
#include <java/io/FileDescriptor.h>
|
2003-02-13 23:12:36 +08:00
|
|
|
#include <java/io/IOException.h>
|
|
|
|
#include <java/nio/channels/FileChannel.h>
|
|
|
|
|
|
|
|
jlong
|
2003-03-02 23:57:13 +08:00
|
|
|
gnu::java::nio::FileChannelImpl::size ()
|
2003-02-13 23:12:36 +08:00
|
|
|
{
|
2003-03-02 23:57:13 +08:00
|
|
|
return fd->length ();
|
2003-02-13 23:12:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
jlong
|
2003-03-02 23:57:13 +08:00
|
|
|
gnu::java::nio::FileChannelImpl::implPosition ()
|
|
|
|
{
|
|
|
|
return fd->getFilePointer ();
|
|
|
|
}
|
|
|
|
|
|
|
|
java::nio::channels::FileChannel*
|
|
|
|
gnu::java::nio::FileChannelImpl::implPosition (jlong newPosition)
|
|
|
|
{
|
|
|
|
fd->seek (newPosition, ::java::io::FileDescriptor::SET, true);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
java::nio::channels::FileChannel*
|
|
|
|
gnu::java::nio::FileChannelImpl::implTruncate (jlong size)
|
|
|
|
{
|
|
|
|
fd->setLength (size);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2003-03-20 19:14:35 +08:00
|
|
|
gnu::gcj::RawData*
|
|
|
|
gnu::java::nio::FileChannelImpl::nio_mmap_file (jlong pos, jlong size, jint /*mode*/)
|
2003-02-13 23:12:36 +08:00
|
|
|
{
|
|
|
|
throw new ::java::io::IOException (JvNewStringUTF ("mmap not implemented"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-03-20 19:14:35 +08:00
|
|
|
gnu::java::nio::FileChannelImpl::nio_unmmap_file (gnu::gcj::RawData* map_address, jint size)
|
2003-02-13 23:12:36 +08:00
|
|
|
{
|
|
|
|
throw new ::java::io::IOException (JvNewStringUTF ("munmap not implemented"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-03-20 19:14:35 +08:00
|
|
|
gnu::java::nio::FileChannelImpl::nio_msync (gnu::gcj::RawData* map_address, jint length)
|
2003-02-13 23:12:36 +08:00
|
|
|
{
|
|
|
|
throw new ::java::io::IOException (JvNewStringUTF ("msync not implemented"));
|
|
|
|
}
|