view rep/channel/REPServerSocketChannel.java @ 143:785a3e8ea858

*** empty log message ***
author kent
date Wed, 27 Aug 2008 22:48:10 +0900
parents 01062be677e9
children 31334767e65d
line wrap: on
line source

package rep.channel;

import java.io.IOException;
import java.net.ServerSocket;
import java.nio.channels.ClosedChannelException;
import java.nio.channels.SelectionKey;
import java.nio.channels.Selector;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
import java.nio.channels.spi.SelectorProvider;

public class REPServerSocketChannel<P> extends ServerSocketChannel{

	public static boolean isSimulation;
	private ServerSocketChannel ss;
	
	protected REPServerSocketChannel(SelectorProvider provider) {
		super(provider);
		
	}
	
	public REPServerSocketChannel(ServerSocketChannel channel){
		super(null);
		ss = channel;
	}

	public REPServerSocketChannel() {
		super(null);
		
	}

	public static <T> REPServerSocketChannel<T> open() throws IOException{
		if(isSimulation){
			return new ServerChannelSimulatorImpl<T>(null);
		}else{
			return new REPServerSocketChannel<T>(ServerSocketChannel.open());
		}
	}

	public REPSocketChannel<P> accept1() throws IOException {
		return new REPSocketChannel<P>(ss.accept());
	}

	@Override
	public ServerSocket socket() {
		return ss.socket();
	}

	@Override
	protected void implCloseSelectableChannel() throws IOException {
		ss.close();
	}

	@Override
	protected void implConfigureBlocking(boolean block) throws IOException {
		ss.configureBlocking(block);
	}

	@Override
	public SocketChannel accept() throws IOException {
		// TODO Auto-generated method stub
		return null;
	}
	

	public SelectionKey register(REPSelector sel, int ops, Object att) throws ClosedChannelException {
		REPSelector selector = sel;
		return selector.register(this, ops, att);
	}
}