All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.gov.nist.javax.sip.stack.NioTcpMessageProcessor Maven / Gradle / Ivy

There is a newer version: 1.3.0-91
Show newest version
/*
 * Conditions Of Use
 *
 * This software was developed by employees of the National Institute of
 * Standards and Technology (NIST), an agency of the Federal Government.
 * Pursuant to title 15 Untied States Code Section 105, works of NIST
 * employees are not subject to copyright protection in the United States
 * and are considered to be in the public domain.  As a result, a formal
 * license is not needed to use the software.
 *
 * This software is provided by NIST as a service and is expressly
 * provided "AS IS."  NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED
 * OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
 * AND DATA ACCURACY.  NIST does not warrant or make any representations
 * regarding the use of the software or the results thereof, including but
 * not limited to the correctness, accuracy, reliability or usefulness of
 * the software.
 *
 * Permission to use this software is contingent upon your acceptance
 * of the terms of this agreement
 *
 * .
 *
 */
package android.gov.nist.javax.sip.stack;

import android.gov.nist.core.CommonLogger;
import android.gov.nist.core.HostPort;
import android.gov.nist.core.LogWriter;
import android.gov.nist.core.StackLogger;

import java.io.IOException;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.*;
import java.util.*;
import java.util.concurrent.ConcurrentLinkedQueue;

/**
 * NIO implementation for TCP.
 * 
 * @author mranga
 *
 */
public class NioTcpMessageProcessor extends ConnectionOrientedMessageProcessor {
    private static final int MAX_CHANGE_REQS = 10000;
    private static final int MAX_PENDING_DATA = 10000;
    
    protected Selector selector ;
    private static StackLogger logger = CommonLogger.getLogger(NioTcpMessageProcessor.class);
    protected Thread selectorThread;
    protected NIOHandler nioHandler;

    protected ServerSocketChannel channel;

    // Cache the change request here, the selector thread will read it when it wakes up and execute the request
    protected final Queue changeRequests = new ConcurrentLinkedQueue ();

    // Data send over a socket is cached here before hand, the selector thread will take it later for physical send
    private final Map> pendingData = Collections.synchronizedMap(new WeakHashMap>());
    
    
    public static class PendingData {
    	final String txId;
    	final ByteBuffer buffer;
		public PendingData(String txId, ByteBuffer buffer) {
			super();
			this.txId = txId;
			this.buffer = buffer;
		}
    }
    
    public static class ChangeRequest {
    	public static final int REGISTER = 1;
    	public static final int CHANGEOPS = 2;

    	public SocketChannel socket;
    	public int type;
    	public int ops;

    	public ChangeRequest(SocketChannel socket, int type, int ops) {
    		this.socket = socket;
    		this.type = type;
    		this.ops = ops;
    	}
    	
    	public String toString() {
    		return socket + " type = " + type + " ops = " + ops;
    	}
    }
    
//  Commented out as part of https://java.net/jira/browse/JSIP-504
//	public void assignChannelToDestination(HostPort targetHostPort, NioTcpMessageChannel channel) {
//		String key = MessageChannel.getKey(targetHostPort, transport);
//		this.messageChannels.put(key, channel);
//	}
    
    private SocketChannel blockingConnect(InetSocketAddress address, InetAddress myAddress, int timeout) throws IOException {
    	
    	// We use blocking outbound connect just because it's pure pain to deal with http://stackoverflow.com/questions/204186/java-nio-select-returns-without-selected-keys-why
        SocketChannel socketChannel = SocketChannel.open();
        if (myAddress != null) {
        	// https://java.net/jira/browse/JSIP-501 bind to the right local address
        	socketChannel.socket().bind(new InetSocketAddress(myAddress, 0));
        }
        socketChannel.configureBlocking(true);
      
        if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
        	logger.logDebug("Init connect " + address);
        socketChannel.socket().connect(address, timeout);
        socketChannel.configureBlocking(false);
        if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
        	logger.logDebug("Blocking set to false now " + address);
      

        changeRequests.add(new ChangeRequest(socketChannel, ChangeRequest.REGISTER, SelectionKey.OP_READ));

        selector.wakeup();
        return socketChannel;
    }
    
