RoutingThread.h 1.22 KB
Newer Older
1 2 3 4 5 6 7 8 9
#pragma once

#include <QGeoCoordinate>
#include <QSharedPointer>
#include <QThread>

#include "snake.h"
#include <atomic>
#include <condition_variable>
10
#include <functional>
11 12
#include <mutex>

13 14 15 16 17 18
struct RoutingData {
  snake::BoostLineString route;
  snake::Transects transects;
  std::vector<snake::TransectInfo> transectsInfo;
};

19 20 21 22
//!
//! \brief The CSWorker class
//! \note Don't call QThread::start, QThread::quit, etc. onyl use Worker
//! members!
23
class RoutingThread : public QThread {
24 25 26 27
  Q_OBJECT
  using Lock = std::unique_lock<std::mutex>;

public:
28 29
  using PtrRoutingData = QSharedPointer<RoutingData>;
  using Generator = std::function<bool(snake::Transects &)>;
30

31 32
  RoutingThread(QObject *parent = nullptr);
  ~RoutingThread() override;
33 34 35 36

  bool calculating();

public slots:
37
  void route(const snake::BoostPolygon &safeArea, const Generator &generator);
38 39

signals:
40
  void result(PtrRoutingData pTransects);
41 42 43 44 45 46 47 48 49
  void calculatingChanged();

protected:
  void run() override;

private:
  mutable std::mutex _mutex;
  mutable std::condition_variable _cv;
  // Internal data
50 51
  snake::BoostPolygon _safeArea;
  Generator _generator; // transect generator
52 53 54 55 56
  // State
  std::atomic_bool _calculating;
  std::atomic_bool _stop;
  std::atomic_bool _restart;
};