在运行中的while循环中从QLineSeries更新QChart

时间:2018-06-22 22:04:34

标签: c++ qt qchart

无论何时将点添加到附加到它的QLineSeries对象上,我都希望使我的QChart动态更新,但是似乎此更新仅在我运行的while循环完成后才发生。我在interface.cpp中使用了while循环,它调用了一个updatePlot()函数,该函数将数据点添加到线系列中,但这仅在while循环完全完成后才更新图表。这里发生的事情的伪代码:

qtwindow.cpp

// Constructor that initializes the series which will be passed into the interface
AlgoWindow::AlgoWindow( ..., TradingInterface* interface, ... ) {

    ...

    QLineSeries* series = new QLineSeries();
    QLineSeries* benchmark = new QLineSeries();

    QChart* chart = new QChart();
    chart->addSeries(series);
    chart->addSeries(benchmark);

    // Also creates custom axes which are attached to each series
    ...
}

// Slot connected to a button signal
void AlgoWindow::buttonClicked() {

    // Runs the backtest 
    interface->runbacktest(..., series, benchmark, ...);
}

interface.cpp

void TradingInterface::runbacktest(..., QtCharts::QLineSeries* algoplot, QtCharts::QLineSeries* benchplot) {

    // Runs a huge while loop that continuously checks for events
    while (continue_backtest) {
        if (!eventsqueue.isEmpty()) {
             // Handle each event for the bar
        } else {
             // All events have been handled for the day, so plot
             updatePlot(algoplot, benchplot);
        }
    }
}

void TradingInterface::updatePlot(QtCharts::QLineSeries *algoseries,
    QtCharts::QLineSeries *benchseries) {

    // Get the date and the information to put in each point
    long date = portfolio.bars->latestDates.back();
    double equitycurve = portfolio.all_holdings.rbegin().operator*().second["equitycurve"];
    double benchcurve = benchmarkportfolio.all_holdings.rbegin().operator*.second["equitycurve"];

    // Append the new points to their respective QLineSeries
    algoseries->append(date * 1000, equitycurve*100);
    benchseries->append(date * 1000, benchcurve*100);
}

这不会给我带来任何错误,并且while循环完成了,但是仅在runbacktest()退出之后才绘制线条。然后,它可以正确地绘制所有数据,但是可以一次绘制所有数据。

我需要做的是使QChart每次添加行时都进行更新,我的猜测是使用某种形式的自定义信号时隙侦听器,但是我不知道该如何去做。如果该图直到功能完成后才更新,是否有可能在QChart框架内进行?

此外,我已经尝试过QChart :: update()和QChartView :: repaint()。两者都产生了与不产生相同的结果。

编辑:我尝试设置一个新线程,每当数据完成时,该线程都会向主线程发出一个信号,但似乎没有任何改变。在输入完所有数据后,QChart仍然不会更新。我添加了几行代码来帮助调试,似乎发出信号的函数始终运行正常,但是接收信号的slot函数仅在线程完成后才运行。不仅如此,而且由于睡眠而使信号变慢并不能使其缓慢绘制(就像我想的那样),因为QChart仍然拒绝更新,直到对addData()进行最终更新为止。

2 个答案:

答案 0 :(得分:1)

要么删除while循环,然后使用计时器一次执行一次工作即可。

或者在另一个线程中运行runbacktest函数,并在数据准备好后发送信号以更新UI线程中的QChart

无论哪种方式,您都需要将控制权交还给事件循环,以便可以重新绘制图表。

答案 1 :(得分:0)

用于“连续”运行操作的Qt习惯用法是使用零持续时间的“计时器”。确实不是计时器,但是Qt称之为计时器。

您可以分块进行操作,大约需要一毫秒。为此,请反转控制流程。 Qt并没有提供太多的语法糖,但是很容易补救。

转换此代码,以保持循环:

for (int i = 0; i < 1000; ++i) {
  doSomething(i);
}

进入此lambda,由事件循环调用:

m_tasks.addTask([this](i = 0) mutable {
  doSomething(i);
  ++i;
  return i < 1000;
});

假设:

class Controller : public QObject {
  Tasks m_tasks;
  ...
};

其中Tasks类维护事件循环要执行的任务列表:

class Tasks : public QObject {
  Q_OBJECT
  QBasicTimer timer;
  std::list<std::function<bool()>> tasks;
protected:
  void timerEvent(QTimerEvent *ev) override {
    if (ev->timerId() != timer.timerId())
      return;
    for (auto it = tasks.begin(); it != tasks.end(); ) {
      bool keep = (*it)();
      if (!keep)
        it = tasks.erase(it);
      else
        ++it;
    }
    if (tasks.empty())
      timer.stop();
  }
public:
  using QObject :: QObject;
  template <typename F> void addTask(F &&fun) {
    tasks.emplace_back(std::forward(fun));
    if (!timer.isActive())
      timer.start(0, this);
  }
};