netty5/src/main/java/org/jboss/netty/channel/Channel.java

284 lines
9.7 KiB
Java
Raw Normal View History

/*
* JBoss, Home of Professional Open Source
*
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* by the @author tags. See the COPYRIGHT.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.netty.channel;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
import java.util.UUID;
/**
2008-09-02 09:22:16 +02:00
* A nexus to a network socket or a component which is capable of I/O
* operations such as read, write, connect, and bind.
2008-09-02 09:13:20 +02:00
* <p>
* A channel provides a user:
* <ul>
2008-09-02 09:22:16 +02:00
* <li>the current state of the channel (e.g. open, bound, and connected),</li>
* <li>the configuration parameters of the channel (e.g. receive buffer size),</li>
* <li>the I/O operations that the channel supports (e.g. read, write, connect, and bind), and</li>
2008-09-02 09:13:20 +02:00
* <li>the {@link ChannelPipeline} which handles all I/O events and requests
2008-09-02 09:22:16 +02:00
* associated with the channel. This is the most important place, where
* your application logic kicks into an action.</li>
2008-09-02 09:13:20 +02:00
* </ul>
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
* @apiviz.composedOf org.jboss.netty.channel.ChannelConfig
* @apiviz.composedOf org.jboss.netty.channel.ChannelPipeline
*/
public interface Channel {
2008-09-02 09:13:20 +02:00
/**
* The {@link #getInterestOps() interestOps} value which tells that the
* I/O thread will not read a message from the channel but will perform
* the requested write operation immediately.
*/
static int OP_NONE = 0;
2008-09-02 09:13:20 +02:00
/**
* The {@link #getInterestOps() interestOps} value which tells that the
* I/O thread will read a message from the channel and will perform the
* requested write operation immediately.
*/
static int OP_READ = 1;
2008-09-02 09:13:20 +02:00
/**
* The {@link #getInterestOps() interestOps} value which tells that the
* I/O thread will not read a message from the channel and will not perform
* the requested write operation immediately. Any write requests made when
* {@link #OP_WRITE} flag is set are queued until the I/O thread is ready
* to process the queued write requests.
*/
static int OP_WRITE = 4;
2008-09-02 09:13:20 +02:00
/**
* The {@link #getInterestOps() interestOps} value which tells that the
* I/O thread will read a message from the channel but will not perform
* the requested write operation immediately. Any write requests made when
* {@link #OP_WRITE} flag is set are queued until the I/O thread is ready
* to process the queued write requests.
*/
static int OP_READ_WRITE = OP_READ | OP_WRITE;
2008-09-02 09:13:20 +02:00
/**
* Returns the {@link UUID} of this channel.
*/
UUID getId();
2008-09-02 09:13:20 +02:00
/**
* Returns the {@link ChannelFactory} which created this channel.
*/
ChannelFactory getFactory();
2008-09-02 09:13:20 +02:00
/**
* Returns the parent of this channel.
*
* @return the parent channel.
* {@code null} if this channel doesn't have a parent channel.
*/
Channel getParent();
2008-09-02 09:13:20 +02:00
/**
* Returns the configuration of this channel.
*/
ChannelConfig getConfig();
2008-09-02 09:13:20 +02:00
/**
* Returns the {@link ChannelPipeline} which handles {@link ChannelEvent}s
* associated with this channel.
*/
ChannelPipeline getPipeline();
2008-09-02 09:13:20 +02:00
/**
* Returns {@code true} if and only if this channel is open.
2008-09-02 09:13:20 +02:00
*/
boolean isOpen();
2008-09-02 09:13:20 +02:00
/**
* Returns {@code true} if and only if this channel is bound to a
2008-09-02 09:13:20 +02:00
* {@linkplain #getLocalAddress() local address}.
*/
boolean isBound();
2008-09-02 09:13:20 +02:00
/**
* Returns {@code true} if and only if this channel is connected to a
2008-09-02 09:13:20 +02:00
* {@linkplain #getRemoteAddress() remote address}.
*/
boolean isConnected();
2008-09-02 09:13:20 +02:00
/**
* Returns the local address where this channel is bound to. The returned
* {@link SocketAddress} is supposed to be down-cast into more concrete
* type such as {@link InetSocketAddress} to retrieve the detailed
* information.
2008-09-02 09:13:20 +02:00
*
* @return the local address of this channel.
* {@code null} if this channel is not bound.
*/
SocketAddress getLocalAddress();
2008-09-02 09:13:20 +02:00
/**
* Returns the remote address where this channel is connected to. The
* returned {@link SocketAddress} is supposed to be down-cast into more
* concrete type such as {@link InetSocketAddress} to retrieve the detailed
* information.
2008-09-02 09:13:20 +02:00
*
* @return the remote address of this channel.
* {@code null} if this channel is not connected.
*/
SocketAddress getRemoteAddress();
2008-09-02 09:13:20 +02:00
/**
* Sends a message to this channel asynchronously.
*
* @param message the message to write
*
* @return the {@link ChannelFuture} which will be notified when the
* write request succeeds or fails
*
* @throws NullPointerException if the specified message is {@code null}
2008-09-02 09:13:20 +02:00
*/
ChannelFuture write(Object message);
2008-09-02 09:13:20 +02:00
/**
* Sends a message to this channel asynchronously. It has an additional
* parameter that allows a user to specify where to send the specified
* message instead of this channel's current remote address.
*
* @param message the message to write
* @param remoteAddress where to send the specified message.
* This method is identical to {@link #write(Object)}
* if {@code null} is specified here.
2008-09-02 09:13:20 +02:00
*
* @return the {@link ChannelFuture} which will be notified when the
* write request succeeds or fails
*
* @throws NullPointerException if the specified message is {@code null}
2008-09-02 09:13:20 +02:00
*/
ChannelFuture write(Object message, SocketAddress remoteAddress);
2008-09-02 09:13:20 +02:00
/**
* Binds this channel to the specified local address asynchronously.
*
* @param localAddress where to bind
*
* @return the {@link ChannelFuture} which will be notified when the
* bind request succeeds or fails
*
* @throws NullPointerException if the specified address is {@code null}
2008-09-02 09:13:20 +02:00
*/
ChannelFuture bind(SocketAddress localAddress);
2008-09-02 09:13:20 +02:00
/**
* Connects this channel to the specified remote address asynchronously.
*
* @param remoteAddress where to connect
*
* @return the {@link ChannelFuture} which will be notified when the
* connection request succeeds or fails
*
* @throws NullPointerException if the specified address is {@code null}
2008-09-02 09:13:20 +02:00
*/
ChannelFuture connect(SocketAddress remoteAddress);
2008-09-02 09:13:20 +02:00
/**
* Disconnects this channel from the current remote address asynchronously.
*
* @return the {@link ChannelFuture} which will be notified when the
* disconnection request succeeds or fails
*/
ChannelFuture disconnect();
2008-09-02 09:13:20 +02:00
/**
* Closes this channel asynchronously. If this channel is bound or
* connected, it will be disconnected and unbound first.
*
* @return the {@link ChannelFuture} which will be notified when the
* close request succeeds or fails
*/
ChannelFuture close();
2008-09-02 09:13:20 +02:00
/**
* Returns the current {@code interestOps} of this channel.
*
* @return {@link #OP_NONE}, {@link #OP_READ}, {@link #OP_WRITE}, or
* {@link #OP_READ_WRITE}
*/
int getInterestOps();
2008-09-02 09:13:20 +02:00
/**
* Returns {@code true} if and only if the I/O thread will read a message
* from this channel. This method is a shortcut to the following code:
* <pre>
* return (getInterestOps() & OP_READ) != 0;
* </pre>
*/
boolean isReadable();
2008-09-02 09:13:20 +02:00
/**
* Returns {@code true} if and only if the I/O thread will perform the
* requested write operation immediately. Any write requests made when
* this method returns {@code false} are queued until the I/O thread is
* ready to process the queued write requests. This method is a shortcut
* to the following code:
* <pre>
* return (getInterestOps() & OP_WRITE) != 0;
* </pre>
*/
boolean isWritable();
2008-09-02 09:13:20 +02:00
/**
* Changes the {@code interestOps} of this channel asynchronously.
*
* @param interestOps the new {@code interestOps}
*
* @return the {@link ChannelFuture} which will be notified when the
* {@code interestOps} change request succeeds or fails
*/
ChannelFuture setInterestOps(int interestOps);
2008-09-02 09:13:20 +02:00
/**
* Suspends or resumes the read operation of the I/O thread asynchronously.
* This method is a shortcut to the following code:
* <pre>
* int interestOps = getInterestOps();
* if (readable) {
* setInterestOps(interestOps | OP_READ);
* } else {
* setInterestOps(interestOps & ~OP_READ);
* }
* </pre>
*
* @param readable {@code true} to resume the read operation and
* {@code false} to suspend the read operation
*
* @return the {@link ChannelFuture} which will be notified when the
* {@code interestOps} change request succeeds or fails
*/
ChannelFuture setReadable(boolean readable);
}