How do I execute QTcpSocket functions in a different thread?
It's important to note what you can and can't do in terms of threading QTcpSocket
:
you can use it in a non-main thread, but only the thread in which it was created in.
you cannot call different functions on the QTcpSocket
from different threads, e.g. read in one thread, write in the other. Instead, you can make a seperate thread for each QTcpSocket
, which keeps them from using up time and resources that could be painting your widgets in the main thread.
IMO, putting your IO, including QTcpSocket
in a thread other than the main thread is a best practice and must-do for any performant application. I use QTcpSocket
in non-main threads all the time using the following idiom:
// Read data from a QTcpSocket in a thread. Assumes this is in some class.
m_thread = std::thread([this]
{
QEventLoop eventLoop;
QTcpSocket* socket = new QTcpSocket(&eventLoop);
socket->connectToHost("localhost", 9999);
// enqueue or process the data
QObject::connect(socket, &QTcpSocket::readyRead, &eventLoop, [socket]
{
m_concurrentQueue.push_back(socket->readAll());
});
// Quit the loop (and thread) if the socket it disconnected. You could also try
// reconnecting
QObject::connect(socket, &QTcpSocket::disconnected, &eventLoop, [&eventLoop]
{
eventLoop.quit();
});
eventLoop.exec();
delete socket;
});
where m_thread
is some member thread (basically just ensuring that it has a lifetime greater than the current immediate scope), and m_concurrentQueue
is some thread-safe queue, or std
container with mutex protection.
You'll also want to connect some signal (I usually call it joinAll
) to the event loop quit function, and call it from the class destructor. When using an event-loop-in-a-thread idiom you always have to be careful about making sure you can actually destroy the class correctly, otherwise your program won't exit (or on windows it will be terminated, usually with some destructors not getting called, and it ends up being a silent error).
I also usually use a condition variable to wait after creating the thread until the event loop has started. It's not necessary but if you are putting these threads together in constructors it can help make the program flow make more sense.
The QT docs are explicit that the QTCPSocket
should not be used accross threads. I.E, create a QTCPSocket
in the main thread and have the signal tied to an object in another thread.
I suspect that you are implementing something like a web server where the listen creates a QTCPSocket
on the accept. You then want another thread to handle the task of processing that socket. You can't.
The way I worked around it is I kept the socket in the thread it was born in. I serviced all of the incoming data in that thread and threw it into a queue where another thread could work on that data.
virtual void incomingConnection(qintptr socketDescriptor)
Note: If another socket is created in the reimplementation of this method, it needs to be added to the Pending Connections mechanism by calling
addPendingConnection()
.Note: If you want to handle an incoming connection as a new
QTcpSocket
object in another thread you have to pass thesocketDescriptor
to the other thread and create theQTcpSocket
object there and use itssetSocketDescriptor()
method.
Put a QMutex
lock around all calls, not just on the "different" thread but on all threads. One easy way to do so is via a QMutexLocker
What I read in the docs is that QTcpSocket should not be used across threads. If you want to use it in another thread Qt docs say you should create a new QTcpSocket instance in your thread and set the descriptor on the new instance. To do this you need to reimplement QTcpServer and use QTcpServer::incomingConnection. A simple example is provided here.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With