- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了一个与多个硬件设备通信的 C++ 工具(相同的代码 -> 线程函数,但多个设备)
我目前的方法是使用 Winapi 线程机制 beginthreadex()
和 WaitForMultipleObjects()
(有效)
int vectorIndex = 0;
for(int deviceCounter=0; deviceCounter<GetNumberOfDevices(); deviceCounter++)
{
// create thread DATA object
testFlowVector.push_back(std::make_shared<TestFlow>(m_testResultsVector, m_logFiles));
testFlowVector.at(vectorIndex)->SetThreadID(deviceCounter); // threadID is here the number to the device network socket
// CREATE THREADS
m_threadHandle->at(deviceCounter) = (HANDLE)_beginthreadex(0, 0, TestExecution::ExecTestFlow, testFlowVector.at(vectorIndex).get(), 0, 0);
vectorIndex++;
}
// wait for all threads
DWORD waitReturn = WaitForMultipleObjects(m_tpgmParam->GetNumberOfReader(), m_threadHandle->data(), true, m_tpgmParam->GetThreadTimeout());
静态线程函数:
unsigned int __stdcall TestExecution::ExecTestFlow(void *param)
{
TestFlowInterface *testFlowInterface = static_cast<TestFlowInterface*>(param);
testFlowInterface->run();
return 999;
}
线程接口(interface):
class TestFlowInterface
{
virtual void ExecuteTestflow() = 0;
public:
void run() { ExecuteTestflow(); }
virtual ~TestFlowInterface() {}
};
测试流类:
class TestFlow : public TestFlowInterface
{
public:
TestFlow(std::shared_ptr<std::vector<int>> testResults, std::shared_ptr<LogFiles> logFiles);
~TestFlow();
void ExecuteTestflow();
// ...
};
我将 Qt5 用于 GUI、网络通信等,并且还想根据此文档修改我的代码以使用 QThreads:http://doc.qt.io/qt-5/qthread.html
有两种解决方案
moveToThread()
(推荐)我都试过了,但我无法改变它。
--- 编辑:---
TestFlow 类
class TestFlow : public QObject
{
Q_OBJECT
public:
TestFlow(std::shared_ptr<LogFiles> logFiles, QObjects *parent=0);
~TestFlow();
void ExecuteTestflow();
// ...
private:
QMutex m_mutex;
std::vector<int> m_testResults;
signals:
void ResultReady(const std::vector<int> &result);
public slots:
void DoWork();
};
void TestFlow::DoWork()
{
QMutexLocker mutexLocker(m_mutex);
ExecuteTestflow();
emit ResultReady(m_testResults);
}
测试执行:
class TestExecution : public QObject
{
Q_OBJECT
public:
TestExecution()
{
m_workerThread = new QThread();
}
~TestExecution();
private:
QThread *m_workerThread;
public slots:
void HandleTestResult(const std::vector<int> &result)
{
// do something with result
}
};
void TestExecution::StartTest()
{
for(int deviceCounter=0; deviceCounter<GetNumberOfDevices(); deviceCounter++)
{
TestFlow *testFlow = new TestFlow();
testFlow->SetThreadID(deviceCounter);
connect(testFlow, &TestFlow::ResultReady, this, &TestExecution::HandleTestResult);
connect(m_workerThread, &QThread::started, testFlow, &TestFlow::DoWork);
testFlow->moveToThread(m_workerThread);
m_workerThread->start();
m_workerThread->wait(m_tpgmParam->GetThreadTimeout());
}
}
有人能帮帮我吗?
最佳答案
除非您想更改 QThread 作为线程实用程序/类的工作方式,否则不要将其子类化,请使用 moveToThread。以下是使用 moveToThread() 的一些注意事项:
QThread 注释:
了解 QThreads 的工作原理很重要。使用 QThreads 的一般过程是:
现在,一旦对象接收到实例化其成员的信号,它们就会在线程中实例化。
注意:如果您直接从实例化对象成员的线程外部(或从另一个线程)调用对象方法,那么这些对象实际上将从线程外部创建,您可能会得到警告说这样的话:“定时器不能从另一个线程启动”即成员函数不是线程安全的。
// Good example:
MyObj myObj = new MyObj(0); // 0 = no parent
QThread* thread = new QThread;
myObj->moveToThread(thread);
QObject::connect(thread, SIGNAL(started()), myObj, SLOT(run()));
thread->start();
// Bad example:
MyObj myObj = new MyObj(0); // 0 = no parent
QThread* thread = new QThread;
myObj->moveToThread(thread);
thread->start();
myObj->run(); //BAD - anything run() instantiates will be in 'this' thread - i.e. never call functions to this class directly once it has been moved to the other thread.
对于您的代码,您只需创建一个类/对象,在其中运行您的线程/硬件通信代码并实现 run() 槽函数。然后你可以使用上面的例子来设置它。
确保你的“worker”类是一个 QOBject 类(如果你在 Qt Creator 向导下创建类,Qt 可以为你做这件事,确保你添加继承自 QObject)。您需要这个以便您可以在类之间使用插槽/信号接口(interface)。
编辑因为代码已发布。
删除 m_workerThread->wait(m_tpgmParam->GetThreadTimeout());
,因为它阻塞了事件队列,因此您从工作线程的回复无法通过。
您将需要转向更多事件驱动的设计,因为像“在这里等到”这样的事情与 qt 插槽/信号一起并不是很好的设计(即,这不是您打算使用它的方式)。
但是如果您确实想等待线程结束,那么您将必须确保您的dowork()
函数结束线程。我认为您需要使用 QThread::quit()
函数从 dowork() 函数结束线程。
有用线程指南的链接
在这里看看工作线程如何发出连接到 QThread::quit() 槽的完成信号。这是结束您正在尝试执行的线程的最佳方式,您需要考虑一下等待的原因。
示例代码
signals:
void ResultReady(const std::vector<int> &result);
void quitThread(); // <------------- New signal
public slots:
void DoWork();
};
void TestFlow::DoWork()
{
QMutexLocker mutexLocker(m_mutex);
ExecuteTestflow();
// V------ Note this signal will NOT get processed until your wait function is finished! and it won't finish until the thread finishes (or your timeout occurs)...
emit ResultReady(m_testResults);
emit quitThread(); // <------------- Signal the thread can quit
}
-
void TestExecution::StartTest()
{
for(int deviceCounter=0; deviceCounter<GetNumberOfDevices(); deviceCounter++)
{
TestFlow *testFlow = new TestFlow();
testFlow->SetThreadID(deviceCounter);
connect(testFlow, &TestFlow::ResultReady, this, &TestExecution::HandleTestResult);
connect(m_workerThread, &QThread::started, testFlow, &TestFlow::DoWork);
// V------------- Connect the quitThread signal to the quit slot of the thread
//to end the thread once worker is signals it is done.
connect(testFlow, &QThread::quitThread, m_workerThread, &QThread::quit);
testFlow->moveToThread(m_workerThread);
m_workerThread->start();
/* V-------------
This should now get un-blocked once the thread ends since the
quitThread signal goes directly to the thread and therefore is
not blocked by this "wait" which IS blocking THIS thread from
processing incoming signals. */
m_workerThread->wait(m_tpgmParam->GetThreadTimeout());
}
}
关于c++ - 使用 QThreads 与多个硬件设备通信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35718991/
我在网上搜索但没有找到任何合适的文章解释如何使用 javascript 使用 WCF 服务,尤其是 WebScriptEndpoint。 任何人都可以对此给出任何指导吗? 谢谢 最佳答案 这是一篇关于
我正在编写一个将运行 Linux 命令的 C 程序,例如: cat/etc/passwd | grep 列表 |剪切-c 1-5 我没有任何结果 *这里 parent 等待第一个 child (chi
所以我正在尝试处理文件上传,然后将该文件作为二进制文件存储到数据库中。在我存储它之后,我尝试在给定的 URL 上提供文件。我似乎找不到适合这里的方法。我需要使用数据库,因为我使用 Google 应用引
我正在尝试制作一个宏,将下面的公式添加到单元格中,然后将其拖到整个列中并在 H 列中复制相同的公式 我想在 F 和 H 列中输入公式的数据 Range("F1").formula = "=IF(ISE
问题类似于this one ,但我想使用 OperatorPrecedenceParser 解析带有函数应用程序的表达式在 FParsec . 这是我的 AST: type Expression =
我想通过使用 sequelize 和 node.js 将这个查询更改为代码取决于在哪里 select COUNT(gender) as genderCount from customers where
我正在使用GNU bash,版本5.0.3(1)-发行版(x86_64-pc-linux-gnu),我想知道为什么简单的赋值语句会出现语法错误: #/bin/bash var1=/tmp
这里,为什么我的代码在 IE 中不起作用。我的代码适用于所有浏览器。没有问题。但是当我在 IE 上运行我的项目时,它发现错误。 而且我的 jquery 类和 insertadjacentHTMl 也不
我正在尝试更改标签的innerHTML。我无权访问该表单,因此无法编辑 HTML。标签具有的唯一标识符是“for”属性。 这是输入和标签的结构:
我有一个页面,我可以在其中返回用户帖子,可以使用一些 jquery 代码对这些帖子进行即时评论,在发布新评论后,我在帖子下插入新评论以及删除 按钮。问题是 Delete 按钮在新插入的元素上不起作用,
我有一个大约有 20 列的“管道分隔”文件。我只想使用 sha1sum 散列第一列,它是一个数字,如帐号,并按原样返回其余列。 使用 awk 或 sed 执行此操作的最佳方法是什么? Accounti
我需要将以下内容插入到我的表中...我的用户表有五列 id、用户名、密码、名称、条目。 (我还没有提交任何东西到条目中,我稍后会使用 php 来做)但由于某种原因我不断收到这个错误:#1054 - U
所以我试图有一个输入字段,我可以在其中输入任何字符,但然后将输入的值小写,删除任何非字母数字字符,留下“。”而不是空格。 例如,如果我输入: 地球的 70% 是水,-!*#$^^ & 30% 土地 输
我正在尝试做一些我认为非常简单的事情,但出于某种原因我没有得到想要的结果?我是 javascript 的新手,但对 java 有经验,所以我相信我没有使用某种正确的规则。 这是一个获取输入值、检查选择
我想使用 angularjs 从 mysql 数据库加载数据。 这就是应用程序的工作原理;用户登录,他们的用户名存储在 cookie 中。该用户名显示在主页上 我想获取这个值并通过 angularjs
我正在使用 autoLayout,我想在 UITableViewCell 上放置一个 UIlabel,它应该始终位于单元格的右侧和右侧的中心。 这就是我想要实现的目标 所以在这里你可以看到我正在谈论的
我需要与 MySql 等效的 elasticsearch 查询。我的 sql 查询: SELECT DISTINCT t.product_id AS id FROM tbl_sup_price t
我正在实现代码以使用 JSON。 func setup() { if let flickrURL = NSURL(string: "https://api.flickr.com/
我尝试使用for循环声明变量,然后测试cols和rols是否相同。如果是,它将运行递归函数。但是,我在 javascript 中执行 do 时遇到问题。有人可以帮忙吗? 现在,在比较 col.1 和
我举了一个我正在处理的问题的简短示例。 HTML代码: 1 2 3 CSS 代码: .BB a:hover{ color: #000; } .BB > li:after {
我是一名优秀的程序员,十分优秀!