如何在Qt中合并/追加/添加两个模型进行线程化?

问题描述 投票:0回答:1

我是新手,所以如果这篇文章在错误的地方请告诉我。

我试图在我的程序中使用线程“for循环”,但根据我的研究,model->setData与线程不兼容。

所以我的解决方案是: 我将在每个线程中使用不同的模型,并且我将它们合并为一个以在tableview中显示。

但我不熟悉Qt所以我有点卡在这里我不知道如何合并两个模型,你能检查一下我的代码吗?

{
    t2 = std::thread{[&]{
        const auto row_size = (RegexOperations_.indexed_arranged_file.size()
        const auto col_size = RegexOperations_.indexed_arranged_file[0].size();
        for(unsigned int i = 0 ; i < (row_size+1) / 2)  ; i++)
        {
            for(unsigned int j = 0 ; j < col_size;j++)
            {
                std::string temp = RegexOperations_.indexed_arranged_file[i][j];
                QModelIndex index = model ->index(i,j,QModelIndex());
                model->setData(index,temp.c_str());
            }
        }
    }};

    //t3 = std::thread{[&]{
    //    const auto row_size = (RegexOperations_.indexed_arranged_file.size()
    //    const auto col_size = RegexOperations_.indexed_arranged_file[0].size();
    //    for(unsigned int i = (row_size+1) / 2) ; i < row_size;i++)
    //    {
    //        for(unsigned int j = 0 ; j < col_size;j++)
    //        {
    //            std::string temp = RegexOperations_.indexed_arranged_file[i][j];
    //            QModelIndex index = model ->index(i,j,QModelIndex());
    //            model->setData(index,temp.c_str());
    //        }
    //    }
    //}};

    t2.join();
    //t3.join();

    const auto tvr = ui->tableView_results;
    tvr->setModel(model);
    tvr->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents);
    tvr->setEditTriggers(QAbstractItemView::NoEditTriggers);
}

谢谢您的帮助 ...

c++ qt c++14
1个回答
0
投票

这是一种方法。

vector<std::string> answers;
std::mutex mx_answers;

auto rows = RegexOperations_.indexed_arranged_file.size();
auto cols = RegexOperations_.indexed_arranged_file[0].size();
answers.reserve(rows *cols);
auto answers_fill_it = answers.begin();

vector<std::thread> ts;
ts.reserve(rows);
auto rows = RegexOperations_.indexed_arranged_file.size();
for (row = 0; row < rows; ++row)
{
    ts.emplace_back([&](
        vector<std::string> local_answers;
        local_answers.reserve(cols);
        for (unsigned col = 0; col < cols; ++col) {
            local_answers.push_back(RegexOperations_.indexed_arranged_file[row][col]);
        };
        lock_guard<std::mutex> lk(mx_answers);
        std::copy(local_answers.begin(), local_answers.end(), answers_fill_it);));
}
auto answer_it = answers.begin();

for (auto t & : ts)
    if (t.joinable())
        t.join();

for (auto row = 0; row < rows; ++row)
    for (auto col = 0; col < cols; ++col)
    {
        QModelIndex index = model->index(row, col, QModelIndex());
        model->setData(index, *answer_it;
        ++answer_it;
    }

它将它分成每行一个线程,并且每个线程完成后,它将该行的结果添加到全局字符串向量中。

完成所有线程后,模型将更新。

© www.soinside.com 2019 - 2024. All rights reserved.