QAbstractSocket Class
The QAbstractSocket class provides the base functionality common to all socket types. More...
| Header: | #include <QAbstractSocket> |
| qmake: | QT += network |
| Inherits: | QIODevice |
| Inherited By: | QTcpSocket and QUdpSocket |
Note: All functions in this class are reentrant.
Public Types
| enum | BindFlag { ShareAddress, DontShareAddress, ReuseAddressHint, DefaultForPlatform } |
| enum | NetworkLayerProtocol { IPv4Protocol, IPv6Protocol, AnyIPProtocol, UnknownNetworkLayerProtocol } |
| enum | PauseMode { PauseNever, PauseOnSslErrors } |
| enum | SocketError { ConnectionRefusedError, RemoteHostClosedError, HostNotFoundError, SocketAccessError, SocketResourceError, …, UnknownSocketError } |
| enum | SocketOption { LowDelayOption, KeepAliveOption, MulticastTtlOption, MulticastLoopbackOption, TypeOfServiceOption, …, PathMtuSocketOption } |
| enum | SocketState { UnconnectedState, HostLookupState, ConnectingState, ConnectedState, BoundState, …, ListeningState } |
| enum | SocketType { TcpSocket, UdpSocket, SctpSocket, UnknownSocketType } |
Detailed Description
QAbstractSocket is the base class for QTcpSocket and QUdpSocket and contains all common functionality of these two classes. If you need a socket, you have two options:
- Instantiate QTcpSocket or QUdpSocket.
- Create a native socket descriptor, instantiate QAbstractSocket, and call setSocketDescriptor() to wrap the native socket.
TCP (Transmission Control Protocol) is a reliable, stream-oriented, connection-oriented transport protocol. UDP (User Datagram Protocol) is an unreliable, datagram-oriented, connectionless protocol. In practice, this means that TCP is better suited for continuous transmission of data, whereas the more lightweight UDP can be used when reliability isn't important.
QAbstractSocket's API unifies most of the differences between the two protocols. For example, although UDP is connectionless, connectToHost() establishes a virtual connection for UDP sockets, enabling you to use QAbstractSocket in more or less the same way regardless of the underlying protocol. Internally, QAbstractSocket remembers the address and port passed to connectToHost(), and functions like read() and write() use these values.
At any time, QAbstractSocket has a state (returned by state()). The initial state is UnconnectedState. After calling connectToHost(), the socket first enters HostLookupState. If the host is found, QAbstractSocket enters ConnectingState and emits the hostFound() signal. When the connection has been established, it enters ConnectedState and emits connected(). If an error occurs at any stage, errorOccurred() is emitted. Whenever the state changes, stateChanged() is emitted. For convenience, isValid() returns true if the socket is ready for reading and writing, but note that the socket's state must be ConnectedState before reading and writing can occur.
Read or write data by calling read() or write(), or use the convenience functions readLine() and readAll(). QAbstractSocket also inherits getChar(), putChar(), and ungetChar() from QIODevice, which work on single bytes. The bytesWritten() signal is emitted when data has been written to the socket. Note that Qt does not limit the write buffer size. You can monitor its size by listening to this signal.
The readyRead() signal is emitted every time a new chunk of data has arrived. bytesAvailable() then returns the number of bytes that are available for reading. Typically, you would connect the readyRead() signal to a slot and read all available data there. If you don't read all the data at once, the remaining data will still be available later, and any new incoming data will be appended to QAbstractSocket's internal read buffer. To limit the size of the read buffer, call setReadBufferSize().
To close the socket, call disconnectFromHost(). QAbstractSocket enters QAbstractSocket::ClosingState. After all pending data has been written to the socket, QAbstractSocket actually closes the socket, enters QAbstractSocket::UnconnectedState, and emits disconnected(). If you want to abort a connection immediately, discarding all pending data, call abort() instead. If the remote host closes the connection, QAbstractSocket will emit errorOccurred(QAbstractSocket::RemoteHostClosedError), during which the socket state will still be ConnectedState, and then the disconnected() signal will be emitted.
The port and address of the connected peer is fetched by calling peerPort() and peerAddress(). peerName() returns the host name of the peer, as passed to connectToHost(). localPort() and localAddress() return the port and address of the local socket.
QAbstractSocket provides a set of functions that suspend the calling thread until certain signals are emitted. These functions can be used to implement blocking sockets:
- waitForConnected() blocks until a connection has been established.
- waitForReadyRead() blocks until new data is available for reading.
- waitForBytesWritten() blocks until one payload of data has been written to the socket.
- waitForDisconnected() blocks until the connection has closed.
We show an example:
int numRead = 0, numReadTotal = 0;
char buffer[50];
forever {
numRead = socket.read(buffer, 50);
// do whatever with array
numReadTotal += numRead;
if (numRead == 0 && !socket.waitForReadyRead())
break;
}
If waitForReadyRead() returns false, the connection has been closed or an error has occurred.
Programming with a blocking socket is radically different from programming with a non-blocking socket. A blocking socket doesn't require an event loop and typically leads to simpler code. However, in a GUI application, blocking sockets should only be used in non-GUI threads, to avoid freezing the user interface. See the fortuneclient and blockingfortuneclient examples for an overview of both approaches.
Note: We discourage the use of the blocking functions together with signals. One of the two possibilities should be used.
QAbstractSocket can be used with QTextStream and QDataStream's stream operators (operator<<() and operator>>()). There is one issue to be aware of, though: You must make sure that enough data is available before attempting to read it using operator>>().
See also QNetworkAccessManager and QTcpServer.
Member Type Documentation
enum QAbstractSocket::BindFlag
This enum describes the different flags you can pass to modify the behavior of QAbstractSocket::bind().
| Constant | Value | Description |
|---|---|---|
QAbstractSocket::ShareAddress | 0x1 | Allow other services to bind to the same address and port. This is useful when multiple processes share the load of a single service by listening to the same address and port (e.g., a web server with several pre-forked listeners can greatly improve response time). However, because any service is allowed to rebind, this option is subject to certain security considerations. Note that by combining this option with ReuseAddressHint, you will also allow your service to rebind an existing shared address. On Unix, this is equivalent to the SO_REUSEADDR socket option. On Windows, this is the default behavior, so this option is ignored. |
QAbstractSocket::DontShareAddress | 0x2 | Bind the address and port exclusively, so that no other services are allowed to rebind. By passing this option to QAbstractSocket::bind(), you are guaranteed that on success, your service is the only one that listens to the address and port. No services are allowed to rebind, even if they pass ReuseAddressHint. This option provides more security than ShareAddress, but on certain operating systems, it requires you to run the server with administrator privileges. On Unix and macOS, not sharing is the default behavior for binding an address and port, so this option is ignored. On Windows, this option uses the SO_EXCLUSIVEADDRUSE socket option. |
QAbstractSocket::ReuseAddressHint | 0x4 | Provides a hint to QAbstractSocket that it should try to rebind the service even if the address and port are already bound by another socket. On Windows and Unix, this is equivalent to the SO_REUSEADDR socket option. |
QAbstractSocket::DefaultForPlatform | 0x0 | The default option for the current platform. On Unix and macOS, this is equivalent to (DontShareAddress + ReuseAddressHint), and on Windows, it is equivalent to ShareAddress. |
This enum was introduced or modified in Qt 5.0.
enum QAbstractSocket::NetworkLayerProtocol
This enum describes the network layer protocol values used in Qt.
| Constant | Value | Description |
|---|---|---|
QAbstractSocket::IPv4Protocol | 0 | IPv4 |
QAbstractSocket::IPv6Protocol | 1 | IPv6 |
QAbstractSocket::AnyIPProtocol | 2 | Either IPv4 or IPv6 |
QAbstractSocket::UnknownNetworkLayerProtocol | -1 | Other than IPv4 and IPv6 |
See also QHostAddress::protocol().
enum QAbstractSocket::PauseMode
This enum describes the behavior of when the socket should hold back with continuing data transfer. The only notification currently supported is QSslSocket::sslErrors().
| Constant | Value | Description |
|---|---|---|
QAbstractSocket::PauseNever | 0x0 | Do not pause data transfer on the socket. This is the default and matches the behavior of Qt 4. |
QAbstractSocket::PauseOnSslErrors | 0x1 | Pause data transfer on the socket upon receiving an SSL error notification. I.E. QSslSocket::sslErrors(). |
This enum was introduced or modified in Qt 5.0.
enum QAbstractSocket::SocketError
This enum describes the socket errors that can occur.
| Constant | Value | Description |
|---|---|---|
QAbstractSocket::ConnectionRefusedError | 0 | The connection was refused by the peer (or timed out). |
QAbstractSocket::RemoteHostClosedError | 1 | The remote host closed the connection. Note that the client socket (i.e., this socket) will be closed after the remote close notification has been sent. |
QAbstractSocket::HostNotFoundError | 2 | The host address was not found. |
QAbstractSocket::SocketAccessError | 3 | The socket operation failed because the application lacked the required privileges. |
QAbstractSocket::SocketResourceError | 4 | The local system ran out of resources (e.g., too many sockets). |
QAbstractSocket::SocketTimeoutError | 5 | The socket operation timed out. |
QAbstractSocket::DatagramTooLargeError | 6 | The datagram was larger than the operating system's limit (which can be as low as 8192 bytes). |
QAbstractSocket::NetworkError | 7 | An error occurred with the network (e.g., the network cable was accidentally plugged out). |
QAbstractSocket::AddressInUseError | 8 | The address specified to QAbstractSocket::bind() is already in use and was set to be exclusive. |
QAbstractSocket::SocketAddressNotAvailableError | 9 | The address specified to QAbstractSocket::bind() does not belong to the host. |
QAbstractSocket::UnsupportedSocketOperationError | 10 | The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support). |
QAbstractSocket::ProxyAuthenticationRequiredError | 12 | The socket is using a proxy, and the proxy requires authentication. |
QAbstractSocket::SslHandshakeFailedError | 13 | The SSL/TLS handshake failed, so the connection was closed (only used in QSslSocket) |
QAbstractSocket::UnfinishedSocketOperationError | 11 | Used by QAbstractSocketEngine only, The last operation attempted has not finished yet (still in progress in the background). |
QAbstractSocket::ProxyConnectionRefusedError | 14 | Could not contact the proxy server because the connection to that server was denied |
QAbstractSocket::ProxyConnectionClosedError | 15 | The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) |
QAbstractSocket::ProxyConnectionTimeoutError | 16 | The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. |
QAbstractSocket::ProxyNotFoundError | 17 | The proxy address set with setProxy() (or the application proxy) was not found. |
QAbstractSocket::ProxyProtocolError | 18 | The connection negotiation with the proxy server failed, because the response from the proxy server could not be understood. |
QAbstractSocket::OperationError | 19 | An operation was attempted while the socket was in a state that did not permit it. |
QAbstractSocket::SslInternalError | 20 | The SSL library being used reported an internal error. This is probably the result of a bad installation or misconfiguration of the library. |
QAbstractSocket::SslInvalidUserDataError | 21 | Invalid data (certificate, key, cypher, etc.) was provided and its use resulted in an error in the SSL library. |
QAbstractSocket::TemporaryError | 22 | A temporary error occurred (e.g., operation would block and socket is non-blocking). |
QAbstractSocket::UnknownSocketError | -1 | An unidentified error occurred. |
See also QAbstractSocket::error() and QAbstractSocket::errorOccurred().
enum QAbstractSocket::SocketOption
This enum represents the options that can be set on a socket. If desired, they can be set after having received the connected() signal from the socket or after having received a new socket from a QTcpServer.
| Constant | Value | Description |
|---|---|---|
QAbstractSocket::LowDelayOption | 0 | Try to optimize the socket for low latency. For a QTcpSocket this would set the TCP_NODELAY option and disable Nagle's algorithm. Set this to 1 to enable. |
QAbstractSocket::KeepAliveOption | 1 | Set this to 1 to enable the SO_KEEPALIVE socket option |
QAbstractSocket::MulticastTtlOption | 2 | Set this to an integer value to set IP_MULTICAST_TTL (TTL for multicast datagrams) socket option. |
QAbstractSocket::MulticastLoopbackOption | 3 | Set this to 1 to enable the IP_MULTICAST_LOOP (multicast loopback) socket option. |
QAbstractSocket::TypeOfServiceOption | 4 | This option is not supported on Windows. This maps to the IP_TOS socket option. For possible values, see table below. |
QAbstractSocket::SendBufferSizeSocketOption | 5 | Sets the socket send buffer size in bytes at the OS level. This maps to the SO_SNDBUF socket option. This option does not affect the QIODevice or QAbstractSocket buffers. This enum value has been introduced in Qt 5.3. |
QAbstractSocket::ReceiveBufferSizeSocketOption | 6 | Sets the socket receive buffer size in bytes at the OS level. This maps to the SO_RCVBUF socket option. This option does not affect the QIODevice or QAbstractSocket buffers (see setReadBufferSize()). This enum value has been introduced in Qt 5.3. |
QAbstractSocket::PathMtuSocketOption | 7 | Retrieves the Path Maximum Transmission Unit (PMTU) value currently known by the IP stack, if any. Some IP stacks also allow setting the MTU for transmission. This enum value was introduced in Qt 5.11. |
Possible values for TypeOfServiceOption are:
| Value | Description |
|---|---|
| 224 | Network control |
| 192 | Internetwork control |
| 160 | CRITIC/ECP |
| 128 | Flash override |
| 96 | Flash |
| 64 | Immediate |
| 32 | Priority |
| 0 | Routine |
This enum was introduced or modified in Qt 4.6.
See also QAbstractSocket::setSocketOption() and QAbstractSocket::socketOption().
enum QAbstractSocket::SocketState
This enum describes the different states in which a socket can be.
| Constant | Value | Description |
|---|---|---|
QAbstractSocket::UnconnectedState | 0 | The socket is not connected. |
QAbstractSocket::HostLookupState | 1 | The socket is performing a host name lookup. |
QAbstractSocket::ConnectingState | 2 | The socket has started establishing a connection. |
QAbstractSocket::ConnectedState | 3 | A connection is established. |
QAbstractSocket::BoundState | 4 | The socket is bound to an address and port. |
QAbstractSocket::ClosingState | 6 | The socket is about to close (data may still be waiting to be written). |
QAbstractSocket::ListeningState | 5 | For internal use only. |
See also QAbstractSocket::state().
enum QAbstractSocket::SocketType
This enum describes the transport layer protocol.
| Constant | Value | Description |
|---|---|---|
QAbstractSocket::TcpSocket | 0 | TCP |
QAbstractSocket::UdpSocket | 1 | UDP |
QAbstractSocket::SctpSocket | 2 | SCTP |
QAbstractSocket::UnknownSocketType | -1 | Other than TCP, UDP and SCTP |
See also QAbstractSocket::socketType().