- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个基于 gsoap 的服务器。Gsoap 也是在 Qt 上编写的。所以我可以使用 Qt 类。
我从客户端向服务器发送请求。
请求如下:服务器提供了一个电话号码和应该发送给他的消息。这个列表可能有 10 000 个或更多,这正是问题所在!我将使用 QThread 向每个号码发送一条消息。当QThread结束它的工作时,应该记录数据库的历史。问题是我们无法理解什么时候所有的历史都记录在数据库中。
我知道这是对问题的非常糟糕的解释!请原谅我的英语。
现在我将尝试向您展示程序的问题。
我有一个 QThread 类,它发送消息。一个历史类,在数据库中写入历史。
void MainWindow::on_pushButton_clicked() //Imagine that this is a server function.
{
QSet<int> st; //List to who sends a message.
st << 1 << 2 << 3 << 4 << 5 << 6 << 7 << 8 << 9 << 10;
QSet<int> clientAnswer = this->start(st);
qDebug() << "newSet: " << clientAnswer;
//return ClientAnswer list ot client.
}
QSet<int> MainWindow::start(QSet<int> st)
{
for (auto it : st) {
MyThread *thrd = new MyThread(it);
History *hist = new History();
connect(thrd, &MyThread::smsSended, hist, &History::insertHistory);
connect(hist, &History::historyAdded, this, [=](int historyUID){
qDebug() << "history inserted: " << historyUID;
this->ansSet.insert(historyUID);
if (this->ansSet.size() == st.size()) {
qDebug() << "mainwindow finished!";
emit alreadyDone();
}
});
connect(thrd, &MyThread::finished, hist, &History::deleteLater);
connect(thrd, &MyThread::finished, thrd, &MyThread::deleteLater);
thrd->start();
}
return this->ansSet;
}
主窗口.h
private:
Ui::MainWindow *ui;
QSet<int> ansSet; //The list is to send a client.
MyThread.cpp:
class MyThread : public QThread
{
Q_OBJECT
public:
explicit MyThread(int tInt, QObject *parent = 0);
signals:
void smsSended(int);
public slots:
void run();
private:
int m_int;
};
MyThread.h
MyThread::MyThread(int tInt, QObject *parent) : QThread(parent)
{
this->m_int = tInt;
}
void MyThread::run()
{
qDebug() << "thread started: " << this->m_int;
emit smsSended(this->m_int * 10);
}
历史.cpp
History::History(QObject *parent) : QObject(parent)
{
}
void History::insertHistory(int insertInt)
{
qDebug() << "insert History: " << insertInt;
emit historyAdded(insertInt);
}
History.h
class History : public QObject
{
Q_OBJECT
public:
explicit History(QObject *parent = 0);
signals:
void historyAdded(int hInt);
public slots:
void insertHistory(int insertInt);
};
应用程序输出如下:
thread started: 5
thread started: 1
thread started: 3
thread started: 2
thread started: 4
thread started: 7
thread started: 9
thread started: 6
newSet: QSet()
thread started: 8
thread started: 10
insert History: 50
history inserted: 50
insert History: 10
history inserted: 10
insert History: 30
history inserted: 30
insert History: 20
history inserted: 20
insert History: 40
history inserted: 40
insert History: 70
history inserted: 70
insert History: 90
history inserted: 90
insert History: 60
history inserted: 60
insert History: 80
history inserted: 80
insert History: 100
history inserted: 100
mainwindow finished!
我知道这个输出是正确的。但是当发生 if (this->ansSet.size() == st.size())
时,我如何从 MainWindow::start 函数返回 QSet ---> ansSet?或者您有其他想法?
我很抱歉我的英语不好
最佳答案
首先,让我们对MainWindow::start
做一个初步的修正这样我们就可以对此进行推理:
QSet<int> MainWindow::start(QSet<int> numbers)
{
History* history = new History();
for (auto number : numbers)
{
MyThread* sender = new MyThread(number);
connect(sender, &MyThread::smsSent, history, &History::insertHistory);
connect(history, &History::historyAdded, this, [=] (int historyUID) {
qDebug() << "History inserted: " << historyUID;
this->answers.insert(historyUID);
if (this->answers.size() == numbers.size()) {
qDebug() << "MainWindow finished!";
emit alreadyDone();
history->deleteLater();
}
});
connect(sender, &MyThread::finished, sender, &MyThread::deleteLater);
sender->start();
}
return this->answers;
}
好的,完成后问题如下:您在一个地方编写异步(非阻塞)代码(MainWindow::start
),但同时尝试在另一个地方同步(阻塞)使用它QSet<int> clientAnswer = this->start(st);
.
通常,如果你要async somewhere - 你会async everywhere,因为异步和同步相处得不是很好。虽然,您可以等待异步操作完成(例如 Qt::BlockingQueuedConnection
),但为什么要这样做呢?如果MainWindow::start
然后 block MainWindow::on_pushButton_clicked
block ,如果 MainWindow::on_pushButton_clicked
block 和 MainWindow
是您的用户界面窗口,然后在按钮上单击所有 UI 卡住,以防 on_pushButton_clicked
是服务器功能...您的整个服务器变得无响应。
接下来我建议你做的是:
MainWindow::MainWindow()
{
connect(this, &MainWindow::alreadyDone, this, &MainWindow::onAllAnswersReady);
}
void MainWindow::start(QSet<int> phoneNumbers)
{
History* history = new History();
for (auto number : phoneNumbers)
{
MyThread* sender = new MyThread(number);
connect(sender, &MyThread::smsSent, history, &History::insertHistory);
connect(history, &History::historyAdded, this, [=] (int historyUID) {
qDebug() << "History inserted: " << historyUID;
this->answers.insert(historyUID);
if (this->answers.size() == phoneNumbers.size()) { // all answers are ready
qDebug() << "MainWindow finished!";
emit alreadyDone();
history->deleteLater();
}
});
connect(sender, &MyThread::finished, sender, &MyThread::deleteLater);
sender->start();
}
}
void MainWindow::on_pushButton_clicked() // Imagine that this is a server function.
{
QSet<int> phoneNumbers; //List to who sends a message.
phoneNumbers << 1 << 2 << 3 << 4 << 5 << 6 << 7 << 8 << 9 << 10;
this->start(phoneNumbers); // <-- doesn't block
}
void MainWindow::onAllAnswersReady() // <-- a handler function, may belong to any other class
{
qDebug() << "Answers: " << this->answers;
// Do whatever you want with the answers here.
}
这样您就不会阻塞,而只是在准备好所有答案时处理它们(所有历史记录都已记录)。
关于c++ - 服务器和客户端之间的同步,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48597411/
我正在实现 IMAP 客户端,但 IMAP 邮箱同步出现问题。 首先,可以从 IMAP 服务器获取新邮件,但我不知道如何从邮箱中查找已删除的邮件。 我是否应该从服务器获取所有消息并将其与本地数据进行比
我研究线程同步。当我有这个例子时: class A { public synchronized void methodA(){ } public synchronized void met
嗨,我做了一个扩展线程的东西,它添加了一个包含 IP 的对象。然后我创建了该线程的两个实例并启动它们。他们使用相同的列表。 我现在想使用 Synchronized 来阻止并发更新问题。但它不起作用,我
我正在尝试使用 FTP 定期将小数据文件从程序上传到服务器。用户从使用 javascript XMLHttpRequest 函数读取数据的网页访问数据。这一切似乎都有效,但我正在努力解决由 FTP 和
我不知道如何同步下一个代码: javascript: (function() { var s2 = document.createElement('script'); s2.src =
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 7 年前。 Improve this qu
一 点睛 1 Message 在基于 Message 的系统中,每一个 Event 也可以被称为 Message,Message 是对 Event 更高一个层级的抽象,每一个 Message 都有一个
一 点睛 1 Message 在基于 Message 的系统中,每一个 Event 也可以被称为 Message,Message 是对 Event 更高一个层级的抽象,每一个 Message 都有一个
目标:我所追求的是每次在数据库中添加某些内容时(在 $.ajax 到 Submit_to_db.php 之后),从数据库获取数据并刷新 main.php(通过 draw_polygon 更明显)。 所
我有一个重复动画,需要与其他一些 transient 动画同步。重复动画是一条在屏幕上移动 4 秒的扫描线。当它经过下面的图像时,这些图像需要“闪烁”。 闪烁的图像可以根据用户的意愿来来去去和移动。它
我有 b 个块,每个块有 t 个线程。 我可以用 __syncthreads() 同步特定块中的线程。例如 __global__ void aFunction() { for(i=0;i #
我正在使用azure表查询来检索分配给用户的所有错误实体。 此外,我更改了实体的属性以声明该实体处于处理模式。 处理完实体后,我将从表中删除该实体。 当我进行并行测试时,可能会发生查询期间,一个实体已
我想知道 SQLite 是如何实现它的。它基于文件锁定吗?当然,并不是每个访问它的用户都锁定了整个数据库;那效率极低。它是基于多个文件还是仅基于一个大文件? 如果有人能够简要概述一下 sqlite 中
我想post到php,当id EmpAgree1时,然后它的post变量EmpAgree=1;当id为EmpAgree2时,则后置变量EmpAgree=2等。但只是读取i的最后一个值,为什么?以及如何
CUBLAS 文档提到我们在读取标量结果之前需要同步: “此外,少数返回标量结果的函数,例如 amax()、amin、asum()、rotg()、rotmg()、dot() 和 nrm2(),通过引用
我知道下面的代码中缺少一些内容,我的问题是关于 RemoteImplementation 中的同步机制。我还了解到该网站和其他网站上有几个关于 RMI 和同步的问题;我在这里寻找明确的确认/矛盾。 我
我不太确定如何解决这个问题......所以我可能需要几次尝试才能正确回答这个问题。我有一个用于缓存方法结果的注释。我的代码目前是一个私有(private)分支,但我正在处理的部分从这里开始: http
我对 Java 非常失望,因为它不允许以下代码尽可能地并发移动。当没有同步时,两个线程会更频繁地切换,但是当尝试访问同步方法时,在第二个线程获得锁之前以及在第一个线程获得锁之前再次花费太长时间(比如
过去几周我一直在研究java多线程。我了解了synchronized,并理解synchronized避免了多个线程同时访问相同的属性。我编写此代码是为了在同一线程中运行两个线程。 val gate =
我有一个关于 Java 同步的简单问题。 请假设以下代码: public class Test { private String address; private int age;
我是一名优秀的程序员,十分优秀!