From 30c4779eeb27602c4202f18f05b2e89fb02f9568 Mon Sep 17 00:00:00 2001 From: HifiExperiments Date: Sat, 13 Feb 2021 20:17:28 -0800 Subject: [PATCH] name all the threads --- .gitignore | 1 + assignment-client/src/AssignmentClient.cpp | 8 ++++++-- .../src/audio/AudioMixerSlavePool.cpp | 5 +++++ assignment-client/src/octree/OctreeServer.cpp | 6 +++++- domain-server/src/DomainServer.cpp | 5 ++++- interface/src/Application.cpp | 3 +++ libraries/audio/src/AudioInjectorManager.cpp | 8 ++++++-- .../display-plugins/OpenGLDisplayPlugin.cpp | 2 ++ .../src/gpu/gl/GLTextureTransfer.cpp | 6 +++++- libraries/networking/src/ResourceManager.cpp | 9 +++++++-- libraries/networking/src/udt/SendQueue.cpp | 19 +++++++++++-------- libraries/qml/src/qml/impl/SharedObject.cpp | 5 ++++- libraries/script-engine/src/ScriptEngine.cpp | 10 +++++++--- libraries/shared/src/GenericThread.cpp | 9 +++++++-- libraries/shared/src/SettingInterface.cpp | 6 +++++- libraries/shared/src/ThreadHelpers.h | 2 ++ .../ui/src/ui/TabletScriptingInterface.cpp | 2 +- plugins/openvr/src/OpenVrDisplayPlugin.cpp | 2 ++ plugins/openvr/src/ViveControllerManager.cpp | 2 ++ 19 files changed, 85 insertions(+), 25 deletions(-) diff --git a/.gitignore b/.gitignore index 82c9535c5d..195def9544 100644 --- a/.gitignore +++ b/.gitignore @@ -111,3 +111,4 @@ tools/unity-avatar-exporter server-console/package-lock.json vcpkg/ /tools/nitpick/compiledResources +qt/ \ No newline at end of file diff --git a/assignment-client/src/AssignmentClient.cpp b/assignment-client/src/AssignmentClient.cpp index 50eee258ab..adc7f5e3c5 100644 --- a/assignment-client/src/AssignmentClient.cpp +++ b/assignment-client/src/AssignmentClient.cpp @@ -33,6 +33,7 @@ #include #include +#include #include "AssignmentClientLogging.h" #include "AssignmentFactory.h" @@ -235,10 +236,13 @@ void AssignmentClient::handleCreateAssignmentPacket(QSharedPointergetDomainHandler().getIP().toString(); // start the deployed assignment - QThread* workerThread = new QThread; + QThread* workerThread = new QThread(); workerThread->setObjectName("ThreadedAssignment Worker"); - connect(workerThread, &QThread::started, _currentAssignment.data(), &ThreadedAssignment::run); + connect(workerThread, &QThread::started, _currentAssignment.data(), [this] { + setThreadName("ThreadedAssignment Worker"); + _currentAssignment->run(); + }); // Once the ThreadedAssignment says it is finished - we ask it to deleteLater // This is a queued connection so that it is put into the event loop to be processed by the worker diff --git a/assignment-client/src/audio/AudioMixerSlavePool.cpp b/assignment-client/src/audio/AudioMixerSlavePool.cpp index 5f6936cb2d..e8a2909acb 100644 --- a/assignment-client/src/audio/AudioMixerSlavePool.cpp +++ b/assignment-client/src/audio/AudioMixerSlavePool.cpp @@ -11,9 +11,13 @@ #include "AudioMixerSlavePool.h" +#include + #include #include +#include + void AudioMixerSlaveThread::run() { while (true) { wait(); @@ -157,6 +161,7 @@ void AudioMixerSlavePool::resize(int numThreads) { // start new slaves for (int i = 0; i < numThreads - _numThreads; ++i) { auto slave = new AudioMixerSlaveThread(*this, _workerSharedData); + QObject::connect(slave, &QThread::started, [] { setThreadName("AudioMixerSlaveThread"); }); slave->start(); _slaves.emplace_back(slave); } diff --git a/assignment-client/src/octree/OctreeServer.cpp b/assignment-client/src/octree/OctreeServer.cpp index f72ab0ac05..4ef220df29 100644 --- a/assignment-client/src/octree/OctreeServer.cpp +++ b/assignment-client/src/octree/OctreeServer.cpp @@ -34,6 +34,7 @@ #include #include +#include Q_LOGGING_CATEGORY(octree_server, "hifi.octree-server") @@ -1192,7 +1193,10 @@ void OctreeServer::domainSettingsRequestComplete() { _persistAsFileType); _persistManager->moveToThread(&_persistThread); connect(&_persistThread, &QThread::finished, _persistManager, &QObject::deleteLater); - connect(&_persistThread, &QThread::started, _persistManager, &OctreePersistThread::start); + connect(&_persistThread, &QThread::started, _persistManager, [this] { + setThreadName("OctreePersistThread"); + _persistManager->start(); + }); connect(_persistManager, &OctreePersistThread::loadCompleted, this, [this]() { beginRunning(); }); diff --git a/domain-server/src/DomainServer.cpp b/domain-server/src/DomainServer.cpp index 1d7ef7fcfc..bb79bb367a 100644 --- a/domain-server/src/DomainServer.cpp +++ b/domain-server/src/DomainServer.cpp @@ -60,6 +60,7 @@ #include #include +#include using namespace std::chrono; @@ -830,9 +831,11 @@ void DomainServer::setupNodeListAndAssignments() { // set a custom packetVersionMatch as the verify packet operator for the udt::Socket nodeList->setPacketFilterOperator(&DomainServer::isPacketVerified); - _assetClientThread.setObjectName("AssetClient Thread"); + QString name = "AssetClient Thread"; + _assetClientThread.setObjectName(name); auto assetClient = DependencyManager::set(); assetClient->moveToThread(&_assetClientThread); + connect(&_assetClientThread, &QThread::started, [name] { setThreadName(name.toStdString()); }); _assetClientThread.start(); // add whatever static assignments that have been parsed to the queue addStaticAssignmentsToQueue(); diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 07fecc13dc..06ce6c3d6c 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -254,6 +254,7 @@ #include "AboutUtil.h" #include "ExternalResource.h" +#include #if defined(Q_OS_WIN) #include @@ -1168,6 +1169,7 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer, bo if (!DISABLE_WATCHDOG) { auto deadlockWatchdogThread = new DeadlockWatchdogThread(); deadlockWatchdogThread->setMainThreadID(QThread::currentThreadId()); + connect(deadlockWatchdogThread, &QThread::started, [] { setThreadName("DeadlockWatchdogThread"); }); deadlockWatchdogThread->start(); // Pause the deadlock watchdog when we sleep, or it might @@ -5206,6 +5208,7 @@ void getCpuUsage(vec3& systemAndUser) { void setupCpuMonitorThread() { initCpuUsage(); auto cpuMonitorThread = QThread::currentThread(); + setThreadName("CPU Monitor Thread"); QTimer* timer = new QTimer(); timer->setInterval(50); diff --git a/libraries/audio/src/AudioInjectorManager.cpp b/libraries/audio/src/AudioInjectorManager.cpp index 04e5666106..9494a84fab 100644 --- a/libraries/audio/src/AudioInjectorManager.cpp +++ b/libraries/audio/src/AudioInjectorManager.cpp @@ -15,6 +15,7 @@ #include #include +#include #include "AudioConstants.h" #include "AudioInjector.h" @@ -54,11 +55,14 @@ AudioInjectorManager::~AudioInjectorManager() { } void AudioInjectorManager::createThread() { - _thread = new QThread; + _thread = new QThread(); _thread->setObjectName("Audio Injector Thread"); // when the thread is started, have it call our run to handle injection of audio - connect(_thread, &QThread::started, this, &AudioInjectorManager::run, Qt::DirectConnection); + connect(_thread, &QThread::started, this, [this] { + setThreadName("AudioInjectorManager"); + run(); + }, Qt::DirectConnection); moveToThread(_thread); diff --git a/libraries/display-plugins/src/display-plugins/OpenGLDisplayPlugin.cpp b/libraries/display-plugins/src/display-plugins/OpenGLDisplayPlugin.cpp index f601b99779..ba83ddff55 100644 --- a/libraries/display-plugins/src/display-plugins/OpenGLDisplayPlugin.cpp +++ b/libraries/display-plugins/src/display-plugins/OpenGLDisplayPlugin.cpp @@ -50,6 +50,7 @@ #include "CompositorHelper.h" #include "Logging.h" #include "RefreshRateController.h" +#include using namespace shader::gpu::program; @@ -285,6 +286,7 @@ bool OpenGLDisplayPlugin::activate() { widget->context()->doneCurrent(); presentThread->setContext(widget->context()); + connect(presentThread.data(), &QThread::started, [] { setThreadName("OpenGL Present Thread"); }); // Start execution presentThread->start(); } diff --git a/libraries/gpu-gl-common/src/gpu/gl/GLTextureTransfer.cpp b/libraries/gpu-gl-common/src/gpu/gl/GLTextureTransfer.cpp index af865b3ad7..1b57d4292c 100644 --- a/libraries/gpu-gl-common/src/gpu/gl/GLTextureTransfer.cpp +++ b/libraries/gpu-gl-common/src/gpu/gl/GLTextureTransfer.cpp @@ -8,8 +8,10 @@ #include "GLTexture.h" +#include #include #include +#include #include "GLBackend.h" @@ -64,7 +66,7 @@ public: protected: class TextureBufferThread : public QThread { public: - TextureBufferThread(GLTextureTransferEngineDefault& parent) : _parent(parent) { start(); } + TextureBufferThread(GLTextureTransferEngineDefault& parent) : _parent(parent) {} protected: void run() override { @@ -302,6 +304,8 @@ void GLTextureTransferEngineDefault::processTransferQueues() { #if THREADED_TEXTURE_BUFFERING if (!_transferThread) { _transferThread = new TextureBufferThread(*this); + QObject::connect(_transferThread, &QThread::started, [] { setThreadName("TextureBufferThread"); }); + _transferThread->start(); } #endif diff --git a/libraries/networking/src/ResourceManager.cpp b/libraries/networking/src/ResourceManager.cpp index 0b9d5a2d60..f4e4cca482 100644 --- a/libraries/networking/src/ResourceManager.cpp +++ b/libraries/networking/src/ResourceManager.cpp @@ -19,6 +19,7 @@ #include #include +#include #include "AssetResourceRequest.h" #include "FileResourceRequest.h" @@ -28,12 +29,16 @@ #include "NetworkingConstants.h" ResourceManager::ResourceManager(bool atpSupportEnabled) : _atpSupportEnabled(atpSupportEnabled) { - _thread.setObjectName("Resource Manager Thread"); + QString name = "Resource Manager Thread"; + _thread.setObjectName(name); if (_atpSupportEnabled) { auto assetClient = DependencyManager::set(); assetClient->moveToThread(&_thread); - QObject::connect(&_thread, &QThread::started, assetClient.data(), &AssetClient::initCaching); + QObject::connect(&_thread, &QThread::started, assetClient.data(), [assetClient, name] { + setThreadName(name.toStdString()); + assetClient->initCaching(); + }); } _thread.start(); diff --git a/libraries/networking/src/udt/SendQueue.cpp b/libraries/networking/src/udt/SendQueue.cpp index 2997c272f9..63447f6e70 100644 --- a/libraries/networking/src/udt/SendQueue.cpp +++ b/libraries/networking/src/udt/SendQueue.cpp @@ -31,6 +31,7 @@ #include "Socket.h" #include #include +#include #include "../NetworkLogging.h" @@ -67,24 +68,26 @@ const microseconds SendQueue::MINIMUM_ESTIMATED_TIMEOUT = milliseconds(10); std::unique_ptr SendQueue::create(Socket* socket, HifiSockAddr destination, SequenceNumber currentSequenceNumber, MessageNumber currentMessageNumber, bool hasReceivedHandshakeACK) { Q_ASSERT_X(socket, "SendQueue::create", "Must be called with a valid Socket*"); - + auto queue = std::unique_ptr(new SendQueue(socket, destination, currentSequenceNumber, currentMessageNumber, hasReceivedHandshakeACK)); // Setup queue private thread - QThread* thread = new QThread; - thread->setObjectName("Networking: SendQueue " + destination.objectName()); // Name thread for easier debug - + QThread* thread = new QThread(); + QString name = "Networking: SendQueue " + destination.objectName(); + thread->setObjectName(name); // Name thread for easier debug + + connect(thread, &QThread::started, [name] { setThreadName(name.toStdString()); }); connect(thread, &QThread::started, queue.get(), &SendQueue::run); - + connect(queue.get(), &QObject::destroyed, thread, &QThread::quit); // Thread auto cleanup connect(thread, &QThread::finished, thread, &QThread::deleteLater); // Thread auto cleanup - + // Move queue to private thread and start it queue->moveToThread(thread); - + thread->start(); - + return queue; } diff --git a/libraries/qml/src/qml/impl/SharedObject.cpp b/libraries/qml/src/qml/impl/SharedObject.cpp index 55788c8a02..c5411a6195 100644 --- a/libraries/qml/src/qml/impl/SharedObject.cpp +++ b/libraries/qml/src/qml/impl/SharedObject.cpp @@ -29,6 +29,7 @@ #include "RenderControl.h" #include "RenderEventHandler.h" #include "TextureCache.h" +#include // Time between receiving a request to render the offscreen UI actually triggering // the render. Could possibly be increased depending on the framerate we expect to @@ -162,7 +163,9 @@ void SharedObject::setRootItem(QQuickItem* rootItem) { // Create the render thread _renderThread = new QThread(); - _renderThread->setObjectName(objectName()); + QString name = objectName(); + _renderThread->setObjectName(name); + QObject::connect(_renderThread, &QThread::started, [name] { setThreadName("QML SharedObject " + name.toStdString()); }); _renderThread->start(); // Create event handler for the render thread diff --git a/libraries/script-engine/src/ScriptEngine.cpp b/libraries/script-engine/src/ScriptEngine.cpp index f42178b023..e553672b02 100644 --- a/libraries/script-engine/src/ScriptEngine.cpp +++ b/libraries/script-engine/src/ScriptEngine.cpp @@ -87,7 +87,7 @@ #include "SettingHandle.h" #include #include - +#include const QString ScriptEngine::_SETTINGS_ENABLE_EXTENDED_EXCEPTIONS { "com.highfidelity.experimental.enableExtendedJSExceptions" @@ -429,13 +429,17 @@ void ScriptEngine::runInThread() { // The thread interface cannot live on itself, and we want to move this into the thread, so // the thread cannot have this as a parent. QThread* workerThread = new QThread(); - workerThread->setObjectName(QString("js:") + getFilename().replace("about:","")); + QString name = QString("js:") + getFilename().replace("about:",""); + workerThread->setObjectName(name); moveToThread(workerThread); // NOTE: If you connect any essential signals for proper shutdown or cleanup of // the script engine, make sure to add code to "reconnect" them to the // disconnectNonEssentialSignals() method - connect(workerThread, &QThread::started, this, &ScriptEngine::run); + connect(workerThread, &QThread::started, this, [this, name] { + setThreadName(name.toStdString()); + run(); + }); connect(this, &QObject::destroyed, workerThread, &QThread::quit); connect(workerThread, &QThread::finished, workerThread, &QObject::deleteLater); diff --git a/libraries/shared/src/GenericThread.cpp b/libraries/shared/src/GenericThread.cpp index e35c74e68a..4e9dba8893 100644 --- a/libraries/shared/src/GenericThread.cpp +++ b/libraries/shared/src/GenericThread.cpp @@ -14,6 +14,8 @@ #include #include +#include "ThreadHelpers.h" + GenericThread::GenericThread() : _stopThread(false), _isThreaded(false) // assume non-threaded, must call initialize() @@ -36,8 +38,11 @@ void GenericThread::initialize(bool isThreaded, QThread::Priority priority) { // match the thread name to our object name _thread->setObjectName(objectName()); - connect(_thread, &QThread::started, this, &GenericThread::started); - connect(_thread, &QThread::started, this, &GenericThread::threadRoutine); + connect(_thread, &QThread::started, this, [this] { + setThreadName("Generic thread " + objectName().toStdString()); + started(); + threadRoutine(); + }); connect(_thread, &QThread::finished, this, &GenericThread::finished); moveToThread(_thread); diff --git a/libraries/shared/src/SettingInterface.cpp b/libraries/shared/src/SettingInterface.cpp index 04da35656e..ab5b3e380a 100644 --- a/libraries/shared/src/SettingInterface.cpp +++ b/libraries/shared/src/SettingInterface.cpp @@ -21,6 +21,7 @@ #include "SettingManager.h" #include "SharedLogging.h" #include "SharedUtil.h" +#include "ThreadHelpers.h" namespace Setting { // This should only run as a post-routine in the QCoreApplication destructor @@ -53,7 +54,10 @@ namespace Setting { thread->setObjectName("Settings Thread"); // Setup setting periodical save timer - QObject::connect(thread, &QThread::started, globalManager.data(), &Manager::startTimer); + QObject::connect(thread, &QThread::started, globalManager.data(), [globalManager] { + setThreadName("Settings Save Thread"); + globalManager->startTimer(); + }); QObject::connect(thread, &QThread::finished, globalManager.data(), &Manager::stopTimer); // Setup manager threading affinity diff --git a/libraries/shared/src/ThreadHelpers.h b/libraries/shared/src/ThreadHelpers.h index d236344dc5..42de117e67 100644 --- a/libraries/shared/src/ThreadHelpers.h +++ b/libraries/shared/src/ThreadHelpers.h @@ -32,6 +32,8 @@ void withLock(QMutex& lock, F function) { function(); } +void setThreadName(const std::string& name); + void moveToNewNamedThread(QObject* object, const QString& name, std::function preStartCallback, std::function startCallback, diff --git a/libraries/ui/src/ui/TabletScriptingInterface.cpp b/libraries/ui/src/ui/TabletScriptingInterface.cpp index 61c74dc17c..e80b11915a 100644 --- a/libraries/ui/src/ui/TabletScriptingInterface.cpp +++ b/libraries/ui/src/ui/TabletScriptingInterface.cpp @@ -595,7 +595,7 @@ void TabletProxy::gotoMenuScreen(const QString& submenu) { } void TabletProxy::loadQMLOnTopImpl(const QVariant& path, bool localSafeContext) { - if (QThread::currentThread() != thread()) { + if (QThread::currentThread() != thread()) { qCWarning(uiLogging) << __FUNCTION__ << "may not be called directly by scripts"; return; } diff --git a/plugins/openvr/src/OpenVrDisplayPlugin.cpp b/plugins/openvr/src/OpenVrDisplayPlugin.cpp index c5eb740325..b5c1f713e7 100644 --- a/plugins/openvr/src/OpenVrDisplayPlugin.cpp +++ b/plugins/openvr/src/OpenVrDisplayPlugin.cpp @@ -31,6 +31,7 @@ #include #include #include +#include #include "OpenVrHelpers.h" @@ -494,6 +495,7 @@ bool OpenVrDisplayPlugin::internalActivate() { _submitCanvas->doneCurrent(); }); } + connect(_submitThread.get(), &QThread::started, [] { setThreadName("OpenVR Submit Thread"); }); _submitCanvas->moveToThread(_submitThread.get()); } diff --git a/plugins/openvr/src/ViveControllerManager.cpp b/plugins/openvr/src/ViveControllerManager.cpp index 3629698e11..ac41502a38 100644 --- a/plugins/openvr/src/ViveControllerManager.cpp +++ b/plugins/openvr/src/ViveControllerManager.cpp @@ -49,6 +49,7 @@ #include #include #include +#include #include #include @@ -403,6 +404,7 @@ bool ViveControllerManager::activate() { if (_viveProEye) { _viveProEyeReadThread = std::make_shared(); + connect(_viveProEyeReadThread.get(), &QThread::started, [] { setThreadName("ViveProEyeReadThread"); }); _viveProEyeReadThread->start(QThread::HighPriority); } }