    private SocketChannel nonBlockingConnect(InetSocketAddress address, InetAddress myAddress, int timeout) throws IOException {
        SocketChannel socketChannel = SocketChannel.open();
        socketChannel.configureBlocking(false);
        if (myAddress != null) {
        	// https://java.net/jira/browse/JSIP-501 bind to the right local address
        	socketChannel.socket().bind(new InetSocketAddress(myAddress, 0));
        }
        if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
        	logger.logDebug("Init connect " + address);     
        }
        socketChannel.connect(address);
    	changeRequests.add(new ChangeRequest(socketChannel, ChangeRequest.REGISTER, SelectionKey.OP_CONNECT));
        //we don't wake the selector, wait for corresponding "send" operation to initiate the handshake
        return socketChannel;
    }
    

    public SocketChannel connect(InetSocketAddress address, InetAddress localAddress, int timeout) throws IOException {
        if (this.sipStack.nioMode.equals(NIOMode.BLOCKING)) {
            return blockingConnect(address, localAddress, timeout);
        } else {
            return nonBlockingConnect(address, localAddress, timeout);
        }
    }
        
    public void send(SocketChannel socket, byte[] data) throws IOException  {
    	if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
    		logger.logDebug("Sending data " + data.length + " bytes on socket " + socket);
    	
    	
        Queue queue = this.pendingData.get(socket);
        //this condition optimizes in case the socket has an already existing
        //queue. Contention will be avoided
        if (queue == null) {
            //Use the socket itself as monitor object, the map itself is already
            //concurrent coll
            synchronized (socket) {
                //this condition is necessary to ensure consistency
                if (!pendingData.containsKey(socket)) {
                    queue = new ConcurrentLinkedQueue();
                    this.pendingData.put(socket, queue);
                } else {
                    queue = this.pendingData.get(socket);
                }
            }
        }    	

        PendingData pData = new PendingData(MessageChannel.messageTxId.get() ,ByteBuffer.wrap(data));
        queue.add(pData);
        
        if (socket.isConnected()) {
            if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                logger.logDebug("Connected. lets set WRITE ops.");        
            }  	        	
            this.changeRequests.add(new ChangeRequest(socket, ChangeRequest.CHANGEOPS, SelectionKey.OP_WRITE));
        }//if not the selector will change to WRITe mode after connect
        
    	if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
    		logger.logDebug("Waking up selector thread");
    	this.selector.wakeup();
    }
    
    // This will be our selector thread, only one thread for all sockets. If you want to understand the overall design decisions read this first http://rox-xmlrpc.sourceforge.net/niotut/
    class ProcessorTask implements Runnable {

        public ProcessorTask() {
        }
        
        public void read(SelectionKey selectionKey) {
        	 // read it.
            SocketChannel socketChannel = (SocketChannel) selectionKey.channel();
            final NioTcpMessageChannel nioTcpMessageChannel = nioHandler.getMessageChannel(socketChannel);
            if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
            	logger.logDebug("Got something on nioTcpMessageChannel " + nioTcpMessageChannel + " socket " + socketChannel);
            if(nioTcpMessageChannel == null) {
            	if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
            		logger.logDebug("Dead socketChannel" + socketChannel + " socket " + socketChannel.socket().getInetAddress() + ":"+socketChannel.socket().getPort());
            	selectionKey.cancel();
            	// https://java.net/jira/browse/JSIP-475 remove the socket from the hashmap
            	pendingData.remove(socketChannel);            	
            	return;
            }
            
			nioTcpMessageChannel.readChannel();

        }
        
        public void write(SelectionKey selectionKey) {
          	SocketChannel socketChannel = (SocketChannel) selectionKey.channel();

          	final NioTcpMessageChannel nioTcpMessageChannel = nioHandler.getMessageChannel(socketChannel);
            if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
            	logger.logDebug("Need to write something on nioTcpMessageChannel " + nioTcpMessageChannel + " socket " + socketChannel);
            if(nioTcpMessageChannel == null) {
            	if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
            		logger.logDebug("Dead socketChannel" + socketChannel + " socket " + socketChannel.socket().getInetAddress() + ":"+socketChannel.socket().getPort());
            	// https://java.net/jira/browse/JSIP-475 remove the socket from the hashmap
            	pendingData.remove(socketChannel);            	
            	selectionKey.cancel();
            	return;
            }
          	
            Queue queue = pendingData.get(socketChannel);
            if (queue == null || queue.isEmpty())
            {
                if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
                {
                        logger.logDebug("The queue was empty on write.");
                }
                if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                    logger.logDebug("We wrote away all data. Setting READ interest. Queue is emtpy now size =" + queue.size());
                }
                selectionKey.interestOps(SelectionKey.OP_READ);                
                return;
            }
            if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
            {
                    logger.logDebug("Queued items for writing " + queue.size());
            }
            int i = 0;
            while (queue.peek() != null &&  i < MAX_PENDING_DATA) {
                    //do not remove the buffer form the queue, until actual
                    //write operation is confirmed
            		PendingData pData = queue.peek();
                    ByteBuffer buf = pData.buffer;

                    try {
                                    socketChannel.write(buf);
                            } catch (IOException e) {
                                    if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
                            logger.logDebug("Dead socketChannel" + socketChannel + " socket " + socketChannel.socket().getInetAddress() + ":"+socketChannel.socket().getPort() + " : error message " + e.getMessage());
                                    nioTcpMessageChannel.close();
                                    // Shall we perform a retry mechanism in case the remote host connection was closed due to a TCP RST ?
                                    // https://java.net/jira/browse/JSIP-475 in the meanwhile remove the data from the hashmap
                                    queue.remove();
                                    pendingData.remove(socketChannel);                                    
                                    return;
                            }

                    int remain = buf.remaining();

                    if (remain > 0) {
                            // ... or the socket's buffer fills up
                            if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
                                    logger.logDebug("Socket buffer filled and more is remaining" + queue.size() + " remain = " + remain);
                            break;
                    } else {
                        //now that buffer is completely sent, we may remove it 
                        //form the queue
                        queue.remove();                        
                    }
                    i++;
            }

            if (queue.isEmpty()) {
                    if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
                            logger.logDebug("We wrote away all data. Setting READ interest. Queue is emtpy now size =" + queue.size());
                    selectionKey.interestOps(SelectionKey.OP_READ);
            }

        	if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
        		logger.logDebug("Done writing");
        }
        
        public void connect(SelectionKey selectionKey) throws IOException {
        	final SocketChannel socketChannel = (SocketChannel) selectionKey.channel();
            final NioTcpMessageChannel nioTcpMessageChannel = nioHandler.getMessageChannel(socketChannel);
            if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
            	logger.logDebug("Attempting Connect on  " + nioTcpMessageChannel + " socket " + socketChannel);
            if(nioTcpMessageChannel == null) {
            	if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
            		logger.logDebug("Dead socketChannel" + socketChannel + " socket " + socketChannel.socket().getInetAddress() + ":"+socketChannel.socket().getPort());
            	selectionKey.cancel();
            	return;
            }        	
        	try {
        		socketChannel.finishConnect();
                if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                    logger.logDebug("Connected Succesfully");        
                }        		
    			if(sipStack.getSelfRoutingThreadpoolExecutor() != null) {
    				sipStack.getSelfRoutingThreadpoolExecutor().execute(new Runnable() {
    					public void run() {
    						nioTcpMessageChannel.triggerConnectSuccess();
    					}
    				});    				
    			} else {
    				nioTcpMessageChannel.triggerConnectSuccess();
    			}
                if (pendingData.get(socketChannel) != null &&
                		pendingData.get(socketChannel).size() > 0) {
                    if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                        logger.logDebug("Pending Data Available, setting WRITE opts.");        
                    }                  	
                    selectionKey.interestOps(SelectionKey.OP_WRITE);
                }        		
        	} catch (Exception e) {
                if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                        logger.logDebug("Cant connect ", e);        
                }
                selectionKey.cancel();
    			if(sipStack.getSelfRoutingThreadpoolExecutor() != null) {
    				sipStack.getSelfRoutingThreadpoolExecutor().execute(new Runnable() {
    					public void run() {
    						nioTcpMessageChannel.triggerConnectFailure(pendingData.get(socketChannel));
    					}
    				});
    			} else {
    				nioTcpMessageChannel.triggerConnectFailure(pendingData.get(socketChannel));                                           
    			}
                return;
        	}

        }
        
        public void accept(SelectionKey selectionKey) throws IOException{
        	 ServerSocketChannel serverSocketChannel = (ServerSocketChannel) selectionKey.channel();
        	 SocketChannel client;
        	 client = serverSocketChannel.accept();
        	 client.configureBlocking(false);
        	 if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
        		 logger.logDebug("got a new connection! " + client);

        	 // No need for MAX SOCKET CHANNELS check here because this can be configured at OS level
        	 
        	 createMessageChannel(NioTcpMessageProcessor.this, client);
        	 
        	 if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
        		 logger.logDebug("Adding to selector " + client);
        	 client.register(selector, SelectionKey.OP_READ);
        	 
        }
        @Override
        public void run() {
        	int selResult = 0;
        	while (true) {
        		if(logger.isLoggingEnabled(LogWriter.TRACE_TRACE)) {
        			logger.logTrace("Selector thread cycle begin...");
        		}
                        //process up to 1000 changeRequests
                        //the rest will be processed on next iteration
                        int polledRequests = 0;
                        while(changeRequests.peek() != null && polledRequests < MAX_CHANGE_REQS) {
                            ChangeRequest change = changeRequests.poll();
                            polledRequests = polledRequests + 1;
                            if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG))
                                    logger.logDebug("ChangeRequest " + change + " selector = " + selector);
                            try {
                                    switch(change.type) {
                                    case ChangeRequest.CHANGEOPS:
                                            SelectionKey key = change.socket.keyFor(selector);
                                            if(key == null || !key.isValid()) continue;
                                            key.interestOps(change.ops);
                                            if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                                                    logger.logDebug("Change opts " + change + " selector = " + selector + " key = " + key + " blocking=" + change.socket.isBlocking());
                                            }
                                            break;
                                    case ChangeRequest.REGISTER:
                                            try {

                                                    if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                                                            logger.logDebug("NIO register " + change + " selector = " + selector + " blocking=" + change.socket.isBlocking());
                                                    }

                                                    change.socket.register(selector, change.ops);
                                            } catch (ClosedChannelException e) {
                                                    logger.logWarning("Socket closed before register ops " + change.socket);
                                            }
                                            break;
                                    }
                            } catch (Exception e) {
                                    logger.logError("Problem setting changes", e);
                            }
                        }

        		try {
        			if(logger.isLoggingEnabled(LogWriter.TRACE_TRACE)) {
        				logger.logTrace("Before select");
        			}
                    if(!selector.isOpen()) {
                        if(logger.isLoggingEnabled(LogWriter.TRACE_INFO)) {
                            logger.logInfo("Selector is closed ");
                        }
                        return;
                    } else {
                        selResult = selector.select();
                        if (logger.isLoggingEnabled(LogWriter.TRACE_TRACE)) {
                            logger.logTrace("After select:" + selResult + ".CRs:"+ changeRequests.size());
                        }
                    }
        		} catch (IOException e) {
        			logger.logError("problem in select", e);
        			break;
        		} catch (CancelledKeyException cke) {
        			if(logger.isLoggingEnabled(LogWriter.TRACE_INFO)) {
        				logger.logInfo("Looks like remote side closed a connection");
        			}
        		}
                try {
                    if (selResult <= 0 ) {
                        if (logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                            logger.logDebug("null selectedKeys ");
                        }
                        continue;
                    }

                    Iterator it = selector.selectedKeys().iterator();
                    while (it.hasNext()) {
                        SelectionKey selectionKey = it.next();
                        try {
                            it.remove();
                            if (logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                                logger.logDebug("We got selkey " + selectionKey);
                            }
                            if (!selectionKey.isValid()) {
                                if (logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                                    logger.logDebug("Invalid key found " + selectionKey);
                                }
                            } else if (selectionKey.isAcceptable()) {
                                if (logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                                    logger.logDebug("Accept " + selectionKey);
                                }
                                accept(selectionKey);
                            } else if (selectionKey.isReadable()) {
                                if (logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                                    logger.logDebug("Read " + selectionKey);
                                }
                                read(selectionKey);
                                
                            } else if (selectionKey.isWritable()) {
                                if (logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                                    logger.logDebug("Write " + selectionKey);
                                }
                                write(selectionKey);
                            } else if (selectionKey.isConnectable()) {
                                if (logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                                    logger.logDebug("Connect " + selectionKey);
                                }
                                connect(selectionKey);
                            }
                        } catch (Exception e) {
                            logger.logError("Problem processing selection key event", e);
                            //NioTcpMessageChannel.get(selectionKey.channel());
                        }
                    }

                } catch (ClosedSelectorException ex) {
                    if(logger.isLoggingEnabled(LogWriter.TRACE_INFO)) {
                        logger.logInfo("Selector is closed");
                    }
                    return;
                } catch (Exception ex) {
        			logger.logError("Problem in the selector loop", ex);
        		}
        	}
        }
    }
    
    public NioTcpMessageChannel createMessageChannel(NioTcpMessageProcessor nioTcpMessageProcessor, SocketChannel client) throws IOException {
		NioTcpMessageChannel retval = nioHandler.getMessageChannel(client);
		if (retval == null) {
			retval = new NioTcpMessageChannel(nioTcpMessageProcessor,
					client);
			nioHandler.putMessageChannel(client, retval);
		}
		retval.messageProcessor = nioTcpMessageProcessor;
		retval.myClientInputStream = client.socket().getInputStream();
		return retval;
	}    
    
    public NioTcpMessageProcessor(InetAddress ipAddress,  SIPTransactionStack sipStack, int port) {
    	super(ipAddress, port, "TCP", sipStack);
    	nioHandler = new NIOHandler(sipStack, this);
    }
    
    
    ConnectionOrientedMessageChannel constructMessageChannel (InetAddress targetHost, int port) throws IOException {
        return new NioTcpMessageChannel(targetHost,
                                port, sipStack, this);
    }
        
    /**
     * This private version is thread safe using proper critical session.
     * 
     * We don't use putIfAbset from CHM since creating a channel instance itself
     * is quite heavy. See https://github.com/RestComm/jain-sip/issues/80.
     * 
     * Using synchronized at method level, instead of any internal att, 
     * as we had in non Nio impl. This is better than use sync section with 
     * non-volatile variable. 
     * @param key
     * @param targetHost
     * @param port
     * @return
     * @throws IOException 
     */
    private synchronized MessageChannel createMessageChannel(String key, InetAddress targetHost, int port)  throws IOException {
        ConnectionOrientedMessageChannel retval = messageChannels.get(key);
        //once locked, we need to check condition again
        if( retval == null ) {
                retval = constructMessageChannel(targetHost,
                                port);
                this.messageChannels.put(key, retval);
                retval.isCached = true;
                if (logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
                        logger.logDebug("key " + key);
                        logger.logDebug("Creating " + retval);
                }
                if (this.sipStack.nioMode.equals(NIOMode.BLOCKING)) {
                	selector.wakeup();
                }
        }  		
        return retval;      
    }     

    @Override
    public MessageChannel createMessageChannel(HostPort targetHostPort) throws IOException {
    	if (logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
    		logger.logDebug("NioTcpMessageProcessor::createMessageChannel: " + targetHostPort);
    	}
        MessageChannel retval = null;
    	try {
    		String key = MessageChannel.getKey(targetHostPort, transport);
		retval = messageChannels.get(key);
                //here we use double-checked locking trying to reduce contention	
    		if (retval == null) {
                    retval = createMessageChannel(key, 
                            targetHostPort.getInetAddress(), targetHostPort.getPort());  			
		}    		
    	} finally {
    		if(logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
    			logger.logDebug("MessageChannel::createMessageChannel - exit " + retval);
    		}
    	}
        return retval;
    }

    @Override
    public MessageChannel createMessageChannel(InetAddress targetHost, int port) throws IOException {
        String key = MessageChannel.getKey(targetHost, port, transport);
	MessageChannel retval = messageChannels.get(key);
        //here we use double-checked locking trying to reduce contention	
	if (retval == null) {
            retval = createMessageChannel(key, targetHost, port);
	}
	return retval;
    }

    // https://java.net/jira/browse/JSIP-475
    @Override
    protected synchronized void remove(
    		ConnectionOrientedMessageChannel messageChannel) {
    	if (logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
            logger.logDebug(Thread.currentThread() + " removing " + ((NioTcpMessageChannel)messageChannel).getSocketChannel() + " from processor " + getIpAddress()+ ":" + getPort() + "/" + getTransport());
        }
    	pendingData.remove(((NioTcpMessageChannel)messageChannel).getSocketChannel());
    	super.remove(messageChannel);
    }
    
    @Override
    public int getDefaultTargetPort() {
        return 5060;
    }

    @Override
    public boolean isSecure() {
        return false;
    }

   

    @Override
    public void start() throws IOException {
        selector = Selector.open();
        channel = ServerSocketChannel.open();
        channel.configureBlocking(false);
        InetSocketAddress isa  = new InetSocketAddress(super.getIpAddress(), super.getPort());
        channel.socket().bind(isa);
        channel.register(selector, SelectionKey.OP_ACCEPT);
        selectorThread = new Thread(createProcessorTask());
        selectorThread.start();
        selectorThread.setName("NioSelector-" + getTransport() + '-' + getIpAddress().getHostAddress() + '/' + getPort());
    }
    
    protected ProcessorTask createProcessorTask() {
    	return new ProcessorTask();
    }

    @Override
    public void stop() {
    	try {
    		if(selector.isOpen())
    			selector.close();
    		
    		nioHandler.stop();    		
    	} catch (Exception ex) {
    		logger.logError("Problem closing channel " , ex);
    	}
        try {
            channel.close();
        } catch (Exception ex) {
    		logger.logError("Problem closing channel " , ex);
    	}
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy