AirMapTrafficMonitor.h 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/****************************************************************************
 *
 *   (c) 2017 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

#pragma once

Gus Grubba's avatar
Gus Grubba committed
12
#include "LifetimeChecker.h"
Gus Grubba's avatar
Gus Grubba committed
13
#include "AirMapSharedState.h"
Gus Grubba's avatar
Gus Grubba committed
14

15
#include <QObject>
Gus Grubba's avatar
Gus Grubba committed
16 17 18 19 20 21
#include <QGeoCoordinate>

#include "airmap/traffic.h"

#include <memory>

22 23 24 25 26 27 28 29 30
/**
 * @class AirMapTrafficMonitor
 *
 */

class AirMapTrafficMonitor : public QObject, public LifetimeChecker
{
    Q_OBJECT
public:
31 32
    AirMapTrafficMonitor            (AirMapSharedState& shared);
    virtual ~AirMapTrafficMonitor   ();
33

34
    void startConnection            (const QString& flightID);
35 36 37 38

    void stop();

signals:
39 40
    void error                      (const QString& what, const QString& airmapdMessage, const QString& airmapdDetails);
    void trafficUpdate              (bool alert, QString traffic_id, QString vehicle_id, QGeoCoordinate location, float heading);
41 42

private:
43
    void _update                    (airmap::Traffic::Update::Type type, const std::vector<airmap::Traffic::Update>& update);
44 45 46 47 48 49 50 51 52

private:
    QString                                               _flightID;
    AirMapSharedState&                                    _shared;
    std::shared_ptr<airmap::Traffic::Monitor>             _monitor;
    std::shared_ptr<airmap::Traffic::Monitor::Subscriber> _subscriber;
};