|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.swans.trans.TcpServerSocket
public class TcpServerSocket
SWANS Implementation of Server Socket entity.
Nested Class Summary | |
---|---|
static class |
TcpServerSocket.TcpServerSocketCallback
Implementation of Socket Callback for TcpServerSocket. |
Nested classes/interfaces inherited from interface jist.swans.trans.SocketInterface |
---|
SocketInterface.TcpServerSocketInterface, SocketInterface.TcpSocketInterface |
Field Summary | |
---|---|
private int |
backlog
Backlog. |
private boolean |
bindInConstructor
Indicator if socket is to be bound when created. |
private TransInterface.SocketHandler.TcpHandler |
callback
Reference to the server socket's callback. |
private Channel |
channel
Channel (for blocking implementation). |
private int |
currentState
Current state of the socket. |
private boolean |
isBound
The bind state of the server socket. |
private boolean |
isClosed
The state of the socket (true if socket is closed). |
private java.net.InetAddress |
laddr
Local address. |
private int |
lport
Local port. |
private SocketInterface.TcpServerSocketInterface |
self
Entity reference to TcpServerSocket. |
private TransInterface.TransTcpInterface |
tcpEntity
Entity reference to transport layer. |
Constructor Summary | |
---|---|
TcpServerSocket()
Creates an unbound server socket. |
|
TcpServerSocket(int port)
Creates a server socket, bound to the specified port. |
|
TcpServerSocket(int port,
int backlog)
Creates a server socket and binds it to the specified local port number, with the specified backlog. |
|
TcpServerSocket(int port,
int backlog,
java.net.InetAddress bindAddr)
Creates a server with the specified port, listen backlog, and local IP address to bind to. |
Method Summary | |
---|---|
void |
_jistPostInit()
Post-constructor call. |
TcpSocket |
accept()
Listens for a connection to be made to this socket and accepts it. |
void |
bind(java.net.SocketAddress bindpoint)
Binds the ServerSocket to a specific address (IP address and port number). |
void |
bind(java.net.SocketAddress endpoint,
int backlog)
Binds the ServerSocket to a specific address (IP address and port number). |
void |
checkPacketandState(TransTcp.TcpMessage msg,
NetAddress src)
Check and process the incoming packet depending on current state of the socket. |
void |
close()
Closes this socket. |
void |
createProxy()
Create an entity reference to itself. |
java.nio.channels.ServerSocketChannel |
getChannel()
Returns the unique ServerSocketChannel object associated with this socket, if any. |
java.net.InetAddress |
getInetAddress()
Returns the local address of this server socket/socket. |
int |
getLocalPort()
Returns the port on which this socket is listening. |
java.net.SocketAddress |
getLocalSocketAddress()
Returns the address of the endpoint this socket is bound to, or null if it is not bound yet. |
SocketInterface.TcpServerSocketInterface |
getProxy()
Returns the entity reference to the server socket itself. |
static int |
getRandomSequenceNumber()
Method to get a random sequence number. |
int |
getReceiveBufferSize()
Gets the value of the SO_RCVBUF option for this ServerSocket, that is the proposed buffer size that will be used for Sockets accepted from this ServerSocket. |
boolean |
getReuseAddress()
Tests if SO_REUSEADDR is enabled. |
int |
getSoTimeout()
Retrieve setting for SO_TIMEOUT. |
protected void |
implAccept(java.net.Socket s)
Subclasses of ServerSocket use this method to override accept() to return their own subclass of socket. |
private void |
initializeAll(java.net.InetAddress lAddr,
int lPort,
int backlog,
boolean doBind)
Initializes all of the server socket variables. |
boolean |
isBound()
Returns the binding state of the ServerSocket. |
boolean |
isClosed()
Returns the closed state of the ServerSocket. |
void |
setReceiveBufferSize(int size)
Sets a default proposed value for the SO_RCVBUF option for sockets accepted from this ServerSocket. |
void |
setReuseAddress(boolean on)
Enable/disable the SO_REUSEADDR socket option. |
static void |
setSocketFactory(java.net.SocketImplFactory fac)
Sets the server socket implementation factory for the application. |
void |
setSoTimeout(int timeout)
Enable/disable SO_TIMEOUT with the specified timeout, in milliseconds. |
void |
setTcpEntity(TransInterface.TransTcpInterface tcpEntity)
Sets the reference to the network layer. |
java.lang.String |
toString()
Returns the implementation address and implementation port of this socket as a String. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private SocketInterface.TcpServerSocketInterface self
private int lport
private java.net.InetAddress laddr
private Channel channel
private TransInterface.SocketHandler.TcpHandler callback
private TransInterface.TransTcpInterface tcpEntity
private boolean isBound
private boolean isClosed
private int backlog
private boolean bindInConstructor
private int currentState
Constructor Detail |
---|
public TcpServerSocket()
public TcpServerSocket(int port)
port
- the port number, or 0 to use any free port.public TcpServerSocket(int port, int backlog)
port
- the specified port, or 0 to use any free port.backlog
- the maximum length of the queue.public TcpServerSocket(int port, int backlog, java.net.InetAddress bindAddr)
port
- the local TCP portbacklog
- the listen backlogbindAddr
- the local InetAddress the server will bind toMethod Detail |
---|
public void createProxy()
public SocketInterface.TcpServerSocketInterface getProxy()
public void setTcpEntity(TransInterface.TransTcpInterface tcpEntity)
setTcpEntity
in interface SocketInterface
tcpEntity
- entity reference to transport layerpublic void _jistPostInit()
_jistPostInit
in interface SocketInterface
public TcpSocket accept()
accept
in interface SocketInterface.TcpServerSocketInterface
public void bind(java.net.SocketAddress bindpoint)
bind
in interface SocketInterface
bindpoint
- The IP address & port number to bind to.public void bind(java.net.SocketAddress endpoint, int backlog)
bind
in interface SocketInterface.TcpServerSocketInterface
endpoint
- The IP address & port number to bind to.backlog
- The listen backlog length.public void close()
close
in interface SocketInterface
public java.nio.channels.ServerSocketChannel getChannel()
getChannel
in interface SocketInterface.TcpServerSocketInterface
public java.net.InetAddress getInetAddress()
getInetAddress
in interface SocketInterface
public int getLocalPort()
getLocalPort
in interface SocketInterface
public java.net.SocketAddress getLocalSocketAddress()
getLocalSocketAddress
in interface SocketInterface
public int getReceiveBufferSize()
getReceiveBufferSize
in interface SocketInterface
public boolean getReuseAddress()
getReuseAddress
in interface SocketInterface
public int getSoTimeout()
getSoTimeout
in interface SocketInterface
protected void implAccept(java.net.Socket s)
s
- the Socketpublic boolean isBound()
isBound
in interface SocketInterface
public boolean isClosed()
isClosed
in interface SocketInterface
public void setReceiveBufferSize(int size)
setReceiveBufferSize
in interface SocketInterface
size
- the size to which to set the receive buffer size.
This value must be greater than 0.public void setReuseAddress(boolean on)
setReuseAddress
in interface SocketInterface
on
- whether to enable or disable the socket optionpublic static void setSocketFactory(java.net.SocketImplFactory fac)
fac
- the desired factory.public void setSoTimeout(int timeout)
setSoTimeout
in interface SocketInterface
timeout
- the specified timeout, in millisecondspublic java.lang.String toString()
toString
in interface SocketInterface
toString
in class java.lang.Object
private void initializeAll(java.net.InetAddress lAddr, int lPort, int backlog, boolean doBind)
lAddr
- local addresslPort
- local portbacklog
- listen backlog lengthdoBind
- true if socket is to be bound when createdpublic void checkPacketandState(TransTcp.TcpMessage msg, NetAddress src)
checkPacketandState
in interface SocketInterface
msg
- the incoming TCP messagesrc
- source of packetpublic static int getRandomSequenceNumber()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |