The TCPSocket
class is a concrete derived class of IOAsioSocket
that represents a TCP socket.
More...
#include <tcp_socket.h>
Public Member Functions | |
TCPSocket (boost::asio::ip::tcp::socket &socket) | |
Constructor from an ASIO TCP socket. | |
TCPSocket (const IOServicePtr &service) | |
Constructor. | |
virtual | ~TCPSocket () |
Destructor. | |
virtual void | asyncReceive (void *data, size_t length, size_t offset, IOEndpoint *endpoint, C &callback) |
Receive Asynchronously. | |
void | asyncSend (const void *data, size_t length, C &callback) |
Send Asynchronously without count. | |
virtual void | asyncSend (const void *data, size_t length, const IOEndpoint *endpoint, C &callback) |
Send Asynchronously. | |
virtual void | cancel () |
Cancel I/O On Socket. | |
virtual void | close () |
Close socket. | |
virtual boost::asio::ip::tcp::socket & | getASIOSocket () const |
Returns reference to the underlying ASIO socket. | |
virtual int | getNative () const |
Return file descriptor of underlying socket. | |
virtual int | getProtocol () const |
Return protocol of socket. | |
virtual bool | isOpenSynchronous () const |
Is "open()" synchronous? | |
bool | isUsable () const |
Checks if the connection is usable. | |
virtual void | open (const IOEndpoint *endpoint, C &callback) |
Open Socket. | |
virtual bool | processReceivedData (const void *staging, size_t length, size_t &cumulative, size_t &offset, size_t &expected, isc::util::OutputBufferPtr &buff) |
Process received data packet. | |
![]() | |
virtual | ~IOAsioSocket ()=default |
The destructor. | |
![]() | |
virtual | ~IOSocket () |
The destructor. | |
Additional Inherited Members | |
![]() | |
typedef boost::asio::socket_base::reuse_address | ReuseAddress |
Represents SO_REUSEADDR socket option. | |
![]() | |
static IOSocket & | getDummyUDPSocket () |
Return a non-usable "dummy" UDP socket for testing. | |
static IOSocket & | getDummyTCPSocket () |
Return a non-usable "dummy" TCP socket for testing. | |
![]() | |
IOAsioSocket () | |
The default constructor. | |
![]() | |
IOSocket () | |
The default constructor. | |
The TCPSocket
class is a concrete derived class of IOAsioSocket
that represents a TCP socket.
C | Callback type |
Definition at line 48 of file tcp_socket.h.
isc::asiolink::TCPSocket< C >::TCPSocket | ( | boost::asio::ip::tcp::socket & | socket | ) |
Constructor from an ASIO TCP socket.
socket | The ASIO representation of the TCP socket. It is assumed that the caller will open and close the socket, so these operations are a no-op for that socket. |
Definition at line 254 of file tcp_socket.h.
isc::asiolink::TCPSocket< C >::TCPSocket | ( | const IOServicePtr & | service | ) |
Constructor.
Used when the TCPSocket is being asked to manage its own internal socket. In this case, the open() and close() methods are used.
service | I/O Service object used to manage the socket. |
Definition at line 261 of file tcp_socket.h.
|
virtual |
Destructor.
Definition at line 269 of file tcp_socket.h.
|
virtual |
Receive Asynchronously.
Calls the underlying socket's async_receive() method to read a packet of data from a remote endpoint. Arrival of the data is signalled via a call to the callback function.
data | Buffer to receive incoming message |
length | Length of the data buffer |
offset | Offset into buffer where data is to be put |
endpoint | Source of the communication |
callback | Callback object |
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 374 of file tcp_socket.h.
References isc::asiolink::TCPEndpoint::getASIOEndpoint(), isc::asiolink::IOEndpoint::getProtocol(), isc_throw, and isc_throw_assert.
void isc::asiolink::TCPSocket< C >::asyncSend | ( | const void * | data, |
size_t | length, | ||
C & | callback ) |
Send Asynchronously without count.
This variant of the method sends data over the TCP socket without preceding the data with a data count. Eventually, we should migrate the virtual method to not insert the count but there are existing classes using the count. Once this migration is done, the existing virtual method should be replaced by this method.
data | Data to send |
length | Length of data to send |
callback | Callback object. |
BufferTooLarge | on attempt to send a buffer larger than 64kB. |
Definition at line 317 of file tcp_socket.h.
References isc_throw.
|
virtual |
Send Asynchronously.
Calls the underlying socket's async_send() method to send a packet of data asynchronously to the remote endpoint. The callback will be called on completion.
data | Data to send |
length | Length of data to send |
endpoint | Target of the send. (Unused for a TCP socket because that was determined when the connection was opened.) |
callback | Callback object. |
BufferTooLarge | on attempt to send a buffer larger than 64kB. |
Need to copy the data into a temporary buffer and precede it with a two-byte count field.
Ensure it fits into 16 bits
Copy data into a buffer preceded by the count field.
... and send it
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 340 of file tcp_socket.h.
References isc_throw.
|
virtual |
Cancel I/O On Socket.
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 476 of file tcp_socket.h.
|
virtual |
Close socket.
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 486 of file tcp_socket.h.
|
inlinevirtual |
Returns reference to the underlying ASIO socket.
Definition at line 214 of file tcp_socket.h.
|
inlinevirtual |
Return file descriptor of underlying socket.
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 75 of file tcp_socket.h.
|
inlinevirtual |
Return protocol of socket.
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 80 of file tcp_socket.h.
|
inlinevirtual |
Is "open()" synchronous?
Indicates that the opening of a TCP socket is asynchronous.
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 87 of file tcp_socket.h.
|
inline |
Checks if the connection is usable.
The connection is usable if the socket is open and the peer has not closed its connection.
Definition at line 97 of file tcp_socket.h.
|
virtual |
Open Socket.
Opens the TCP socket. This is an asynchronous operation, completion of which will be signalled via a call to the callback function.
endpoint | Endpoint to which the socket will connect. |
callback | Callback object. |
the derived class and the two classes differ on return type.
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 276 of file tcp_socket.h.
References isc::asiolink::TCPEndpoint::getASIOEndpoint(), isc::asiolink::IOEndpoint::getFamily(), isc::asiolink::IOEndpoint::getProtocol(), and isc_throw_assert.
|
virtual |
Process received data packet.
See the description of IOAsioSocket::receiveComplete for a complete description of this method.
staging | Pointer to the start of the staging buffer. |
length | Amount of data in the staging buffer. |
cumulative | Amount of data received before the staging buffer is processed. |
offset | Unused. |
expected | unused. |
buff | Output buffer. Data in the staging buffer is be copied to this output buffer in the call. |
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 413 of file tcp_socket.h.
References isc::util::readUint16().