aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/nio
diff options
context:
space:
mode:
authorPer Bothner <bothner@gcc.gnu.org>2004-02-29 11:12:45 -0800
committerPer Bothner <bothner@gcc.gnu.org>2004-02-29 11:12:45 -0800
commitd199feb74801bcbcf2306ae4f40866814f1099dc (patch)
tree6155bc36cc7e756e68cb50c120caf6905518447d /libjava/java/nio
parentef3916ef8e8a15b800e293ed2555b1b60c9f96f3 (diff)
downloadgcc-d199feb74801bcbcf2306ae4f40866814f1099dc.zip
gcc-d199feb74801bcbcf2306ae4f40866814f1099dc.tar.gz
gcc-d199feb74801bcbcf2306ae4f40866814f1099dc.tar.bz2
MappedByteBuffer.java: (forceImpl...
* java/nio/MappedByteBuffer.java: (forceImpl, isLoadedImpl, loadImpl, unmapImpl): New dummy methods, to be overridden by subclass. (finalize, isLoaded, load, force): New methods. * java/nio/MappedByteBufferImpl.java: More-or-less rewrite. Now works, at least for read mapping. From-SVN: r78662
Diffstat (limited to 'libjava/java/nio')
-rw-r--r--libjava/java/nio/MappedByteBuffer.java30
-rw-r--r--libjava/java/nio/MappedByteBufferImpl.java120
2 files changed, 103 insertions, 47 deletions
diff --git a/libjava/java/nio/MappedByteBuffer.java b/libjava/java/nio/MappedByteBuffer.java
index 8f4b872..29b0453 100644
--- a/libjava/java/nio/MappedByteBuffer.java
+++ b/libjava/java/nio/MappedByteBuffer.java
@@ -44,28 +44,46 @@ package java.nio;
*/
public abstract class MappedByteBuffer extends ByteBuffer
{
- private boolean loaded = false;
-
MappedByteBuffer (int capacity, int limit, int position, int mark)
{
super (capacity, limit, position, mark);
}
+ void forceImpl()
+ {
+ }
+
public final MappedByteBuffer force ()
{
- // FIXME: Flush to disk here.
+ forceImpl();
return this;
}
+ boolean isLoadedImpl()
+ {
+ load();
+ return true;
+ }
+
public final boolean isLoaded ()
{
- return loaded;
+ return isLoadedImpl();
}
+ void loadImpl()
+ {
+ }
+
public final MappedByteBuffer load ()
{
- // FIXME: Try to load all pages into memory.
- loaded = true;
+ loadImpl();
return this;
}
+
+ void unmapImpl ()
+ {
+ forceImpl();
+ }
+
+ public void finalize () { unmapImpl(); }
}
diff --git a/libjava/java/nio/MappedByteBufferImpl.java b/libjava/java/nio/MappedByteBufferImpl.java
index 5b02ef3..52996c2 100644
--- a/libjava/java/nio/MappedByteBufferImpl.java
+++ b/libjava/java/nio/MappedByteBufferImpl.java
@@ -39,73 +39,80 @@ exception statement from your version. */
package java.nio;
import java.io.IOException;
-import java.nio.channels.FileChannelImpl;
+import gnu.java.nio.channels.FileChannelImpl;
import gnu.gcj.RawData;
-public class MappedByteBufferImpl extends MappedByteBuffer
+class MappedByteBufferImpl extends MappedByteBuffer
{
boolean readOnly;
- RawData map_address;
- public FileChannelImpl ch;
+ RawData address;
+
+ /** Posix uses this for the pointer returned by mmap;
+ * Win32 uses it for the pointer returned by MapViewOfFile. */
+ public RawData implPtr;
+ /** Posix uses this for the actual length passed to mmap;
+ * Win32 uses it for the pointer returned by CreateFileMapping. */
+ public long implLen;
- public MappedByteBufferImpl (FileChannelImpl ch) throws IOException
+ public MappedByteBufferImpl (RawData address, int size, boolean readOnly)
+ throws IOException
{
- super ((int) ch.size (), (int) ch.size (), 0, -1);
-
- this.ch = ch;
- map_address = ch.map_address;
- long si = ch.size () / 1;
- limit ((int) si);
- }
-
- public MappedByteBufferImpl (FileChannelImpl ch, int offset, int capacity, int limit, int position, int mark, boolean readOnly)
- {
- super (capacity, limit, position, mark);
-
- this.ch = ch;
- this.array_offset = offset;
+ super(size, size, 0, -1);
+ this.address = address;
this.readOnly = readOnly;
}
-
+
public boolean isReadOnly ()
{
return readOnly;
}
- public static byte getImpl (FileChannelImpl ch, int index,
- int limit, RawData map_address)
- {
- throw new Error ("Not implemented");
- }
-
- public static void putImpl (FileChannelImpl ch, int index,
- int limit, byte value, RawData map_address)
- {
- throw new Error ("Not implemented");
- }
-
public byte get ()
{
- byte result = get (position());
- position (position() + 1);
+ int pos = position();
+ if (pos >= limit())
+ throw new BufferUnderflowException();
+ byte result = DirectByteBufferImpl.getImpl(address, pos);
+ position (pos + 1);
return result;
}
public ByteBuffer put (byte value)
{
- put (position(), value);
- position (position() + 1);
+ int pos = position();
+ if (pos >= limit())
+ throw new BufferUnderflowException();
+ DirectByteBufferImpl.putImpl(address, pos, value);
+ position(pos + 1);
return this;
}
public byte get (int index)
{
- return getImpl (ch, index, limit (), map_address);
+ if (index >= limit())
+ throw new BufferUnderflowException();
+ return DirectByteBufferImpl.getImpl(address, index);
+ }
+
+ public ByteBuffer get (byte[] dst, int offset, int length)
+ {
+ if (offset < 0 || length < 0 || offset + length > dst.length)
+ throw new IndexOutOfBoundsException ();
+ if (length > remaining())
+ throw new BufferUnderflowException();
+
+ int index = position();
+ DirectByteBufferImpl.getImpl(address, index, dst, offset, length);
+ position(index+length);
+
+ return this;
}
public ByteBuffer put (int index, byte value)
{
- putImpl (ch, index, limit (), value, map_address);
+ if (index >= limit())
+ throw new BufferUnderflowException();
+ DirectByteBufferImpl.putImpl(address, index, value);
return this;
}
@@ -129,17 +136,39 @@ public class MappedByteBufferImpl extends MappedByteBuffer
public ByteBuffer slice ()
{
- throw new Error ("Not implemented");
+ int rem = remaining();
+ return new DirectByteBufferImpl (this,
+ DirectByteBufferImpl
+ .adjustAddress(address, position()),
+ rem, rem, 0, isReadOnly ());
+ }
+
+ private ByteBuffer duplicate (boolean readOnly)
+ {
+ int pos = position();
+ reset();
+ int mark = position();
+ position(pos);
+ DirectByteBufferImpl result
+ = new DirectByteBufferImpl (this, address, capacity (), limit (),
+ pos, readOnly);
+ if (mark != pos)
+ {
+ result.position(mark);
+ result.mark();
+ result.position(pos);
+ }
+ return result;
}
public ByteBuffer duplicate ()
{
- throw new Error ("Not implemented");
+ return duplicate(isReadOnly());
}
public ByteBuffer asReadOnlyBuffer ()
{
- throw new Error ("Not implemented");
+ return duplicate(true);
}
public CharBuffer asCharBuffer ()
@@ -303,4 +332,13 @@ public class MappedByteBufferImpl extends MappedByteBuffer
ByteBufferHelper.putDouble (this, index, value, order());
return this;
}
+
+ // NOTE: In libgcj these methods are implemented in natFileChannelXxx.cc,
+ // because they're small, and to put them next to FileChannelImpl::mapImpl.
+ native void unmapImpl ();
+ native boolean isLoadedImpl ();
+ // FIXME: Try to load all pages into memory.
+ native void loadImpl();
+
+ native void forceImpl();
}