From 81d2d258f5b5578131c9add593df10bd4758f219 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Sat, 14 Jun 2003 11:53:02 +0000 Subject: 2003-06-14 Michael Koch * gnu/java/nio/FileChannelImpl.java (map_address): Removed incorrect comment. * gnu/java/nio/SelectorImpl.java (register): Remove code duplication and code for file channel handling. * gnu/java/nio/ServerSocketChannelImpl.java (serverSocket): Renamed from sock_object. (ServerSocketChannel): Initialize serverSocket. (socket): Return serverSocket. * gnu/java/nio/SocketChannelImpl.java (socket): Renamed from sock_object. (isConnectionPenging): Simplified. (socket): Return socket. From-SVN: r67940 --- libjava/gnu/java/nio/SelectorImpl.java | 39 +++++++++------------------------- 1 file changed, 10 insertions(+), 29 deletions(-) (limited to 'libjava/gnu/java/nio/SelectorImpl.java') diff --git a/libjava/gnu/java/nio/SelectorImpl.java b/libjava/gnu/java/nio/SelectorImpl.java index e3eed25..f2281a6 100644 --- a/libjava/gnu/java/nio/SelectorImpl.java +++ b/libjava/gnu/java/nio/SelectorImpl.java @@ -250,50 +250,31 @@ public class SelectorImpl extends AbstractSelector protected SelectionKey register (AbstractSelectableChannel ch, int ops, Object att) { -// // filechannel is not selectable ? -// if (ch instanceof FileChannelImpl) -// { -// FileChannelImpl fc = (FileChannelImpl) ch; -// SelectionKeyImpl impl = new SelectionKeyImpl (ch, this, fc.fd); -// keys.add (impl); -// impl.interestOps (ops); -// impl.attach (att); -// return impl; -// } -// else - + SelectionKeyImpl result; + if (ch instanceof SocketChannelImpl) { SocketChannelImpl sc = (SocketChannelImpl) ch; - SelectionKeyImpl impl = new SelectionKeyImpl (ch, this, sc.fd); - add (impl); - impl.interestOps (ops); - impl.attach (att); - return impl; + result = new SelectionKeyImpl (ch, this, sc.fd); } else if (ch instanceof DatagramChannelImpl) { DatagramChannelImpl dc = (DatagramChannelImpl) ch; - SelectionKeyImpl impl = new SelectionKeyImpl (ch, this, dc.fd); - add (impl); - impl.interestOps (ops); - impl.attach (att); - return impl; + result = new SelectionKeyImpl (ch, this, dc.fd); } else if (ch instanceof ServerSocketChannelImpl) { ServerSocketChannelImpl ssc = (ServerSocketChannelImpl) ch; - SelectionKeyImpl impl = new SelectionKeyImpl (ch, this, ssc.fd); - add (impl); - impl.interestOps (ops); - impl.attach (att); - return impl; + result = new SelectionKeyImpl (ch, this, ssc.fd); } else { - System.err.println ("INTERNAL ERROR, no known channel type"); + throw new InternalError ("No known channel type"); } - return null; + add (result); + result.interestOps (ops); + result.attach (att); + return result; } } -- cgit v1.1