Commit 5e2ba18b by Michael Koch Committed by Michael Koch

ByteBufferHelper.java: New file.

2003-09-25  Michael Koch  <konqueror@gmx.de>

	* java/nio/ByteBufferHelper.java:
	New file.
	* java/nio/ByteBufferImpl.java,
	java/nio/DirectByteBufferImpl.java,
	java/nio/MappedByteBufferImpl.java
	(getType,putType): Use new helper class ByteBufferHelper.
	* Makefile.am (ordinary_java_source_files):
	Added java/nio/ByteBufferHelper.java.
	* Makefile.in: Regenerated.

From-SVN: r71757
parent e3029773
2003-09-25 Michael Koch <konqueror@gmx.de>
* java/nio/ByteBufferHelper.java:
New file.
* java/nio/ByteBufferImpl.java,
java/nio/DirectByteBufferImpl.java,
java/nio/MappedByteBufferImpl.java
(getType,putType): Use new helper class ByteBufferHelper.
* Makefile.am (ordinary_java_source_files):
Added java/nio/ByteBufferHelper.java.
* Makefile.in: Regenerated.
2003-09-25 Bryce McKinlay <bryce@mckinlay.net.nz> 2003-09-25 Bryce McKinlay <bryce@mckinlay.net.nz>
* gnu/java/net/natPlainSocketImplWin32.cc: Add missing #includes. * gnu/java/net/natPlainSocketImplWin32.cc: Add missing #includes.
......
...@@ -292,134 +292,56 @@ class DirectByteBufferImpl extends ByteBuffer ...@@ -292,134 +292,56 @@ class DirectByteBufferImpl extends ByteBuffer
final public ByteBuffer putLong (long value) final public ByteBuffer putLong (long value)
{ {
// FIXME: this handles little endian only return ByteBufferHelper.putLong (this, value);
put ((byte) ((value & 0xff00000000000000L) >> 56));
put ((byte) ((value & 0x00ff000000000000L) >> 48));
put ((byte) ((value & 0x0000ff0000000000L) >> 40));
put ((byte) ((value & 0x000000ff00000000L) >> 32));
put ((byte) ((value & 0x00000000ff000000L) >> 24));
put ((byte) ((value & 0x0000000000ff0000L) >> 16));
put ((byte) ((value & 0x000000000000ff00L) >> 8));
put ((byte) (value & 0x00000000000000ffL));
return this;
} }
final public long getLong (int index) final public long getLong (int index)
{ {
// FIXME: this handles little endian only return ByteBufferHelper.getLong (this, index);
return (long) (((get (index) & 0xff) << 56)
+ ((get (index + 1) & 0xff) << 48)
+ ((get (index + 2) & 0xff) << 40)
+ ((get (index + 3) & 0xff) << 32)
+ ((get (index + 4) & 0xff) << 24)
+ ((get (index + 5) & 0xff) << 16)
+ ((get (index + 6) & 0xff) << 8)
+ (get (index + 7) & 0xff));
} }
final public ByteBuffer putLong (int index, long value) final public ByteBuffer putLong (int index, long value)
{ {
// FIXME: this handles little endian only return ByteBufferHelper.putLong (this, index, value);
put (index, (byte) ((value & 0xff00000000000000L) >> 56));
put (index + 1, (byte) ((value & 0x00ff000000000000L) >> 48));
put (index + 2, (byte) ((value & 0x0000ff0000000000L) >> 40));
put (index + 3, (byte) ((value & 0x000000ff00000000L) >> 32));
put (index + 4, (byte) ((value & 0x00000000ff000000L) >> 24));
put (index + 5, (byte) ((value & 0x0000000000ff0000L) >> 16));
put (index + 6, (byte) ((value & 0x000000000000ff00L) >> 8));
put (index + 7, (byte) (value & 0x00000000000000ffL));
return this;
} }
final public float getFloat () final public float getFloat ()
{ {
// FIXME: this handles little endian only return ByteBufferHelper.getFloat (this);
return (float) (((get () & 0xff) << 24)
+ ((get () & 0xff) << 16)
+ ((get () & 0xff) << 8)
+ (get () & 0xff));
} }
final public ByteBuffer putFloat (float value) final public ByteBuffer putFloat (float value)
{ {
// FIXME: this handles little endian only return ByteBufferHelper.putFloat (this, value);
put ((byte) ((((int) value) & 0xff000000) >> 24));
put ((byte) ((((int) value) & 0x00ff0000) >> 16));
put ((byte) ((((int) value) & 0x0000ff00) >> 8));
put ((byte) (((int) value) & 0x000000ff));
return this;
} }
final public float getFloat (int index) public final float getFloat (int index)
{ {
// FIXME: this handles little endian only return ByteBufferHelper.getFloat (this, index);
return (float) (((get (index) & 0xff) << 24)
+ ((get (index + 1) & 0xff) << 16)
+ ((get (index + 2) & 0xff) << 8)
+ (get (index + 3) & 0xff));
} }
final public ByteBuffer putFloat (int index, float value) final public ByteBuffer putFloat (int index, float value)
{ {
// FIXME: this handles little endian only return ByteBufferHelper.putFloat (this, index, value);
put (index, (byte) ((((int) value) & 0xff000000) >> 24));
put (index + 1, (byte) ((((int) value) & 0x00ff0000) >> 16));
put (index + 2, (byte) ((((int) value) & 0x0000ff00) >> 8));
put (index + 3, (byte) (((int) value) & 0x000000ff));
return this;
} }
final public double getDouble () final public double getDouble ()
{ {
// FIXME: this handles little endian only return ByteBufferHelper.getDouble (this);
return (double) (((get () & 0xff) << 56)
+ ((get () & 0xff) << 48)
+ ((get () & 0xff) << 40)
+ ((get () & 0xff) << 32)
+ ((get () & 0xff) << 24)
+ ((get () & 0xff) << 16)
+ ((get () & 0xff) << 8)
+ (get () & 0xff));
} }
final public ByteBuffer putDouble (double value) final public ByteBuffer putDouble (double value)
{ {
// FIXME: this handles little endian only return ByteBufferHelper.putDouble (this, value);
put ((byte) ((((long) value) & 0xff00000000000000L) >> 56));
put ((byte) ((((long) value) & 0x00ff000000000000L) >> 48));
put ((byte) ((((long) value) & 0x0000ff0000000000L) >> 40));
put ((byte) ((((long) value) & 0x000000ff00000000L) >> 32));
put ((byte) ((((long) value) & 0x00000000ff000000L) >> 24));
put ((byte) ((((long) value) & 0x0000000000ff0000L) >> 16));
put ((byte) ((((long) value) & 0x000000000000ff00L) >> 8));
put ((byte) (((long) value) & 0x00000000000000ffL));
return this;
} }
final public double getDouble (int index) final public double getDouble (int index)
{ {
// FIXME: this handles little endian only return ByteBufferHelper.getDouble (this, index);
return (double) (((get (index) & 0xff) << 56)
+ ((get (index + 1) & 0xff) << 48)
+ ((get (index + 2) & 0xff) << 40)
+ ((get (index + 3) & 0xff) << 32)
+ ((get (index + 4) & 0xff) << 24)
+ ((get (index + 5) & 0xff) << 16)
+ ((get (index + 6) & 0xff) << 8)
+ (get (index + 7) & 0xff));
} }
final public ByteBuffer putDouble (int index, double value) final public ByteBuffer putDouble (int index, double value)
{ {
// FIXME: this handles little endian only return ByteBufferHelper.putDouble (this, index, value);
put (index, (byte) ((((long) value) & 0xff00000000000000L) >> 56));
put (index + 1, (byte) ((((long) value) & 0x00ff000000000000L) >> 48));
put (index + 2, (byte) ((((long) value) & 0x0000ff0000000000L) >> 40));
put (index + 3, (byte) ((((long) value) & 0x000000ff00000000L) >> 32));
put (index + 4, (byte) ((((long) value) & 0x00000000ff000000L) >> 24));
put (index + 5, (byte) ((((long) value) & 0x0000000000ff0000L) >> 16));
put (index + 6, (byte) ((((long) value) & 0x000000000000ff00L) >> 8));
put (index + 7, (byte) (((long) value) & 0x00000000000000ffL));
return this;
} }
} }
...@@ -58,6 +58,15 @@ public class MappedByteBufferImpl extends MappedByteBuffer ...@@ -58,6 +58,15 @@ public class MappedByteBufferImpl extends MappedByteBuffer
limit ((int) si); 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;
this.readOnly = readOnly;
}
public boolean isReadOnly () public boolean isReadOnly ()
{ {
return readOnly; return readOnly;
...@@ -164,147 +173,123 @@ public class MappedByteBufferImpl extends MappedByteBuffer ...@@ -164,147 +173,123 @@ public class MappedByteBufferImpl extends MappedByteBuffer
return new DoubleViewBufferImpl (this, position (), remaining(), remaining (), 0, -1, isReadOnly ()); return new DoubleViewBufferImpl (this, position (), remaining(), remaining (), 0, -1, isReadOnly ());
} }
public char getChar () public final char getChar()
{ {
char value = getChar (position()); return ByteBufferHelper.getChar (this);
position (position() + 2);
return value;
} }
public char getChar (int index) public final ByteBuffer putChar (char value)
{ {
throw new Error ("Not implemented"); return ByteBufferHelper.putChar (this, value);
} }
public ByteBuffer putChar (char value) public final char getChar (int index)
{ {
putChar (position(), value); return ByteBufferHelper.getChar (this, index);
position (position() + 2);
return this;
} }
public ByteBuffer putChar (int index, char value) public final ByteBuffer putChar (int index, char value)
{ {
throw new Error ("Not implemented"); return ByteBufferHelper.putChar (this, index, value);
} }
public double getDouble () public final short getShort()
{ {
double value = getDouble (position()); return ByteBufferHelper.getShort (this);
position (position() + 8);
return value;
} }
public double getDouble (int index) public final ByteBuffer putShort (short value)
{ {
throw new Error ("Not implemented"); return ByteBufferHelper.putShort (this, value);
} }
public ByteBuffer putDouble (double value) public final short getShort (int index)
{ {
putDouble (position(), value); return ByteBufferHelper.getShort (this, index);
position (position() + 8);
return this;
} }
public ByteBuffer putDouble (int index, double value) public final ByteBuffer putShort (int index, short value)
{ {
throw new Error ("Not implemented"); return ByteBufferHelper.putShort (this, index, value);
} }
public float getFloat () public final int getInt()
{ {
float value = getFloat (position ()); return ByteBufferHelper.getInt (this);
position (position() + 4);
return value;
} }
public float getFloat (int index) public final ByteBuffer putInt (int value)
{ {
throw new Error ("Not implemented"); return ByteBufferHelper.putInt (this, value);
} }
public ByteBuffer putFloat (float value) public final int getInt (int index)
{ {
putFloat (position(), value); return ByteBufferHelper.getInt (this, index);
position (position() + 4);
return this;
} }
public ByteBuffer putFloat (int index, float value) public final ByteBuffer putInt (int index, int value)
{ {
throw new Error ("Not implemented"); return ByteBufferHelper.putInt (this, index, value);
} }
public int getInt () public final long getLong()
{ {
int value = getInt (position()); return ByteBufferHelper.getLong (this);
position (position() + 8);
return value;
} }
public int getInt (int index) public final ByteBuffer putLong (long value)
{ {
throw new Error ("Not implemented"); return ByteBufferHelper.putLong (this, value);
} }
public ByteBuffer putInt (int value) public final long getLong (int index)
{ {
putInt (position(), value); return ByteBufferHelper.getLong (this, index);
position (position() + 4);
return this;
} }
public ByteBuffer putInt (int index, int value) public final ByteBuffer putLong (int index, long value)
{ {
throw new Error ("Not implemented"); return ByteBufferHelper.putLong (this, index, value);
} }
public long getLong () public final float getFloat()
{ {
long value = getLong (position()); return ByteBufferHelper.getFloat (this);
position (position() + 8);
return value;
} }
public long getLong (int index) public final ByteBuffer putFloat (float value)
{ {
throw new Error ("Not implemented"); return ByteBufferHelper.putFloat (this, value);
} }
public ByteBuffer putLong (long value) public final float getFloat (int index)
{ {
putLong (position(), value); return ByteBufferHelper.getFloat (this, index);
position (position() + 8);
return this;
} }
public ByteBuffer putLong (int index, long value) public final ByteBuffer putFloat (int index, float value)
{ {
throw new Error ("Not implemented"); return ByteBufferHelper.putFloat (this, index, value);
} }
public short getShort () public final double getDouble()
{ {
short value = getShort (position()); return ByteBufferHelper.getDouble (this);
position (position() + 2);
return value;
} }
public short getShort (int index) public final ByteBuffer putDouble (double value)
{ {
throw new Error ("Not implemented"); return ByteBufferHelper.putDouble (this, value);
} }
public ByteBuffer putShort (short value) public final double getDouble (int index)
{ {
putShort (position(), value); return ByteBufferHelper.getDouble (this, index);
position (position() + 2);
return this;
} }
public ByteBuffer putShort (int index, short value) public final ByteBuffer putDouble (int index, double value)
{ {
throw new Error ("Not implemented"); return ByteBufferHelper.putDouble (this, index, value);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment