Package org.activeio.net

Source Code of org.activeio.net.AIOAsynchChannelFactory

/**
*
* Copyright 2004 Hiram Chirino
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
**/
package org.activeio.net;

import java.io.IOException;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.URI;
import java.net.URISyntaxException;

import org.activeio.AsynchChannel;
import org.activeio.AsynchChannelFactory;
import org.activeio.AsynchChannelServer;
import org.activeio.adapter.SynchToAsynchChannelServerAdapter;
import org.activeio.filter.WriteBufferedAsynchChannel;
import org.activeio.packet.ByteBufferPacket;

import com.ibm.io.async.AsyncServerSocketChannel;
import com.ibm.io.async.AsyncSocketChannel;

/**
* A TcpAsynchChannelFactory creates {@see org.activeio.net.TcpAsynchChannel}
* and {@see org.activeio.net.TcpAsynchChannelServer} objects.
*
* @version $Revision$
*/
public class AIOAsynchChannelFactory implements AsynchChannelFactory {

    protected static final int DEFAULT_BACKLOG = 500;
    private int backlog = DEFAULT_BACKLOG;
       
    /**
     * Uses the {@param location}'s host and port to create a tcp connection to a remote host.
     *
     * @see org.activeio.AsynchChannelFactory#openAsynchChannel(java.net.URI)
     */
    public AsynchChannel openAsynchChannel(URI location) throws IOException {
        AsyncSocketChannel channel = AsyncSocketChannel.open();
        channel.connect(new InetSocketAddress(location.getHost(), location.getPort()));
        return createAsynchChannel(channel);
    }

    /**
     * @param channel
     * @return
     * @throws IOException
     */
    protected AsynchChannel createAsynchChannel(AsyncSocketChannel socketChannel) throws IOException {
        AsynchChannel channel = new AIOAsynchChannel(socketChannel);
        channel = new WriteBufferedAsynchChannel(channel, ByteBufferPacket.createDefaultBuffer(true), false);
        return channel;
    }

    /**
     * Binds a server socket a the {@param location}'s port.
     *
     * @see org.activeio.AsynchChannelFactory#bindAsynchChannel(java.net.URI)
     */
    public AsynchChannelServer bindAsynchChannel(URI bindURI) throws IOException {
       
        String host = bindURI.getHost();
        InetSocketAddress address;
        if ( host == null || host.length() == 0 || host.equals("localhost") || host.equals("0.0.0.0") ) {
            address = new InetSocketAddress(bindURI.getPort());
        } else {
            address = new InetSocketAddress(bindURI.getHost(), bindURI.getPort());
        }
       
        AsyncServerSocketChannel serverSocketChannel = AsyncServerSocketChannel.open();
        serverSocketChannel.socket().bind(address,backlog);
       
        URI connectURI = bindURI;
        try {
            connectURI = URISupport.changeHost(connectURI, InetAddress.getLocalHost().getHostName());
            connectURI = URISupport.changePort(connectURI, serverSocketChannel.socket().getLocalPort());
        } catch (URISyntaxException e) {
            throw (IOException)new IOException("Could not build connect URI: "+e).initCause(e);
        }
       
        return SynchToAsynchChannelServerAdapter.adapt(
                new AIOSynchChannelServer(serverSocketChannel, bindURI, connectURI));
    }
   
    /**
     * @return Returns the backlog.
     */
    public int getBacklog() {
        return backlog;
    }

    /**
     * @param backlog
     *            The backlog to set.
     */
    public void setBacklog(int backlog) {
        this.backlog = backlog;
    }


}
TOP

Related Classes of org.activeio.net.AIOAsynchChannelFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.