Package jnr.unixsocket
Class UnixDatagramSocket
- java.lang.Object
-
- java.net.DatagramSocket
-
- jnr.unixsocket.UnixDatagramSocket
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public class UnixDatagramSocket extends java.net.DatagramSocketA SOCK_DGRAM variant of an AF_UNIX socket. This specializaton of DatagramSocket delegates most of it's funtionality to the corresponding UnixDatagramChannel.
-
-
Constructor Summary
Constructors Constructor Description UnixDatagramSocket()Constructs a new unbound instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbind(java.net.SocketAddress local)Binds this UnixDatagramSocket to a specific AF_UNIX address.voidclose()voidconnect(java.net.InetAddress addr, int port)voidconnect(java.net.SocketAddress addr)voiddisconnect()java.nio.channels.DatagramChannelgetChannel()CredentialsgetCredentials()Retrieves the credentials for this UNIX socket.java.net.InetAddressgetInetAddress()Returns the address to which this socket is connected (NOT implemented).java.net.SocketAddressgetLocalSocketAddress()Returns the address of the endpoint this socket is bound to.intgetReceiveBufferSize()java.net.SocketAddressgetRemoteSocketAddress()Returns the address of the endpoint this socket is connected to, ornullif it is unconnected.intgetSendBufferSize()intgetSoTimeout()booleanisBound()booleanisClosed()booleanisConnected()voidreceive(java.net.DatagramPacket p)Receives a datagram packet from this socket (NOT implemented).voidsend(java.net.DatagramPacket p)Sends a datagram packet from this socket (NOT implemented).voidsetReceiveBufferSize(int size)voidsetSendBufferSize(int size)voidsetSoTimeout(int timeout)
-
-
-
Method Detail
-
bind
public void bind(java.net.SocketAddress local) throws java.net.SocketExceptionBinds this UnixDatagramSocket to a specific AF_UNIX address.If the address is
null, then on Linux, an autobind will be performed, which will bind this socket in Linux' abstract namespace on a unique path, chosen by the system. On all other platforms, A temporary path in the regular filesystem will be chosen.- Overrides:
bindin classjava.net.DatagramSocket- Parameters:
local- TheUnixSocketAddressto bind to.- Throws:
java.net.SocketException- if any error happens during the bind, or if the socket is already bound.java.nio.channels.UnsupportedAddressTypeException- if addr is a SocketAddress subclass not supported by this socket.
-
disconnect
public void disconnect()
- Overrides:
disconnectin classjava.net.DatagramSocket
-
close
public void close()
- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.net.DatagramSocket
-
connect
public void connect(java.net.SocketAddress addr) throws java.net.SocketException- Overrides:
connectin classjava.net.DatagramSocket- Throws:
java.net.SocketException
-
connect
public void connect(java.net.InetAddress addr, int port)- Overrides:
connectin classjava.net.DatagramSocket
-
getChannel
public java.nio.channels.DatagramChannel getChannel()
- Overrides:
getChannelin classjava.net.DatagramSocket
-
getInetAddress
public java.net.InetAddress getInetAddress()
Returns the address to which this socket is connected (NOT implemented). Since AF_UNIX sockets can not have an InetAddress, this returns alwaysnull. UsegetRemoteSocketAddress()instead, which always returns aUnixSocketAddress.- Overrides:
getInetAddressin classjava.net.DatagramSocket- Returns:
nullalways.
-
getLocalSocketAddress
public java.net.SocketAddress getLocalSocketAddress()
Returns the address of the endpoint this socket is bound to.- Overrides:
getLocalSocketAddressin classjava.net.DatagramSocket- Returns:
- a
SocketAddressrepresenting the local endpoint of this socket, ornullif it is closed or not bound. A non-null return value is always of typeUnixSocketAddress - See Also:
bind(SocketAddress)
-
getRemoteSocketAddress
public java.net.SocketAddress getRemoteSocketAddress()
Returns the address of the endpoint this socket is connected to, ornullif it is unconnected.- Overrides:
getRemoteSocketAddressin classjava.net.DatagramSocket- Returns:
- a
SocketAddressrepresenting the remote endpoint of this socket, ornullif it is not connected. A non-null return value is always of typeUnixSocketAddress
-
isBound
public boolean isBound()
- Overrides:
isBoundin classjava.net.DatagramSocket
-
isClosed
public boolean isClosed()
- Overrides:
isClosedin classjava.net.DatagramSocket
-
isConnected
public boolean isConnected()
- Overrides:
isConnectedin classjava.net.DatagramSocket
-
getCredentials
public final Credentials getCredentials() throws java.net.SocketException
Retrieves the credentials for this UNIX socket. Clients calling this method will receive the server's credentials, and servers will receive the client's credentials. User ID, group ID, and PID are supplied. See man unix 7; SCM_CREDENTIALS- Returns:
- the credentials of the remote; null if not connected
- Throws:
java.lang.UnsupportedOperationException- if the underlying socket library doesn't support the SO_PEERCRED optionjava.net.SocketException- if fetching the socket option failed.
-
getReceiveBufferSize
public int getReceiveBufferSize() throws java.net.SocketException- Overrides:
getReceiveBufferSizein classjava.net.DatagramSocket- Throws:
java.net.SocketException
-
getSendBufferSize
public int getSendBufferSize() throws java.net.SocketException- Overrides:
getSendBufferSizein classjava.net.DatagramSocket- Throws:
java.net.SocketException
-
getSoTimeout
public int getSoTimeout() throws java.net.SocketException- Overrides:
getSoTimeoutin classjava.net.DatagramSocket- Throws:
java.net.SocketException
-
setReceiveBufferSize
public void setReceiveBufferSize(int size) throws java.net.SocketException- Overrides:
setReceiveBufferSizein classjava.net.DatagramSocket- Throws:
java.net.SocketException
-
setSendBufferSize
public void setSendBufferSize(int size) throws java.net.SocketException- Overrides:
setSendBufferSizein classjava.net.DatagramSocket- Throws:
java.net.SocketException
-
setSoTimeout
public void setSoTimeout(int timeout) throws java.net.SocketException- Overrides:
setSoTimeoutin classjava.net.DatagramSocket- Throws:
java.net.SocketException
-
send
public void send(java.net.DatagramPacket p) throws java.io.IOExceptionSends a datagram packet from this socket (NOT implemented). Unfortunately,DatagramPacketis final and can not deal with AF_UNIX addresses. Therefore, this functionality was omitted.- Overrides:
sendin classjava.net.DatagramSocket- Throws:
java.lang.UnsupportedOperationException- always.java.io.IOException- See Also:
DatagramPacket,DatagramSocket.send(java.net.DatagramPacket)
-
receive
public void receive(java.net.DatagramPacket p) throws java.io.IOExceptionReceives a datagram packet from this socket (NOT implemented). Unfortunately,DatagramPacketis final and can not deal with AF_UNIX addresses. Therefore, this functionality was omitted.- Overrides:
receivein classjava.net.DatagramSocket- Throws:
java.lang.UnsupportedOperationException- always.java.io.IOException- See Also:
DatagramPacket,DatagramSocket.receive(java.net.DatagramPacket)
-
-