summaryrefslogtreecommitdiffstats
path: root/libjava/gnu/java/nio/SocketChannelImpl.java
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-11 18:01:35 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-11 18:01:35 +0000
commite95addcda5341dfee5599f8347c30f58ae3a8be6 (patch)
treef3c9f1f5921233e31d10682889fd919d402a47e7 /libjava/gnu/java/nio/SocketChannelImpl.java
parent88a78d982ea6dc0ca6049e836a1fb17c489dc877 (diff)
downloadppe42-gcc-e95addcda5341dfee5599f8347c30f58ae3a8be6.tar.gz
ppe42-gcc-e95addcda5341dfee5599f8347c30f58ae3a8be6.zip
2003-10-11 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/NIOSocket.java (setChannel): Initialize impl. * gnu/java/nio/ServerSocketChannelImpl.java (serverSocket): Made it a NIOServerSocket. (impl): Removed. (ServerSocketChannelImpl): Initialize only serverSocket. (initServerSocket): Removed. (getNativeFD): Rewritten. (implConfigureBlocking): Set socket timeout and removed comment. (accept): Rewritten. * gnu/java/nio/SocketChannelImpl.java (impl): New variable. (connected): Removed. (SocketChannelImpl): Initialize impl too. (getImpl): New method. (isConnected): Rewritten. (read): Rewritten, set position in buffer correctly. (write): Set position in buffer correctly. * java/net/ServerSocket.java (getImpl): New method. * gnu/java/nio/NIOServerSocket.java, gnu/java/nio/natNIOServerSocket.cc: New files. * gnu/java/nio/natServerSocketChannelImpl.cc: Removed. * Makefile.am (ordinary_java_source_files): Added gnu/java/nio/NIOServerSocket.java. (nat_source_files): Removed gnu/java/nio/natServerSocketChannelImpl.cc and added gnu/java/nio/natNIOServerSocket.cc. * Makefile.in: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72345 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/gnu/java/nio/SocketChannelImpl.java')
-rw-r--r--libjava/gnu/java/nio/SocketChannelImpl.java64
1 files changed, 37 insertions, 27 deletions
diff --git a/libjava/gnu/java/nio/SocketChannelImpl.java b/libjava/gnu/java/nio/SocketChannelImpl.java
index 632d743abb1..0478e32ea99 100644
--- a/libjava/gnu/java/nio/SocketChannelImpl.java
+++ b/libjava/gnu/java/nio/SocketChannelImpl.java
@@ -63,16 +63,17 @@ import gnu.classpath.Configuration;
public final class SocketChannelImpl extends SocketChannel
{
+ private PlainSocketImpl impl;
private NIOSocket socket;
private boolean blocking = true;
- private boolean connected = false;
private boolean connectionPending = false;
SocketChannelImpl (SelectorProvider provider)
throws IOException
{
super (provider);
- socket = new NIOSocket (new PlainSocketImpl(), this);
+ impl = new PlainSocketImpl();
+ socket = new NIOSocket (impl, this);
}
SocketChannelImpl (SelectorProvider provider,
@@ -80,8 +81,8 @@ public final class SocketChannelImpl extends SocketChannel
throws IOException
{
super (provider);
+ this.impl = socket.getImpl();
this.socket = socket;
- this.connected = socket.isConnected();
}
public void finalizer()
@@ -98,6 +99,11 @@ public final class SocketChannelImpl extends SocketChannel
}
}
+ PlainSocketImpl getImpl()
+ {
+ return impl;
+ }
+
int getNativeFD()
{
return socket.getImpl().getNativeFD();
@@ -105,7 +111,6 @@ public final class SocketChannelImpl extends SocketChannel
protected void implCloseSelectableChannel () throws IOException
{
- connected = false;
socket.close();
}
@@ -136,7 +141,6 @@ public final class SocketChannelImpl extends SocketChannel
{
// Do blocking connect.
socket.connect (remote);
- connected = true;
return true;
}
@@ -144,7 +148,6 @@ public final class SocketChannelImpl extends SocketChannel
try
{
socket.connect (remote, NIOConstants.DEFAULT_TIMEOUT);
- connected = true;
return true;
}
catch (SocketTimeoutException e)
@@ -174,7 +177,6 @@ public final class SocketChannelImpl extends SocketChannel
if (isBlocking())
{
selector.select(); // blocking until channel is connected.
- connected = true;
connectionPending = false;
return true;
}
@@ -182,7 +184,6 @@ public final class SocketChannelImpl extends SocketChannel
int ready = selector.selectNow(); // non-blocking
if (ready == 1)
{
- connected = true;
connectionPending = false;
return true;
}
@@ -192,7 +193,7 @@ public final class SocketChannelImpl extends SocketChannel
public boolean isConnected ()
{
- return connected;
+ return socket.isConnected();
}
public boolean isConnectionPending ()
@@ -207,13 +208,21 @@ public final class SocketChannelImpl extends SocketChannel
public int read (ByteBuffer dst) throws IOException
{
- if (!connected)
+ if (!isConnected())
throw new NotYetConnectedException();
byte[] data;
int offset = 0;
+ InputStream input = socket.getInputStream();
+ int available = input.available();
int len = dst.remaining();
+ if (available == 0)
+ return 0;
+
+ if (len > available)
+ len = available;
+
if (dst.hasArray())
{
offset = dst.arrayOffset() + dst.position();
@@ -224,15 +233,6 @@ public final class SocketChannelImpl extends SocketChannel
data = new byte [len];
}
- InputStream input = socket.getInputStream();
- int available = input.available();
-
- if (available == 0)
- return 0;
-
- if (len > available)
- len = available;
-
int readBytes = 0;
boolean completed = false;
@@ -247,11 +247,15 @@ public final class SocketChannelImpl extends SocketChannel
end (completed);
}
- if (readBytes > 0
- && !dst.hasArray())
- {
- dst.put (data, offset, len);
- }
+ if (readBytes > 0)
+ if (dst.hasArray())
+ {
+ dst.position (dst.position() + readBytes);
+ }
+ else
+ {
+ dst.put (data, offset, len);
+ }
return readBytes;
}
@@ -259,7 +263,7 @@ public final class SocketChannelImpl extends SocketChannel
public long read (ByteBuffer[] dsts, int offset, int length)
throws IOException
{
- if (!connected)
+ if (!isConnected())
throw new NotYetConnectedException();
if ((offset < 0)
@@ -279,7 +283,7 @@ public final class SocketChannelImpl extends SocketChannel
public int write (ByteBuffer src)
throws IOException
{
- if (!connected)
+ if (!isConnected())
throw new NotYetConnectedException();
byte[] data;
@@ -301,13 +305,19 @@ public final class SocketChannelImpl extends SocketChannel
OutputStream output = socket.getOutputStream();
output.write (data, offset, len);
+
+ if (src.hasArray())
+ {
+ src.position (src.position() + len);
+ }
+
return len;
}
public long write (ByteBuffer[] srcs, int offset, int length)
throws IOException
{
- if (!connected)
+ if (!isConnected())
throw new NotYetConnectedException();
if ((offset < 0)
OpenPOWER on IntegriCloud