This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[PATCH] gnu.java.nio.FileChannelImpl - hack - comments appreciated
- From: Michael Koch <konqueror at gmx dot de>
- To: java-patches at gcc dot gnu dot org
- Date: Fri, 28 Feb 2003 13:21:24 +0100
- Subject: [PATCH] gnu.java.nio.FileChannelImpl - hack - comments appreciated
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi list,
I made a little patch to make gnu.java.nio.FileChannelImpl more
working in trunk. Unfortunately it uses an IMO ugly hack:
It uses native methods to access the package private methods from
java.io.FileDescriptor. Is this allowed ? Should it be avoided ? What
should be done ?
Michael
- --
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)
iD8DBQE+X1RGWSOgCCdjSDsRAgjTAKCFGFQsVq+O/i2FvmPFqTYTs51d9ACggBd4
hzly2Gv0i5a+2WTiOvADm1Q=
=je+l
-----END PGP SIGNATURE-----
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.1735
diff -u -r1.1735 ChangeLog
--- ChangeLog 27 Feb 2003 10:52:39 -0000 1.1735
+++ ChangeLog 28 Feb 2003 12:15:20 -0000
@@ -1,3 +1,26 @@
+2003-02-28 Michael Koch <konqueror at gmx dot de>
+
+ * gnu/java/nio/FileChannelImpl.java
+ (fd): Type FileDescriptor instead of int.
+ (lengthInternal): Removed.
+ (FileChannelImpl): Fixed arguments, check type of file object.
+ (size): Made it native.
+ (implPosition): New native method.
+ (implTruncate): New native method.
+ (position): Implemented.
+ (truncate): Implemented.
+ (nio_mmap_file): Changed arguments.
+ (nio_munmap_file): Changed arguments.
+ (nio_msync): Changed arguments.
+ * gnu/java/nio/natFileChannelImpl.cc
+ (lengthInternal): Removed.
+ (size): New method.
+ (implPosition): New method.
+ (implTruncate): New method.
+ (nio_mmap_file): Changed arguments.
+ (nio_munmap_file): Changed arguments.
+ (nio_msync): Changed arguments.
+
2003-02-27 Michael Koch <konqueror at gmx dot de>
* java/beans/Beans.java,
Index: gnu/java/nio/FileChannelImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/java/nio/FileChannelImpl.java,v
retrieving revision 1.2
diff -u -r1.2 FileChannelImpl.java
--- gnu/java/nio/FileChannelImpl.java 13 Feb 2003 15:12:36 -0000 1.2
+++ gnu/java/nio/FileChannelImpl.java 28 Feb 2003 12:15:20 -0000
@@ -38,6 +38,7 @@
package gnu.java.nio;
import java.io.EOFException;
+import java.io.FileDescriptor;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
@@ -64,41 +65,41 @@
{
public long address;
public int length;
- public int fd;
+ public FileDescriptor fd;
public MappedByteBuffer buf;
public Object file_obj; // just to keep it live...
- /**
- * This method came from java.io.RandomAccessFile
- * It is private there so we will repeat it here.
- */
- private native long lengthInternal (int native_fd) throws IOException;
-
- public FileChannelImpl (int fd, Object obj)
+ public FileChannelImpl (FileDescriptor fd, boolean write, Object obj)
{
+ if (!(obj instanceof RandomAccessFile)
+ && !(obj instanceof FileInputStream)
+ && !(obj instanceof FileOutputStream))
+ throw new InternalError ();
+
this.fd = fd;
this.file_obj = obj;
}
- public long size () throws IOException
- {
- if (!isOpen ())
- throw new ClosedChannelException ();
+ private native long implPosition ();
+ private native FileChannel implPosition (long newPosition);
+ private native FileChannel implTruncate (long size);
+
+ private native long nio_mmap_file (long pos, long size, int mode);
+ private native void nio_unmmap_file (long address, int size);
+ private native void nio_msync (long address, int length);
- return lengthInternal (fd);
- }
+ public native long size () throws IOException;
protected void implCloseChannel() throws IOException
{
+ // FIXME
+
if (address != 0)
{
- nio_unmmap_file (fd, address, (int) length);
+ //nio_unmmap_file (fd, address, (int) length);
address = 0;
}
- // FIXME
- fd = 0;
-
if (file_obj instanceof RandomAccessFile)
{
RandomAccessFile o = (RandomAccessFile) file_obj;
@@ -121,14 +122,14 @@
int s = (int)size();
if (buf == null)
- {
+ {
throw new EOFException("file not mapped");
- }
+ }
for (int i=0; i<s; i++)
- {
+ {
dst.put( buf.get() );
- }
+ }
return s;
}
@@ -165,15 +166,15 @@
int w = 0;
if (buf == null)
- {
+ {
throw new EOFException ("file not mapped");
- }
+ }
while (src.hasRemaining ())
- {
+ {
buf.put (src.get ());
w++;
- }
+ }
return w;
}
@@ -195,14 +196,14 @@
public long write(ByteBuffer[] srcs, int offset, int length)
throws IOException
{
- long res = 0;
+ long result = 0;
for (int i = offset;i < offset + length;i++)
- {
- res += write (srcs[i]);
- }
+ {
+ result += write (srcs[i]);
+ }
- return res;
+ return result;
}
public MappedByteBuffer map (FileChannel.MapMode mode, long position,
@@ -252,7 +253,7 @@
// FIXME: What to do with metaData ?
- nio_msync (fd, address, length);
+ nio_msync (address, length);
}
public long transferTo (long position, long count, WritableByteChannel target)
@@ -322,7 +323,7 @@
if (!isOpen ())
throw new ClosedChannelException ();
- throw new Error ("not implemented");
+ return implPosition ();
}
public FileChannel position (long newPosition)
@@ -334,7 +335,7 @@
if (!isOpen ())
throw new ClosedChannelException ();
- throw new Error ("not implemented");
+ return implPosition (newPosition);
}
public FileChannel truncate (long size)
@@ -348,10 +349,6 @@
// FIXME: check for NonWritableChannelException
- throw new Error ("not implemented");
+ return implTruncate (size);
}
-
- private static native long nio_mmap_file (int fd, long pos, int size, int mode);
- private static native void nio_unmmap_file (int fd, long address, int size);
- private static native void nio_msync (int fd, long address, int length);
}
Index: gnu/java/nio/natFileChannelImpl.cc
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/java/nio/natFileChannelImpl.cc,v
retrieving revision 1.1
diff -u -r1.1 natFileChannelImpl.cc
--- gnu/java/nio/natFileChannelImpl.cc 13 Feb 2003 15:12:36 -0000 1.1
+++ gnu/java/nio/natFileChannelImpl.cc 28 Feb 2003 12:15:20 -0000
@@ -25,29 +25,50 @@
#endif
#include <gnu/java/nio/FileChannelImpl.h>
+#include <java/io/FileDescriptor.h>
#include <java/io/IOException.h>
#include <java/nio/channels/FileChannel.h>
jlong
-gnu::java::nio::FileChannelImpl::lengthInternal (jint fd)
+gnu::java::nio::FileChannelImpl::size ()
{
- throw new ::java::io::IOException (JvNewStringUTF ("lengthInternal not implemented"));
+ return fd->length ();
}
jlong
-gnu::java::nio::FileChannelImpl::nio_mmap_file (jint, jlong, jint, jint)
+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;
+}
+
+jlong
+gnu::java::nio::FileChannelImpl::nio_mmap_file (jlong, jlong, jint)
{
throw new ::java::io::IOException (JvNewStringUTF ("mmap not implemented"));
}
void
-gnu::java::nio::FileChannelImpl::nio_unmmap_file (jint, jlong, jint)
+gnu::java::nio::FileChannelImpl::nio_unmmap_file (jlong, jint)
{
throw new ::java::io::IOException (JvNewStringUTF ("munmap not implemented"));
}
void
-gnu::java::nio::FileChannelImpl::nio_msync (jint, jlong, jint)
+gnu::java::nio::FileChannelImpl::nio_msync (jlong, jint)
{
throw new ::java::io::IOException (JvNewStringUTF ("msync not implemented"));
}